| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890 |
- {
- "entries": {
- "tap": {
- "homebrew/bundle": {
- "revision": "30944b1a1ff672300855c4fcb4a5e660de149702"
- },
- "homebrew/cask": {
- "revision": "386751a8c2351ab7a7a7143b597ca22b317e67c2"
- },
- "homebrew/cask-fonts": {
- "revision": "84535dd6d8ce8bedd2922c8688e608bb4c9d7b5c"
- },
- "homebrew/cask-versions": {
- "revision": "9d83fa7ded84089c66df3ef7ef7a3985ca85a765"
- },
- "homebrew/core": {
- "revision": "a469d3bb2a7aee100073fb8ebd32bfd619a0ff3c"
- }
- },
- "brew": {
- "arp-scan": {
- "version": "1.9.7",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:bab165d30f8039bba63d086234d0c57c64152fe73d586081dfaa7eec177fcefd",
- "sha256": "bab165d30f8039bba63d086234d0c57c64152fe73d586081dfaa7eec177fcefd"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:f3fe2b4b1f70e09f79aaf43b2044068ce5431135a7d7e78ab5022202bfb48ab4",
- "sha256": "f3fe2b4b1f70e09f79aaf43b2044068ce5431135a7d7e78ab5022202bfb48ab4"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:763b615392ea20ab1900bbc4a21fb0a9a978bbf50d3bbd8d5ff490437defc6f8",
- "sha256": "763b615392ea20ab1900bbc4a21fb0a9a978bbf50d3bbd8d5ff490437defc6f8"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:178196ab4312319611ad02c8e086e56fec2217981f9d91d9e7df8cddfeacda4e",
- "sha256": "178196ab4312319611ad02c8e086e56fec2217981f9d91d9e7df8cddfeacda4e"
- },
- "high_sierra": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:f72f46496eecff4c1a86dbdbf3a295e195310827ef50cdc0b007bd7b6311495d",
- "sha256": "f72f46496eecff4c1a86dbdbf3a295e195310827ef50cdc0b007bd7b6311495d"
- }
- }
- }
- },
- "xz": {
- "version": "5.2.5",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:c84206005787304416ed81094bd3a0cdd2ae8eb62649db5a3a44fa14b276d09f",
- "sha256": "c84206005787304416ed81094bd3a0cdd2ae8eb62649db5a3a44fa14b276d09f"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:4fbd4a9e3eb49c27e83bd125b0e76d386c0e12ae1139d4dc9e31841fb8880a35",
- "sha256": "4fbd4a9e3eb49c27e83bd125b0e76d386c0e12ae1139d4dc9e31841fb8880a35"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:2dcc8e0121c934d1e34ffdb37fcd70f0f7b5c2f4755f2f7cbcf360e9e54cb43b",
- "sha256": "2dcc8e0121c934d1e34ffdb37fcd70f0f7b5c2f4755f2f7cbcf360e9e54cb43b"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:44483961b5d2b535b0ece1936c9d40b4bc7d9c7281646cca0fb476291ab9d4dc",
- "sha256": "44483961b5d2b535b0ece1936c9d40b4bc7d9c7281646cca0fb476291ab9d4dc"
- },
- "high_sierra": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:1491b2b20c40c3cb0b990f520768d7e876e4ab4a7dc1da9994d0150da34ba5c6",
- "sha256": "1491b2b20c40c3cb0b990f520768d7e876e4ab4a7dc1da9994d0150da34ba5c6"
- }
- }
- }
- },
- "glib": {
- "version": "2.68.1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/glib/blobs/sha256:e3f0b329d96675cc9d34d1132a69fa941b93367d08361829892f477cb242dcc6",
- "sha256": "e3f0b329d96675cc9d34d1132a69fa941b93367d08361829892f477cb242dcc6"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/glib/blobs/sha256:244628aa2804cc51993188636086a93d9f35574c31482baecc379a1584300b08",
- "sha256": "244628aa2804cc51993188636086a93d9f35574c31482baecc379a1584300b08"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/glib/blobs/sha256:7d39ec15cca95b968a0151898f31134edd12063e0219df4137a49bcc369cdd0d",
- "sha256": "7d39ec15cca95b968a0151898f31134edd12063e0219df4137a49bcc369cdd0d"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/glib/blobs/sha256:ebbfbbde6044f386f2494f2c99e5dad5ae9ebaa3fa0f103a56ac08a367d13fe6",
- "sha256": "ebbfbbde6044f386f2494f2c99e5dad5ae9ebaa3fa0f103a56ac08a367d13fe6"
- }
- }
- }
- },
- "ccache": {
- "version": "4.2.1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ccache/blobs/sha256:035a9c51376fbd87424fd98b75e304ca361b3bd0dc92bdcae7b1e5dcfa22a3c0",
- "sha256": "035a9c51376fbd87424fd98b75e304ca361b3bd0dc92bdcae7b1e5dcfa22a3c0"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ccache/blobs/sha256:098a882c947780055053e5d961910f411026cea492a0435077b3c70a347b4ca7",
- "sha256": "098a882c947780055053e5d961910f411026cea492a0435077b3c70a347b4ca7"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ccache/blobs/sha256:fdcfcc5d633cbae1334d7862f92e00cfaca04bc1722299b37acd61647779325b",
- "sha256": "fdcfcc5d633cbae1334d7862f92e00cfaca04bc1722299b37acd61647779325b"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ccache/blobs/sha256:ffc07ff2a5079f66f770534bf9d0db2cbd330e8a6bd560f2e4509866be09aad9",
- "sha256": "ffc07ff2a5079f66f770534bf9d0db2cbd330e8a6bd560f2e4509866be09aad9"
- }
- }
- }
- },
- "clang-format": {
- "version": "12.0.0",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/clang-format/blobs/sha256:1f038a1af0ed7c0c316cca7a5b74c868eb011ea5c1106bd34d451c7d99b16ca4",
- "sha256": "1f038a1af0ed7c0c316cca7a5b74c868eb011ea5c1106bd34d451c7d99b16ca4"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/clang-format/blobs/sha256:a919653359246062c53f2ce6a7a3fd822e71b1d65c4f75bd20a361bc7264b139",
- "sha256": "a919653359246062c53f2ce6a7a3fd822e71b1d65c4f75bd20a361bc7264b139"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/clang-format/blobs/sha256:e18818a9555c17fffdf416deb5e16526f4b7fb07ec684d5dda22b6b8b1fd7c4e",
- "sha256": "e18818a9555c17fffdf416deb5e16526f4b7fb07ec684d5dda22b6b8b1fd7c4e"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/clang-format/blobs/sha256:2ce598eddb5655854cc4a0e88591ced06b0a2d5bab96497c0b7081f5a2b0dd74",
- "sha256": "2ce598eddb5655854cc4a0e88591ced06b0a2d5bab96497c0b7081f5a2b0dd74"
- }
- }
- }
- },
- "cmake": {
- "version": "3.20.1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/cmake/blobs/sha256:b94fa9c13065ce31259621e1ac1ff8f46c0a6ee606a5944f2562ed86c7fcf2a6",
- "sha256": "b94fa9c13065ce31259621e1ac1ff8f46c0a6ee606a5944f2562ed86c7fcf2a6"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/cmake/blobs/sha256:c8b975b0911f9125065459e9b55da2c43fc58485446ec35d8294d2db2ad77972",
- "sha256": "c8b975b0911f9125065459e9b55da2c43fc58485446ec35d8294d2db2ad77972"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/cmake/blobs/sha256:1875ab07ed5843cdc06368ae851ec1232a72bb679f70f816e549acfe5fff6c31",
- "sha256": "1875ab07ed5843cdc06368ae851ec1232a72bb679f70f816e549acfe5fff6c31"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/cmake/blobs/sha256:0af0a3d97a83dcdece0c5a8ba867d6b199b928f1c4e0a325eef785af6b8f2f1e",
- "sha256": "0af0a3d97a83dcdece0c5a8ba867d6b199b928f1c4e0a325eef785af6b8f2f1e"
- }
- }
- }
- },
- "container-diff": {
- "version": "0.16.0",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/container-diff/blobs/sha256:41fb6884547be02700c5e9281cbd42cf31fd1d089c74d54441b88038a9cbe147",
- "sha256": "41fb6884547be02700c5e9281cbd42cf31fd1d089c74d54441b88038a9cbe147"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/container-diff/blobs/sha256:055232f62b7ecc254a833115409dacb53eba5e2f367a79bf754d9e0d17f06711",
- "sha256": "055232f62b7ecc254a833115409dacb53eba5e2f367a79bf754d9e0d17f06711"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/container-diff/blobs/sha256:695d8f0fd299139e08f3bf5566a57943b001510849f13f259473414223ed5542",
- "sha256": "695d8f0fd299139e08f3bf5566a57943b001510849f13f259473414223ed5542"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/container-diff/blobs/sha256:fc5c1f18d752bb0f5af502cbaec8af0ccb5fa1f600bfd892e5e1a01d8d7ded78",
- "sha256": "fc5c1f18d752bb0f5af502cbaec8af0ccb5fa1f600bfd892e5e1a01d8d7ded78"
- }
- }
- }
- },
- "cowsay": {
- "version": "3.04_1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:dc3cb88861e89bb415d3b1be1b5314514174349bb44338551e80badc4da94542",
- "sha256": "dc3cb88861e89bb415d3b1be1b5314514174349bb44338551e80badc4da94542"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:422c58f10fc2441a62a90864d01b83176ebda627f9a8c29b34f89f4f1f86618e",
- "sha256": "422c58f10fc2441a62a90864d01b83176ebda627f9a8c29b34f89f4f1f86618e"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:c1f4af994e038a18492c8afe0f6b97cfd1c475fe62eafe68762cf5d734dc214d",
- "sha256": "c1f4af994e038a18492c8afe0f6b97cfd1c475fe62eafe68762cf5d734dc214d"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:faebbfa7a9379fd4efddc43dc167fda055989d2936b0430e404c252a555439cc",
- "sha256": "faebbfa7a9379fd4efddc43dc167fda055989d2936b0430e404c252a555439cc"
- },
- "high_sierra": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:4cdddb22ad76cf14527347e58317caf1495dc88fdf5d6c729ac72fa2fe19dd81",
- "sha256": "4cdddb22ad76cf14527347e58317caf1495dc88fdf5d6c729ac72fa2fe19dd81"
- }
- }
- }
- },
- "ctags": {
- "version": "5.8_2",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ctags/blobs/sha256:8e8ee6051008e73c999dbc8476221f220ef87fdf9cbc409a308df6a956e114e6",
- "sha256": "8e8ee6051008e73c999dbc8476221f220ef87fdf9cbc409a308df6a956e114e6"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ctags/blobs/sha256:9986b3f6897b60cbdf5d73b4ad819d2d30726043dc0d665b77ba2def399a60b4",
- "sha256": "9986b3f6897b60cbdf5d73b4ad819d2d30726043dc0d665b77ba2def399a60b4"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ctags/blobs/sha256:2292b70a7b744c2238507417e40c2dc7273c6d919c9fe037bf668cf00863ad92",
- "sha256": "2292b70a7b744c2238507417e40c2dc7273c6d919c9fe037bf668cf00863ad92"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ctags/blobs/sha256:238b65e5e1614f1d24fd88b6741c04d1cf48fd5f5d247cdbcd1f82d5796197d5",
- "sha256": "238b65e5e1614f1d24fd88b6741c04d1cf48fd5f5d247cdbcd1f82d5796197d5"
- }
- }
- }
- },
- "docker-compose": {
- "version": "1.29.1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:8f62a4ec1e3ae543afc931483ea8cf015fc4eb8f394f84d6f57fb111723213b6",
- "sha256": "8f62a4ec1e3ae543afc931483ea8cf015fc4eb8f394f84d6f57fb111723213b6"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:14df94cf6ccb19cc0a5837b41fe56a654a8a6e3a1f339be59088976ee6b0e05b",
- "sha256": "14df94cf6ccb19cc0a5837b41fe56a654a8a6e3a1f339be59088976ee6b0e05b"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:e8691188bcc89578dce5de3ad4032c1afde7caffc436cf9fde92d1e5a4135000",
- "sha256": "e8691188bcc89578dce5de3ad4032c1afde7caffc436cf9fde92d1e5a4135000"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:95367c971090d7f01d98dcd71248c9a79106b414bbae782f3432784e5329c9e9",
- "sha256": "95367c971090d7f01d98dcd71248c9a79106b414bbae782f3432784e5329c9e9"
- }
- }
- },
- "options": {
- "link": false
- }
- },
- "doxygen": {
- "version": "1.9.1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/doxygen/blobs/sha256:2b5b2de93ac8703785860bfaf3e14f3268a07dc29bac9def13172785bcac7c5f",
- "sha256": "2b5b2de93ac8703785860bfaf3e14f3268a07dc29bac9def13172785bcac7c5f"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/doxygen/blobs/sha256:b8e1ea1bb601d8cc7cd7cf66b67a544e9e5534c2793cee5ac90bef5d076ad1e5",
- "sha256": "b8e1ea1bb601d8cc7cd7cf66b67a544e9e5534c2793cee5ac90bef5d076ad1e5"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/doxygen/blobs/sha256:10e13f7bf6977bee6487366b3fc1dc55b4c191d5d505cb816997838504b3e0a4",
- "sha256": "10e13f7bf6977bee6487366b3fc1dc55b4c191d5d505cb816997838504b3e0a4"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/doxygen/blobs/sha256:0422adc9bfa6e1558cdcca24f8f4266f0927cf4c10fe3e245fe8e3017a7717b5",
- "sha256": "0422adc9bfa6e1558cdcca24f8f4266f0927cf4c10fe3e245fe8e3017a7717b5"
- }
- }
- }
- },
- "fortune": {
- "version": "9708",
- "bottle": {
- "rebuild": 4,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:78689923b7ba4d7d5a4541a93a543effcbc7dcd722d803b47954656c92dfdeca",
- "sha256": "78689923b7ba4d7d5a4541a93a543effcbc7dcd722d803b47954656c92dfdeca"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:de301856c24aee684544214cb83474fe8237104c9cf214df6777267418b17d9f",
- "sha256": "de301856c24aee684544214cb83474fe8237104c9cf214df6777267418b17d9f"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:9d1ed340349cd7995d1308fc09fc69c3520c96b329ab881dc0d96fce914e029c",
- "sha256": "9d1ed340349cd7995d1308fc09fc69c3520c96b329ab881dc0d96fce914e029c"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:9a7a866859df246c3fe9331cb1b131562359690dbc5bfed6ee4e8f5a4585025e",
- "sha256": "9a7a866859df246c3fe9331cb1b131562359690dbc5bfed6ee4e8f5a4585025e"
- },
- "high_sierra": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:3421fe011b2f27d30ae6e56d880eba8a68cb1249d6c4cd063a04fd61022507be",
- "sha256": "3421fe011b2f27d30ae6e56d880eba8a68cb1249d6c4cd063a04fd61022507be"
- }
- }
- }
- },
- "fzf": {
- "version": "0.27.0",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:ccc3f270e04389a9cc44d37c8d91a2b7cea3eba1d43c37e89a6cabc66898e2bc",
- "sha256": "ccc3f270e04389a9cc44d37c8d91a2b7cea3eba1d43c37e89a6cabc66898e2bc"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:7b0ca0f1f3bfbdfa55c4d7b7f0c3e11b07dd52db46f1862b54b742761c59c0e3",
- "sha256": "7b0ca0f1f3bfbdfa55c4d7b7f0c3e11b07dd52db46f1862b54b742761c59c0e3"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:6a204ecb17beb7375a73569dba8c6ea1a097fa16a42b38a8fa456d205d107e7b",
- "sha256": "6a204ecb17beb7375a73569dba8c6ea1a097fa16a42b38a8fa456d205d107e7b"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:398c27f1750bec0973e9763b56194779915c2428fc6f7506392b2d30e16edb15",
- "sha256": "398c27f1750bec0973e9763b56194779915c2428fc6f7506392b2d30e16edb15"
- }
- }
- }
- },
- "gdk-pixbuf": {
- "version": "2.42.6",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gdk-pixbuf/blobs/sha256:1aa92bcea0846fe0b37a4d65bf5947f5c27ffc750a93bd94db69bfe25369fda3",
- "sha256": "1aa92bcea0846fe0b37a4d65bf5947f5c27ffc750a93bd94db69bfe25369fda3"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gdk-pixbuf/blobs/sha256:f4cf795b20c84fb5074ceeeeaf7b1d22e164b7af13adb6d0b95e3655d867fd41",
- "sha256": "f4cf795b20c84fb5074ceeeeaf7b1d22e164b7af13adb6d0b95e3655d867fd41"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gdk-pixbuf/blobs/sha256:94835aba06d5e7160fd19bb14e05d3aad2f27be4c7030c019e42208369cf6014",
- "sha256": "94835aba06d5e7160fd19bb14e05d3aad2f27be4c7030c019e42208369cf6014"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gdk-pixbuf/blobs/sha256:4bd3543b83cd74bfd0de1bd94a9e0200374c0834ef636cfe99621fe3c2145aaa",
- "sha256": "4bd3543b83cd74bfd0de1bd94a9e0200374c0834ef636cfe99621fe3c2145aaa"
- }
- }
- }
- },
- "gh": {
- "version": "1.9.2",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:bf12b5bf3ca0ca3b7ca02b21044415d3c089412f1b63210e49923176e6634647",
- "sha256": "bf12b5bf3ca0ca3b7ca02b21044415d3c089412f1b63210e49923176e6634647"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:d82df4e2be9ca5c76508c1f55d26be681153de2a99f0df92f2d145b51a15259a",
- "sha256": "d82df4e2be9ca5c76508c1f55d26be681153de2a99f0df92f2d145b51a15259a"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:0d6c1fbee481e0cde4edbaa38de0ba666636f44bbe07b5b780defc8c51f2a11a",
- "sha256": "0d6c1fbee481e0cde4edbaa38de0ba666636f44bbe07b5b780defc8c51f2a11a"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:7284e6f49adfa2655dd6bb611ef680ad2917d389d0a865398669ca98f0e7ca1d",
- "sha256": "7284e6f49adfa2655dd6bb611ef680ad2917d389d0a865398669ca98f0e7ca1d"
- }
- }
- }
- },
- "git": {
- "version": "2.31.1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:82be780c2468d4e315f861ea797e98a93084bb754d8610c06a346eea74d82150",
- "sha256": "82be780c2468d4e315f861ea797e98a93084bb754d8610c06a346eea74d82150"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:cf1fe81d5928efa530d891ec341d34c262b1eb7ea457191359476168ae323b93",
- "sha256": "cf1fe81d5928efa530d891ec341d34c262b1eb7ea457191359476168ae323b93"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:6247bd388d85b30900923c32c0cd10caf7d48d41429c8f65a780d61b493ee9a4",
- "sha256": "6247bd388d85b30900923c32c0cd10caf7d48d41429c8f65a780d61b493ee9a4"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:ff281db6c9d895705c252ab4a7798c7274df2484c8cd5f22647e76c83ceabfca",
- "sha256": "ff281db6c9d895705c252ab4a7798c7274df2484c8cd5f22647e76c83ceabfca"
- }
- }
- }
- },
- "nghttp2": {
- "version": "1.43.0",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/nghttp2/blobs/sha256:e927b6ac25987d073b7d65d87bf27b30a95cd1196ffff4b5b82bf955da42b1c7",
- "sha256": "e927b6ac25987d073b7d65d87bf27b30a95cd1196ffff4b5b82bf955da42b1c7"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/nghttp2/blobs/sha256:e6112c4ce4b08b60edbb3d7fca3e22498bbe1881bd6ca95df52b9f2726b0c62a",
- "sha256": "e6112c4ce4b08b60edbb3d7fca3e22498bbe1881bd6ca95df52b9f2726b0c62a"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/nghttp2/blobs/sha256:5db5819e321f04b2301165cc267913ceacb161faa0504f4e067e074a101871b8",
- "sha256": "5db5819e321f04b2301165cc267913ceacb161faa0504f4e067e074a101871b8"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/nghttp2/blobs/sha256:cbcac00ca57c0c71e148124ed31cf37abcd28f5adc11565fa51f9f277b401a09",
- "sha256": "cbcac00ca57c0c71e148124ed31cf37abcd28f5adc11565fa51f9f277b401a09"
- }
- }
- }
- },
- "unbound": {
- "version": "1.13.1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/unbound/blobs/sha256:ca8e29b1898957208edd7a8ea445b0d39c942815a57f428b612ff0ae636bf859",
- "sha256": "ca8e29b1898957208edd7a8ea445b0d39c942815a57f428b612ff0ae636bf859"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/unbound/blobs/sha256:c29ad2474ecb496f9e98a7389485cac2c542d8515d5fd2810bed05f206350a21",
- "sha256": "c29ad2474ecb496f9e98a7389485cac2c542d8515d5fd2810bed05f206350a21"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/unbound/blobs/sha256:0276d7a615cdd250ce1764a708c9e031c9c814f7d2c1a0f7aeb9d08166875af6",
- "sha256": "0276d7a615cdd250ce1764a708c9e031c9c814f7d2c1a0f7aeb9d08166875af6"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/unbound/blobs/sha256:27a471fe986b64f4ccd80280ba5695532ec77198542b30f0bd176cb02f07b0b8",
- "sha256": "27a471fe986b64f4ccd80280ba5695532ec77198542b30f0bd176cb02f07b0b8"
- }
- }
- }
- },
- "gnutls": {
- "version": "3.6.15",
- "bottle": {
- "rebuild": 1,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gnutls/blobs/sha256:2be786f86b84f77ce5d9c15d4f059a240b4284039109a383b3a1d47f32ace17f",
- "sha256": "2be786f86b84f77ce5d9c15d4f059a240b4284039109a383b3a1d47f32ace17f"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gnutls/blobs/sha256:72bc4290e20b342e85f6cc0e02f2d780eeff11bb1a9c40a4eb4473512ff09d9b",
- "sha256": "72bc4290e20b342e85f6cc0e02f2d780eeff11bb1a9c40a4eb4473512ff09d9b"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gnutls/blobs/sha256:774fe85d6dfd00e5882258eeaf5edc81e98bf4d074b7fe49a52bcf116e50bc8a",
- "sha256": "774fe85d6dfd00e5882258eeaf5edc81e98bf4d074b7fe49a52bcf116e50bc8a"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gnutls/blobs/sha256:0add13d231debe9e8a941f0295c09b87446127ca69bb2c67a069ac17cf6da858",
- "sha256": "0add13d231debe9e8a941f0295c09b87446127ca69bb2c67a069ac17cf6da858"
- }
- }
- }
- },
- "go": {
- "version": "1.16.3",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/go/blobs/sha256:e7c1efdd09e951eb46d01a3200b01e7fa55ce285b75470051be7fef34f4233ce",
- "sha256": "e7c1efdd09e951eb46d01a3200b01e7fa55ce285b75470051be7fef34f4233ce"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/go/blobs/sha256:ea37f33fd27369612a3e4e6db6adc46db0e8bdf6fac1332bf51bafaa66d43969",
- "sha256": "ea37f33fd27369612a3e4e6db6adc46db0e8bdf6fac1332bf51bafaa66d43969"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/go/blobs/sha256:69c28f5e60612801c66e51e93d32068f822b245ab83246cb6cb374572eb59e15",
- "sha256": "69c28f5e60612801c66e51e93d32068f822b245ab83246cb6cb374572eb59e15"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/go/blobs/sha256:bf1e90ed1680b8ee1acb49f2f99426c8a8ac3e49efd63c7f3b41e57e7214dd19",
- "sha256": "bf1e90ed1680b8ee1acb49f2f99426c8a8ac3e49efd63c7f3b41e57e7214dd19"
- }
- }
- }
- },
- "gobject-introspection": {
- "version": "1.68.0",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gobject-introspection/blobs/sha256:41f7a223a257f2da33389b61128ece298cde0c63a036ee45f78c9b65ac71ea3f",
- "sha256": "41f7a223a257f2da33389b61128ece298cde0c63a036ee45f78c9b65ac71ea3f"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gobject-introspection/blobs/sha256:bea661944345fe41b302c36402667d050dccee2f1899a729b01430325a5fc0d0",
- "sha256": "bea661944345fe41b302c36402667d050dccee2f1899a729b01430325a5fc0d0"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gobject-introspection/blobs/sha256:165846ffc3a6fbc66ff8cfc7ca40549ee5f807b5314c41501b297fe7d23d9354",
- "sha256": "165846ffc3a6fbc66ff8cfc7ca40549ee5f807b5314c41501b297fe7d23d9354"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gobject-introspection/blobs/sha256:b381b87d399e318d6ee2812d8ef92c2be6031de0f83307296a99f42d612f10ad",
- "sha256": "b381b87d399e318d6ee2812d8ef92c2be6031de0f83307296a99f42d612f10ad"
- }
- }
- }
- },
- "gource": {
- "version": "0.51_1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:82302ee7b3e01da62323d61a452fc81e5ec4fb62c2a04c8856e2f72373bf52cc",
- "sha256": "82302ee7b3e01da62323d61a452fc81e5ec4fb62c2a04c8856e2f72373bf52cc"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:bea0be45970ab69265303255911c279c2a739de3a8fd858e60ad18f1465cfc0f",
- "sha256": "bea0be45970ab69265303255911c279c2a739de3a8fd858e60ad18f1465cfc0f"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:544380bd35795b5a809d536b6458b9e4a0f8fc940f36f6f8e54255091aa98250",
- "sha256": "544380bd35795b5a809d536b6458b9e4a0f8fc940f36f6f8e54255091aa98250"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:a603e1573f244abd8bc2a8963538ca6da27fbff90e68666e752678159c215baa",
- "sha256": "a603e1573f244abd8bc2a8963538ca6da27fbff90e68666e752678159c215baa"
- },
- "high_sierra": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:9e1ed79145083e62e52f6416b08d0d80c778cae6a8ba83808fb17f841cd6c136",
- "sha256": "9e1ed79145083e62e52f6416b08d0d80c778cae6a8ba83808fb17f841cd6c136"
- }
- }
- }
- },
- "graphviz": {
- "version": "2.47.1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:d9830966d41ef07d40f0a269597051dc3bd317f1f834f8eebf220d7fee6e06cb",
- "sha256": "d9830966d41ef07d40f0a269597051dc3bd317f1f834f8eebf220d7fee6e06cb"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:41c4fe36cca429a201173d6f282bbc3e12ac9ae397736da75f2beb5c4c0d2e33",
- "sha256": "41c4fe36cca429a201173d6f282bbc3e12ac9ae397736da75f2beb5c4c0d2e33"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:4010170a67db373c8aaf6d2d4cc4767ed74963fbedf33641e672414f49af6a9b",
- "sha256": "4010170a67db373c8aaf6d2d4cc4767ed74963fbedf33641e672414f49af6a9b"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:a6dfb7964c7776134a100467120aa190fe45415b53a704b2a372d0b82e1d2bc6",
- "sha256": "a6dfb7964c7776134a100467120aa190fe45415b53a704b2a372d0b82e1d2bc6"
- }
- }
- }
- },
- "gsl": {
- "version": "2.6",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:b4d8687427eb3a7f951c211f5a0b8051ca0bbaf174e68265fb6619d43b282aeb",
- "sha256": "b4d8687427eb3a7f951c211f5a0b8051ca0bbaf174e68265fb6619d43b282aeb"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:49b52d742f10f6a62de28658419c33ab11027eef3427e81b771921bf8d068637",
- "sha256": "49b52d742f10f6a62de28658419c33ab11027eef3427e81b771921bf8d068637"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:5972e8669b2560124278b43788a002e3ff22f024c761750a1a33b41d2002f292",
- "sha256": "5972e8669b2560124278b43788a002e3ff22f024c761750a1a33b41d2002f292"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:6c88a066c85f76c93a20f6e3256fb9022d6e7db828d184be5b42fd0b322ca7b8",
- "sha256": "6c88a066c85f76c93a20f6e3256fb9022d6e7db828d184be5b42fd0b322ca7b8"
- },
- "high_sierra": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:8213b1a73d038e499223ccae6d04afe6eb2d9455e327d9558351cf47a0431b84",
- "sha256": "8213b1a73d038e499223ccae6d04afe6eb2d9455e327d9558351cf47a0431b84"
- },
- "sierra": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:8515f26e5a06a99097e87dc9b88ee79787b95448ab67f09b449aee4b0d67bdba",
- "sha256": "8515f26e5a06a99097e87dc9b88ee79787b95448ab67f09b449aee4b0d67bdba"
- }
- }
- }
- },
- "hdf5": {
- "version": "1.12.0_3",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/hdf5/blobs/sha256:49863955ae3d3bd15a1a51c736a89c5cc6928779108fdd0dff5707c8c80137ae",
- "sha256": "49863955ae3d3bd15a1a51c736a89c5cc6928779108fdd0dff5707c8c80137ae"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/hdf5/blobs/sha256:32a6a69f4524f1ff53adde0c182300d2bfeb08a2ec239b0f4ade28e77d64e471",
- "sha256": "32a6a69f4524f1ff53adde0c182300d2bfeb08a2ec239b0f4ade28e77d64e471"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/hdf5/blobs/sha256:3b2b1043a2e8b39930386a8ed1d28a8bec35fb9e791be41713d1142e5d4f5827",
- "sha256": "3b2b1043a2e8b39930386a8ed1d28a8bec35fb9e791be41713d1142e5d4f5827"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/hdf5/blobs/sha256:e43f228f5d7ab744fd3a94e2df4be1e491dd4825e208619ba8568f1778a7c268",
- "sha256": "e43f228f5d7ab744fd3a94e2df4be1e491dd4825e208619ba8568f1778a7c268"
- }
- }
- }
- },
- "htop": {
- "version": "3.0.5",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/htop/blobs/sha256:e2b32da2189775e5a303b948bf2bf86224f2850786e849371efe002402f26c6f",
- "sha256": "e2b32da2189775e5a303b948bf2bf86224f2850786e849371efe002402f26c6f"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/htop/blobs/sha256:8f4e4c5d0ee34c41e008bb9a2ed4331303a42bd594ac358a822604a145c868ea",
- "sha256": "8f4e4c5d0ee34c41e008bb9a2ed4331303a42bd594ac358a822604a145c868ea"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/htop/blobs/sha256:7dc2bf8825918876e3a853acbc9d7045786d1d418fdae2b0a4e6d4500006a08e",
- "sha256": "7dc2bf8825918876e3a853acbc9d7045786d1d418fdae2b0a4e6d4500006a08e"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/htop/blobs/sha256:a009b141dcf7b95c60da3ef685ea0736be0c0a5e1e0de0945153697c6a032e2a",
- "sha256": "a009b141dcf7b95c60da3ef685ea0736be0c0a5e1e0de0945153697c6a032e2a"
- }
- }
- }
- },
- "libheif": {
- "version": "1.11.0_2",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/libheif/blobs/sha256:6fb1565de0cf3f02dacaf0c1ca8631132900ecd2fb6511d0e1286f854e7368f9",
- "sha256": "6fb1565de0cf3f02dacaf0c1ca8631132900ecd2fb6511d0e1286f854e7368f9"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/libheif/blobs/sha256:aa29ab6b7ac495382a53400b355cc421c221f8f4aaff2a48ba2ee3a8432278be",
- "sha256": "aa29ab6b7ac495382a53400b355cc421c221f8f4aaff2a48ba2ee3a8432278be"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/libheif/blobs/sha256:04efc496cd625e79e884d7207f406bfdb06d60a5b5c347689d98b346e5bc896a",
- "sha256": "04efc496cd625e79e884d7207f406bfdb06d60a5b5c347689d98b346e5bc896a"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/libheif/blobs/sha256:46dcec99a6e08a2bf6bafafe61619074c2db05be724aade8f335e808b2c9b346",
- "sha256": "46dcec99a6e08a2bf6bafafe61619074c2db05be724aade8f335e808b2c9b346"
- }
- }
- }
- },
- "python@3.8": {
- "version": "3.8.9",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/python/3.8/blobs/sha256:e0aa205ed6ff34c99c3659490ccbc280c070dc04ac6a8d04960b36ff9076dd2e",
- "sha256": "e0aa205ed6ff34c99c3659490ccbc280c070dc04ac6a8d04960b36ff9076dd2e"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/python/3.8/blobs/sha256:6111e285226a59c3c3b0f684de2a810deb1b5b5b68e81fdafcb11f0a0b0f6606",
- "sha256": "6111e285226a59c3c3b0f684de2a810deb1b5b5b68e81fdafcb11f0a0b0f6606"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/python/3.8/blobs/sha256:65a3d5fa32b16df0886c7390e992f4948b51ce56d10e57bd05895e5795efe0fd",
- "sha256": "65a3d5fa32b16df0886c7390e992f4948b51ce56d10e57bd05895e5795efe0fd"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/python/3.8/blobs/sha256:5d408f56ab185c3e7644e6ac3fe063cc367aa14810050cd2a9297332de97f5a9",
- "sha256": "5d408f56ab185c3e7644e6ac3fe063cc367aa14810050cd2a9297332de97f5a9"
- }
- }
- }
- },
- "imagemagick": {
- "version": "7.0.11-9",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:b25d7c1b4e2f3ce252b347b4f81f98c75eb407b72bd61b9794b5486f9cf6f47b",
- "sha256": "b25d7c1b4e2f3ce252b347b4f81f98c75eb407b72bd61b9794b5486f9cf6f47b"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:7b8c370a3f4b9f07f3adcbc07cad1ee546ee5e338e8cf32e6e9810945bd2ffd1",
- "sha256": "7b8c370a3f4b9f07f3adcbc07cad1ee546ee5e338e8cf32e6e9810945bd2ffd1"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:80d743b6442e296fa8ec640fbc43ba80448794d42f96dc82a4aba3431e57f6c1",
- "sha256": "80d743b6442e296fa8ec640fbc43ba80448794d42f96dc82a4aba3431e57f6c1"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:fb0fa1a417438b1bf90829139b92a085994a5fccbbb5ea095a97cc00d381814c",
- "sha256": "fb0fa1a417438b1bf90829139b92a085994a5fccbbb5ea095a97cc00d381814c"
- }
- }
- }
- },
- "ipmitool": {
- "version": "1.8.18_3",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:3223279b0188313a5d87ede24617f6bda5921acc1ce135c30c7c43823f14913f",
- "sha256": "3223279b0188313a5d87ede24617f6bda5921acc1ce135c30c7c43823f14913f"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:6dd8c02b3e556949c98d40980dd9c1b456d1fa078d9d7792f36977e7d239a4ac",
- "sha256": "6dd8c02b3e556949c98d40980dd9c1b456d1fa078d9d7792f36977e7d239a4ac"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:926d5c49a0a1b9411e45c54e412403003266c27127059edb50b40e07adaf2260",
- "sha256": "926d5c49a0a1b9411e45c54e412403003266c27127059edb50b40e07adaf2260"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:3bf8d00d62c2e1dc781493d448062ad365ac8e7c73010ee37ba2040a48513c10",
- "sha256": "3bf8d00d62c2e1dc781493d448062ad365ac8e7c73010ee37ba2040a48513c10"
- },
- "high_sierra": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:04462f0b4129d34cbf7e8e5c72591360e89dd6d6cef20008567015d57ab611c4",
- "sha256": "04462f0b4129d34cbf7e8e5c72591360e89dd6d6cef20008567015d57ab611c4"
- },
- "sierra": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:f08f0e5717ff8ccf031ca738eb4995b39db5d37b802800b6e0b6c154f6fed830",
- "sha256": "f08f0e5717ff8ccf031ca738eb4995b39db5d37b802800b6e0b6c154f6fed830"
- }
- }
- }
- },
- "mtr": {
- "version": "0.94",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:2e6e4509d128d1f3bc7e0594c8fb12b60971780e070523a2e4d8b896507cef57",
- "sha256": "2e6e4509d128d1f3bc7e0594c8fb12b60971780e070523a2e4d8b896507cef57"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:3625ac3eeb2409adfb156194c8bda385b98ebb7afa59229e302e9e61bb897004",
- "sha256": "3625ac3eeb2409adfb156194c8bda385b98ebb7afa59229e302e9e61bb897004"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:6ec962809c1c2381b7723647e16c2283dbef8042ae04af14ad675fa63c38a859",
- "sha256": "6ec962809c1c2381b7723647e16c2283dbef8042ae04af14ad675fa63c38a859"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:6a768b9cd07026aec0276742fd3fb6723c0f545a8498dff1ab3bb5b9e23e85e0",
- "sha256": "6a768b9cd07026aec0276742fd3fb6723c0f545a8498dff1ab3bb5b9e23e85e0"
- },
- "high_sierra": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:9c9a9c995360d16581ef42b0a729a5d3c152e7195bcc88910cda9bd9315c3299",
- "sha256": "9c9a9c995360d16581ef42b0a729a5d3c152e7195bcc88910cda9bd9315c3299"
- }
- }
- }
- },
- "ncdu": {
- "version": "1.15.1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:26eb6537a378702dc900546a2069472b51822fe086f380d0793c29adcc71166f",
- "sha256": "26eb6537a378702dc900546a2069472b51822fe086f380d0793c29adcc71166f"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:0761e7d2ca14605c0b5d122521c5f9d63f536fd37bb3cf46ae1367b36d4f166f",
- "sha256": "0761e7d2ca14605c0b5d122521c5f9d63f536fd37bb3cf46ae1367b36d4f166f"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:994f7f4e9624a0984ec7c37b5b15b9ae5c24663ebffaba19b0979f4e99919fee",
- "sha256": "994f7f4e9624a0984ec7c37b5b15b9ae5c24663ebffaba19b0979f4e99919fee"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:f7908eaf47c7842b15e56e17279583f4c938a9c920e1bae41f05d3e5506a99fb",
- "sha256": "f7908eaf47c7842b15e56e17279583f4c938a9c920e1bae41f05d3e5506a99fb"
- },
- "high_sierra": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:d094385dbfd71831c5f2b03f0817a06df9471a44f5437aaf577676d2723bc865",
- "sha256": "d094385dbfd71831c5f2b03f0817a06df9471a44f5437aaf577676d2723bc865"
- }
- }
- }
- },
- "neovim": {
- "version": "0.4.4_2",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/neovim/blobs/sha256:9e24789f21eba59817331f583622d5594598162de01eeac4abfdeacdee67f7a9",
- "sha256": "9e24789f21eba59817331f583622d5594598162de01eeac4abfdeacdee67f7a9"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/neovim/blobs/sha256:33fd21ea56ff618b9840e4ca87ddf2b0450f73dff8f39eed163052e171395bdb",
- "sha256": "33fd21ea56ff618b9840e4ca87ddf2b0450f73dff8f39eed163052e171395bdb"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/neovim/blobs/sha256:e2d64684c43eb19390975d6434e2845f98f9e0f0f91c00b1277750c36bdf0676",
- "sha256": "e2d64684c43eb19390975d6434e2845f98f9e0f0f91c00b1277750c36bdf0676"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/neovim/blobs/sha256:e6e9437addbf446ed88518784f461a0bdb9c578b6779f3353e066a4491b52465",
- "sha256": "e6e9437addbf446ed88518784f461a0bdb9c578b6779f3353e066a4491b52465"
- }
- }
- }
- },
- "node": {
- "version": "16.0.0_1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/node/blobs/sha256:1e8f57059c81e915a269034a093db9e119e6c3510762b338b7959c371ab6eca5",
- "sha256": "1e8f57059c81e915a269034a093db9e119e6c3510762b338b7959c371ab6eca5"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/node/blobs/sha256:fcbfec8e0a91d9013bd1d944c75085c076442c1e804e2c5b1f41057700adaaae",
- "sha256": "fcbfec8e0a91d9013bd1d944c75085c076442c1e804e2c5b1f41057700adaaae"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/node/blobs/sha256:f2529dfd77086b031a469b4c910ca70feba5e3d6947ca387dedd8fc69cb30da2",
- "sha256": "f2529dfd77086b031a469b4c910ca70feba5e3d6947ca387dedd8fc69cb30da2"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/node/blobs/sha256:bd9fd9ac3e62b8c2309a1d25659a4f3920a918413321280426de8e6d8fac6de0",
- "sha256": "bd9fd9ac3e62b8c2309a1d25659a4f3920a918413321280426de8e6d8fac6de0"
- }
- }
- }
- },
- "numpy": {
- "version": "1.20.2",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/numpy/blobs/sha256:c2904e46fb22bc5d067c1c26deb07747f488721f734dce29d5cd049ce9684701",
- "sha256": "c2904e46fb22bc5d067c1c26deb07747f488721f734dce29d5cd049ce9684701"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/numpy/blobs/sha256:ae10cdd3dc05c9c76feef50b2ee8365b49b2c1b6efbe3e134d4390c4e82ed602",
- "sha256": "ae10cdd3dc05c9c76feef50b2ee8365b49b2c1b6efbe3e134d4390c4e82ed602"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/numpy/blobs/sha256:e839ede282c17544b4905ad6c1c6cb89333ecf5ce15624bffeac153684e6497c",
- "sha256": "e839ede282c17544b4905ad6c1c6cb89333ecf5ce15624bffeac153684e6497c"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/numpy/blobs/sha256:877c88acd1d80ec7d5c4f6fe5fbe1f41b0d1f987ced4f7e4a5b968544ba7f17c",
- "sha256": "877c88acd1d80ec7d5c4f6fe5fbe1f41b0d1f987ced4f7e4a5b968544ba7f17c"
- }
- }
- },
- "options": {
- "link": false
- }
- },
- "pandoc": {
- "version": "2.13",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/pandoc/blobs/sha256:05bed41434d9678edf93ec4d7ffa905f248eb33c2c4cf8cedf89808be252c904",
- "sha256": "05bed41434d9678edf93ec4d7ffa905f248eb33c2c4cf8cedf89808be252c904"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/pandoc/blobs/sha256:b56dfd209f84ae6e7b937f45d819b6065b6bae41e21c2b983b681f695f9379a7",
- "sha256": "b56dfd209f84ae6e7b937f45d819b6065b6bae41e21c2b983b681f695f9379a7"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/pandoc/blobs/sha256:877e64b3618740f71f3685b10df8f63eb5616110b6632d1d405aa308a140aaf3",
- "sha256": "877e64b3618740f71f3685b10df8f63eb5616110b6632d1d405aa308a140aaf3"
- }
- }
- }
- },
- "postgresql": {
- "version": "13.2_2",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/postgresql/blobs/sha256:5bb80b319443cc57a44a9a9a8507a5255728d2caf359ef7e931c79c2c833b900",
- "sha256": "5bb80b319443cc57a44a9a9a8507a5255728d2caf359ef7e931c79c2c833b900"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/postgresql/blobs/sha256:ee460f1f8beb4d877121faf4ebcbf8069f86a8ef4ae05fa342bc2fcdde75bb47",
- "sha256": "ee460f1f8beb4d877121faf4ebcbf8069f86a8ef4ae05fa342bc2fcdde75bb47"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/postgresql/blobs/sha256:1f50565ab7a703d85ecc37179e8d461dc82de4e3e6266ba085dd19a0b95ed5db",
- "sha256": "1f50565ab7a703d85ecc37179e8d461dc82de4e3e6266ba085dd19a0b95ed5db"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/postgresql/blobs/sha256:c0a5828cb5caef09e7b4acd99b450b6d4ceb3a0d265a95b147e63e23fb6f7596",
- "sha256": "c0a5828cb5caef09e7b4acd99b450b6d4ceb3a0d265a95b147e63e23fb6f7596"
- }
- }
- }
- },
- "pv": {
- "version": "1.6.6",
- "bottle": {
- "rebuild": 1,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/pv/blobs/sha256:9fa320894a6ae215794b2952ea60165dcfb63bdf3dda557a1998daaf5304df6b",
- "sha256": "9fa320894a6ae215794b2952ea60165dcfb63bdf3dda557a1998daaf5304df6b"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/pv/blobs/sha256:9a0c1c557a100dfb114c8fb3566c97f8d91c436fcc6f9f36a733f462945e4f95",
- "sha256": "9a0c1c557a100dfb114c8fb3566c97f8d91c436fcc6f9f36a733f462945e4f95"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/pv/blobs/sha256:9bb586c4dab67989e7fa800e7c764d1d4ee153db8ad7a5ed3563270ca93a7497",
- "sha256": "9bb586c4dab67989e7fa800e7c764d1d4ee153db8ad7a5ed3563270ca93a7497"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/pv/blobs/sha256:1877dffe8804fac2fe6f77582100e2b5ea3fbb7a305c1cfd025e251ede08c98e",
- "sha256": "1877dffe8804fac2fe6f77582100e2b5ea3fbb7a305c1cfd025e251ede08c98e"
- }
- }
- }
- },
- "pyenv": {
- "version": "1.2.26_1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/pyenv/blobs/sha256:578377fa7a5d5ea8f97f6c655acc6fccec8c3c06358e2ba215537c6b8716887b",
- "sha256": "578377fa7a5d5ea8f97f6c655acc6fccec8c3c06358e2ba215537c6b8716887b"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/pyenv/blobs/sha256:a576725ca556c6302aa294f520a432955ec440e7473550aa77066753cd3da1ca",
- "sha256": "a576725ca556c6302aa294f520a432955ec440e7473550aa77066753cd3da1ca"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/pyenv/blobs/sha256:770ab4ed7db3ac4a3773f75ff35ab8cf058dacc062fe0caeb48c73f0987f6530",
- "sha256": "770ab4ed7db3ac4a3773f75ff35ab8cf058dacc062fe0caeb48c73f0987f6530"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/pyenv/blobs/sha256:7ab8fc0727ba144ae88ab2274b7c168e4c873c5d24030223ba9b517524fee436",
- "sha256": "7ab8fc0727ba144ae88ab2274b7c168e4c873c5d24030223ba9b517524fee436"
- }
- }
- }
- },
- "ruby-build": {
- "version": "20210423",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "all": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/ruby-build/blobs/sha256:2541d7df4ff00fa77b285d92bdb3f7d0b449306cef1379a6663d6bd7445af301",
- "sha256": "2541d7df4ff00fa77b285d92bdb3f7d0b449306cef1379a6663d6bd7445af301"
- }
- }
- }
- },
- "rbenv": {
- "version": "1.1.2",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:19d0b9e3b11bcacdf692e78248c1b5764f7d3f4b58f2b83ad7b39562863ba82e",
- "sha256": "19d0b9e3b11bcacdf692e78248c1b5764f7d3f4b58f2b83ad7b39562863ba82e"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:60b045c8843745c45d01616ee3f71b91f6a16ee09c47e23a7817a3edabeaccfd",
- "sha256": "60b045c8843745c45d01616ee3f71b91f6a16ee09c47e23a7817a3edabeaccfd"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:503ed6d818502f00f031b9f49461934e252b9bfba2876e90a326fc27bb1052d6",
- "sha256": "503ed6d818502f00f031b9f49461934e252b9bfba2876e90a326fc27bb1052d6"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:d1019098dee8d037587069398e5ad04e6d736f834dc44ae73943bec46b10b260",
- "sha256": "d1019098dee8d037587069398e5ad04e6d736f834dc44ae73943bec46b10b260"
- },
- "high_sierra": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:b5984102794a9d39388ca1f6ec77965aeea29b971cc00cb5af8ede8ee6c926d6",
- "sha256": "b5984102794a9d39388ca1f6ec77965aeea29b971cc00cb5af8ede8ee6c926d6"
- },
- "sierra": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:873175a851e5aa4f5b3438072030b945c252f08a9a07760c64dc045e2cce4724",
- "sha256": "873175a851e5aa4f5b3438072030b945c252f08a9a07760c64dc045e2cce4724"
- }
- }
- }
- },
- "root": {
- "version": "6.22.08",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/root/blobs/sha256:6a4af2c361ac4f65f523b5487a93afe1ff7ea3939997bd376d6971a1de6dd1fb",
- "sha256": "6a4af2c361ac4f65f523b5487a93afe1ff7ea3939997bd376d6971a1de6dd1fb"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/root/blobs/sha256:6f3b9e7ce0cc079488e9e4b9d6ca8a0b948c0d605887ff95f40a881c0645a1b6",
- "sha256": "6f3b9e7ce0cc079488e9e4b9d6ca8a0b948c0d605887ff95f40a881c0645a1b6"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/root/blobs/sha256:7fdc50aa5b0b2889c0b93f77c8dad5b8f838b924663f4d5b38fe2f423ef6effd",
- "sha256": "7fdc50aa5b0b2889c0b93f77c8dad5b8f838b924663f4d5b38fe2f423ef6effd"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/root/blobs/sha256:385d6278a1dd4c09fd1031b8c443e19b7ec4482ad85105c0d0f06bc6dea60229",
- "sha256": "385d6278a1dd4c09fd1031b8c443e19b7ec4482ad85105c0d0f06bc6dea60229"
- }
- }
- }
- },
- "rsync": {
- "version": "3.2.3",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:05437fe41f5c05db284cb9b70c14ad47071976d3720d2148b62f83a2bfb0391a",
- "sha256": "05437fe41f5c05db284cb9b70c14ad47071976d3720d2148b62f83a2bfb0391a"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:def7f5cd96f4abc05ef344a16c084c11879dca54b91ea5dd56a6de63298cc1dd",
- "sha256": "def7f5cd96f4abc05ef344a16c084c11879dca54b91ea5dd56a6de63298cc1dd"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:fd92045e16b9b83ab6c281a1e658e27731ef9af53fcb6bb7ce6b9533851e728e",
- "sha256": "fd92045e16b9b83ab6c281a1e658e27731ef9af53fcb6bb7ce6b9533851e728e"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:1be1e9754c4f4a4b043aece33299d90f50d01274682f63c29eca7d9bcb8a2090",
- "sha256": "1be1e9754c4f4a4b043aece33299d90f50d01274682f63c29eca7d9bcb8a2090"
- },
- "high_sierra": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:5cf9c6e0014687c4abb4044e7f5e12d5d453b81c5dbadd472438b4131c655a1f",
- "sha256": "5cf9c6e0014687c4abb4044e7f5e12d5d453b81c5dbadd472438b4131c655a1f"
- }
- }
- }
- },
- "rust": {
- "version": "1.51.0",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:194906f669b54ba323143a02595dbdec6788236b52099e4145e4fac2340c27ce",
- "sha256": "194906f669b54ba323143a02595dbdec6788236b52099e4145e4fac2340c27ce"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:f792ca45d01d474f51a4b2261713aa36d55a9b0ce60329d5a563f9a761f26dd8",
- "sha256": "f792ca45d01d474f51a4b2261713aa36d55a9b0ce60329d5a563f9a761f26dd8"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:680b81ddcee5049e511b1d5b5da7e8be74df351de96317d033f81c01ab7858cb",
- "sha256": "680b81ddcee5049e511b1d5b5da7e8be74df351de96317d033f81c01ab7858cb"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:d33f8c8aac0b0d6e3527048fd7f687074046d5ce2d5f84af4c741af5e601e517",
- "sha256": "d33f8c8aac0b0d6e3527048fd7f687074046d5ce2d5f84af4c741af5e601e517"
- }
- }
- }
- },
- "snappy": {
- "version": "1.1.8",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:f6d2b583adf7f67e01d6399acfd8960929df9ffeb8fb8a93e4570af4da9b799f",
- "sha256": "f6d2b583adf7f67e01d6399acfd8960929df9ffeb8fb8a93e4570af4da9b799f"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:b3ebf378db9b345341fc4695d1c6834433bd729a471d60b4f34306823312c464",
- "sha256": "b3ebf378db9b345341fc4695d1c6834433bd729a471d60b4f34306823312c464"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:b15a258346dc93bd5c6900a405ccb2e9e02ebfeb5b16607b340cc6a5a021eba3",
- "sha256": "b15a258346dc93bd5c6900a405ccb2e9e02ebfeb5b16607b340cc6a5a021eba3"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:e996c3b0dfac02c8cdd06d849db47e853800389ff7d18fa66526d7d51d305589",
- "sha256": "e996c3b0dfac02c8cdd06d849db47e853800389ff7d18fa66526d7d51d305589"
- },
- "high_sierra": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:77276307037cc20bf44c86fef60b1745c1d8f84d6f963332535b34868f5fc2b4",
- "sha256": "77276307037cc20bf44c86fef60b1745c1d8f84d6f963332535b34868f5fc2b4"
- }
- }
- }
- },
- "sshuttle": {
- "version": "1.0.5",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/sshuttle/blobs/sha256:d567ae9a98102b13d91ee38945352677712db52539892713315ad0b1c5a3649a",
- "sha256": "d567ae9a98102b13d91ee38945352677712db52539892713315ad0b1c5a3649a"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/sshuttle/blobs/sha256:c9e76a2c946a5093591707b85b66c8201b693af597f79534d14d2e6101e20cff",
- "sha256": "c9e76a2c946a5093591707b85b66c8201b693af597f79534d14d2e6101e20cff"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/sshuttle/blobs/sha256:b80986476eb84c3cded3910bb7ef5210407cadf6716b277e8d3341c9413be7a8",
- "sha256": "b80986476eb84c3cded3910bb7ef5210407cadf6716b277e8d3341c9413be7a8"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/sshuttle/blobs/sha256:5f3e98db1083312557436f54752aa0eb0d300dadb66a73cecb228b892578617c",
- "sha256": "5f3e98db1083312557436f54752aa0eb0d300dadb66a73cecb228b892578617c"
- }
- }
- }
- },
- "task": {
- "version": "2.5.3",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/task/blobs/sha256:188f5f1a5dda2cff99e1adf0be22980f5cfa72b3dbffdbef8d9648e65ce23641",
- "sha256": "188f5f1a5dda2cff99e1adf0be22980f5cfa72b3dbffdbef8d9648e65ce23641"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/task/blobs/sha256:13cbe306b15eda0b1a2edd707f3c1e2a18759bfa2613a4a5909f5945c7ac367c",
- "sha256": "13cbe306b15eda0b1a2edd707f3c1e2a18759bfa2613a4a5909f5945c7ac367c"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/task/blobs/sha256:6b15062cfa4e67ba49cd6bcb88a1be453e49b86f4ab680acb171fe98e01e256b",
- "sha256": "6b15062cfa4e67ba49cd6bcb88a1be453e49b86f4ab680acb171fe98e01e256b"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/task/blobs/sha256:8ea578cb22e2a379478111ca18c735482c264a46d3733a866cfc959ce344c4f4",
- "sha256": "8ea578cb22e2a379478111ca18c735482c264a46d3733a866cfc959ce344c4f4"
- }
- }
- }
- },
- "tcptrace": {
- "version": "6.6.7",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:64787cc311c9da8d2090af5732efbe42f74c6dc5037b2b7ecb7055485603f20d",
- "sha256": "64787cc311c9da8d2090af5732efbe42f74c6dc5037b2b7ecb7055485603f20d"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:a1a61bd690da912afedd38f62eac7d5a1724c1ce68c68e7bcd8576e3fb86d956",
- "sha256": "a1a61bd690da912afedd38f62eac7d5a1724c1ce68c68e7bcd8576e3fb86d956"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:b927868b2addc93b296fb8f31b08147014e9a81a356d4f18b0d4134db40081de",
- "sha256": "b927868b2addc93b296fb8f31b08147014e9a81a356d4f18b0d4134db40081de"
- },
- "high_sierra": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:39916506fcd6385aee6375813128a126a84f947623594011f6c2c9df1b6dc8b2",
- "sha256": "39916506fcd6385aee6375813128a126a84f947623594011f6c2c9df1b6dc8b2"
- },
- "sierra": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:7ccc5e6859be970a5a8a064630704111d37b03a7e3cf3a9874e16a60e4abe02b",
- "sha256": "7ccc5e6859be970a5a8a064630704111d37b03a7e3cf3a9874e16a60e4abe02b"
- },
- "el_capitan": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:e46775d7cc808b5b52a0a36a33142b824a9b2d8bce5b0557bc1041c2e55c5ffb",
- "sha256": "e46775d7cc808b5b52a0a36a33142b824a9b2d8bce5b0557bc1041c2e55c5ffb"
- },
- "yosemite": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:f9de7ef41a2b9dc8daee1fddef1035ddf6a08cf473b6edafcf4bb069ab5f0052",
- "sha256": "f9de7ef41a2b9dc8daee1fddef1035ddf6a08cf473b6edafcf4bb069ab5f0052"
- }
- }
- }
- },
- "tmux": {
- "version": "3.2",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:e1a77dad76e3fadd5202a4d86cfff9cd2669f9c68c08c2a982c6ed10d9054136",
- "sha256": "e1a77dad76e3fadd5202a4d86cfff9cd2669f9c68c08c2a982c6ed10d9054136"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:f71d53c8050adaa30a80686879474421b8353c4edc9f0544823b8fc4eccb3b04",
- "sha256": "f71d53c8050adaa30a80686879474421b8353c4edc9f0544823b8fc4eccb3b04"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:b871bb882d9d1336e2826d3bf569c8a7678e623f3854ac0a03b67ee634718213",
- "sha256": "b871bb882d9d1336e2826d3bf569c8a7678e623f3854ac0a03b67ee634718213"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:231ea0bb8604dc2970cd5ff6066b71485d70951a37f69cfb597b37bc81a9168a",
- "sha256": "231ea0bb8604dc2970cd5ff6066b71485d70951a37f69cfb597b37bc81a9168a"
- }
- }
- }
- },
- "vagrant-completion": {
- "version": "2.2.15",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "all": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/vagrant-completion/blobs/sha256:86892550f499bf4098dca6784245a7652f11dfdb9675b2af4e951f6d29d3068f",
- "sha256": "86892550f499bf4098dca6784245a7652f11dfdb9675b2af4e951f6d29d3068f"
- }
- }
- }
- },
- "watch": {
- "version": "3.3.17",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:45b90fbbda918d2c87ef6ccc29f1d931cbd0a490f2b1d599444591aae04a3cb0",
- "sha256": "45b90fbbda918d2c87ef6ccc29f1d931cbd0a490f2b1d599444591aae04a3cb0"
- },
- "big_sur": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:251b920890874ad798cf01c4c52564c720f785ce8184ae41181654b8f65e592b",
- "sha256": "251b920890874ad798cf01c4c52564c720f785ce8184ae41181654b8f65e592b"
- },
- "catalina": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:05698a04a502ac32c97e0de0d9f00ac7c7450afd5d42b85d8ce1cd55d010fff3",
- "sha256": "05698a04a502ac32c97e0de0d9f00ac7c7450afd5d42b85d8ce1cd55d010fff3"
- },
- "mojave": {
- "cellar": ":any",
- "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:d2ce790ff9e073d04615051cd94dce4e06d37993de21894a64d4a23b7dfe5ea5",
- "sha256": "d2ce790ff9e073d04615051cd94dce4e06d37993de21894a64d4a23b7dfe5ea5"
- }
- }
- }
- },
- "youtube-dl": {
- "version": "2021.4.26",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/youtube-dl/blobs/sha256:9f7157a62d4e169f6ecc7c5ad37673af375a0a25fb98a18b78df14e8bfc9e9e0",
- "sha256": "9f7157a62d4e169f6ecc7c5ad37673af375a0a25fb98a18b78df14e8bfc9e9e0"
- },
- "big_sur": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/youtube-dl/blobs/sha256:fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88",
- "sha256": "fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88"
- },
- "catalina": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/youtube-dl/blobs/sha256:fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88",
- "sha256": "fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88"
- },
- "mojave": {
- "cellar": ":any_skip_relocation",
- "url": "https://ghcr.io/v2/homebrew/core/youtube-dl/blobs/sha256:fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88",
- "sha256": "fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88"
- }
- }
- }
- },
- "zsh": {
- "version": "5.8_1",
- "bottle": {
- "rebuild": 0,
- "root_url": "https://ghcr.io/v2/homebrew/core",
- "files": {
- "arm64_big_sur": {
- "cellar": "/opt/homebrew/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:01ae59e3ea21dd7691120aec89552e4f4c10c6489a24b9cc23256129e3cbe7b6",
- "sha256": "01ae59e3ea21dd7691120aec89552e4f4c10c6489a24b9cc23256129e3cbe7b6"
- },
- "big_sur": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:a93717bcbb1a41829ac7549f7dea0e2be4bb11985be734f03801150338d6b8e6",
- "sha256": "a93717bcbb1a41829ac7549f7dea0e2be4bb11985be734f03801150338d6b8e6"
- },
- "catalina": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:aaf19f69f79ac2ef80ff31d3b2f0017f400bf40022f8626d5ae046990961a5f5",
- "sha256": "aaf19f69f79ac2ef80ff31d3b2f0017f400bf40022f8626d5ae046990961a5f5"
- },
- "mojave": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:a40a54e4b686eb75f04e7dcc57391245a4f6b08a39825f7f6ebc9f76ebcbff46",
- "sha256": "a40a54e4b686eb75f04e7dcc57391245a4f6b08a39825f7f6ebc9f76ebcbff46"
- },
- "high_sierra": {
- "cellar": "/usr/local/Cellar",
- "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:edfbc09a9571fadf351e0f94e545a88aa33763518a3330c0bae497a6a259d63f",
- "sha256": "edfbc09a9571fadf351e0f94e545a88aa33763518a3330c0bae497a6a259d63f"
- }
- }
- }
- },
- "zsh-completions": {
- "version": "0.32.0",
- "bottle": false
- }
- },
- "cask": {
- "aerial": {
- "version": "2.3.1",
- "options": {
- "full_name": "aerial"
- }
- },
- "amethyst": {
- "version": "0.15.4",
- "options": {
- "full_name": "amethyst"
- }
- },
- "autodesk-fusion360": {
- "version": "latest",
- "options": {
- "full_name": "autodesk-fusion360"
- }
- },
- "coconutbattery": {
- "version": "3.9.5,f4c29259",
- "options": {
- "full_name": "coconutbattery"
- }
- },
- "deepl": {
- "version": "2.3.41773",
- "options": {
- "full_name": "deepl"
- }
- },
- "discord": {
- "version": "0.0.262",
- "options": {
- "full_name": "discord"
- }
- },
- "docker": {
- "version": "3.3.1,63152",
- "options": {
- "full_name": "docker"
- }
- },
- "drawio": {
- "version": "14.5.1",
- "options": {
- "full_name": "drawio"
- }
- },
- "dropbox": {
- "version": "121.4.4267",
- "options": {
- "full_name": "dropbox"
- }
- },
- "enpass": {
- "version": "6.6.1.809",
- "options": {
- "full_name": "enpass"
- }
- },
- "firefox": {
- "version": "88.0",
- "options": {
- "full_name": "firefox"
- }
- },
- "font-fira-code": {
- "version": "5.2",
- "options": {
- "full_name": "font-fira-code"
- }
- },
- "font-fira-mono": {
- "version": "3.206,4.202",
- "options": {
- "full_name": "font-fira-mono"
- }
- },
- "font-fira-mono-for-powerline": {
- "version": "latest",
- "options": {
- "full_name": "font-fira-mono-for-powerline"
- }
- },
- "font-fira-sans": {
- "version": "4.202",
- "options": {
- "full_name": "font-fira-sans"
- }
- },
- "font-hack-nerd-font": {
- "version": "2.1.0",
- "options": {
- "full_name": "font-hack-nerd-font"
- }
- },
- "font-sauce-code-pro-nerd-font": {
- "version": "2.1.0",
- "options": {
- "full_name": "font-sauce-code-pro-nerd-font"
- }
- },
- "font-saucecodepro-nerd-font": {
- "version": "2.1.0",
- "options": {
- "full_name": "font-saucecodepro-nerd-font"
- }
- },
- "google-earth-pro": {
- "version": "7.3.3.7786",
- "options": {
- "full_name": "google-earth-pro"
- }
- },
- "inkscape": {
- "version": "1.0.2",
- "options": {
- "full_name": "inkscape"
- }
- },
- "insomnia": {
- "version": "2021.3.0",
- "options": {
- "full_name": "insomnia"
- }
- },
- "iterm2": {
- "version": "3.4.6",
- "options": {
- "full_name": "iterm2"
- }
- },
- "jitsi-meet": {
- "version": "2.8.5",
- "options": {
- "full_name": "jitsi-meet"
- }
- },
- "keepassxc": {
- "version": "2.6.4",
- "options": {
- "full_name": "keepassxc"
- }
- },
- "libreoffice": {
- "version": "7.1.2",
- "options": {
- "full_name": "libreoffice"
- }
- },
- "lunar": {
- "version": "3.2.3",
- "options": {
- "full_name": "lunar"
- }
- },
- "macfuse": {
- "version": "4.1.0",
- "options": {
- "full_name": "macfuse"
- }
- },
- "mactex": {
- "version": "2021.0328",
- "options": {
- "full_name": "mactex"
- }
- },
- "mattermost": {
- "version": "4.6.2",
- "options": {
- "full_name": "mattermost"
- }
- },
- "nextcloud": {
- "version": "3.2.0",
- "options": {
- "full_name": "nextcloud"
- }
- },
- "pingplotter": {
- "version": "5.19.5,6802",
- "options": {
- "full_name": "pingplotter"
- }
- },
- "qlmarkdown": {
- "version": "1.3.6",
- "options": {
- "full_name": "qlmarkdown"
- }
- },
- "qlstephen": {
- "version": "1.5.1",
- "options": {
- "full_name": "qlstephen"
- }
- },
- "rocket-chat": {
- "version": "3.1.1",
- "options": {
- "full_name": "rocket-chat"
- }
- },
- "skim": {
- "version": "1.6.3,133",
- "options": {
- "full_name": "skim"
- }
- },
- "spotify": {
- "version": "1.1.57.443.ga029a6c4,1.1.57.443.ga029a6c4-46",
- "options": {
- "full_name": "spotify"
- }
- },
- "telegram": {
- "version": "7.7.215786",
- "options": {
- "full_name": "telegram"
- }
- },
- "tomighty": {
- "version": "1.2",
- "options": {
- "full_name": "tomighty"
- }
- },
- "vagrant": {
- "version": "2.2.15",
- "options": {
- "full_name": "vagrant"
- }
- },
- "virtualbox": {
- "version": "6.1.20,143896",
- "options": {
- "full_name": "virtualbox"
- }
- },
- "xquartz": {
- "version": "2.8.1",
- "options": {
- "full_name": "xquartz"
- }
- }
- }
- },
- "system": {
- "macos": {
- "big_sur": {
- "HOMEBREW_VERSION": "3.1.4",
- "HOMEBREW_PREFIX": "/usr/local",
- "Homebrew/homebrew-core": "a469d3bb2a7aee100073fb8ebd32bfd619a0ff3c",
- "CLT": "12.4.0.0.1.1610135815",
- "Xcode": "12.4",
- "macOS": "11.2.3"
- }
- }
- }
- }
|