SHOWING: First 60
word, and the second is the number of times it appears in the corpus. The
entries are sorted from least-frequently occurring to most-frequently
occurring.
`frequency.tsv` was compiled using [this
program](https://github.com/casey/onegrams).
To search an `ord` wallet for sats with a name in `frequency.tsv`, use the
following [`ord`](https://github.com/ordinals/ord) command:
```
ord wallet sats --tsv frequency.tsv
```
This command requires the sat index, so `--index-sats` must be passed to ord
when first creating the index.
### Part 0
*Rare sats pair best with rare words.*
The transaction that submits the UTXO containing the sat whose name appears
with the lowest number of occurrences in `frequency.tsv` shall be the winner of
part 0.
### Part 1
*Popularity is the font of value.*
The transaction that submits the UTXO containing the sat whose name appears
with the highest number of occurrences in `frequency.tsv` shall be the winner
of part 1.
### Tie Breaking
In the case of a tie, where two submissions occur with the same frequency, the
#45,023,835textchromicized 5256
divaricatus 5256
doubleentry 5256
empathising 5256
australiens 5257
fruhstorfer 5257
expositione 5258
detrimentum 5260
lntelligent 5260
necessarias 5260
arthrodires 5261
euchologion 5261
mingrelians 5261
continuando 5263
dendrobates 5263
gliickliche 5263
idololatria 5263
intercrural 5263
neuroimmune 5263
landcruiser 5266
guilderland 5268
basophilism 5270
djokjakarta 5270
framebuffer 5271
applikation 5272
beneficiall 5272
nightlights 5272
authorizers 5273
clusterhead 5274
ameublement 5275
fanfaronade 5276
heterodyned 5276
landwirtsch 5276
microsilica 5276
homologated 5277
lightfooted 5277
equisetales 5278
coconscious 5279
foulweather 5280
cefpodoxime 5281
archeologic 5283
bellegardes 5286
horsemonger 5286
interpretar 5286
agroforests 5287
nonlicensed 5287
fleshliness 5288
chvalkovsky 5289
blueschists 5291
corporatlon 5292
graefenberg 5293
amphisbaena 5294
ballinamuck 5294
individuali 5294
knobkerries 5294
lnventories 5294
nonstrikers 5294
churriguera 5296
cankerworms 5297
cerargyrite 5298
ksitigarbha 5298
#45,000,573text };
builder.generator(Some("ord".to_string()));
for (number, id) in index.get_feed_inscriptions(300)? {
builder.item(
rss::ItemBuilder::default()
.title(Some(format!("Inscription {number}")))
.link(Some(format!("/inscription/{id}")))
.guid(Some(rss::Guid {
value: format!("/inscription/{id}"),
permalink: true,
}))
.build(),
);
}
Ok(
(
[
(header::CONTENT_TYPE, "application/rss+xml"),
(
header::CONTENT_SECURITY_POLICY,
"default-src 'unsafe-inline'",
),
],
builder.build().to_string(),
)
.into_response(),
)
}
async fn static_asset(Path(path): Path<String>) -> ServerResult<Response> {
let content = StaticAssets::get(if let Some(stripped) = path.strip_prefix('/') {
stripped
} else {
&path
})
.ok_or_not_found(|| format!("asset {path}"))?;
let body = body::boxed(body::Full::from(content.data));
#44,996,763text