alt.hn

5/20/2025 at 7:58:27 PM

Litestream: Revamped

https://fly.io/blog/litestream-revamped/

by usrme

5/20/2025 at 8:12:44 PM

Looks like the code is here: https://github.com/benbjohnson/litestream/tree/v0.5

Really nice to see this, I wrote this comment almost 2 years ago when I was a little miffed about trying to use litestream and litefs: https://news.ycombinator.com/item?id=37614193

I think this solves most of the issues? You can now freely run litestream on your DB and not worry about issues with multiple writers? I wonder how the handoff is handled.

The read replica FUSE layer sounds like a real nice thing to have.

edit: Ah, it works like this: https://github.com/benbjohnson/litestream/pull/617

> When another Litestream process starts up and sees an existing lease, it will continually retry the lease acquisition every second until it succeeds. This low retry interval allows for rolling restarts to come online quickly.

Sounds workable!

by maxmcd

5/20/2025 at 9:01:12 PM

This post is like they read my mind and implemented everything I wanted from a new Litestream. So exciting.

by simonw

5/20/2025 at 10:37:48 PM

ben, thanks for litestream!

we're using it on production for a write-heavy interal use-case (~12GB compressed) for more than a year now; and it's costing us a couple hundred pennies per month (azure).

excited to try the new changes when they land.

by thewisenerd

5/22/2025 at 12:53:18 AM

Mind sharing some of your operational choices for hosting/deployment? Which Azure services are you using and what configurations? What kind of throughput are you getting? Any tips regarding migrations? Are you using a dedicated server or VPS?

I'll be doing a similar deployment later this year and enjoy reading on the topic.

by tmpz22

5/23/2025 at 7:46:07 AM

for this particular deployment;

we're only using the blob storage on azure. the deployments are on an on-prem kubernetes cluster with replicas=1 and strategy: recreate.

throughput: not very heavy tbf.. one webhook request every 10-ish seconds; each request leads to about 10-100+ entries added in a table.

migrations: since it's an internal console, we just took a couple hours downtime and did it.

by thewisenerd

5/20/2025 at 10:34:15 PM

I wish Fly would polish the developer experience on top of SQLite. They're close, but it's missing:

1. A built-in UI and CLI that manages SQLite from a volume. Getting the initial database on a Fly Machine requires more work than it should.

2. `fly console` doesn't work with SQLite because it spins up a separate machine, which isn't connected to the same volume where the SQLite data resides. Instead you have to know to run `fly ssh console —pty`, which effectively SSH's into the machine with the database.

The problem in general with SQLite web apps is they tend to be small apps, so you need a lot of them to make a decent amount of money hosting them.

by bradgessler

5/21/2025 at 1:53:54 AM

Brad, what’s your take on Rails 8 w/ SQLite? Are you gravitating towards it these days over Postgres?

by adenta

5/21/2025 at 3:23:33 AM

Yep! I just migrated a Fly PG cluster database to SQLite because I over-provisioned DB resources and got tired of dealing with the occasional node crashing.

TBH I wish they had their managed PG cluster running because it would have made it easier to downsize, but I’m happy with SQLite.

I used SQLite for another project that I knew was going to max out at 100 concurrent users and it worked great. The best moment was when a user reported a production error I couldn’t recreate locally, so I downloaded the database and recreated it with the latest production data on my laptop. You couldn’t do that with a high-compliance app, but that’s not most apps.

I’m hesitant to outright say “SQLite and Rails is great”because you have to know your app will run on one node. If you know that then it’s fantastic.

by bradgessler

5/20/2025 at 8:52:22 PM

What a coincidence, I was just researching Litestream today! I use Sqlite on my VPS and was thinking about adding this.

Am I understanding correctly that I will be able to restore a database to any point-in-time that is while the litestream process is running? Because auto-checkpointing could consume the WAL while it isn't running?

So for an extreme example if the process crashed for an hour between 2:00 and 3:00, I could restore to 1:55 or 3:05 but the information required to restore between 2:00 and 3:00 is lost?

by jasonthorsness

5/20/2025 at 10:08:02 PM

Litestream saves WAL segments to a given time granularity. By default, it ships off WAL changes every second so you should be able to restore to any given second in your history (within your retention period).

by benbjohnson

5/21/2025 at 8:44:25 AM

Do you have DST handling issues?

I'm asking because switching from winter time to summer time in Europe happened on March 30th with local time jumping from 2:00 to 3:00.

by dolmen

5/20/2025 at 9:07:44 PM

This looks great! A few years ago I wrote a sqlite vfs for using dynamodb as a backing store[0] called DonutDB. With the recent addition of CAS to S3, I was thinking about making a new version of DonutDB backed by S3. I'm really glad lightstream supports this so I don't have to!

I can't wait to try this out.

[0]: https://github.com/psanford/donutdb

by psanford

5/21/2025 at 2:25:19 AM

> With the recent addition of CAS to S3

Do you have a reference for this? I assume by CAS you mean content addressable storage? I googled but can't find any AWS docs on this.

by hamandcheese

5/21/2025 at 2:35:30 AM

Compare And Swap

by xyzzy_plugh

5/21/2025 at 2:54:35 AM

The TL;DR is that Amazon S3 now supports "conditional writes" which are guaranteed to fail if the file was written by some other writer. This is implemented by sending the ETag of an object's expected version alongside the write request.

Litestream now depends on this functionality to handle multiple writers. Think of optimistic locking.

https://aws.amazon.com/about-aws/whats-new/2024/11/amazon-s3...

by gcr

5/21/2025 at 2:04:38 PM

Thanks both! In the contexts I work in CAS always means content-addressable-storage, my mistake.

by hamandcheese

5/20/2025 at 9:37:17 PM

  We have a sneaking suspicion that the robots that write LLM code are going to like SQLite too. We think what coding agents like Phoenix.new want is a way to try out code on live data, screw it up, and then rollback both the code and the state.
Prescient.

Agents would of course work well if they can go back in time to checkpoints and branch from there, exploring solutions parallely as needed.

Anyone who has experience with building workflows (Amazon SWF, Temporal, and the like) knows how difficult it is to maintain determinism in face of retries & re-drives in multi-tier setups (especially, those involving databases).

Replit recently announced their Agent's integration with Neon's time travel feature [0] for exactly the purpose outlined in TFA. Unlike Fly.io though, Replit is built on GCP and other 3p providers like Neon and it is unclear if both GCP & Databricks won't go all Oracle on them.

[0] https://blog.replit.com/safe-vibe-coding

by ignoramous

5/20/2025 at 10:37:22 PM

If you wanted to use litestream to replicate many databases (ideally, one or more per user), which is one of the use cases described here (and elsewhere), how do you tell litestream to add new databases dynamically? The configuration file is static and I haven't found an API to tell it to track a new db at runtime.

by hobo_mark

5/20/2025 at 11:08:46 PM

I would expect this problem to get solved. It's tricky to detect new sqlites, but not impossible.

In the meantime, it's pretty straightforward to use as a library.

by mrkurt

5/20/2025 at 8:21:48 PM

I have been following Ben for a long time but I never knew LiteFS was based on his work. I somehow settled eventually for rqlite for self managed distributed.

https://github.com/rqlite/rqlite

by srameshc

5/20/2025 at 10:59:22 PM

Similar approach to LiteFS but rqlite embeds raft into the project instead of depending on consul.

https://youtu.be/8XbxQ1Epi5w?si=puJFLKoVs3OeYrhS

by digianarchist

5/20/2025 at 11:12:22 PM

I don't think they're similar at all. LiteFS uses Consul to elect a leader for a single-write-leader multiple-replica configuration, the same way you'd do with Postgres. rqlite (as I understood it last time I looked) runs Raft directly; it gets quorums for every write.

One isn't better than the other. But LiteFS isn't a "distributed SQLite" in the sense you'd think of with rqlite. It's a system for getting read-only replicas, the same way you've been able to do with log shipping on n-tier databases for decades.

by tptacek

5/21/2025 at 2:17:07 AM

rqlite also requires you to use special client libraries, whereas litefs is transparent to the program.

by apitman

5/21/2025 at 4:40:09 PM

> Now that we’ve switched to LTX, this isn’t a problem any more. It should thus be possible to replicate /data/*.db, even if there’s hundreds or thousands of databases in that directory.

That was the show stopper. Now multi tenant with per tenant database whee (in theory) each user can roll back to certain point in time or at least completely download their database and take away for whatever they want to do with it is going to be possible.

by wg0

5/21/2025 at 5:57:50 PM

Very cool! This is so clever and makes deploying it so simple. I just wasn't able to use it yet because we'd have (many) thousands of SQLite DBs to backup. I quickly hacked something together using fanotify + SQLite's Backup API to have some copies at least, but I'm going to try to switch to Litestream if this amount of files would be supported by the wildcard replication.

by wim

5/21/2025 at 2:47:58 AM

What will be required from users of the existing Litestream version to upgrade to the new one? Is it a matter of bumping the version when it comes out or is there more to it?

by rads

5/21/2025 at 10:22:55 AM

If I’m deploying a new version of my app, the typical managed solution will spawn a new server instance with that new version, and once a health check has succeeded a couple of times it will reroute trafic to this new instance and kill the old one.

Previously this would be problematic, as the new instance might miss changes made by the old server. Is this fixed by these new changes?

by Skinney

5/21/2025 at 10:51:47 PM

It seems to me that you need to think about your server as the production database, rather than a web server instance that can be trivially spawned by a management layer.

When I deploy a new version of my python/sqlite web app, I do not replace the whole machine. I just upgrade the python package and restart the systemd service.

If I wanted to reduce downtime I could probably figure out a transition using SO_REUSEPORT. During the transition the old and new processes would be using the db concurrently, so the app would have to respect that case. If part of the upgrade requires a db schema change then I’m not sure how you could avoid some downtime. But I don’t know if it is possible with traditional dbs either.

by gwking

5/21/2025 at 3:30:45 PM

I don't think this is trivially fixed since you can still only have one writer that is holding the lease.

Your new service will come up, but it won't be able to get the write lease until the previous server shuts down. Now you have tools to detect this, stop one writer, and start the other, but the service will likely have to experience some kind of requests queueing or downtime.

by maxmcd

5/21/2025 at 4:30:48 AM

Will the new litestream work with object stores that don’t provided conditional writes?

by JSR_FDED

5/21/2025 at 12:18:19 AM

So fossil (which is built on top of sqlite) + this = SCM?

by malkia

5/21/2025 at 7:28:53 AM

I'm still waiting for someone to make the GitHub for fossil. Bonus points if it's called Paleontology

by hiAndrewQuinn

5/21/2025 at 9:45:43 AM

Is that needed to make Fossil useful? Since it's basically GitHub but all in Git, it's all works P2P without the need of a centralized service.

I guess for discovery it kind of makes sense, but wouldn't really be "GitHub for Fossil" but more like a search engine/portal.

by diggan

5/22/2025 at 7:37:59 PM

Also, as far as I know it offers zero CI integrations, which is (IMHO) table stakes for an organization-level platform

n.b. while looking up the modern state of affairs, I found this gem https://fossil-scm.org/home/doc/trunk/www/qandc.wiki#:~:text... which made me chuckle but is also, let's be real, a barrier to adoption. Yes, I am aware of the rabid army of Bugzilla fans, but I'd straight up quit before working with the garbage that is Bugzilla

by mdaniel

5/22/2025 at 7:08:29 AM

Discovery and market dominance seems like basically the only thing standing in fossil's way from mass adoption, though.

by hiAndrewQuinn

5/22/2025 at 7:34:23 PM

Depends on how one thinks of "mass," since (a) there is an unholy amount of tooling out there which only speaks the GitHub API (not even mentioning GitLab, Gitea, ...) and (b) AIUI the Fossil folks abhor history mutation which is great for them and really not great for a subset of git users. I get the lightweight impression that they took Mercurial's "please don't" and turned it up to 11

by mdaniel

5/21/2025 at 3:31:37 AM

Awesome stuff, this resolves my #1 feature request of being able to replicate an entire directory of SQLite *.db's from a single Litestream process - happy it's finally here.

Should make replicating Multi tenant per-user SQLite databases a lot more appealing.

by mythz

5/21/2025 at 9:26:23 AM

I still don't really understand the real "advantages" of such an architecture, over, say, a centralized Postgres server, which can process just as much data no?

by oulipo

5/21/2025 at 6:04:19 PM

The network round trips of queries to a database server add up, so much that they influence query design (though we don't much think about that anymore, because n-tier database designs are so prevalent that everyone writes queries that way). The advantage to SQLite is that queries are incredibly fast.

by tptacek

5/22/2025 at 1:33:38 PM

I see! Thanks.

So it's often "presented" as "a local database which is replicated by streaming", but perhaps it would be more natural to view it as a kind of "centralized database, but with local caches that are kept near your server code, and sync'd"

I understand it's the same, but it makes the intent clearer: the intent is more to have a local cache to read/update (which is then sync'd), or at least it seems clearer to me presented that way :)

by oulipo

5/20/2025 at 10:56:25 PM

Is Litestream on a path to subsume LiteFS's capabilities? Re: PITR, would this be used to facilitate automated A/B testing of AI-generated code changes against live data subsets? I can imagine a lot of cool stuff in that direction. This is really cool Ben!

by neom

5/20/2025 at 9:48:30 PM

This is exciting! Especially glad that Litestream is still maintained. Is there a use-case for Litestream for more than backup? I am a fan of offline-first but it would be cool to have a way to synchronize on-device SQLite instances to a single central instance.

by j0e1

5/20/2025 at 10:05:58 PM

Backups & read replicas are the primary use cases. If you're interested in local-first, you can check out projects like cr-sqlite[1].

[1]: https://github.com/vlcn-io/cr-sqlite

by benbjohnson

5/21/2025 at 6:53:48 AM

Very cool!

There may be a typo here:

> The most straightforward way around this problem is to make sure only one instance of Litestream can replication to a given destination.

Can replicate? Or can do replications?

by bambax

5/21/2025 at 5:41:39 PM

Does anybody have a list of which S3-compatible object storage providers support Compare-And-Swap?

by Nelkins

5/21/2025 at 6:23:28 AM

For Fly.io employees here: Can I finally replace my Postgre with this a'la Cloudflare D1 (which is also Sqlite based)?

by wiradikusuma

5/20/2025 at 9:09:30 PM

Amazing to see and hear about the progress. Always a pleasure when Ben works on something and shares it. Keep it up!

by rawkode

5/20/2025 at 10:11:29 PM

Is there a migration guide from stable to the branch 0.5? I’m running Litestream as a Docker sidecar alongside my Python app container and it’s been great and a nice comfort knowing my SQLite db is backed up to S3.

by nodesocket

5/21/2025 at 7:46:16 AM

> It will be able to fetch and cache pages directly from S3-compatible object storage.

Does this mean your SQLite database size is no longer restricted by your local disk capacity?

by ChocolateGod

5/21/2025 at 9:47:34 AM

Looking at the LiteVFS repo, it appears so, with some limitations.

"LiteVFS is a Virtual Filesystem extension for SQLite that uses LiteFS Cloud as a backing store."

Limitations

- Databases with journal_mode=wal cannot be modified via LiteVFS (but can be read)

- Databases with auto-vacuum cannon be opened via LiteVFS at all

- VACUUM is not supported

https://github.com/superfly/litevfs

by bdcravens

5/21/2025 at 3:58:36 PM

> Databases with journal_mode=wal cannot be modified via LiteVFS (but can be read)

Without modifying SQLite (what the Turso guys did), the WAL index is hard (but not impossible) to share across a network boundary. I'm guessing that's the why here. There's a hack that I'm pretty confident works, but I'm not sure how it behaves under latency (sure enough that I use it for Windows, and it hasn't caused issues running mptest thousands of times in CI over months).

Leaving it here, maybe Ben's interested.

https://github.com/ncruces/go-sqlite3/blob/c780ef16e277274e7...

by ncruces

5/21/2025 at 10:04:49 AM

A SQLite database that supports read-replicas and can offload cold data to object storage would be super useful.

by ChocolateGod

5/20/2025 at 10:37:29 PM

Fantastic to see it's getting updated! I am a big fan of litestream, have been using it for a while together with pocketbase. It's like a cheat code for a cheap, reliable and safe backend.

by oliwary

5/20/2025 at 8:56:49 PM

Litestream has seen very little development lately and I was worried it was dead. Very glad to see Ben Johnson is continuing to push the project forward with some exciting new plans.

by fra

5/21/2025 at 8:34:23 AM

I love the idea of litestream and litefs and do use it for some smaller projects, but have also been worried it was abandoned. The line is quite thin between "done" and "not maintained".

There clearly still is some untapped potential in this space, so I am glad benbjohnson is exploring and developing these solutions.

Great that the new release will offer the ability to replicate multiple database files.

> Modern object stores like S3 and Tigris solve this problem for us: they now offer conditional write support

I hope this won't be a hard requirement, since some S3 compatible storage do not have this feature (yet). I also do use the SFTP storage option currently.

by noroot

5/21/2025 at 1:57:59 AM

That's the conclusion I reached a couple months ago when I was evaluating similar tools. The last Litestream release was issued in 2023 and the official Docker image is over a year old. In the end it seemed like a safer bet to accept some inconvenient tradeoffs and just create backups more frequently.

by avtar

5/21/2025 at 2:21:31 AM

Ben also wrote BoltDB, which was untouched (archived, even) for years despite a thriving community. Sometimes things are just done!

by tptacek

5/21/2025 at 7:52:09 AM

seems to have active commits from 2 weeks ago, just not on the main branch

by Zekio

5/21/2025 at 2:49:33 AM

asking since ben does take a look here...

will revamped litestream have a solution for ACKing only when transactions have durably committed to storage?

by dastbe

5/20/2025 at 9:57:21 PM

Is the backend pluggable? Could it be configured to write to any key value store with support for optimistic concurrency control?

by caleblloyd

5/20/2025 at 10:04:50 PM

We don't support plug-ins at the moment but there's several backends at the moment (S3, Azure Blob Storage, Google Cloud Storage, SFTP, etc)

by benbjohnson

5/21/2025 at 12:05:15 AM

tangent: in modern SQLite, are writes still serialized? That's my main concern when choosing a tech stack for an app that might have thousands of writes happening on peak periods

by yowmamasita

5/21/2025 at 12:33:56 AM

Yes they are, but if you benchmark thousands of writes a second you'll likely find that SQLite does just fine.

You might start running into problems at tens or hundreds of thousands of writes a second, though even then you may be OK on the right hardware.

by simonw

5/21/2025 at 1:23:11 AM

Is there anything like Livestream that can be just pip installed?

by m3sta

5/20/2025 at 9:17:39 PM

Very cool idea, I wonder if that works better than their Postgres instances

Recently, I deployed a little side project using a small postgres vm on fly.io After a couple of days, and only having about 500kb of data stored in that db, the postgres vm went into an unrecoverable fail loop, saying it ran out of memory, restarting, then immediately running out of memory again, so on and so forth

It took about 3-4hrs to recover the data jumping through a lot of hoops to be able to access the data, copy it to another volume and finally download it

I would've reached for support, but it seems like the only option available is just posting on their forum. I saw a couple of related posts, all with unsatisfactory answers unfortunately

To be fair, it was incredibly easy to get up and running with them. On the other hand, almost all the time I saved by that quick start, was wasted recovering the failing db, all the while my site was down

Ironically, I originally developed the project using sqlite, but then switched to postgres to deploy

by nico

5/20/2025 at 10:09:13 PM

This post has nothing to do with Fly.io's platform offerings. Litestream is completely uncoupled from Fly.io. Ben started it before he got here.

by tptacek

5/20/2025 at 11:34:10 PM

Clearly it does have something to do with fly.io considering fly is and has been pushing for litefs/stream as the ideal database solution for fly users. It seems reasonable that readers would compare it to other fly offerings.

by sosodev

5/20/2025 at 11:37:50 PM

We have... never done that? Like ever? LiteFS is interesting for some read-heavy use cases, especially for people who are doing especially edge-deployed things, but most people who use databases here use Postgres. We actually had a managed LiteFS product --- LiteFS Cloud --- and we sunset it, like over a year ago. We have a large team working on Managed Postgres. We do not have a big SQLite team.

People sometimes have a hard time with the idea that we write about things because they are interesting to us, and for no other reason. That's also 60-70% of why Ben does what he does on Litestream.

by tptacek

5/20/2025 at 11:47:27 PM

I’m sorry. I think that I, and probably others, have misinterpreted it. Between Ben’s writings on the fly blog and litefs cloud it seemed like that was the case. I didn’t realize it had been discontinued.

by sosodev

5/20/2025 at 11:56:38 PM

Neither LiteFS nor Litestream (obviously) have been discontinued. They're both open source projects, and were both carefully designed not to depend on Fly.io to work.

by tptacek

5/21/2025 at 3:12:41 PM

What happened to the supabase integration? Seems to have fizzled as well.

by mixmastamyk

5/20/2025 at 9:50:12 PM

It's strange to me that they still haven't offered a managed Postgres product. Other providers like Render or even Heroku seem to have realized that this is a core part of PaaS that customers want. Instead they focused on GPUs and LiteStream. When I evaluated different PaaS for the startup I work at, I had to go with Render. I couldn't even give Fly.io a try since I knew we needed Postgres.

by yellow_lead

5/20/2025 at 10:08:37 PM

We're rolling out Managed Postgres, very slowly.

by tptacek

5/21/2025 at 12:12:34 AM

Looking forward to it!

by yellow_lead

5/20/2025 at 10:01:59 PM

It think they are in beta. I wished they had a managed Redis though

For Postgres I ended up going with Neon (neon.tech), very happy with them so far. Super easy to setup and get up and running, also love being able to just easily see the data from their web interface

by nico

5/20/2025 at 10:44:57 PM

Try Railway - nothing but good experiences with these dudes. Fairly priced and great dev UX.

by sergiotapia

5/21/2025 at 8:44:50 AM

is that an alternative to supabase?

by internet_points

5/21/2025 at 2:50:14 PM

it's an alternative between render/railway/northflank/fly. part of the new-gen paas.

by sergiotapia

5/21/2025 at 2:22:17 AM

You might try paying the $29/mo. I've found the email support to be great.

by apitman

5/21/2025 at 10:48:43 AM

That's one of the reasons I don't use their Postgres instances and instead go with a service with a dedicated database service, but for deploying backend apps it's pretty good.

by norman784

5/21/2025 at 10:52:59 AM

[dead]

by teamcampapp

5/20/2025 at 8:19:32 PM

Just a heads-up, the link in the "Litestream is fully open source" callout is malformed and leads to:

https://http//litestream.io/

by gavinray

5/20/2025 at 10:09:27 PM

Thanks!

by tptacek

5/20/2025 at 11:35:19 PM

[dead]

by fefawfefafds

5/21/2025 at 4:12:21 AM

[dead]

by curtisszmania

5/20/2025 at 11:39:08 PM

[dead]

by fdaffeafe

5/20/2025 at 9:37:44 PM

For something rather new there seems to be too many choices already. Please pick a strategy under one name, good defaults, and a couple of config options.

by mixmastamyk

5/21/2025 at 10:16:50 AM

[dead]

by gitroom

5/20/2025 at 8:32:35 PM

[flagged]

by tiffanyh

5/20/2025 at 8:45:31 PM

I think that might be a structure/css issue. On Desktop it's to the left of the article (but I shrunk the window and indeed it puts it below the article).

by vhodges

5/21/2025 at 8:24:24 AM

[flagged]

by xmorse

5/21/2025 at 8:45:25 AM

why?

by internet_points

5/21/2025 at 9:35:27 AM

The landing page shows all logos of small companies, including one that is migrating away from them (Turso)

https://fly.io/

by xmorse

5/21/2025 at 10:44:58 AM

I think fly is focused on small/medium companies, bigger companies will have the manpower to use AWS/Azure directly.

by norman784

5/22/2025 at 12:29:52 AM

Do you have a citation on Turso moving away from Fly? I'd be particularly curious about anything Turso has written on _why_ they're moving away.

by mwcampbell

5/21/2025 at 6:06:44 PM

What you're actually observing there is that we don't have a "marketing" team and we just don't care that much about the front page. As long as it's describing what we do roughly accurately, we don't think about the front page. It's not like a huge part of our funnel.

You could say this is cope, but we've been exactly the same way about this page since 2020. For a stretch of over a year it didn't even accurately describe us --- people who learned about us from the front page thought we were an edge compute company still.

by tptacek

5/22/2025 at 5:16:37 PM

I love fly but you really have to work harder on these things, the landing page is not something you need a marketing team for

by xmorse

5/22/2025 at 5:26:07 PM

No, we don't have to work harder on these things. "I love fly but I think they're going bankrupt soon because I did kremlinology on their front page" is not actually a user cohort I care much about.

I'm really tired of trying to make decisions about what we say or don't say based on these weird messaging things, so I think we're just going to stop trying, and go back to talking like we did in 2021.

by tptacek

5/20/2025 at 11:32:10 PM

[flagged]

by fasdfdsa