stebalien changed the topic of #ipfs to: Heads Up: To talk, you need to register your nick! Announcements: go-ipfs 0.4.22 and js-ipfs 0.35 are out! Get them from dist.ipfs.io and npm respectively! | Also: #libp2p #ipfs-cluster #filecoin #ipfs-dev | IPFS, the InterPlanetary FileSystem: https://github.com/ipfs/ipfs | Logs: https://view.matrix.org/room/!yhqiEdqNjyPbxtUjzm:matrix.org/ | Forums: https://discuss.ipfs.io | Code of
Mateon1 has quit [Remote host closed the connection]
Mateon1 has joined #ipfs
spinza has quit [Ping timeout: 268 seconds]
spinza has joined #ipfs
KempfCreative has quit [Ping timeout: 240 seconds]
jcea has joined #ipfs
Arwalk has quit [Ping timeout: 240 seconds]
Arwalk has joined #ipfs
banditrys has joined #ipfs
miceiken has quit [Quit: ZNC 1.7.5 - https://znc.in]
miceiken has joined #ipfs
}ls{ has quit [Ping timeout: 240 seconds]
erikj has quit [Quit: kfonx]
}ls{ has joined #ipfs
<postablesDiscord> IPNS can point to anything
<postablesDiscord> * IPNS can point to anything as long as it is a valid ipfs path
jcea has quit [Quit: jcea]
carldd has quit [Ping timeout: 276 seconds]
matt-h has quit [Ping timeout: 268 seconds]
Taoki has joined #ipfs
<linas> Well, if I have a million objects, and I update one, then I have to publish a new list of a million objects...
<linas> if I have a dozen or a hundred updaters all touching those objects, that means republishing that huge list at high rates of speed.
<PhoenixDiscord[m> if you need to have stuff updating very frequently you maybe better off using pubsub to share the live information and treat the storage stuff like dag and mfs more as an archive to write big chunks to every so often
<PhoenixDiscord[m> then if a new peer shows up and joins the pubsub channel, the peers already there who have the up to date state, can generate a new dag/mfs object that contains only the recent changes since the last big write to the archive, and a link to the archive's CID, and can send that as a direct message sort of thing to the new peer so they can catch up
<PhoenixDiscord[m> but if you end up going down a path like that, it might make more sense to look in to using OrbitDB, to avoid duplicating their work
<linas> I guess I'm trying to reinvent a variant of mfs with slightly different properties...
<linas> looking at orbitdb is on the to-do list.
matt-h has joined #ipfs
<linas> I'm trying to map a graph db onto ipfs, with immutable graphs and mutable nodes,
<PhoenixDiscord[m> you could also reduce the size of your updates by building trees. say you have a million objects, then if you divide that in to two, you only have to update one of them to change one thing, do it again, and you only have to update a quarter of them, the parts that stayed the same will still hash the same so those pieces don't need to be reshared, all the peers on the network that already have those sections will
<PhoenixDiscord[m> continue seeding that information and only have to fetch the dirty section, and you can still have a root node which points out to basically a folder containing shards, however deep you want, and publish that as the one thing to pin/read from, or publish it to ipns and have gateway access
<linas> ... its much whizzier than orbitdb
<postablesDiscord> before you even approach that point you'll quickly run into the issue of not being able to publish a record in a time frame shorter than 1.5min
<linas> my graphs are indeed just a forest of trees, or a tangle of trees, a micelial mat of trees, and they're immutable.
<linas> But attached to each vertex or edge of the graph/tree is some mutable state.
<linas> Think e.g. electric curicuit: the circuit is hard-wired, but the electric current (data) flowing through the wires is highly mutable.
Belkaar has quit [Ping timeout: 250 seconds]
<PhoenixDiscord[m> if you know which values are changing, you could write your own node in javascript or whatever that builds the tree without rehashing any parts that haven't changed since the last publish. it shouldn't be too much work really?
Belkaar has joined #ipfs
Belkaar has joined #ipfs
wififi has joined #ipfs
<linas> did that already :-)
carldd has joined #ipfs
<linas> but I can't figure out how to traverse the tree, because I don't know what its roots are ...
<linas> I mean I know, but others won't.
<linas> and there's a million potential roots ...
<linas> Say, for example, I have a file: but where does it appear in the filesystem? What's the path to get to it?
<linas> what if it appears in several different places in the file system?
<PhoenixDiscord[m> doesn't matter, they're like hardlinks, it's deduplicated, you only incur the cost of having the CID hash of the file's content repeated throughout the tree
<linas> ah ... but it matters to me, since the various different paths to the same file encode the shape of the graph.
agris_ is now known as agris
<linas> so, multiple trees share the same leaves; the graph-query language is looking for a specific set of trees, and when it finds them, the data is then in the assorted leaves/branches.
<linas> i.e. graph-query languages perform "queries" for graphs of a certain shape ... and every graph can always be decomposed into a collection of trees that have leaves in common.
fling has joined #ipfs
<linas> let na, nb, nc be nodes(leaves) and d a non-leaf "directory". Then (d (d (d na nb) (d nc))) is a tree and so is (d na (d na nb)))
<linas> Let vx and vy be variables. Then (d (d vx) (d vy)) && (d na vx) is a graph-query
pjz has quit [Quit: WeeChat 2.3]
<linas> The solution is that vx matches (d na nb) and vy matches nc and so the data I wanted was whatever mutable stuff is in nc
<linas> but I don't know how to find nc until I know how to walk the trees up and down, in both directions.
<linas> and a "real-world" example for (d na nb) might be (is-a cat animal) etc.
RamRanRa has quit [Read error: Connection reset by peer]
toxync01 has quit [Ping timeout: 265 seconds]
HyunwooLeeDiscor has joined #ipfs
HyunwooLeeDiscor is now known as HyunwooLee8127[m
HyunwooLee8127[m is now known as HyunwooLeeDiscor
HyunwooLeeDiscor is now known as HyunwooLee8127[m
<linas> and graph-search/graph-query is clearly stuff like (isa vx animal) && (not (has vx fur)) .. etc. classical logic type stuff.
HyunwooLee8127[m is now known as HyunwooLeeDiscor
rho has quit [Ping timeout: 252 seconds]
KempfCreative has joined #ipfs
toxync01 has joined #ipfs
<linas> why? because triplestores suck and GraphQL is pathetic.
<linas> and orbitdb is hasn't gotten to there, yet.
rho has joined #ipfs
rho has quit [Changing host]
rho has joined #ipfs
<linas> anyway, I've got code that does all that already, in RAM ... I'm trying to map it into ipfs...
Royaljello has quit [Remote host closed the connection]
<linas> I guess each node in my trees can be an IPNS key...!
Royaljello has joined #ipfs
user_51_ has joined #ipfs
user_51 has quit [Ping timeout: 252 seconds]
hurikhan77 has joined #ipfs
verin0x3 has joined #ipfs
kakra has quit [Ping timeout: 276 seconds]
verin0x has quit [Ping timeout: 250 seconds]
andi- has quit [Remote host closed the connection]
rho has quit [Ping timeout: 245 seconds]
wififi has quit [Quit: Ping timeout (120 seconds)]
andi- has joined #ipfs
zeden has quit [Quit: WeeChat 2.6]
illadelphia2019 has joined #ipfs
fagci[m] has joined #ipfs
<deltab> HyunwooLeeDiscor: yes, if you've allowed enough space for the cache to store it all
<deltab> it's similar to the cache in a web browser
gmoro has quit [Remote host closed the connection]
<HyunwooLeeDiscor> If I type command like ipfs get <Cid of 5GB data>, then it won't start cahcing?
<HyunwooLeeDiscor> Anyway, Thanks for your answer again. Really helpful.
<deltab> it'll cache blocks, which are usually ¼ megabyte
<HyunwooLeeDiscor> Umm.... ok. It seems IPFS can't guess entire size of <cid>.
<HyunwooLeeDiscor> I guess, once I start download chunks and stop caching once capacity(4GB in my example) is exceeded.
hqdruxn08_ has joined #ipfs
hqdruxn08 has quit [Read error: Connection reset by peer]
xcm has quit [Ping timeout: 250 seconds]
<deltab> it can still get all the data, it just won't be able to cache it all
<deltab> but you can write it to a file or stream it to a video player, for instance
KempfCreative has quit [Ping timeout: 250 seconds]
<HyunwooLeeDiscor> I got it. even though I setup caching limit 4GB, I can get entire file once my hard disk has enough capacity. thanks.
<HyunwooLeeDiscor> and when getting media data from IPFS, i can write the data into file stream to a video player.
<HyunwooLeeDiscor> Thanks.
barnacs has quit [Ping timeout: 240 seconds]
Acacia has quit [Remote host closed the connection]
MDude has quit [Quit: Going offline, see ya! (www.adiirc.com)]
xcm has joined #ipfs
toxync01 has quit [Ping timeout: 250 seconds]
toxync01 has joined #ipfs
arthur has quit [Ping timeout: 265 seconds]
barnacs has joined #ipfs
airwind has quit [Quit: airwind]
toxync01 has quit [Ping timeout: 250 seconds]
toxync01 has joined #ipfs
toxync01- has joined #ipfs
toxync01 has quit [Ping timeout: 240 seconds]
airwind has joined #ipfs
verin0x3 is now known as verin0x
Jybz has joined #ipfs
Jybz has quit [Client Quit]
ensbro has quit [Ping timeout: 276 seconds]
Lochnair has quit [Quit: Ping timeout (120 seconds)]
Lochnair has joined #ipfs
jimtron has quit [Remote host closed the connection]
jimtron has joined #ipfs
wicker[m] has joined #ipfs
lufi has quit [Changing host]
lufi has joined #ipfs
toxync01- has quit [Ping timeout: 250 seconds]
rendar has joined #ipfs
toxync01 has joined #ipfs
toxync01 has quit [Ping timeout: 250 seconds]
toxync01 has joined #ipfs
ensbro has joined #ipfs
ensbr0 has joined #ipfs
ensbr0 has quit [Client Quit]
ensbr0 has joined #ipfs
ensbro has quit [Ping timeout: 240 seconds]
Trieste has quit [Ping timeout: 265 seconds]
joocain2 has quit [Remote host closed the connection]
joocain2_ has joined #ipfs
Trieste has joined #ipfs
jimtron has quit [Remote host closed the connection]
jimtron has joined #ipfs
gkmngrgn has joined #ipfs
bluebie has quit [Quit: Connection closed for inactivity]
is_null has joined #ipfs
is_null_ has joined #ipfs
pecastro has joined #ipfs
lufi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
Guest79400 has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
dexter0 has quit [Ping timeout: 264 seconds]
lufi has joined #ipfs
lufi has quit [Changing host]
lufi has joined #ipfs
dexter0 has joined #ipfs
Bl4ckC0r3 has joined #ipfs
Bl4ckC0r3 is now known as Guest87478
m_tadeu has quit [Remote host closed the connection]
m_tadeu has joined #ipfs
m_tadeu has quit [Remote host closed the connection]
m_tadeu has joined #ipfs
bgmc has joined #ipfs
bgmc has quit [Remote host closed the connection]
illadelphia2019 has left #ipfs [#ipfs]
Kamilion has quit [Quit: I am kamilion. But you knew that, didn't you.]
Kamilion has joined #ipfs
tunnckoCore has joined #ipfs
tunnckoCore has quit [Remote host closed the connection]
seba- has joined #ipfs
seba-- has quit [Ping timeout: 240 seconds]
woss_io has joined #ipfs
erikj has joined #ipfs
tunnckoCore has joined #ipfs
tunnckoCore has quit [Remote host closed the connection]
pippo has joined #ipfs
RamRanRa has joined #ipfs
pippo has quit [Remote host closed the connection]
toxync01 has quit [Quit: ZNC 1.7.4 - https://znc.in]
toxync01 has joined #ipfs
ensbr0 has quit [Quit: Leaving]
Ai9zO5AP has quit [Ping timeout: 268 seconds]
arthur_ has joined #ipfs
zeek has joined #ipfs
zeek has quit [Remote host closed the connection]
jakub has quit [Quit: Connection closed for inactivity]
Royaljello has quit [Ping timeout: 265 seconds]
Xeyame has quit [Read error: Connection reset by peer]
xcm has quit [Remote host closed the connection]
xcm has joined #ipfs
ecloud is now known as ecloud_wfh
jcea has joined #ipfs
dunks411Discord[ has joined #ipfs
zeden has joined #ipfs
skydrome has left #ipfs ["I am not well read, but when I do read, I read well."]
xwvvvvwx has quit [Quit: ZNC 1.7.5 - https://znc.in]
xwvvvvwx has joined #ipfs
ginospe has joined #ipfs
CGretski has joined #ipfs
jcea has quit [Remote host closed the connection]
jcea has joined #ipfs
toxync01 has quit [Ping timeout: 265 seconds]
toxync01 has joined #ipfs
toxync01 has quit [Quit: ZNC 1.7.4 - https://znc.in]
toxync01 has joined #ipfs
KempfCreative has joined #ipfs
__jrjsmrtn__ has joined #ipfs
_jrjsmrtn has quit [Ping timeout: 250 seconds]
lurkless has quit [Quit: leaving]
DavidPH has quit [Quit: Leaving]
toxync01- has joined #ipfs
lurkless has joined #ipfs
toxync01 has quit [Ping timeout: 268 seconds]
PACER has quit [Ping timeout: 268 seconds]
gmoro has joined #ipfs
johnl[m] has quit [Remote host closed the connection]
UsamaIrfanDiscor has quit [Remote host closed the connection]
sekiDiscord[m]1 has quit [Remote host closed the connection]
JakobTigerstrm[m has quit [Remote host closed the connection]
linuxi0n[m] has quit [Remote host closed the connection]
norou[m] has quit [Remote host closed the connection]
vchernin[m] has quit [Remote host closed the connection]
Heystein[m] has quit [Remote host closed the connection]
Guest11125 has quit [Remote host closed the connection]
mistermonster[m] has quit [Remote host closed the connection]
felixfoertsch[m] has quit [Read error: Connection reset by peer]
koalalorenzo[m]1 has quit [Remote host closed the connection]
buggeas40d[m] has quit [Remote host closed the connection]
jothi_basu[m] has quit [Write error: Connection reset by peer]
CharlieRaptoreum has quit [Read error: Connection reset by peer]
planetary_devDis has quit [Read error: Connection reset by peer]
tops[m] has quit [Write error: Connection reset by peer]
jrswab has quit [Write error: Connection reset by peer]
NooooooWayyyyyDi has quit [Read error: Connection reset by peer]
leoalvarezhDisco has quit [Read error: Connection reset by peer]
paulmahoneDiscor has quit [Read error: Connection reset by peer]
mopsi[m] has quit [Write error: Connection reset by peer]
chervol|MultiCha has quit [Read error: Connection reset by peer]
millysoose[m] has quit [Read error: Connection reset by peer]
gauthamDiscord[m has quit [Read error: Connection reset by peer]
r3str0b3[m] has quit [Read error: Connection reset by peer]
hazDiscord[m] has quit [Read error: Connection reset by peer]
jgmac1106Discord has quit [Write error: Connection reset by peer]
longwave[m] has quit [Remote host closed the connection]
astraiaDiscord[m has quit [Write error: Connection reset by peer]
petzah[m] has quit [Read error: Connection reset by peer]
hubaDiscord[m] has quit [Remote host closed the connection]
TeeCee has quit [Read error: Connection reset by peer]
am3on[m] has quit [Read error: Connection reset by peer]
alilinuxAboShana has quit [Read error: Connection reset by peer]
auhau[m]1 has quit [Read error: Connection reset by peer]
codyopel has quit [Read error: Connection reset by peer]
eyenx[m] has quit [Read error: Connection reset by peer]
litebit[m] has quit [Read error: Connection reset by peer]
Stephen304[m] has quit [Read error: Connection reset by peer]
IgutinDiscord[m] has quit [Remote host closed the connection]
realkarmakun[m] has quit [Write error: Connection reset by peer]
kirpy0x[m] has quit [Write error: Connection reset by peer]
D[m]1 has quit [Write error: Connection reset by peer]
ryco117[m] has quit [Write error: Connection reset by peer]
sexybiggetje[m] has quit [Write error: Connection reset by peer]
rocket20199[m] has quit [Read error: Connection reset by peer]
kbc[m] has quit [Write error: Connection reset by peer]
dpinnerDiscord[m has quit [Read error: Connection reset by peer]
lyonDiscord[m] has quit [Write error: Connection reset by peer]
PeevesDiscord[m] has quit [Remote host closed the connection]
sandorpetofi[m] has quit [Read error: Connection reset by peer]
hiima[m] has quit [Read error: Connection reset by peer]
UserDiscord[m] has quit [Read error: Connection reset by peer]
rihardsk[m] has quit [Remote host closed the connection]
betz[m] has quit [Read error: Connection reset by peer]
yur3shmukcik[m] has quit [Write error: Connection reset by peer]
new0neDiscord[m] has quit [Remote host closed the connection]
onoseto[m] has quit [Read error: Connection reset by peer]
parasite[m] has quit [Read error: Connection reset by peer]
electric[m] has quit [Remote host closed the connection]
fdf[m] has quit [Read error: Connection reset by peer]
Guest76095 has quit [Read error: Connection reset by peer]
vexl[m]1 has quit [Read error: Connection reset by peer]
zazikiDiscord[m] has quit [Read error: Connection reset by peer]
lyz-666[m] has quit [Write error: Connection reset by peer]
LordFenixNC[m]2 has quit [Write error: Connection reset by peer]
flit[m] has quit [Write error: Connection reset by peer]
MrControl[m] has quit [Write error: Connection reset by peer]
pent[m] has quit [Write error: Connection reset by peer]
h313[m] has quit [Write error: Connection reset by peer]
shadow53[m] has quit [Write error: Connection reset by peer]
HyunwooLeeDiscor has quit [Read error: Connection reset by peer]
Ablibu[m] has quit [Read error: Connection reset by peer]
dpiestrak[m] has quit [Read error: Connection reset by peer]
RomaricDiscord[m has quit [Read error: Connection reset by peer]
tom85Discord[m] has quit [Read error: Connection reset by peer]
spb_mentor[m] has quit [Read error: Connection reset by peer]
resilium[m] has quit [Read error: Connection reset by peer]
DavidFalconDisco has quit [Read error: Connection reset by peer]
Cosmocrat[m] has quit [Read error: Connection reset by peer]
KinnardDiscord[m has quit [Remote host closed the connection]
phenomite[m] has quit [Read error: Connection reset by peer]
stanlog[m] has quit [Read error: Connection reset by peer]
jenncloudDiscord has quit [Read error: Connection reset by peer]
twom[m] has quit [Read error: Connection reset by peer]
josef[m] has quit [Read error: Connection reset by peer]
Swedneck_ has quit [Read error: Connection reset by peer]
sid[m] has quit [Read error: Connection reset by peer]
stebalien has quit [Read error: Connection reset by peer]
peddie has quit [Read error: Connection reset by peer]
leps[m] has quit [Read error: Connection reset by peer]
k0mpjut0r has quit [Read error: Connection reset by peer]
lordpipe has quit [Read error: Connection reset by peer]
jochen[m]1 has quit [Remote host closed the connection]
alfonso-peixoto[ has quit [Remote host closed the connection]
sanjay[m] has quit [Remote host closed the connection]
cesarosumDiscord has quit [Remote host closed the connection]
opal[m] has quit [Read error: Connection reset by peer]
grvhiDiscord[m] has quit [Read error: Connection reset by peer]
aeromatter[m] has quit [Read error: Connection reset by peer]
cyberwolf[m] has quit [Read error: Connection reset by peer]
DevUYDiscord[m] has quit [Remote host closed the connection]
ryu5t[m] has quit [Remote host closed the connection]
theblackdaemon[m has quit [Read error: Connection reset by peer]
SenshiDiscord[m] has quit [Read error: Connection reset by peer]
GuillaumeDiscord has quit [Read error: Connection reset by peer]
CatManDoooDiscor has quit [Read error: Connection reset by peer]
michaelrao[m] has quit [Read error: Connection reset by peer]
jenzzens[m] has quit [Read error: Connection reset by peer]
akt[m] has quit [Read error: Connection reset by peer]
KirillTaran[m] has quit [Remote host closed the connection]
dynodetk[m] has quit [Remote host closed the connection]
zegordo[m] has quit [Read error: Connection reset by peer]
berDiscord[m] has quit [Read error: Connection reset by peer]
alphard[m] has quit [Read error: Connection reset by peer]
Lessneek[m] has quit [Read error: Connection reset by peer]
mapachurroDiscor has quit [Read error: Connection reset by peer]
timokau[m] has quit [Remote host closed the connection]
vasaDiscord[m] has quit [Read error: Connection reset by peer]
koalalorenzo[m] has quit [Read error: Connection reset by peer]
EdmundMDiscord[m has quit [Read error: Connection reset by peer]
zcopleyDiscord[m has quit [Read error: Connection reset by peer]
rittmeDiscord[m] has quit [Read error: Connection reset by peer]
pusherDiscord[m] has quit [Read error: Connection reset by peer]
nongfu[m] has quit [Read error: Connection reset by peer]
M[AXEL]DarrDisco has quit [Read error: Connection reset by peer]
drbhDiscord[m] has quit [Read error: Connection reset by peer]
prtfwDiscord[m] has quit [Read error: Connection reset by peer]
mirisbowring[m] has quit [Write error: Connection reset by peer]
issamehh[m] has quit [Read error: Connection reset by peer]
ptonerDiscord[m] has quit [Read error: Connection reset by peer]
postables[m]2 has quit [Read error: Connection reset by peer]
wviana[m] has quit [Read error: Connection reset by peer]
nocentDiscord[m] has quit [Read error: Connection reset by peer]
vexlDiscord[m] has quit [Read error: Connection reset by peer]
zero[m] has quit [Read error: Connection reset by peer]
baffle has quit [Read error: Connection reset by peer]
ghastfilms[m] has quit [Read error: Connection reset by peer]
jwheelerDiscord[ has quit [Read error: Connection reset by peer]
macerbi[m]1 has quit [Read error: Connection reset by peer]
akt[m]1 has quit [Write error: Connection reset by peer]
JCaesar has quit [Read error: Connection reset by peer]
Amandine[m] has quit [Read error: Connection reset by peer]
greenLion[m] has quit [Write error: Connection reset by peer]
braditz[m] has quit [Write error: Connection reset by peer]
seed0c[m] has quit [Read error: Connection reset by peer]
hxu[m] has quit [Read error: Connection reset by peer]
n3niu[m] has quit [Read error: Connection reset by peer]
KonstantinLomash has quit [Read error: Connection reset by peer]
babaitDiscord[m] has quit [Read error: Connection reset by peer]
zgrDiscord[m] has quit [Read error: Connection reset by peer]
kishansagathiya[ has quit [Read error: Connection reset by peer]
M4eek[m] has quit [Read error: Connection reset by peer]
PhoenixDiscord[m has quit [Read error: Connection reset by peer]
labs[m] has quit [Read error: Connection reset by peer]
midi[F][m] has quit [Read error: Connection reset by peer]
nuggets007[m] has quit [Read error: Connection reset by peer]
dominicusin[m] has quit [Read error: Connection reset by peer]
Kevin[m]2 has quit [Read error: Connection reset by peer]
EdmundM[m] has quit [Read error: Connection reset by peer]
isigaesc[m] has quit [Read error: Connection reset by peer]
Sean[m]1 has quit [Read error: Connection reset by peer]
Dave[m]6 has quit [Read error: Connection reset by peer]
te0dDiscord[m] has quit [Read error: Connection reset by peer]
baluptonDiscord[ has quit [Read error: Connection reset by peer]
yosemite007[m] has quit [Read error: Connection reset by peer]
daopu[m] has quit [Read error: Connection reset by peer]
ook_2001 has quit [Read error: Connection reset by peer]
JohnnyMilkshake7 has quit [Read error: Connection reset by peer]
tcoe[m] has quit [Remote host closed the connection]
Slacktoid has quit [Remote host closed the connection]
AutoAIDiscord[m] has quit [Remote host closed the connection]
zoink92Discord[m has quit [Remote host closed the connection]
lamborghiniDisco has quit [Remote host closed the connection]
didi-digitalsheh has quit [Remote host closed the connection]
maht0rz[m] has quit [Remote host closed the connection]
vrolland[m] has quit [Remote host closed the connection]
hyde__Discord[m] has quit [Write error: Connection reset by peer]
shokunin has quit [Write error: Connection reset by peer]
deltaDiscord[m] has quit [Write error: Connection reset by peer]
sunk8180255[m] has quit [Write error: Connection reset by peer]
selousie[m] has quit [Write error: Connection reset by peer]
dydx[m]1 has quit [Remote host closed the connection]
pothyurf[m] has quit [Remote host closed the connection]
hazegrey[m] has quit [Remote host closed the connection]
ZedDiscord[m] has quit [Remote host closed the connection]
raumji[m] has quit [Remote host closed the connection]
ambackDiscord[m] has quit [Remote host closed the connection]
timnetwork[m] has quit [Remote host closed the connection]
fimfx[m] has quit [Remote host closed the connection]
Eryk[m] has quit [Remote host closed the connection]
xiphiness[m] has quit [Remote host closed the connection]
greg[m]1 has quit [Remote host closed the connection]
cybercat[m] has quit [Remote host closed the connection]
crest[m]1 has quit [Write error: Connection reset by peer]
lab8916100448256 has quit [Remote host closed the connection]
octowan[m] has quit [Write error: Connection reset by peer]
tinker[m] has quit [Remote host closed the connection]
ilmu[m] has quit [Remote host closed the connection]
M_discord_507475 has quit [Remote host closed the connection]
fujexo[m] has quit [Remote host closed the connection]
kechenzhou[m] has quit [Remote host closed the connection]
rappelDiscord[m] has quit [Write error: Connection reset by peer]
deepitmatrixorg[ has quit [Write error: Connection reset by peer]
hlon[m] has quit [Read error: Connection reset by peer]
vasaDiscord[m]1 has quit [Remote host closed the connection]
friedrich[m] has quit [Remote host closed the connection]
zegordoDiscord[m has quit [Write error: Connection reset by peer]
marsan27[m] has quit [Write error: Connection reset by peer]
M|NecoDiscord[m] has quit [Write error: Connection reset by peer]
benaszab[m] has quit [Remote host closed the connection]
cesar[m] has quit [Write error: Connection reset by peer]
hElpmomey[m] has quit [Remote host closed the connection]
common-deadwood[ has quit [Write error: Connection reset by peer]
nebulerDiscord[m has quit [Write error: Connection reset by peer]
MasterB[m] has quit [Write error: Connection reset by peer]
Markus72[m] has quit [Write error: Connection reset by peer]
megadogberthehi4 has quit [Remote host closed the connection]
yoltid[m] has quit [Write error: Connection reset by peer]
dennwc[m] has quit [Write error: Connection reset by peer]
shoku[m] has quit [Remote host closed the connection]
mt[m] has quit [Write error: Connection reset by peer]
malaclyps[m]1 has quit [Remote host closed the connection]
fiddeldibu[m] has quit [Read error: Connection reset by peer]
NatoBoram[m]1 has quit [Remote host closed the connection]
mdrights[m] has quit [Write error: Connection reset by peer]
jeannemadeline[m has quit [Remote host closed the connection]
soren-rademacher has quit [Remote host closed the connection]
M5310[m] has quit [Remote host closed the connection]
JrmeCarretero[m] has quit [Remote host closed the connection]
Tryptophan[m] has quit [Remote host closed the connection]
Fuseteam has quit [Read error: Connection reset by peer]
GabrielBadGriefD has quit [Remote host closed the connection]
cannabysDiscord[ has quit [Read error: Connection reset by peer]
aaron[m]3 has quit [Read error: Connection reset by peer]
Roger[m]1 has quit [Read error: Connection reset by peer]
AceFaceDiscord[m has quit [Read error: Connection reset by peer]
snupples[m] has quit [Read error: Connection reset by peer]
irongomme[m] has quit [Read error: Connection reset by peer]
pytlin2718[m] has quit [Read error: Connection reset by peer]
edejong[m] has quit [Write error: Connection reset by peer]
User[m]3 has quit [Read error: Connection reset by peer]
Orkun[m]1 has quit [Read error: Connection reset by peer]
RDeckardDiscord[ has quit [Read error: Connection reset by peer]
pps96[m]1 has quit [Read error: Connection reset by peer]
mhzDiscord[m] has quit [Read error: Connection reset by peer]
Caramba_3000[m] has quit [Read error: Connection reset by peer]
ZapierDiscord[m] has quit [Read error: Connection reset by peer]
AtiqDiscord[m] has quit [Read error: Connection reset by peer]
terichadbourne[m has quit [Read error: Connection reset by peer]
dhole[m] has quit [Read error: Connection reset by peer]
darfk[m] has quit [Read error: Connection reset by peer]
test[m]5 has quit [Read error: Connection reset by peer]
legaltechno[m] has quit [Write error: Connection reset by peer]
Ashaman[m] has quit [Write error: Connection reset by peer]
DerrickFDiscord[ has quit [Read error: Connection reset by peer]
n9tDiscord[m] has quit [Read error: Connection reset by peer]
yabirgbDiscord[m has quit [Write error: Connection reset by peer]
volver17[m] has quit [Write error: Connection reset by peer]
arting[m] has quit [Write error: Connection reset by peer]
fru[m] has quit [Write error: Connection reset by peer]
aswiththewildDis has quit [Write error: Connection reset by peer]
hkdb[m] has quit [Write error: Connection reset by peer]
itsmekntDiscord[ has quit [Remote host closed the connection]
davidar[m] has quit [Read error: Connection reset by peer]
pbaranski[m] has quit [Remote host closed the connection]
johnlong[m] has quit [Write error: Connection reset by peer]
olizillaDiscord[ has quit [Write error: Connection reset by peer]
ZerataX has quit [Write error: Connection reset by peer]
mattober[m] has quit [Write error: Connection reset by peer]
msc[m] has quit [Write error: Connection reset by peer]
reedhhw[m] has quit [Write error: Connection reset by peer]
RaphaelLullis[m] has quit [Write error: Connection reset by peer]
Slacktoid[m] has quit [Write error: Connection reset by peer]
watDiscord[m] has quit [Write error: Connection reset by peer]
Marolar[m] has quit [Write error: Connection reset by peer]
marcocastignoliD has quit [Write error: Connection reset by peer]
SoreGumsDiscord[ has quit [Write error: Connection reset by peer]
carsonfarmer[m]1 has quit [Write error: Connection reset by peer]
sekiDiscord[m] has quit [Write error: Connection reset by peer]
LSJI07Discord[m] has quit [Write error: Connection reset by peer]
KinnardDiscord[4 has quit [Write error: Connection reset by peer]
grvhi[m]1 has quit [Write error: Connection reset by peer]
aschmahmann[m] has quit [Write error: Connection reset by peer]
sukar[m] has quit [Write error: Connection reset by peer]
girzel[m] has quit [Write error: Connection reset by peer]
ShmultzDiscord[m has quit [Write error: Connection reset by peer]
ZeugeIotas[m] has quit [Write error: Connection reset by peer]
TheILlKiD[m] has quit [Write error: Connection reset by peer]
Starism[m] has quit [Write error: Connection reset by peer]
stroopwafel[m] has quit [Write error: Connection reset by peer]
longyap[m] has quit [Write error: Connection reset by peer]
tomaka[m] has quit [Write error: Connection reset by peer]
ghostfire51[m] has quit [Write error: Connection reset by peer]
makeworld has quit [Write error: Connection reset by peer]
amb007[m] has quit [Write error: Connection reset by peer]
AlexanderK[m] has quit [Write error: Connection reset by peer]
logoilab[m] has quit [Write error: Connection reset by peer]
aeddi has quit [Write error: Connection reset by peer]
triskeon[m] has quit [Write error: Connection reset by peer]
iarp[m] has quit [Write error: Connection reset by peer]
mack[m] has quit [Write error: Connection reset by peer]
kylelanpart[m] has quit [Write error: Connection reset by peer]
M0x100e[m] has quit [Write error: Connection reset by peer]
yabirgb-m has quit [Write error: Connection reset by peer]
ndarwincorn has quit [Write error: Connection reset by peer]
Tantin[m] has quit [Write error: Connection reset by peer]
boytemp1[m] has quit [Write error: Connection reset by peer]
dafflDiscord[m] has quit [Remote host closed the connection]
CantiTurtleCoinD has quit [Remote host closed the connection]
scio has quit [Write error: Connection reset by peer]
weareswarmcity[m has quit [Write error: Connection reset by peer]
jeeg[m] has quit [Write error: Connection reset by peer]
sadlotus[m] has quit [Write error: Connection reset by peer]
zopsi[m] has quit [Write error: Connection reset by peer]
Xamino[m] has quit [Write error: Connection reset by peer]
Naughtylus[m]1 has quit [Write error: Connection reset by peer]
Swedneck4 has quit [Write error: Connection reset by peer]
LEdoian[m] has quit [Write error: Connection reset by peer]
chinsuDiscord[m] has quit [Write error: Connection reset by peer]
edd[m] has quit [Write error: Connection reset by peer]
arturo[m] has quit [Write error: Connection reset by peer]
ohmu8[m] has quit [Write error: Broken pipe]
cl0berson[m] has quit [Write error: Connection reset by peer]
machine_sinatra[ has quit [Write error: Connection reset by peer]
nyarlathotepDisc has quit [Write error: Connection reset by peer]
DamirDiscord[m] has quit [Write error: Connection reset by peer]
SuikaDiscord[m] has quit [Write error: Connection reset by peer]
attero has quit [Write error: Connection reset by peer]
achingbrainDisco has quit [Write error: Connection reset by peer]
sumner[m] has quit [Write error: Connection reset by peer]
Lukas[m] has quit [Write error: Connection reset by peer]
noonereally[m] has quit [Write error: Connection reset by peer]
felixschl[m]2 has quit [Write error: Connection reset by peer]
DaekiDiscord[m] has quit [Write error: Connection reset by peer]
maratfx[m] has quit [Write error: Connection reset by peer]
mivticsiaorg[m] has quit [Write error: Connection reset by peer]
murphysking[m] has quit [Write error: Connection reset by peer]
mchelmre[m] has quit [Write error: Connection reset by peer]
SoraLee[m] has quit [Write error: Connection reset by peer]
nick4242[m] has quit [Write error: Connection reset by peer]
clear[m] has quit [Write error: Connection reset by peer]
M5511225464917[m has quit [Write error: Connection reset by peer]
martijnsch[m] has quit [Write error: Connection reset by peer]
ddahlDiscord[m] has quit [Write error: Connection reset by peer]
aeaf123[m] has quit [Write error: Connection reset by peer]
NatoBoram[m]2 has quit [Write error: Connection reset by peer]
DioBrandon[m] has quit [Write error: Connection reset by peer]
soapoperator[m] has quit [Write error: Connection reset by peer]
BossMAN[m] has quit [Write error: Connection reset by peer]
admin[m]2 has quit [Write error: Connection reset by peer]
AxieDiscord[m] has quit [Write error: Connection reset by peer]
olizilla[m] has quit [Write error: Connection reset by peer]
sjkelly[m] has quit [Write error: Connection reset by peer]
Dreamland[m] has quit [Write error: Broken pipe]
janttoDiscord[m] has quit [Write error: Connection reset by peer]
jamiedubsDiscord has quit [Write error: Connection reset by peer]
blxckghxstDiscor has quit [Write error: Connection reset by peer]
hans[m]9 has quit [Write error: Connection reset by peer]
jojobyte[m] has quit [Write error: Broken pipe]
amatuni[m] has quit [Write error: Connection reset by peer]
luigi[m] has quit [Write error: Connection reset by peer]
msena3Discord[m] has quit [Write error: Connection reset by peer]
M3baidDiscord[m] has quit [Write error: Connection reset by peer]
moke12g[m] has quit [Write error: Connection reset by peer]
RodolfoEDiscord[ has quit [Write error: Connection reset by peer]
Phi[m]1 has quit [Write error: Connection reset by peer]
sethforkDiscord[ has quit [Write error: Connection reset by peer]
JonwelDiscord[m] has quit [Write error: Connection reset by peer]
TeamIanDiscord[m has quit [Write error: Connection reset by peer]
obzenba[m] has quit [Write error: Connection reset by peer]
florz[m] has quit [Write error: Connection reset by peer]
zok[m] has quit [Write error: Broken pipe]
RichardLittDisco has quit [Write error: Connection reset by peer]
UsDiscord[m] has quit [Write error: Connection reset by peer]
neilDiscord[m] has quit [Write error: Connection reset by peer]
dogey[m] has quit [Write error: Connection reset by peer]
KisulkenDiscord[ has quit [Write error: Connection reset by peer]
mppl[m] has quit [Write error: Connection reset by peer]
brainbubble[m] has quit [Write error: Connection reset by peer]
sev42[m] has quit [Remote host closed the connection]
steven-snowball[ has quit [Remote host closed the connection]
liuxufei[m] has quit [Remote host closed the connection]
webwurst[m] has quit [Remote host closed the connection]
lililashka[m] has quit [Remote host closed the connection]
alxev[m] has quit [Remote host closed the connection]
okhosting[m] has quit [Remote host closed the connection]
lacunaria[m] has quit [Read error: Connection reset by peer]
mariswang[m] has quit [Remote host closed the connection]
xdrixxyz[m] has quit [Remote host closed the connection]
dunks411Discord[ has quit [Remote host closed the connection]
Marcin[m] has quit [Remote host closed the connection]
gregjeanmartDisc has quit [Remote host closed the connection]
Kisulken[m]1 has quit [Read error: Connection reset by peer]
cryptix[m] has quit [Remote host closed the connection]
cerynon[m] has quit [Read error: Connection reset by peer]
TianyiDiscord[m4 has quit [Read error: Connection reset by peer]
qcf_forever[m] has quit [Read error: Connection reset by peer]
ecloud[m] has quit [Read error: Connection reset by peer]
AXEL-BrianDiscor has quit [Write error: Connection reset by peer]
r0kk3rz[m] has quit [Read error: Connection reset by peer]
jacopostanchi[m] has quit [Read error: Connection reset by peer]
cardDiscord[m] has quit [Read error: Connection reset by peer]
skywavesurfer[m4 has quit [Read error: Connection reset by peer]
Garrett[m] has quit [Read error: Connection reset by peer]
metalhead[m] has quit [Remote host closed the connection]
sandmage[m] has quit [Read error: Connection reset by peer]
haz[m]2 has quit [Read error: Connection reset by peer]
toadkillerdog[m] has quit [Read error: Connection reset by peer]
paulmahone[m]1 has quit [Read error: Connection reset by peer]
guzmanillo[m] has quit [Read error: Connection reset by peer]
olive888[m] has quit [Read error: Connection reset by peer]
QwertyWhoreDisco has quit [Read error: Connection reset by peer]
Sean|FortmaticDi has quit [Read error: Connection reset by peer]
Rumblestiltskin[ has quit [Read error: Connection reset by peer]
cwchristerwDisco has quit [Read error: Connection reset by peer]
modigDiscord[m] has quit [Read error: Connection reset by peer]
braditz[m]2 has quit [Read error: Connection reset by peer]
futstone[m] has quit [Read error: Connection reset by peer]
syxmut[m] has quit [Write error: Connection reset by peer]
lng[m] has quit [Remote host closed the connection]
Geezus42[m] has quit [Remote host closed the connection]
M4star3star2710[ has quit [Remote host closed the connection]
matyas_mustohaDi has quit [Remote host closed the connection]
postablesDiscord has quit [Remote host closed the connection]
ivanDiscord[m] has quit [Remote host closed the connection]
prcDiscord[m] has quit [Remote host closed the connection]
JerbsDiscord[m] has quit [Remote host closed the connection]
OlegStotsky[m] has quit [Remote host closed the connection]
l^discord[m]1 has quit [Remote host closed the connection]
Xierumeng[m] has quit [Remote host closed the connection]
nilocDiscord[m] has quit [Remote host closed the connection]
krhubert[m] has quit [Remote host closed the connection]
PhillmacDiscord[ has quit [Remote host closed the connection]
tapaswenipathak[ has quit [Remote host closed the connection]
tom[m]8 has quit [Remote host closed the connection]
Emile[m] has quit [Remote host closed the connection]
zwj[m] has quit [Remote host closed the connection]
kofalt[m] has quit [Remote host closed the connection]
padok[m] has quit [Remote host closed the connection]
braditzDiscord[m has quit [Remote host closed the connection]
BossMANDiscord[m has quit [Remote host closed the connection]
betamosDiscord[m has quit [Remote host closed the connection]
rezamahdi[m] has quit [Remote host closed the connection]
Rnytom[m] has quit [Remote host closed the connection]
sl[m] has quit [Remote host closed the connection]
sean[m]3 has quit [Remote host closed the connection]
M}Discord[m] has quit [Remote host closed the connection]
Kube6349[m] has quit [Remote host closed the connection]
graceful_luv[m] has quit [Write error: Connection reset by peer]
kiwi_uk[m] has quit [Remote host closed the connection]
jazzy-jeff^_^[m4 has quit [Remote host closed the connection]
dkasak[m] has quit [Remote host closed the connection]
albuic has quit [Write error: Connection reset by peer]
himcesjf has quit [Write error: Connection reset by peer]
doodlemaniaDisco has quit [Remote host closed the connection]
abhi_Discord[m] has quit [Write error: Connection reset by peer]
tobowersDiscord[ has quit [Remote host closed the connection]
dontstalkmepls[m has quit [Read error: Connection reset by peer]
KarlDiscord[m] has quit [Write error: Connection reset by peer]
yangm has quit [Write error: Connection reset by peer]
robinzzzDiscord[ has quit [Write error: Connection reset by peer]
LordFenixNCDisco has quit [Write error: Connection reset by peer]
sfromentDiscord[ has quit [Write error: Connection reset by peer]
enum[m] has quit [Remote host closed the connection]
obernardovieiraD has quit [Write error: Connection reset by peer]
pbvieDiscord[m] has quit [Write error: Connection reset by peer]
flower88Discord[ has quit [Write error: Connection reset by peer]
guigouz has quit [Write error: Connection reset by peer]
OboDiscord[m] has quit [Write error: Connection reset by peer]
kremator[m] has quit [Write error: Connection reset by peer]
jcnmark6[m]1 has quit [Write error: Connection reset by peer]
fLsh42Discord[m] has quit [Write error: Connection reset by peer]
DiscordBridgeswe has quit [Write error: Connection reset by peer]
rxnin[m] has quit [Write error: Connection reset by peer]
Neo[m]3 has quit [Write error: Connection reset by peer]
subuk[m] has quit [Write error: Connection reset by peer]
jeffcasavant[m] has quit [Remote host closed the connection]
Swedneck2 has quit [Remote host closed the connection]
benaszabDiscord[ has quit [Write error: Connection reset by peer]
RaymondFoley[m] has quit [Write error: Connection reset by peer]
RomainDiscord[m] has quit [Write error: Connection reset by peer]
chrisDiscord[m] has quit [Write error: Connection reset by peer]
thomasDiscord[m] has quit [Write error: Connection reset by peer]
wak-work has quit [Write error: Connection reset by peer]
BeatRupp[m] has quit [Write error: Connection reset by peer]
Caleb[m]1 has quit [Write error: Connection reset by peer]
Lrrr[m] has quit [Write error: Connection reset by peer]
admin[m]4 has quit [Write error: Connection reset by peer]
Pamileisson2582[ has quit [Write error: Connection reset by peer]
fcgreg[m] has quit [Read error: Connection reset by peer]
brianbland[m] has quit [Write error: Connection reset by peer]
tommos0 has quit [Write error: Connection reset by peer]
kyb[m] has quit [Write error: Connection reset by peer]
Chaos[m] has quit [Write error: Connection reset by peer]
JungleHeartDisco has quit [Write error: Connection reset by peer]
natmac[m] has quit [Write error: Connection reset by peer]
jessicaschilling has quit [Write error: Connection reset by peer]
linuslee[m] has quit [Read error: Connection reset by peer]
MindlessTux[m] has quit [Write error: Connection reset by peer]
radsal[m] has quit [Read error: Connection reset by peer]
kst[m] has quit [Read error: Connection reset by peer]
Discord[m]1 has quit [Read error: Connection reset by peer]
ist5shreawf[m] has quit [Write error: Connection reset by peer]
skillman623[m] has quit [Read error: Connection reset by peer]
anomie[m] has quit [Read error: Connection reset by peer]
nolep[m] has quit [Read error: Connection reset by peer]
slang[m] has quit [Write error: Connection reset by peer]
wenchao[m] has quit [Write error: Connection reset by peer]
ozymandia5[m] has quit [Write error: Connection reset by peer]
ttk2[m] has quit [Read error: Connection reset by peer]
notafile has quit [Read error: Connection reset by peer]
M{|}Discord[m] has quit [Remote host closed the connection]
K0HAX-Matrix has quit [Read error: Connection reset by peer]
dqxDiscord[m] has quit [Read error: Connection reset by peer]
LordFenixNC[m]1 has quit [Write error: Connection reset by peer]
RyonezCoruscareD has quit [Read error: Connection reset by peer]
AraratDiscord[m] has quit [Read error: Connection reset by peer]
fexra|TRTLDiscor has quit [Write error: Connection reset by peer]
dar[m] has quit [Write error: Connection reset by peer]
celsoDiscord[m] has quit [Write error: Connection reset by peer]
tree[m] has quit [Write error: Connection reset by peer]
OlegStotskyDisco has quit [Write error: Connection reset by peer]
arjenpdevries[m] has quit [Write error: Connection reset by peer]
imj[m] has quit [Write error: Connection reset by peer]
FineDiscord[m] has quit [Read error: Connection reset by peer]
Dan[m] has quit [Write error: Connection reset by peer]
thestevewayDisco has quit [Read error: Connection reset by peer]
NastyEbilPiwateD has quit [Read error: Connection reset by peer]
Gabriel[Matrix] has quit [Write error: Connection reset by peer]
eosianx[m] has quit [Write error: Connection reset by peer]
arhik[m] has quit [Write error: Connection reset by peer]
althaser has quit [Write error: Connection reset by peer]
Manu[m] has quit [Write error: Connection reset by peer]
crydamoure[m] has quit [Write error: Connection reset by peer]
matias[m]1 has quit [Write error: Connection reset by peer]
geriatricjacob[m has quit [Write error: Connection reset by peer]
Nomad[m]2 has quit [Write error: Connection reset by peer]
iforgotmyusernam has quit [Write error: Connection reset by peer]
errichellic[m] has quit [Write error: Connection reset by peer]
eren[m] has quit [Write error: Connection reset by peer]
blurHY[m] has quit [Write error: Connection reset by peer]
Alin[m] has quit [Write error: Connection reset by peer]
achingbrain[m] has quit [Write error: Connection reset by peer]
dude[m]1 has quit [Write error: Connection reset by peer]
Matrixdiscordbri has quit [Write error: Connection reset by peer]
Crunch9960[m] has quit [Write error: Connection reset by peer]
ErCiccione[m] has quit [Write error: Connection reset by peer]
Jtremback[m] has quit [Write error: Connection reset by peer]
catmanDiscord[m] has quit [Write error: Connection reset by peer]
colinbr has quit [Write error: Connection reset by peer]
vexl[m]2 has quit [Write error: Connection reset by peer]
iodine[m] has quit [Write error: Connection reset by peer]
mwee[m] has quit [Write error: Connection reset by peer]
olmvnec[m] has quit [Read error: Connection reset by peer]
Suprscale[m] has quit [Write error: Connection reset by peer]
Half-Shot has quit [Read error: Connection reset by peer]
gorhgorhDiscord[ has quit [Write error: Connection reset by peer]
AuHauDiscord[m] has quit [Write error: Connection reset by peer]
felixschlDiscord has quit [Write error: Connection reset by peer]
Dby0Discord[m] has quit [Write error: Connection reset by peer]
MichaelTenDiscor has quit [Write error: Connection reset by peer]
Neuromancer[m] has quit [Write error: Connection reset by peer]
h2Discord[m] has quit [Write error: Connection reset by peer]
luke-clifton[m] has quit [Write error: Connection reset by peer]
noman-land[m] has quit [Write error: Connection reset by peer]
imatrix[m] has quit [Write error: Connection reset by peer]
snap[m] has quit [Write error: Connection reset by peer]
harkenedraven has quit [Write error: Connection reset by peer]
various_accounts has quit [Write error: Connection reset by peer]
cyberward_matrix has quit [Write error: Connection reset by peer]
Brio[m] has quit [Write error: Connection reset by peer]
jayw[m] has quit [Write error: Connection reset by peer]
jonoberg[m] has quit [Write error: Connection reset by peer]
hans[m]6 has quit [Write error: Connection reset by peer]
TheFuzzStone[m] has quit [Write error: Connection reset by peer]
Cameron[m]1 has quit [Write error: Connection reset by peer]
mtita[m] has quit [Write error: Connection reset by peer]
godparticleDisco has quit [Remote host closed the connection]
zloba[m] has quit [Remote host closed the connection]
william_shakesDi has quit [Write error: Connection reset by peer]
mntr0[m] has quit [Write error: Connection reset by peer]
thatguyDiscord[m has quit [Write error: Broken pipe]
Quasdio[m] has quit [Write error: Connection reset by peer]
PhiDiscord[m] has quit [Write error: Connection reset by peer]
netshroom[m] has quit [Write error: Connection reset by peer]
modul8[m] has quit [Write error: Connection reset by peer]
weeatbricks[m] has quit [Write error: Connection reset by peer]
freddor has quit [Write error: Connection reset by peer]
XierumengDiscord has quit [Write error: Connection reset by peer]
Tbi[m] has quit [Write error: Connection reset by peer]
silur[m] has quit [Write error: Connection reset by peer]
AgentJ[m] has quit [Write error: Connection reset by peer]
carsonfarmerDisc has quit [Remote host closed the connection]
wicker[m] has quit [Read error: Connection reset by peer]
simbergm has quit [Write error: Connection reset by peer]
benpa[m] has quit [Write error: Connection reset by peer]
herronjo[m] has quit [Write error: Connection reset by peer]
gearcat[m] has quit [Write error: Connection reset by peer]
glothit7ok[m] has quit [Write error: Connection reset by peer]
sewardsfolly[m] has quit [Remote host closed the connection]
neurocis|piggy-c has quit [Remote host closed the connection]
d-nice2[m] has quit [Remote host closed the connection]
intrus[m] has quit [Write error: Connection reset by peer]
combrayDiscord[m has quit [Remote host closed the connection]
NicolasLeGland[m has quit [Remote host closed the connection]
rozgoDiscord[m] has quit [Write error: Connection reset by peer]
dani9[m] has quit [Write error: Broken pipe]
cw[m]1 has quit [Remote host closed the connection]
jmank88Discord[m has quit [Write error: Connection reset by peer]
amatuniDiscord[m has quit [Write error: Connection reset by peer]
RoverChen[m] has quit [Remote host closed the connection]
coil[m] has quit [Read error: Connection reset by peer]
bekoDiscord[m] has quit [Read error: Connection reset by peer]
ScottSmileyDisco has quit [Read error: Connection reset by peer]
jazzy-jeff^_^Dis has quit [Read error: Connection reset by peer]
test123Discord[m has quit [Read error: Connection reset by peer]
Iroh[m] has quit [Read error: Connection reset by peer]
xtream1101Discor has quit [Read error: Connection reset by peer]
neohexDiscord[m] has quit [Read error: Connection reset by peer]
Methos[m] has quit [Read error: Connection reset by peer]
kanejDiscord[m] has quit [Read error: Connection reset by peer]
sbpDiscord[m] has quit [Read error: Connection reset by peer]
ciechomke[m] has quit [Read error: Connection reset by peer]
Steff[m]1 has quit [Read error: Connection reset by peer]
JustMaierDiscord has quit [Read error: Connection reset by peer]
cristobalDiscord has quit [Read error: Connection reset by peer]
tidux[m]1 has quit [Read error: Connection reset by peer]
pigmej has quit [Write error: Connection reset by peer]
camb[m] has quit [Read error: Connection reset by peer]
planetx[m] has quit [Read error: Connection reset by peer]
Technoquake has quit [Read error: Connection reset by peer]
dtz has quit [Read error: Connection reset by peer]
oatmealraisin[m] has quit [Read error: Connection reset by peer]
null0x1[m] has quit [Read error: Connection reset by peer]
weigood[m] has quit [Read error: Connection reset by peer]
boomshroomDiscor has quit [Read error: Connection reset by peer]
MilkManzJourDadd has quit [Remote host closed the connection]
jharrison[m] has quit [Remote host closed the connection]
rib[m] has quit [Remote host closed the connection]
hamb_urglar[m] has quit [Remote host closed the connection]
M011000100111010 has quit [Remote host closed the connection]
moicoquillage[m] has quit [Remote host closed the connection]
Hsiu-PingNichola has quit [Remote host closed the connection]
flip[m] has quit [Read error: Connection reset by peer]
kungfooman[m] has quit [Read error: Connection reset by peer]
johanhermanDisco has quit [Read error: Connection reset by peer]
h0lylag[m] has quit [Read error: Connection reset by peer]
nigre-dique[m] has quit [Read error: Connection reset by peer]
KYZITEMELOS93Dis has quit [Write error: Connection reset by peer]
hjoest[m] has quit [Read error: Connection reset by peer]
hansyan[m] has quit [Read error: Connection reset by peer]
spacedgod[m] has quit [Read error: Connection reset by peer]
josiah_sama has quit [Read error: Connection reset by peer]
bitspillDiscord[ has quit [Read error: Connection reset by peer]
daviddias[m] has quit [Read error: Connection reset by peer]
bengoDiscord[m] has quit [Read error: Connection reset by peer]
MV[m] has quit [Read error: Connection reset by peer]
godseyeview[m] has quit [Read error: Connection reset by peer]
M981031046badd[m has quit [Read error: Connection reset by peer]
love2lose[m] has quit [Read error: Connection reset by peer]
DrDeFacto[m] has quit [Read error: Connection reset by peer]
T-19[m] has quit [Read error: Connection reset by peer]
M699[m] has quit [Read error: Connection reset by peer]
josephnicholasGM has quit [Read error: Connection reset by peer]
Deviousway[m] has quit [Read error: Connection reset by peer]
dyskon[m] has quit [Read error: Connection reset by peer]
FranklinDiscord[ has quit [Read error: Connection reset by peer]
allgoDiscord[m] has quit [Read error: Connection reset by peer]
bostaDiscord[m] has quit [Read error: Connection reset by peer]
newp[m] has quit [Read error: Connection reset by peer]
OxyDiscord[m] has quit [Read error: Connection reset by peer]
ookfof[m] has quit [Read error: Connection reset by peer]
felixschlDiscor4 has quit [Read error: Connection reset by peer]
c090178[m] has quit [Remote host closed the connection]
piajesse[m]1 has quit [Read error: Connection reset by peer]
MisterGore[m] has quit [Read error: Connection reset by peer]
tammers[m] has quit [Read error: Connection reset by peer]
l0re[m] has quit [Read error: Connection reset by peer]
pineapplehunter[ has quit [Read error: Connection reset by peer]
TravisJames[m] has quit [Read error: Connection reset by peer]
eshohetDiscord[m has quit [Read error: Connection reset by peer]
sprayDiscord[m] has quit [Read error: Connection reset by peer]
Kiesenverseist[m has quit [Read error: Connection reset by peer]
AdamHepner[m] has quit [Read error: Connection reset by peer]
aleksssboss157[m has quit [Read error: Connection reset by peer]
dharwin[m] has quit [Read error: Connection reset by peer]
mewtrino has quit [Read error: Connection reset by peer]
tuxiqae[m]1 has quit [Read error: Connection reset by peer]
midi[m] has quit [Read error: Connection reset by peer]
Ericson2314 has quit [Read error: Connection reset by peer]
emceeaich[m] has quit [Read error: Connection reset by peer]
abueide[m] has quit [Read error: Connection reset by peer]
notfirewall[m] has quit [Read error: Connection reset by peer]
PermawebEmbedDis has quit [Read error: Connection reset by peer]
MarekIsalski[m] has quit [Read error: Connection reset by peer]
siddh88[m] has quit [Read error: Connection reset by peer]
Mai-HsuanKevinCh has quit [Read error: Connection reset by peer]
huaxiaone[m] has quit [Write error: Connection reset by peer]
Matthew[m] has quit [Read error: Connection reset by peer]
l^discordDiscord has quit [Read error: Connection reset by peer]
mrtrooper[m] has quit [Read error: Connection reset by peer]
maparentDiscord[ has quit [Read error: Connection reset by peer]
leer10matrixorg[ has quit [Read error: Connection reset by peer]
codynhatDiscord[ has quit [Read error: Connection reset by peer]
Neroprojekt5071[ has quit [Read error: Connection reset by peer]
sukarDiscord[m] has quit [Read error: Connection reset by peer]
shubatman[m] has quit [Write error: Connection reset by peer]
IPFSFanDiscord[m has quit [Remote host closed the connection]
spencerflagg[m] has quit [Remote host closed the connection]
SmileRobot[m] has quit [Remote host closed the connection]
graylan[m] has quit [Remote host closed the connection]
ntninja has quit [Remote host closed the connection]
CathyLDiscord[m] has quit [Remote host closed the connection]
jimpickDiscord[m has quit [Remote host closed the connection]
sblinnDiscord[m] has quit [Remote host closed the connection]
denzukoDiscord[m has quit [Remote host closed the connection]
h4314[m] has quit [Remote host closed the connection]
vamsi[m] has quit [Remote host closed the connection]
tony[m]2 has quit [Remote host closed the connection]
Bertschneider[m] has quit [Remote host closed the connection]
Lindencommunity[ has quit [Remote host closed the connection]
kanej[m]2 has quit [Remote host closed the connection]
peterk[m] has quit [Remote host closed the connection]
standard[m] has quit [Remote host closed the connection]
cristobalDiscor4 has quit [Remote host closed the connection]
chris-g[m] has quit [Remote host closed the connection]
flh[m] has quit [Remote host closed the connection]
CocoonCrashDisco has quit [Remote host closed the connection]
LAkiraS[m] has quit [Remote host closed the connection]
erlend_sh[m] has quit [Remote host closed the connection]
nudin[m] has quit [Remote host closed the connection]
dumuzid[m] has quit [Remote host closed the connection]
richtercamdenDis has quit [Remote host closed the connection]
jump_spider has quit [Read error: Connection reset by peer]
Giovanni[m]1 has quit [Remote host closed the connection]
brotholo[m] has quit [Remote host closed the connection]
DiscordBridge[m4 has quit [Remote host closed the connection]
dignifiedquireDi has quit [Read error: Connection reset by peer]
NebulousDiscord[ has quit [Remote host closed the connection]
r5723013[m]1 has quit [Remote host closed the connection]
techbolt has quit [Remote host closed the connection]
SpaceOutlawDisco has quit [Read error: Connection reset by peer]
Michi[m] has quit [Read error: Connection reset by peer]
Quiark has quit [Remote host closed the connection]
theorangepotato[ has quit [Write error: Connection reset by peer]
KevlarmonkeyDisc has quit [Read error: Connection reset by peer]
EugeneDiscord[m] has quit [Read error: Connection reset by peer]
deva[m] has quit [Write error: Connection reset by peer]
mvalente[m] has quit [Write error: Connection reset by peer]
mattcDiscord[m] has quit [Read error: Connection reset by peer]
user51[m] has quit [Write error: Connection reset by peer]
capDiscord[m] has quit [Remote host closed the connection]
HerculanoDiscord has quit [Write error: Connection reset by peer]
peat3398[m] has quit [Write error: Connection reset by peer]
dhenz3SpeakDisco has quit [Write error: Connection reset by peer]
sachaDiscord[m] has quit [Write error: Connection reset by peer]
ngamboaDiscord[m has quit [Write error: Connection reset by peer]
alphapapaactualD has quit [Write error: Connection reset by peer]
farhad312Discord has quit [Write error: Connection reset by peer]
ExpherienceDisco has quit [Write error: Connection reset by peer]
Bads3ctor9700[m] has quit [Write error: Connection reset by peer]
celsoDiscord[m]1 has quit [Write error: Connection reset by peer]
SmileRobotDiscor has quit [Write error: Connection reset by peer]
CrocodillianDisc has quit [Write error: Connection reset by peer]
GitterIntegratio has quit [Write error: Connection reset by peer]
edrex has quit [Write error: Connection reset by peer]
exothermic[m] has quit [Write error: Connection reset by peer]
zaphar_ps[m] has quit [Write error: Connection reset by peer]
steven[m]3 has quit [Write error: Connection reset by peer]
trickytiger[m] has quit [Write error: Connection reset by peer]
yeschyem[m] has quit [Write error: Connection reset by peer]
Jaoheah[m]1 has quit [Write error: Connection reset by peer]
DianaQueen[m] has quit [Write error: Connection reset by peer]
fmidq[m] has quit [Write error: Connection reset by peer]
freakerz[m] has quit [Write error: Connection reset by peer]
janjko[m] has quit [Write error: Connection reset by peer]
spk[m] has quit [Write error: Connection reset by peer]
tsyn[m] has quit [Write error: Connection reset by peer]
thaingo[m] has quit [Write error: Connection reset by peer]
clf[m] has quit [Write error: Connection reset by peer]
KubeWorshipper[m has quit [Write error: Connection reset by peer]
Jacob[m]1 has quit [Write error: Connection reset by peer]
pydera[m] has quit [Write error: Connection reset by peer]
piotrszegda[m] has quit [Write error: Connection reset by peer]
lilz[m] has quit [Write error: Connection reset by peer]
limace255[m] has quit [Write error: Connection reset by peer]
swedneckswednec4 has quit [Write error: Connection reset by peer]
paulmahone[m] has quit [Write error: Connection reset by peer]
ibit[m]1 has quit [Write error: Connection reset by peer]
alex[m]1 has quit [Write error: Connection reset by peer]
GeorgeAntoniadis has quit [Write error: Connection reset by peer]
Kisulken[m] has quit [Write error: Connection reset by peer]
anolir has quit [Write error: Connection reset by peer]
PamileissonDisco has quit [Write error: Connection reset by peer]
anna[m] has quit [Remote host closed the connection]
igel[m] has quit [Read error: Connection reset by peer]
iamswainDiscord[ has quit [Remote host closed the connection]
cristobal7524[m] has quit [Remote host closed the connection]
turt2live has quit [Write error: Connection reset by peer]
jcgruenhage has quit [Write error: Connection reset by peer]
Swedneck3 has quit [Write error: Broken pipe]
RIOTIM[m] has quit [Write error: Connection reset by peer]
xavivives[m] has quit [Write error: Connection reset by peer]
dag[m] has quit [Write error: Connection reset by peer]
plasma_000[m] has quit [Remote host closed the connection]
manfredDiscord[m has quit [Write error: Connection reset by peer]
wngrDiscord[m] has quit [Write error: Connection reset by peer]
axx[m] has quit [Write error: Connection reset by peer]
peat[m] has quit [Write error: Connection reset by peer]
vpei[m] has quit [Write error: Connection reset by peer]
lck[m] has quit [Remote host closed the connection]
Naughtylus[m] has quit [Write error: Connection reset by peer]
miseenplace[m] has quit [Read error: Connection reset by peer]
malaclypsDiscord has quit [Write error: Connection reset by peer]
MatthDiscord[m] has quit [Write error: Connection reset by peer]
SweatDiscord[m] has quit [Write error: Connection reset by peer]
psyonityDiscord[ has quit [Write error: Connection reset by peer]
DarkDrgn2k[m] has quit [Write error: Connection reset by peer]
vugupogaha[m] has quit [Write error: Connection reset by peer]
id[m] has quit [Write error: Connection reset by peer]
abhi2810[m] has quit [Write error: Connection reset by peer]
toml[m] has quit [Write error: Connection reset by peer]
Luna14Discord[m] has quit [Read error: Connection reset by peer]
Dude[m] has quit [Write error: Connection reset by peer]
linus[m] has quit [Write error: Connection reset by peer]
zondulon[m] has quit [Write error: Connection reset by peer]
cubemonkey[m] has quit [Write error: Connection reset by peer]
Dazuck-3BoxDisco has quit [Write error: Broken pipe]
TionisNagir[m] has quit [Write error: Connection reset by peer]
ilee[m] has quit [Write error: Connection reset by peer]
Seb[m]2 has quit [Write error: Connection reset by peer]
ArunDiscord[m] has quit [Write error: Connection reset by peer]
doorknob88Discor has quit [Write error: Connection reset by peer]
djdv[m] has quit [Write error: Connection reset by peer]
Jonwel[m] has quit [Write error: Connection reset by peer]
halifoxDiscord[m has quit [Write error: Connection reset by peer]
leoalvarezhDisc4 has quit [Write error: Connection reset by peer]
fozzieDiscord[m] has quit [Write error: Connection reset by peer]
shevski[m] has quit [Write error: Connection reset by peer]
Bzh[m] has quit [Write error: Connection reset by peer]
aphelionzDiscord has quit [Write error: Connection reset by peer]
freeforme[m] has quit [Write error: Broken pipe]
mshaq[m] has quit [Write error: Connection reset by peer]
M3v0lv3r[m] has quit [Write error: Broken pipe]
corylDiscord[m] has quit [Write error: Connection reset by peer]
jimt[m] has quit [Write error: Connection reset by peer]
shaaliliton39[m] has quit [Write error: Connection reset by peer]
ShruthiDiscord[m has quit [Write error: Connection reset by peer]
victor[m]3 has quit [Write error: Connection reset by peer]
MatrixBridgeswed has quit [Write error: Connection reset by peer]
loken87[m] has quit [Write error: Connection reset by peer]
NiGeR[m] has quit [Write error: Connection reset by peer]
HeishDiscord[m] has quit [Write error: Connection reset by peer]
plexus[m]1 has quit [Write error: Connection reset by peer]
TeamIan[m] has quit [Write error: Connection reset by peer]
bennofs[m] has quit [Write error: Connection reset by peer]
kanej[m]1 has quit [Write error: Connection reset by peer]
killswitch[m] has quit [Write error: Connection reset by peer]
thoth-el999[m] has quit [Write error: Connection reset by peer]
haliucinas[m] has quit [Write error: Connection reset by peer]
marcocastignoli7 has quit [Write error: Broken pipe]
SchwartzDiscord[ has quit [Write error: Connection reset by peer]
ryan[m]1 has quit [Write error: Broken pipe]
mvalente[m]1 has quit [Write error: Connection reset by peer]
msmart[m] has quit [Write error: Connection reset by peer]
marius_k[m] has quit [Write error: Connection reset by peer]
JulianDreier[m] has quit [Write error: Connection reset by peer]
rocketonmars[m] has quit [Write error: Broken pipe]
mkg20001 has quit [Write error: Connection reset by peer]
samamy[m] has quit [Write error: Connection reset by peer]
nemon[m] has quit [Write error: Connection reset by peer]
llatic[m] has quit [Write error: Connection reset by peer]
Zed[m]2 has quit [Write error: Broken pipe]
mayel[m]1 has quit [Write error: Connection reset by peer]
RealityDiscord[m has quit [Write error: Broken pipe]
marcocastignoli[ has quit [Write error: Connection reset by peer]
tomtato[m] has quit [Write error: Connection reset by peer]
humanwire[m] has quit [Write error: Connection reset by peer]
frislie[m] has quit [Write error: Connection reset by peer]
unclechu has quit [Write error: Connection reset by peer]
roadt[m] has quit [Write error: Connection reset by peer]
MagnusSvensson[m has quit [Write error: Connection reset by peer]
r5723013Discord[ has quit [Remote host closed the connection]
gfelbing[m] has quit [Remote host closed the connection]
attenuation[m] has quit [Read error: Connection reset by peer]
boatsandhoesDisc has quit [Write error: Connection reset by peer]
smarkey[m] has quit [Read error: Connection reset by peer]
fatman2019[m] has quit [Read error: Connection reset by peer]
UX0[m] has quit [Remote host closed the connection]
Krakakanok[m] has quit [Remote host closed the connection]
abby18[m] has quit [Remote host closed the connection]
M-Sonata has quit [Write error: Connection reset by peer]
equbit has quit [Read error: Connection reset by peer]
http302[m] has quit [Read error: Connection reset by peer]
anoa has quit [Write error: Connection reset by peer]
multik[m] has quit [Read error: Connection reset by peer]
M0xAF[m] has quit [Read error: Connection reset by peer]
MaggieDiscord[m] has quit [Remote host closed the connection]
leoalvarezh[m]1 has quit [Read error: Connection reset by peer]
hsanjuan[m] has quit [Read error: Connection reset by peer]
ad87657Discord[m has quit [Read error: Connection reset by peer]
leoalvarezh[m]2 has quit [Read error: Connection reset by peer]
xcesiv[m] has quit [Read error: Connection reset by peer]
magnetist[m] has quit [Read error: Connection reset by peer]
wshino[m] has quit [Read error: Connection reset by peer]
memorythought has quit [Read error: Connection reset by peer]
ingo[m] has quit [Read error: Connection reset by peer]
xswe3456ui[m] has quit [Read error: Connection reset by peer]
yaksbeard[m]1 has quit [Read error: Connection reset by peer]
d1mur4tdj[m] has quit [Read error: Connection reset by peer]
b1ack0ut[m] has quit [Read error: Connection reset by peer]
sigmaister[m] has quit [Read error: Connection reset by peer]
kobajagi has quit [Read error: Connection reset by peer]
khanson[m] has quit [Read error: Connection reset by peer]
ad5twoknebor[m] has quit [Write error: Connection reset by peer]
paulus[m] has quit [Write error: Connection reset by peer]
silwol has quit [Write error: Broken pipe]
RobotLordimperia has quit [Write error: Connection reset by peer]
ShokuninDiscord[ has quit [Read error: Connection reset by peer]
Us[m] has quit [Read error: Connection reset by peer]
nofwayy[m] has quit [Read error: Connection reset by peer]
ryanchristo[m] has quit [Remote host closed the connection]
JungleHeart[m] has quit [Remote host closed the connection]
mattc[m] has quit [Read error: Connection reset by peer]
combray[m] has quit [Read error: Connection reset by peer]
truth[m] has quit [Read error: Connection reset by peer]
pbvie[m] has quit [Read error: Connection reset by peer]
allgo[m]1 has quit [Read error: Connection reset by peer]
nocent9720[m] has quit [Read error: Connection reset by peer]
wrunt[m] has quit [Read error: Connection reset by peer]
Eugene[m] has quit [Read error: Connection reset by peer]
philipp[m] has quit [Read error: Connection reset by peer]
bofu[m] has quit [Read error: Connection reset by peer]
defnofdumb[m] has quit [Read error: Connection reset by peer]
bok911[m] has quit [Read error: Connection reset by peer]
Kenzo3Discord[m] has quit [Read error: Connection reset by peer]
smartsammler[m] has quit [Read error: Connection reset by peer]
silkeh has quit [Read error: Connection reset by peer]
M5310Discord[m] has quit [Read error: Connection reset by peer]
MisterGoreDiscor has quit [Write error: Connection reset by peer]
7ITAAFOI8 has quit [Read error: Connection reset by peer]
swedneck[GMT1]Di has quit [Write error: Connection reset by peer]
mZDiscord[m]1 has quit [Write error: Connection reset by peer]
JaoheahDiscord[m has quit [Write error: Connection reset by peer]
LuutheCoolDiscor has quit [Read error: Connection reset by peer]
themsay[m] has quit [Remote host closed the connection]
thomasbDiscord[m has quit [Write error: Connection reset by peer]
OrkunDiscord[m] has quit [Write error: Connection reset by peer]
foxcoolDiscord[4 has quit [Write error: Connection reset by peer]
tragique[m] has quit [Read error: Connection reset by peer]
momack2[m] has quit [Read error: Connection reset by peer]
aphelionz[m]1 has quit [Read error: Connection reset by peer]
fredrikj_tmp has quit [Read error: Connection reset by peer]
vaultec81[m] has quit [Read error: Connection reset by peer]
gorhgorh[m]1 has quit [Write error: Connection reset by peer]
vencent has quit [Write error: Connection reset by peer]
contrun[m] has quit [Write error: Connection reset by peer]
aleDiscord[m] has quit [Write error: Connection reset by peer]
jklepatchDiscord has quit [Write error: Connection reset by peer]
MairkurDiscord[m has quit [Write error: Connection reset by peer]
AnthonyADiscord[ has quit [Write error: Connection reset by peer]
mZDiscord[m] has quit [Write error: Connection reset by peer]
Klara[m] has quit [Write error: Connection reset by peer]
andrewxhill3607[ has quit [Write error: Connection reset by peer]
gts[m] has quit [Read error: Connection reset by peer]
astrojl_matrix has quit [Write error: Connection reset by peer]
salazarp[m] has quit [Write error: Connection reset by peer]
nyarlathotep[m] has quit [Read error: Connection reset by peer]
Alpha3031[m] has quit [Write error: Connection reset by peer]
KubeDiscord[m] has quit [Remote host closed the connection]
jon1012[m] has quit [Read error: Connection reset by peer]
lapav[m] has quit [Write error: Connection reset by peer]
PopeRigby[m] has quit [Write error: Connection reset by peer]
micahscopes has quit [Write error: Connection reset by peer]
adrienlivet[m] has quit [Write error: Connection reset by peer]
raku[m] has quit [Write error: Connection reset by peer]
vladimir[m]1 has quit [Write error: Connection reset by peer]
Phillmac[m] has quit [Write error: Connection reset by peer]
tomjwatson[m] has quit [Write error: Connection reset by peer]
TristanDiscord[m has quit [Write error: Connection reset by peer]
ngerstle[m] has quit [Remote host closed the connection]
llllllDiscord[m] has quit [Write error: Connection reset by peer]
carstenmunk2312[ has quit [Write error: Connection reset by peer]
Eats3601[m] has quit [Write error: Connection reset by peer]
JeanDiscord[m] has quit [Write error: Connection reset by peer]
hvergaraDiscord[ has quit [Write error: Connection reset by peer]
TiaguilsoDiscord has quit [Write error: Connection reset by peer]
FusonDiscord[m] has quit [Write error: Connection reset by peer]
raulDiscord[m] has quit [Write error: Connection reset by peer]
anthony-albertor has quit [Write error: Connection reset by peer]
placer14Discord[ has quit [Write error: Connection reset by peer]
TianyiDiscord[m] has quit [Write error: Connection reset by peer]
AblibuDiscord[m] has quit [Write error: Connection reset by peer]
JayWelshDiscord[ has quit [Write error: Connection reset by peer]
rklaehnDiscord[m has quit [Write error: Connection reset by peer]
nlkoDiscord[m] has quit [Write error: Connection reset by peer]
TionisDiscord[m] has quit [Write error: Connection reset by peer]
pierrebocDiscord has quit [Write error: Connection reset by peer]
eddyDiscord[m] has quit [Write error: Connection reset by peer]
RockSteadyTRTLDi has quit [Write error: Connection reset by peer]
cyluDiscord[m] has quit [Write error: Connection reset by peer]
koalalorenzoDisc has quit [Write error: Connection reset by peer]
DioBrandonDiscor has quit [Write error: Connection reset by peer]
discord[m] has quit [Write error: Connection reset by peer]
aaronpkDiscord[m has quit [Write error: Connection reset by peer]
skillman623Disco has quit [Write error: Connection reset by peer]
Sm03leBr00tDisco has quit [Write error: Connection reset by peer]
MikeShultzDiscor has quit [Write error: Connection reset by peer]
bushido711Discor has quit [Write error: Connection reset by peer]
kw0n[m] has quit [Remote host closed the connection]
catman[m] has quit [Write error: Connection reset by peer]
cikavuveDiscord[ has quit [Write error: Connection reset by peer]
M123897974564Dis has quit [Write error: Connection reset by peer]
KeegenDiscord[m] has quit [Write error: Connection reset by peer]
modig[m] has quit [Write error: Connection reset by peer]
yolo[m] has quit [Write error: Connection reset by peer]
arinholmes[m] has quit [Write error: Connection reset by peer]
postables[m]1 has quit [Write error: Connection reset by peer]
jak[m] has quit [Write error: Connection reset by peer]
instagateur[m] has quit [Write error: Connection reset by peer]
megadogberthehim has quit [Write error: Connection reset by peer]
methodx[m] has quit [Write error: Connection reset by peer]
inkspread[m] has quit [Write error: Connection reset by peer]
r0cknr0lla[m] has quit [Write error: Connection reset by peer]
bmiller59[m] has quit [Write error: Connection reset by peer]
delta[m]1 has quit [Write error: Connection reset by peer]
lidel[m] has quit [Write error: Connection reset by peer]
xbwpc[m] has quit [Write error: Connection reset by peer]
TheDarthSquidwar has quit [Write error: Connection reset by peer]
gharbeia[m] has quit [Write error: Connection reset by peer]
dy5es41Discord[m has quit [Write error: Connection reset by peer]
kizzie[m] has quit [Write error: Connection reset by peer]
BlueBaron[m] has quit [Write error: Connection reset by peer]
braditzDiscord[4 has quit [Write error: Connection reset by peer]
Romain[m]1 has quit [Write error: Connection reset by peer]
thechiefmeat[m] has quit [Write error: Connection reset by peer]
aha[m] has quit [Write error: Connection reset by peer]
vinDiscord[m] has quit [Write error: Connection reset by peer]
palantir22[m] has quit [Write error: Connection reset by peer]
denko32133[m] has quit [Write error: Connection reset by peer]
howitz3r[m] has quit [Write error: Connection reset by peer]
wchargin[m] has quit [Write error: Connection reset by peer]
pps96Discord[m] has quit [Write error: Connection reset by peer]
the_nikinDiscord has quit [Write error: Broken pipe]
PeciakDiscord[m] has quit [Write error: Connection reset by peer]
hoijui[m] has quit [Write error: Connection reset by peer]
crunch[m] has quit [Write error: Connection reset by peer]
nldvos[m] has quit [Write error: Connection reset by peer]
franc1s has quit [Write error: Connection reset by peer]
Brasserie[m] has quit [Write error: Connection reset by peer]
nofwayyDiscord[m has quit [Write error: Connection reset by peer]
RealSnazzyDiscor has quit [Write error: Connection reset by peer]
chmanieDiscord[m has quit [Write error: Connection reset by peer]
GorkaDiscord[m] has quit [Write error: Connection reset by peer]
kevinbird15Disco has quit [Write error: Connection reset by peer]
chmanieDiscord[4 has quit [Write error: Connection reset by peer]
legendplays93[m] has quit [Write error: Connection reset by peer]
Sisyphe[m] has quit [Write error: Connection reset by peer]
ar[m] has quit [Write error: Connection reset by peer]
vormgear[m] has quit [Write error: Connection reset by peer]
garblur83[m] has quit [Remote host closed the connection]
neonfuz2 has quit [Write error: Connection reset by peer]
bhp[m] has quit [Write error: Connection reset by peer]
laurent[m]2 has quit [Write error: Connection reset by peer]
felixschl[m]3 has quit [Write error: Connection reset by peer]
KeiiNisimo[m] has quit [Write error: Connection reset by peer]
plindner[m] has quit [Write error: Connection reset by peer]
c0c00n[m] has quit [Write error: Connection reset by peer]
suger[m] has quit [Write error: Connection reset by peer]
cryptowinter[m] has quit [Write error: Connection reset by peer]
romanblanco[m] has quit [Write error: Connection reset by peer]
jamiedubs[m] has quit [Write error: Connection reset by peer]
Noah[m] has quit [Write error: Connection reset by peer]
johnnym[m] has quit [Write error: Connection reset by peer]
Heish1580[m] has quit [Write error: Connection reset by peer]
funwhilelostDisc has quit [Write error: Connection reset by peer]
Saracen[m] has quit [Write error: Connection reset by peer]
anakornk[m] has quit [Write error: Connection reset by peer]
Elo[m] has quit [Write error: Connection reset by peer]
azk64[m] has quit [Write error: Connection reset by peer]
mrdrdz[m] has quit [Write error: Connection reset by peer]
l^discord4314[m] has quit [Write error: Connection reset by peer]
rappel[m]1 has quit [Write error: Connection reset by peer]
tompa[m] has quit [Write error: Connection reset by peer]
samdixon[m] has quit [Remote host closed the connection]
oed3Discord[m] has quit [Remote host closed the connection]
macerbiDiscord[m has quit [Remote host closed the connection]
khoramyar[m] has quit [Remote host closed the connection]
ladrl[m] has quit [Remote host closed the connection]
peterkDiscord[m] has quit [Remote host closed the connection]
pinokio[m] has quit [Remote host closed the connection]
ShadowLingDiscor has quit [Remote host closed the connection]
CopenBra[m] has quit [Write error: Connection reset by peer]
GeorgeX2798[m] has quit [Remote host closed the connection]
Abraxas[m] has quit [Remote host closed the connection]
c4meron[m] has quit [Write error: Connection reset by peer]
jryans has quit [Write error: Connection reset by peer]
johanhermanDisc4 has quit [Remote host closed the connection]
MMJD-Wst[m] has quit [Write error: Connection reset by peer]
koreanlapdog[m] has quit [Remote host closed the connection]
HeysteinDiscord[ has quit [Remote host closed the connection]
godva[m] has quit [Write error: Connection reset by peer]
ciet[m] has quit [Write error: Connection reset by peer]
Lilz|BetaMeDisco has quit [Remote host closed the connection]
rialtate[m] has quit [Write error: Connection reset by peer]
swednec7 has quit [Write error: Connection reset by peer]
wowaname has quit [Write error: Connection reset by peer]
ircer[m] has quit [Write error: Connection reset by peer]
nartir[m] has quit [Write error: Connection reset by peer]
Jenn[m] has quit [Write error: Connection reset by peer]
gandi[m] has quit [Write error: Connection reset by peer]
cawal[m] has quit [Write error: Connection reset by peer]
dcallagh has quit [Write error: Connection reset by peer]
SpydarO07 has quit [Write error: Connection reset by peer]
SirMemesALotDisc has quit [Write error: Connection reset by peer]
mav137[m] has quit [Remote host closed the connection]
nriccih[m] has quit [Remote host closed the connection]
vamsiDiscord[m] has quit [Write error: Connection reset by peer]
panDiscord[m] has quit [Write error: Connection reset by peer]
LokeLDiscord[m] has quit [Write error: Connection reset by peer]
radio_aliceDisco has quit [Write error: Connection reset by peer]
snoopdoggydogDis has quit [Write error: Connection reset by peer]
MesaDiscord[m] has quit [Write error: Connection reset by peer]
nijynotDiscord[m has quit [Write error: Connection reset by peer]
DerekDiscord[m] has quit [Write error: Connection reset by peer]
pericles_dev[m] has quit [Write error: Connection reset by peer]
lauren|Microspon has quit [Write error: Connection reset by peer]
Microsoft_techni has quit [Write error: Connection reset by peer]
realChainDiscord has quit [Write error: Connection reset by peer]
TryptophanDiscor has quit [Write error: Connection reset by peer]
zwelsternDiscord has quit [Write error: Connection reset by peer]
buztedDiscord[m] has quit [Write error: Connection reset by peer]
romaricDiscord[4 has quit [Write error: Connection reset by peer]
CryptoEmpressDis has quit [Write error: Connection reset by peer]
Shmultz9776[m] has quit [Write error: Connection reset by peer]
hamburghammer[m] has quit [Write error: Connection reset by peer]
ictius[m] has quit [Write error: Connection reset by peer]
AndreasE[m] has quit [Write error: Connection reset by peer]
Ichbinjoe has quit [Write error: Connection reset by peer]
Brunothebloodhou has quit [Write error: Connection reset by peer]
bitspill[m] has quit [Write error: Connection reset by peer]
randy[m] has quit [Write error: Connection reset by peer]
travica[m] has quit [Write error: Broken pipe]
JackLund[m] has quit [Write error: Connection reset by peer]
dietmar[m]1 has quit [Write error: Connection reset by peer]
cryptogoth[m] has quit [Write error: Connection reset by peer]
Valaybalalay[m] has quit [Write error: Broken pipe]
Julian[m]2 has quit [Write error: Broken pipe]
void001[m] has quit [Write error: Connection reset by peer]
joking[m] has quit [Write error: Connection reset by peer]
niga[m] has quit [Write error: Connection reset by peer]
null_radix[m] has quit [Write error: Connection reset by peer]
brian[m] has quit [Write error: Connection reset by peer]
gleeballs[m] has quit [Write error: Connection reset by peer]
carson[m] has quit [Write error: Connection reset by peer]
unc[m] has quit [Write error: Broken pipe]
planetary_dev[m] has quit [Write error: Connection reset by peer]
ZaZ[m] has quit [Write error: Connection reset by peer]
DanP[m] has quit [Write error: Connection reset by peer]
Lostfile[m] has quit [Remote host closed the connection]
alxmhe[m] has quit [Remote host closed the connection]
dxg168[m] has quit [Remote host closed the connection]
rasmuserik[m] has quit [Remote host closed the connection]
vipul[m] has quit [Write error: Connection reset by peer]
zhenzhenli[m] has quit [Remote host closed the connection]
gnunicornDiscord has quit [Write error: Connection reset by peer]
JordanKrageDisco has quit [Write error: Connection reset by peer]
VictorGDiscord[m has quit [Write error: Connection reset by peer]
foxcoolDiscord[m has quit [Remote host closed the connection]
aloiscochard[m] has quit [Write error: Connection reset by peer]
grag[m] has quit [Write error: Connection reset by peer]
doronbehar[m] has quit [Read error: Connection reset by peer]
EdgarBlazhevich[ has quit [Remote host closed the connection]
tangoDiscord[m] has quit [Write error: Connection reset by peer]
dostDiscord[m] has quit [Write error: Connection reset by peer]
RDeckardDiscord4 has quit [Write error: Connection reset by peer]
aeddiDiscord[m] has quit [Write error: Connection reset by peer]
HarryTmeticDisco has quit [Write error: Connection reset by peer]
silent_ActivistD has quit [Write error: Connection reset by peer]
weed9950[m] has quit [Write error: Connection reset by peer]
brewskiDiscord[m has quit [Write error: Connection reset by peer]
ClmentDiscord[m] has quit [Write error: Connection reset by peer]
Ja3oodDiscord[m] has quit [Write error: Connection reset by peer]
M4eekDiscord[m] has quit [Write error: Connection reset by peer]
GiyomuDiscord[m] has quit [Write error: Connection reset by peer]
sanderDiscord[m] has quit [Write error: Connection reset by peer]
DiscordRSSDiscor has quit [Write error: Connection reset by peer]
iiogamaDiscord[m has quit [Write error: Connection reset by peer]
crestDiscord[m] has quit [Write error: Connection reset by peer]
lanzafame1 has quit [Write error: Connection reset by peer]
mikealDiscord[m] has quit [Write error: Connection reset by peer]
divi[m] has quit [Write error: Connection reset by peer]
M0x1e[m] has quit [Write error: Connection reset by peer]
enricomarinoDisc has quit [Write error: Connection reset by peer]
freethinkingawa4 has quit [Write error: Connection reset by peer]
PrabhaavDiscord[ has quit [Write error: Connection reset by peer]
gmelodieDiscord[ has quit [Write error: Connection reset by peer]
SteffDiscord[m] has quit [Write error: Connection reset by peer]
AlekseyDiscord[m has quit [Write error: Connection reset by peer]
dindustriesDisco has quit [Write error: Broken pipe]
ksDiscord[m] has quit [Write error: Connection reset by peer]
katakotoDiscord[ has quit [Write error: Connection reset by peer]
drshamoonDiscord has quit [Write error: Connection reset by peer]
plexusDiscord[m] has quit [Write error: Connection reset by peer]
CarboClanCDiscor has quit [Write error: Connection reset by peer]
gunttedDiscord[m has quit [Write error: Connection reset by peer]
nanuuki[m] has quit [Remote host closed the connection]
ithithDiscord[m] has quit [Write error: Connection reset by peer]
JohnnyMilkshakes has quit [Write error: Connection reset by peer]
M3baidDiscord[m4 has quit [Write error: Connection reset by peer]
TH0RynDiscord[m] has quit [Write error: Connection reset by peer]
RickDiscord[m] has quit [Write error: Connection reset by peer]
NatoBoramDiscord has quit [Write error: Connection reset by peer]
gtsDiscord[m] has quit [Write error: Connection reset by peer]
KinnardDiscord[7 has quit [Write error: Connection reset by peer]
npfossDiscord[m] has quit [Write error: Connection reset by peer]
AkshayDiscord[m] has quit [Write error: Connection reset by peer]
M[AXEL]JulianDis has quit [Write error: Connection reset by peer]
cwDiscord[m] has quit [Write error: Connection reset by peer]
te0d[m] has quit [Write error: Connection reset by peer]
dignifiedquire[m has quit [Write error: Connection reset by peer]
chadlupkes[m] has quit [Write error: Connection reset by peer]
brewski[m] has quit [Write error: Connection reset by peer]
Obo[m]2 has quit [Write error: Connection reset by peer]
muaahaahaa[m] has quit [Write error: Connection reset by peer]
geniusgao[m] has quit [Write error: Connection reset by peer]
fagci[m] has quit [Write error: Connection reset by peer]
Grey[m] has quit [Write error: Connection reset by peer]
Valium[m] has quit [Write error: Connection reset by peer]
wlg[m] has quit [Write error: Connection reset by peer]
wcharginDiscord[ has quit [Write error: Connection reset by peer]
goodestgoy88[m] has quit [Write error: Connection reset by peer]
publicarray[m] has quit [Write error: Connection reset by peer]
shokunin3675[m] has quit [Write error: Connection reset by peer]
Standa[m] has quit [Write error: Connection reset by peer]
fti7[m] has quit [Write error: Connection reset by peer]
priahoud[m] has quit [Write error: Connection reset by peer]
waynewyang[m] has quit [Write error: Connection reset by peer]
rovdyl[m] has quit [Write error: Connection reset by peer]
ruko[m] has quit [Write error: Connection reset by peer]
jamiedubs[m]1 has quit [Write error: Connection reset by peer]
taaem has quit [Write error: Connection reset by peer]
hueso[m] has quit [Write error: Broken pipe]
i5heu[m] has quit [Write error: Connection reset by peer]
Kris[m] has quit [Write error: Broken pipe]
dliot[m] has quit [Write error: Connection reset by peer]
brancengregory[m has quit [Write error: Connection reset by peer]
JustMaier[m]1 has quit [Write error: Connection reset by peer]
ewan[m] has quit [Write error: Connection reset by peer]
nocent has quit [Write error: Connection reset by peer]
Leer10[m] has quit [Write error: Connection reset by peer]
sethfork[m] has quit [Write error: Connection reset by peer]
fridim[m] has quit [Write error: Connection reset by peer]
hans[m]1 has quit [Write error: Broken pipe]
Chaos_Zero has quit [Write error: Broken pipe]
appa[m] has quit [Write error: Connection reset by peer]
chr0ma[m] has quit [Write error: Broken pipe]
riolf[m] has quit [Write error: Connection reset by peer]
moul has quit [Write error: Connection reset by peer]
shimakaze[m] has quit [Write error: Connection reset by peer]
neohex[m]1 has quit [Write error: Connection reset by peer]
naszam[m] has quit [Write error: Connection reset by peer]
re4mstr[m] has quit [Write error: Connection reset by peer]
Alex[m]16 has quit [Write error: Connection reset by peer]
yiannisbot[m] has quit [Write error: Connection reset by peer]
Mugichka[m] has quit [Write error: Connection reset by peer]
cristobal8876[m] has quit [Write error: Connection reset by peer]
card[m]1 has quit [Write error: Connection reset by peer]
krigare[m] has quit [Write error: Connection reset by peer]
justbibibi[m] has quit [Write error: Connection reset by peer]
D14na[m] has quit [Write error: Connection reset by peer]
array[m] has quit [Write error: Connection reset by peer]
zumar[m] has quit [Write error: Connection reset by peer]
Enmerkar[m] has quit [Write error: Connection reset by peer]
LaPingvino has quit [Write error: Connection reset by peer]
M11112[m] has quit [Write error: Connection reset by peer]
stark[m] has quit [Write error: Connection reset by peer]
Lutices[m] has quit [Write error: Connection reset by peer]
warpfork has quit [Write error: Connection reset by peer]
x6a[m] has quit [Remote host closed the connection]
mburns[m] has quit [Write error: Connection reset by peer]
chuenlye[m] has quit [Remote host closed the connection]
M0xc0de[m] has quit [Remote host closed the connection]
li_matrix has quit [Write error: Connection reset by peer]
Fns[m] has quit [Read error: Connection reset by peer]
omichalek[m] has quit [Write error: Connection reset by peer]
divi[m]1 has quit [Write error: Connection reset by peer]
justyns[m] has quit [Write error: Connection reset by peer]
chrismoos[m] has quit [Write error: Connection reset by peer]
gate32[m] has quit [Read error: Connection reset by peer]
NetluxeTV[m] has quit [Write error: Connection reset by peer]
DokterBob has quit [Write error: Connection reset by peer]
swedneck9241[m] has quit [Write error: Connection reset by peer]
fcat[m] has quit [Write error: Connection reset by peer]
xtream1101[m]1 has quit [Remote host closed the connection]
tasrev[m] has quit [Write error: Connection reset by peer]
alex[m]17 has quit [Write error: Connection reset by peer]
jak_wolf[m] has quit [Write error: Connection reset by peer]
M948e5[m] has quit [Read error: Connection reset by peer]
Zedwick[m] has quit [Write error: Connection reset by peer]
wobbol[m] has quit [Read error: Connection reset by peer]
brianhoffman has quit [Read error: Connection reset by peer]
Mateon1 has quit [Remote host closed the connection]
Mateon1 has joined #ipfs
Belkaar has quit [Ping timeout: 240 seconds]
Belkaar has joined #ipfs
Belkaar has joined #ipfs
lurkless has quit [Remote host closed the connection]
toxync01- has quit [Ping timeout: 250 seconds]
toxync01 has joined #ipfs
vmx has joined #ipfs
brianhoffman has joined #ipfs
lurkless has joined #ipfs
DavidPH has joined #ipfs
rho has joined #ipfs
toxync01 has quit [Ping timeout: 246 seconds]
toxync01 has joined #ipfs
hkaddoil has joined #ipfs
gkmngrgn has quit [Ping timeout: 240 seconds]
hkaddoil has quit [Client Quit]
toxync01 has quit [Ping timeout: 245 seconds]
hkaddoil has joined #ipfs
ginospe has left #ipfs [#ipfs]
toxync01 has joined #ipfs
jcea has quit [Remote host closed the connection]
ZaZ has joined #ipfs
toxync01- has joined #ipfs
toxync01 has quit [Ping timeout: 246 seconds]
hkaddoil has quit [Quit: WeeChat 1.6]
The_8472 has quit [Ping timeout: 252 seconds]
jamiew has quit [Ping timeout: 265 seconds]
jcea has joined #ipfs
The_8472 has joined #ipfs
amitizle has quit [Ping timeout: 240 seconds]
toxync01- has quit [Ping timeout: 252 seconds]
toxync01 has joined #ipfs
hkaddoil has joined #ipfs
toxync01 has quit [Ping timeout: 252 seconds]
toxync01 has joined #ipfs
<linas> so -- orbitdb -- as far as I can tell, it just holds a database as one single big file, one single big CRDT
xcm has quit [Remote host closed the connection]
CGretski has quit [Ping timeout: 246 seconds]
xcm has joined #ipfs
hkaddoil has quit [Quit: WeeChat 2.3]
woss_io has quit [Ping timeout: 265 seconds]
hkaddoil has joined #ipfs
woss_io has joined #ipfs
ZaZ1 has joined #ipfs
woss_io has quit [Read error: Connection reset by peer]
PACER has joined #ipfs
ZaZ has quit [Ping timeout: 252 seconds]
PACER has quit [Client Quit]
toxync01 has quit [Ping timeout: 245 seconds]
toxync01 has joined #ipfs
jamiew has joined #ipfs
lurkless has quit [Remote host closed the connection]
lurkless has joined #ipfs
brianhoffman has quit [Read error: Connection reset by peer]
ZaZ1 has quit [Quit: Leaving]
ginospe has joined #ipfs
bsm1175321 has joined #ipfs
brianhoffman has joined #ipfs
xcm has quit [Read error: Connection reset by peer]
xcm has joined #ipfs
is_null has quit [Ping timeout: 240 seconds]
is_null_ has quit [Ping timeout: 276 seconds]
toxync01 has quit [Ping timeout: 264 seconds]
toxync01 has joined #ipfs
vmx has quit [Remote host closed the connection]
Ai9zO5AP has joined #ipfs
amitizle has joined #ipfs
<voker57> CRDT is not a file
MDude has joined #ipfs
Jybz has joined #ipfs
ginospe has left #ipfs [#ipfs]
rendar has quit []
gkmngrgn has joined #ipfs
<linas> I'm not here to have an argument
<linas> anyway...
<linas> what IPNS current does during name resolution is this: `PKI public-key ==> resolved CID`
<linas> What I'd like to have is this: `(PKI public-key, hash) ==> resolved CID`
<linas> How might I begin to implement something like this?
ensbro has joined #ipfs
<linas> (without creating a single, centralized file containing hash-to-CID mappings)
gkmn1 has joined #ipfs
Acacia has joined #ipfs
ensbro has quit [Quit: Leaving]
gkmngrgn has quit [Ping timeout: 268 seconds]
gkmn1 is now known as gkmngrgn
KempfCreative has quit [Ping timeout: 245 seconds]
lvlinux is now known as ruel
gkmngrgn has quit [Ping timeout: 246 seconds]
KempfCreative has joined #ipfs
hkaddoil has quit [Ping timeout: 264 seconds]
hkaddoil has joined #ipfs
}ls{ has quit [Quit: real life interrupt]
gkmngrgn has joined #ipfs
gkmngrgn has quit [Client Quit]
gkmngrgn has joined #ipfs
lidel` has joined #ipfs
lidel has quit [Ping timeout: 276 seconds]
lidel` is now known as lidel
PHiZiX has joined #ipfs
joba has quit [Ping timeout: 240 seconds]
PHiZiX is now known as joba
brianhoffman has quit [Read error: Connection reset by peer]
brianhoffman has joined #ipfs
Newami has joined #ipfs
Newami has quit [Remote host closed the connection]
xcm has quit [Remote host closed the connection]
xcm has joined #ipfs
banditrys has quit [Remote host closed the connection]
cxl000 has quit [Ping timeout: 264 seconds]
gkmngrgn has quit [Ping timeout: 246 seconds]
cxl000 has joined #ipfs
dwilliams has joined #ipfs
Jybz has quit [Quit: Konversation terminated!]
ygrek has joined #ipfs
D__ has joined #ipfs
zeden has quit [Read error: Connection reset by peer]
zeden has joined #ipfs
zeden has quit [Client Quit]
Fessus has quit [Remote host closed the connection]
Fessus has joined #ipfs
ljmf00_ has quit [Quit: ZNC 1.7.4 - https://znc.in]
ljmf00_ has joined #ipfs
gkmngrgn has joined #ipfs
Fessus has quit [Remote host closed the connection]
Fessus has joined #ipfs
vthot4 has joined #ipfs
Trieste has quit [Ping timeout: 268 seconds]
KempfCreative has quit [Ping timeout: 264 seconds]
Trieste has joined #ipfs
D__ has quit [Quit: Leaving]
Anonymous[m] has joined #ipfs
Peeves0816[m] has joined #ipfs
phynite1846[m] has joined #ipfs
thechiefmeat[m] has joined #ipfs
ruizt[m] has joined #ipfs
spk[m] has joined #ipfs
vthot4 has quit [Remote host closed the connection]
rho has quit [Ping timeout: 268 seconds]
ruizt[m] has quit [Ping timeout: 240 seconds]
Peeves0816[m] has quit [Ping timeout: 276 seconds]
thechiefmeat[m] has quit [Ping timeout: 250 seconds]
ruizt[m] has joined #ipfs
thechiefmeat[m] has joined #ipfs
Peeves0816[m] has joined #ipfs
toxync01- has joined #ipfs
toxync01 has quit [Ping timeout: 246 seconds]
johanhermanDisco has joined #ipfs
Peeves0816[m] is now known as PeevesDiscord[m]
JoejoeDiscord[m] has joined #ipfs
gkmngrgn has quit [Quit: WeeChat 2.3]
johanhermanDisco has quit [Ping timeout: 250 seconds]
Anonymous[m] has quit [Ping timeout: 245 seconds]
spk[m] has quit [Ping timeout: 264 seconds]
phynite1846[m] has quit [Ping timeout: 264 seconds]
JoejoeDiscord[m] has quit [Ping timeout: 240 seconds]
ruizt[m] has quit [Ping timeout: 246 seconds]
PeevesDiscord[m] has quit [Ping timeout: 276 seconds]
thechiefmeat[m] has quit [Ping timeout: 276 seconds]
spk[m] has joined #ipfs
johanhermanDisco has joined #ipfs
phynite1846[m] has joined #ipfs
Anonymous[m] has joined #ipfs
thechiefmeat[m] has joined #ipfs
PeevesDiscord[m] has joined #ipfs
ruizt[m] has joined #ipfs
JoejoeDiscord[m] has joined #ipfs
pecastro has quit [Ping timeout: 240 seconds]
toxync01- has quit [Ping timeout: 246 seconds]
toxync01 has joined #ipfs
Oatmeal has joined #ipfs
RamRanRa has quit [Read error: Connection reset by peer]
capDiscord[m] has joined #ipfs
<capDiscord[m]> Guys, I've been struggling with an error on the docker image.
<capDiscord[m]> It works like a charm on my desktop
<capDiscord[m]> * It works like a charm on my desktops
<capDiscord[m]> but when I tried to run it on a Debian Server
<capDiscord[m]> the logs told me this:
PHiZiX has joined #ipfs
<capDiscord[m]> ```API server listening on /ip4/127.0.0.1/tcp/5001
<capDiscord[m]> WebUI: http://127.0.0.1:5001/webui
<capDiscord[m]> Gateway (readonly) server listening on /ip4/127.0.0.1/tcp/8080```
<capDiscord[m]> so I can't access the webui and api outside my docker container
toxync01- has joined #ipfs
sammacbeth has quit [Quit: sammacbeth]
joba has quit [Ping timeout: 245 seconds]
toxync01 has quit [Ping timeout: 268 seconds]
ericnoan_ has quit [Quit: ZNC - http://znc.in]
PHiZiX is now known as joba
sammacbeth has joined #ipfs
raisDiscord[m] has joined #ipfs
nudin[m] has joined #ipfs
Abraxas[m] has joined #ipfs
Ericson2314 has joined #ipfs
cwchristerwDisco has joined #ipfs
hans[m]6 has joined #ipfs
Tantin[m] has joined #ipfs
kanej[m]1 has joined #ipfs
fcat[m] has joined #ipfs
HarryTmeticDisco has joined #ipfs
grag[m] has joined #ipfs
publicarray[m] has joined #ipfs
olmvnec[m] has joined #ipfs
dumuzid[m] has joined #ipfs
mhzDiscord[m] has joined #ipfs
dydx[m]1 has joined #ipfs
philipp[m] has joined #ipfs
scio has joined #ipfs
c090178[m] has joined #ipfs
yangm has joined #ipfs
resilium[m] has joined #ipfs
mdrights[m] has joined #ipfs
ZapierDiscord[m] has joined #ipfs
ad5twoknebor[m] has joined #ipfs
DavidFalconDisco has joined #ipfs
josephnicholasGM has joined #ipfs
MatrixBridgeswed has joined #ipfs
gregjeanmartDisc has joined #ipfs
rklaehnDiscord[m has joined #ipfs
pbvie[m] has joined #ipfs
MV[m] has joined #ipfs
oed3Discord[m] has joined #ipfs
grvhi[m]1 has joined #ipfs
vinDiscord[m] has joined #ipfs
RyonezCoruscareD has joined #ipfs
ClmentDiscord[m] has joined #ipfs
allgo[m]1 has joined #ipfs
ShruthiDiscord[m has joined #ipfs
Suprscale[m] has joined #ipfs
itsmekntDiscord[ has joined #ipfs
sandorpetofi[m] has joined #ipfs
manfredDiscord[m has joined #ipfs
bengoDiscord[m] has joined #ipfs
K0HAX-Matrix has joined #ipfs
dpinnerDiscord[m has joined #ipfs
bostaDiscord[m] has joined #ipfs
enricomarinoDisc has joined #ipfs
EatsDiscord[m] has joined #ipfs
stroopwafel[m] has joined #ipfs
HeysteinDiscord[ has joined #ipfs
aloiscochard[m] has joined #ipfs
MaggieDiscord[m] has joined #ipfs
funwhilelostDisc has joined #ipfs
Saracen[m] has joined #ipfs
ZipperSKDiscord4 has joined #ipfs
mrtrooper[m] has joined #ipfs
jrswab has joined #ipfs
KirillTaran[m] has joined #ipfs
Sisyphe[m] has joined #ipfs
FineDiscord[m] has joined #ipfs
kungfooman[m] has joined #ipfs
macerbiDiscord[m has joined #ipfs
sblinnDiscord[m] has joined #ipfs
dunks411Discord[ has joined #ipfs
h2Discord[m] has joined #ipfs
various_accounts has joined #ipfs
hans[m]9 has joined #ipfs
r5723013Discord[ has joined #ipfs
null0x1[m] has joined #ipfs
h4314[m] has joined #ipfs
truth[m] has joined #ipfs
BossMAN[m] has joined #ipfs
M|NecoDiscord[m] has joined #ipfs
appa[m] has joined #ipfs
freethinkingawa4 has joined #ipfs
babaitDiscord[m] has joined #ipfs
achingbrainDisco has joined #ipfs
tobowersDiscord[ has joined #ipfs
carstenmunkDisco has joined #ipfs
SpydarO07 has joined #ipfs
fimfx[m] has joined #ipfs
aphelionz[m]1 has joined #ipfs
PamileissonDisco has joined #ipfs
KinnardDiscord[7 has joined #ipfs
h313[m] has joined #ipfs
steven-snowball[ has joined #ipfs
crunch[m] has joined #ipfs
midi[F][m] has joined #ipfs
petzah[m] has joined #ipfs
UsamaIrfanDiscor has joined #ipfs
chrismoos[m] has joined #ipfs
okhosting[m] has joined #ipfs
xtream1101[m] has joined #ipfs
vexlDiscord[m] has joined #ipfs
legendplays93[m] has joined #ipfs
pps96[m]1 has joined #ipfs
noonereally[m] has joined #ipfs
wcharginDiscord[ has joined #ipfs
webwurst[m] has joined #ipfs
cryptowinter[m] has joined #ipfs
array[m] has joined #ipfs
Xierumeng[m] has joined #ipfs
TionisNagir[m] has joined #ipfs
modig[m] has joined #ipfs
corylDiscord[m] has joined #ipfs
lililashka[m] has joined #ipfs
wowaname has joined #ipfs
thaingo[m] has joined #ipfs
foxcoolDiscord[4 has joined #ipfs
equbit has joined #ipfs
lidel[m] has joined #ipfs
realChainDiscord has joined #ipfs
alilinuxAboShana has joined #ipfs
cyberward_matrix has joined #ipfs
leoalvarezh[m] has joined #ipfs
crest[m]1 has joined #ipfs
cawal[m] has joined #ipfs
M[AXEL]DarrDisco has joined #ipfs
nldvos[m] has joined #ipfs
boomshroomDiscor has joined #ipfs
ciet[m] has joined #ipfs
vamsi[m] has joined #ipfs
vexl[m]1 has joined #ipfs
fti7[m] has joined #ipfs
sadlotus[m] has joined #ipfs
ookfof[m] has joined #ipfs
iamswainDiscord[ has joined #ipfs
baluptonDiscord[ has joined #ipfs
amatuni[m] has joined #ipfs
mariswang[m] has joined #ipfs
peat[m] has joined #ipfs
clear[m] has joined #ipfs
flh[m] has joined #ipfs
cybercat[m] has joined #ipfs
realkarmakun[m] has joined #ipfs
ryanchristo[m]1 has joined #ipfs
Lrrr[m] has joined #ipfs
ictius[m] has joined #ipfs
jmank88Discord[m has joined #ipfs
chuenlye[m] has joined #ipfs
methodx[m] has joined #ipfs
Slacktoid has joined #ipfs
LokeLDiscord[m] has joined #ipfs
MilkManzJourDad4 has joined #ipfs
dogey[m] has joined #ipfs
toml[m] has joined #ipfs
r0kk3rz[m] has joined #ipfs
nartir[m] has joined #ipfs
catman[m] has joined #ipfs
pytlin2718[m] has joined #ipfs
lyz-666[m] has joined #ipfs
Markus72[m] has joined #ipfs
skillman623Disco has joined #ipfs
mattober[m] has joined #ipfs
jinleileiking[m] has joined #ipfs
vipul[m] has joined #ipfs
Luna14Discord[m] has joined #ipfs
M-Sonata has joined #ipfs
jonoberg[m] has joined #ipfs
zero[m] has joined #ipfs
tops[m] has joined #ipfs
dkasak[m] has joined #ipfs
niga[m] has joined #ipfs
jcnmark6[m]1 has joined #ipfs
ddahlDiscord[m] has joined #ipfs
vasaDiscord[m] has joined #ipfs
RockSteadyTRTLDi has joined #ipfs
Zedwick[m] has joined #ipfs
psyonityDiscord[ has joined #ipfs
Sean[m]1 has joined #ipfs
salazarp[m] has joined #ipfs
cubemonkey[m] has joined #ipfs
ntninja1 has joined #ipfs
KonstantinLomash has joined #ipfs
graylan[m] has joined #ipfs
M0xc0de[m] has joined #ipfs
Matrixdiscordbri has joined #ipfs
sprayDiscord[m] has joined #ipfs
ttk2[m] has joined #ipfs
leps[m] has joined #ipfs
murphysking[m] has joined #ipfs
william_shakesDi has joined #ipfs
HerculanoDiscord has joined #ipfs
gmelodieDiscord[ has joined #ipfs
JaoheahDiscord[m has joined #ipfs
braditz[m]2 has joined #ipfs
sunk818Discord[m has joined #ipfs
ryco117[m] has joined #ipfs
jessicaschilling has joined #ipfs
lck[m] has joined #ipfs
r5723013[m] has joined #ipfs
futstone[m] has joined #ipfs
azk64[m] has joined #ipfs
Brasserie[m] has joined #ipfs
marius_k[m] has joined #ipfs
ingo[m] has joined #ipfs
zegordoDiscord[m has joined #ipfs
zcopleyDiscord[m has joined #ipfs
denzukoDiscord[m has joined #ipfs
wenchao[m] has joined #ipfs
Zed[m] has joined #ipfs
TianyiDiscord[m4 has joined #ipfs
neohexDiscord[m] has joined #ipfs
EugeneDiscord[m] has joined #ipfs
aha[m] has joined #ipfs
colinbr has joined #ipfs
Ichbinjoe has joined #ipfs
cristobalDiscor4 has joined #ipfs
jamiedubs[m] has joined #ipfs
turt2live has joined #ipfs
momack2[m] has joined #ipfs
fexra|TRTLDiscor has joined #ipfs
is_null has joined #ipfs
huaxiaone[m] has joined #ipfs
nanuuki[m] has joined #ipfs
dostDiscord[m] has joined #ipfs
TheILlKiD[m] has joined #ipfs
pbvieDiscord[m] has joined #ipfs
JohnnyMilkshakes has joined #ipfs
M011000100111014 has joined #ipfs
rero[m] has joined #ipfs
tommos0 has joined #ipfs
plexus[m] has joined #ipfs
khoramyar[m] has joined #ipfs
djdv[m] has joined #ipfs
PhiDiscord[m] has joined #ipfs
chinsuDiscord[m] has joined #ipfs
ShmultzDiscord[m has joined #ipfs
moicoquillage[m] has joined #ipfs
stebalien has joined #ipfs
divi[m] has joined #ipfs
errichellic[m] has joined #ipfs
doronbehar[m] has joined #ipfs
aeromatter[m] has joined #ipfs
AlexanderK[m] has joined #ipfs
Lilz|BetaMeDisco has joined #ipfs
CryptoEmpressDis has joined #ipfs
Seb[m]2 has joined #ipfs
ad87657Discord[m has joined #ipfs
kmunk1975[m] has joined #ipfs
msc[m] has joined #ipfs
gate32[m] has joined #ipfs
dhenz3SpeakDisco has joined #ipfs
pierrebocDiscord has joined #ipfs
M123897974564Dis has joined #ipfs
wviana[m] has joined #ipfs
Swedneck4 has joined #ipfs
Matthew[m] has joined #ipfs
wrunt[m] has joined #ipfs
Garrett[m] has joined #ipfs
sewardsfolly[m] has joined #ipfs
ircer[m] has joined #ipfs
fru[m] has joined #ipfs
nocent9720[m] has joined #ipfs
x6a[m] has joined #ipfs
l^discordDiscord has joined #ipfs
brianbland[m] has joined #ipfs
FranklinDiscord[ has joined #ipfs
EdmundMDiscord[m has joined #ipfs
palantir22[m] has joined #ipfs
Xamino[m] has joined #ipfs
bennofs[m] has joined #ipfs
graceful_luv[m] has joined #ipfs
JerbsDiscord[m] has joined #ipfs
Marolar[m] has joined #ipfs
MesaDiscord[m] has joined #ipfs
toadkillerdog[m] has joined #ipfs
LordFenixNC[m]1 has joined #ipfs
tomaka[m] has joined #ipfs
sachaDiscord[m] has joined #ipfs
himcesjf has joined #ipfs
brewskiDiscord[m has joined #ipfs
jklepatchDiscord has joined #ipfs
is_null_ has joined #ipfs
wobbol[m] has joined #ipfs
nolep[m] has joined #ipfs
ZerataX has joined #ipfs
Cameron[m]1 has joined #ipfs
M{|}Discord[m] has joined #ipfs
cw[m] has joined #ipfs
anna[m] has joined #ipfs
DianaQueen[m] has joined #ipfs
TianyiDiscord[m] has joined #ipfs
Romain[m]1 has joined #ipfs
ngamboaDiscord[m has joined #ipfs
Mai-HsuanKevinCh has joined #ipfs
Manu[m] has joined #ipfs
M5511225464917[m has joined #ipfs
mshaq[m] has joined #ipfs
mattcDiscord[m] has joined #ipfs
liuxufei[m] has joined #ipfs
martijnsch[m] has joined #ipfs
jryans has joined #ipfs
luke-clifton[m] has joined #ipfs
id[m] has joined #ipfs
tangoDiscord[m] has joined #ipfs
M0xAF[m] has joined #ipfs
catmanDiscord[m] has joined #ipfs
mZDiscord[m]1 has joined #ipfs
gauthamDiscord[m has joined #ipfs
abueide[m] has joined #ipfs
nlkoDiscord[m] has joined #ipfs
Kiesenverseist[m has joined #ipfs
Tryptophan[m] has joined #ipfs
iodine[m] has joined #ipfs
GitterIntegratio has joined #ipfs
Ashaman[m] has joined #ipfs
cryptix[m] has joined #ipfs
mikealDiscord[m] has joined #ipfs
arjenpdevries[m] has joined #ipfs
unclechu has joined #ipfs
taaem has joined #ipfs
Phi[m]1 has joined #ipfs
Orkun[m]1 has joined #ipfs
Slacktoid[m] has joined #ipfs
pericles_dev[m] has joined #ipfs
anthony-albertor has joined #ipfs
wngrDiscord[m] has joined #ipfs
n3niu[m] has joined #ipfs
fagci[m] has joined #ipfs
anoa has joined #ipfs
cannabysDiscord[ has joined #ipfs
yabirgb-m has joined #ipfs
Obo[m]2 has joined #ipfs
DiscordBridge[m4 has joined #ipfs
fridim[m] has joined #ipfs
NastyEbilPiwateD has joined #ipfs
planetary_devDis has joined #ipfs
CarboClanCDiscor has joined #ipfs
cardDiscord[m] has joined #ipfs
hkdb[m] has joined #ipfs
tom[m]2 has joined #ipfs
T-19[m] has joined #ipfs
Shmultz9776[m] has joined #ipfs
dani9[m] has joined #ipfs
joking[m] has joined #ipfs
MagnusSvensson[m has joined #ipfs
gleeballs[m] has joined #ipfs
hazDiscord[m] has joined #ipfs
gtsDiscord[m] has joined #ipfs
natalie[m]1 has joined #ipfs
nuggets007[m] has joined #ipfs
tony[m]3 has joined #ipfs
Caramba_3000[m] has joined #ipfs
leoalvarezh[m]1 has joined #ipfs
opal[m] has joined #ipfs
n9tDiscord[m] has joined #ipfs
sfromentDiscord[ has joined #ipfs
Dby0Discord[m] has joined #ipfs
arhik[m] has joined #ipfs
cyberangel[m] has joined #ipfs
d1mur4tdj[m] has joined #ipfs
buggeas40d[m] has joined #ipfs
onoseto[m] has joined #ipfs
RoverChen[m] has joined #ipfs
SenshiDiscord[m] has joined #ipfs
l^discord4314[m] has joined #ipfs
braditzDiscord[4 has joined #ipfs
M5310[m] has joined #ipfs
NatoBoram[m]1 has joined #ipfs
kishansagathiya[ has joined #ipfs
foxcoolDiscord[m has joined #ipfs
prtfwDiscord[m] has joined #ipfs
anomie[m] has joined #ipfs
mrdrdz[m] has joined #ipfs
Technoquake has joined #ipfs
ZeugeIotas[m] has joined #ipfs
sanderDiscord[m] has joined #ipfs
RodolfoEDiscord[ has joined #ipfs
DerekDiscord[m] has joined #ipfs
dliot[m] has joined #ipfs
cikavuveDiscord[ has joined #ipfs
freddor has joined #ipfs
grvhiDiscord[m] has joined #ipfs
lauren|Microspon has joined #ipfs
D[m]1 has joined #ipfs
cl0berson[m] has joined #ipfs
tapaswenipathak[ has joined #ipfs
kanejDiscord[m] has joined #ipfs
allgoDiscord[m] has joined #ipfs
SoraLee[m] has joined #ipfs
BlueBaron[m] has joined #ipfs
wchargin[m] has joined #ipfs
Deviousway[m] has joined #ipfs
RobotLordimperia has joined #ipfs
micahscopes has joined #ipfs
romaricDiscord[4 has joined #ipfs
syxmut[m] has joined #ipfs
matyas_mustohaDi has joined #ipfs
tragique[m] has joined #ipfs
BossMANDiscord[m has joined #ipfs
radio_aliceDisco has joined #ipfs
abhi2810[m] has joined #ipfs
void001[m] has joined #ipfs
wshino[m] has joined #ipfs
JCaesar has joined #ipfs
spb_mentor[m] has joined #ipfs
Julian[m]2 has joined #ipfs
Iroh[m] has joined #ipfs
travica[m] has joined #ipfs
shevski[m] has joined #ipfs
OboDiscord[m] has joined #ipfs
JeanDiscord[m] has joined #ipfs
re4mstr[m] has joined #ipfs
M981031046badd[m has joined #ipfs
rialtate[m] has joined #ipfs
linuslee[m] has joined #ipfs
selousie[m] has joined #ipfs
tammers[m] has joined #ipfs
suger[m] has joined #ipfs
AgentJ[m] has joined #ipfs
Fns[m] has joined #ipfs
nigre-dique[m] has joined #ipfs
plexusDiscord[m] has joined #ipfs
macerbi[m] has joined #ipfs
npfossDiscord[m] has joined #ipfs
LordFenixNC[m]2 has joined #ipfs
betz[m]1 has joined #ipfs
longyap[m] has joined #ipfs
rovdyl[m] has joined #ipfs
pigmej has joined #ipfs
Neo[m]3 has joined #ipfs
samdixon[m] has joined #ipfs
cesarosumDiscord has joined #ipfs
tom85Discord[m] has joined #ipfs
sanjay[m] has joined #ipfs
rozgoDiscord[m] has joined #ipfs
noman-land[m] has joined #ipfs
Valaybalalay[m] has joined #ipfs
Mugichka[m] has joined #ipfs
hlon[m] has joined #ipfs
Dude[m] has joined #ipfs
padok[m] has joined #ipfs
LuutheCoolDiscor has joined #ipfs
anakornk[m] has joined #ipfs
midi[m] has joined #ipfs
aschmahmann[m] has joined #ipfs
hsanjuan[m] has joined #ipfs
glothit7ok[m] has joined #ipfs
ryan[m]1 has joined #ipfs
snupples[m] has joined #ipfs
AraratDiscord[m] has joined #ipfs
KeegenDiscord[m] has joined #ipfs
matias[m]1 has joined #ipfs
amatuniDiscord[m has joined #ipfs
electric[m] has joined #ipfs
KubeDiscord[m] has joined #ipfs
olive888[m] has joined #ipfs
obernardovieiraD has joined #ipfs
moke12g[m] has joined #ipfs
Heystein[m] has joined #ipfs
Discord[m]1 has joined #ipfs
pineapplehunter[ has joined #ipfs
wlg[m] has joined #ipfs
gearcat[m] has joined #ipfs
vormgear[m] has joined #ipfs
modigDiscord[m] has joined #ipfs
xbwpc[m] has joined #ipfs
priahoud[m] has joined #ipfs
pbaranski[m] has joined #ipfs
slang[m] has joined #ipfs
combrayDiscord[m has joined #ipfs
DiscordRSSDiscor has joined #ipfs
postablesDiscord has joined #ipfs
camb[m] has joined #ipfs
jenzzens[m] has joined #ipfs
DanP[m] has joined #ipfs
SuikaDiscord[m] has joined #ipfs
megadogberthehim has joined #ipfs
bofu[m] has joined #ipfs
twom[m] has joined #ipfs
kobajagi has joined #ipfs
TionisDiscord[m] has joined #ipfs
johnlong[m] has joined #ipfs
Swedneck3 has joined #ipfs
flower88Discord[ has joined #ipfs
fatman2019[m] has joined #ipfs
imj[m] has joined #ipfs
neonfuz2 has joined #ipfs
te0d[m] has joined #ipfs
mattc[m] has joined #ipfs
warpfork has joined #ipfs
jwheelerDiscord[ has joined #ipfs
CathyLDiscord[m] has joined #ipfs
placer14Discord[ has joined #ipfs
weigood[m] has joined #ipfs
jazzy-jeff^_^Dis has joined #ipfs
mirisbowring[m] has joined #ipfs
siddh88[m] has joined #ipfs
sukarDiscord[m] has joined #ipfs
Neroprojekt5071[ has joined #ipfs
lab8916100448256 has joined #ipfs
TheFuzzStone[m] has joined #ipfs
Ja3oodDiscord[m] has joined #ipfs
rib[m] has joined #ipfs
isigaesc[m] has joined #ipfs
octowan[m] has joined #ipfs
yabirgbDiscord[m has joined #ipfs
Grey[m] has joined #ipfs
blxckghxstDiscor has joined #ipfs
johanhermanDisc4 has joined #ipfs
vchernin[m] has joined #ipfs
flip[m] has joined #ipfs
LordFenixNCDisco has joined #ipfs
Phillmac[m] has joined #ipfs
combray[m] has joined #ipfs
Cosmocrat[m] has joined #ipfs
hoijui[m] has joined #ipfs
MisterGoreDiscor has joined #ipfs
nongfu[m] has joined #ipfs
smartsammler[m] has joined #ipfs
bushido711Discor has joined #ipfs
CatManDoooDiscor has joined #ipfs
daviddias[m] has joined #ipfs
wak-work has joined #ipfs
KarlDiscord[m] has joined #ipfs
PrabhaavDiscord[ has joined #ipfs
hazegrey[m] has joined #ipfs
Pamileisson2582[ has joined #ipfs
spacedgod[m] has joined #ipfs
Dan[m] has joined #ipfs
swedneck9241[m] has joined #ipfs
jharrison[m] has joined #ipfs
eshohetDiscord[m has joined #ipfs
buztedDiscord[m] has joined #ipfs
Quiark has joined #ipfs
iiogamaDiscord[m has joined #ipfs
M3v0lv3r[m] has joined #ipfs
EdgarBlazhevich[ has joined #ipfs
fujexo[m] has joined #ipfs
theblackdaemon[m has joined #ipfs
haliucinas[m] has joined #ipfs
rittmeDiscord[m] has joined #ipfs
Alin[m] has joined #ipfs
llllllDiscord[m] has joined #ipfs
qcf_forever[m] has joined #ipfs
M_discord_bot[m4 has joined #ipfs
mivticsiaorg[m] has joined #ipfs
abby18[m] has joined #ipfs
plindner[m] has joined #ipfs
gunttedDiscord[m has joined #ipfs
thatguyDiscord[m has joined #ipfs
b1ack0ut[m] has joined #ipfs
mt[m] has joined #ipfs
Dreamland[m] has joined #ipfs
RaphaelLullis[m] has joined #ipfs
DaekiDiscord[m] has joined #ipfs
chadlupkes[m] has joined #ipfs
UX0[m] has joined #ipfs
NatoBoram[m]2 has joined #ipfs
godparticleDisco has joined #ipfs
Microsoft_techni has joined #ipfs
koalalorenzo[m]1 has joined #ipfs
RealSnazzyDiscor has joined #ipfs
contrun[m] has joined #ipfs
magnetist[m] has joined #ipfs
SmileRobotDiscor has joined #ipfs
test[m]3 has joined #ipfs
AceFaceDiscord[m has joined #ipfs
shaaliliton39[m] has joined #ipfs
UserDiscord[m] has joined #ipfs
amb007[m] has joined #ipfs
cryptogoth[m] has joined #ipfs
doodlemaniaDisco has joined #ipfs
silwol has joined #ipfs
nyarlathotep[m] has joined #ipfs
jazzy-jeff^_^[m4 has joined #ipfs
cyluDiscord[m] has joined #ipfs
JonwelDiscord[m] has joined #ipfs
fdf[m] has joined #ipfs
Kenzo3Discord[m] has joined #ipfs
zhenzhenli[m] has joined #ipfs
mvalente[m] has joined #ipfs
bitspill[m] has joined #ipfs
Guest74360 has joined #ipfs
dindustriesDisco has joined #ipfs
JordanKrageDisco has joined #ipfs
kylelanpart[m] has joined #ipfs
chris-g[m] has joined #ipfs
waynewyang[m] has joined #ipfs
SirMemesALotDisc has joined #ipfs
dag[m] has joined #ipfs
godva[m] has joined #ipfs
alphard[m] has joined #ipfs
jeannemadeline[m has joined #ipfs
aaron[m]3 has joined #ipfs
i5heu[m] has joined #ipfs
neohex[m] has joined #ipfs
ewan[m] has joined #ipfs
zloba[m] has joined #ipfs
krigare[m] has joined #ipfs
guigouz has joined #ipfs
plasma_000[m] has joined #ipfs
blurHY[m] has joined #ipfs
greenLion[m] has joined #ipfs
ArunDiscord[m] has joined #ipfs
paulus[m] has joined #ipfs
hyde__Discord[m] has joined #ipfs
yaksbeard[m]1 has joined #ipfs
josef[m] has joined #ipfs
benpa[m] has joined #ipfs
paulmahone[m] has joined #ipfs
hans[m]2 has joined #ipfs
ilmu[m] has joined #ipfs
OxyDiscord[m] has joined #ipfs
jump_spider has joined #ipfs
weareswarmcity[m has joined #ipfs
zoink92Discord[m has joined #ipfs
Swedneck2 has joined #ipfs
HeishDiscord[m] has joined #ipfs
marcocastignoli7 has joined #ipfs
sandmage[m] has joined #ipfs
harkenedraven has joined #ipfs
soapoperator[m] has joined #ipfs
timnetwork[m] has joined #ipfs
nemon[m] has joined #ipfs
Sean|FortmaticDi has joined #ipfs
GeorgeAntoniadis has joined #ipfs
dyskon[m] has joined #ipfs
pothyurf[m] has joined #ipfs
nick4242[m] has joined #ipfs
swedneckswednec4 has joined #ipfs
am3on[m] has joined #ipfs
eyenx[m] has joined #ipfs
Lessneek[m] has joined #ipfs
r3str0b3[m] has joined #ipfs
kizzie[m] has joined #ipfs
josiah_sama has joined #ipfs
thoth-el999[m] has joined #ipfs
RichardLittDisco has joined #ipfs
linuxi0n[m] has joined #ipfs
planetary_dev[m] has joined #ipfs
issamehh[m] has joined #ipfs
TiaguilsoDiscord has joined #ipfs
GeorgeX2798[m] has joined #ipfs
KevlarmonkeyDisc has joined #ipfs
http302[m] has joined #ipfs
boatsandhoesDisc has joined #ipfs
moul has joined #ipfs
maparentDiscord[ has joined #ipfs
NatoBoramDiscord has joined #ipfs
vexl[m]2 has joined #ipfs
nijynotDiscord[m has joined #ipfs
sjkelly[m] has joined #ipfs
dietmar[m]1 has joined #ipfs
RIOTIM[m] has joined #ipfs
M}Discord[m] has joined #ipfs
omichalek[m] has joined #ipfs
JackLund[m] has joined #ipfs
AnthonyADiscord[ has joined #ipfs
metalhead[m] has joined #ipfs
herronjo[m] has joined #ipfs
intrus[m] has joined #ipfs
zok[m] has joined #ipfs
Nomad[m]2 has joined #ipfs
snoopdoggydogDis has joined #ipfs
jenncloudDiscord has joined #ipfs
cyberwolf[m] has joined #ipfs
astraiaDiscord[m has joined #ipfs
raulDiscord[m] has joined #ipfs
M3baidDiscord[m4 has joined #ipfs
auhau[m]1 has joined #ipfs
paulmahoneDiscor has joined #ipfs
zopsi[m] has joined #ipfs
OrkunDiscord[m] has joined #ipfs
mntr0[m] has joined #ipfs
achingbrain[m] has joined #ipfs
bekoDiscord[m] has joined #ipfs
Kevin[m]3 has joined #ipfs
yjhmelodyDiscord has joined #ipfs
akt[m] has joined #ipfs
cerynon[m] has joined #ipfs
AndreasE[m] has joined #ipfs
AuHauDiscord[m] has joined #ipfs
shimakaze[m] has joined #ipfs
memorythought has joined #ipfs
arturo[m] has joined #ipfs
CantiTurtleCoinD has joined #ipfs
admin[m]5 has joined #ipfs
sl[m] has joined #ipfs
ngerstle[m] has joined #ipfs
kst[m] has joined #ipfs
RDeckardDiscord4 has joined #ipfs
xiphiness[m] has joined #ipfs
reedhhw[m] has joined #ipfs
Rumblestiltskin[ has joined #ipfs
rappel[m]1 has joined #ipfs
BeatRupp[m] has joined #ipfs
sekiDiscord[m]1 has joined #ipfs
Valium[m]1 has joined #ipfs
DiscordBridgeswe has joined #ipfs
alfonso-peixoto[ has joined #ipfs
Chaos_Zero has joined #ipfs
felixschlDiscord has joined #ipfs
RomaricDiscord[m has joined #ipfs
HyunwooLeeDiscor has joined #ipfs
AxieDiscord[m] has joined #ipfs
geniusgao[m] has joined #ipfs
Kisulken[m] has joined #ipfs
ExpherienceDisco has joined #ipfs
prcDiscord[m] has joined #ipfs
sethfork[m] has joined #ipfs
lordpipe has joined #ipfs
Geezus42[m] has joined #ipfs
LAkiraS[m] has joined #ipfs
naszam[m] has joined #ipfs
volver17[m] has joined #ipfs
ZedDiscord[m] has joined #ipfs
aphelionzDiscord has joined #ipfs
postables[m]2 has joined #ipfs
zaphar_ps[m] has joined #ipfs
thomasbDiscord[m has joined #ipfs
bitspillDiscord[ has joined #ipfs
freakerz[m] has joined #ipfs
edrex has joined #ipfs
tinker[m] has joined #ipfs
akt[m]1 has joined #ipfs
friedrich[m] has joined #ipfs
enum[m] has joined #ipfs
trickytiger[m] has joined #ipfs
ShokuninDiscord[ has joined #ipfs
brewski[m] has joined #ipfs
deltaDiscord[m] has joined #ipfs
xavivives[m] has joined #ipfs
dcallagh has joined #ipfs
eren[m] has joined #ipfs
florz[m] has joined #ipfs
Lukas[m]2 has joined #ipfs
crydamoure[m] has joined #ipfs
benaszabDiscord[ has joined #ipfs
c4meron[m] has joined #ipfs
DamirDiscord[m] has joined #ipfs
litebit[m] has joined #ipfs
dignifiedquireDi has joined #ipfs
NooooooWayyyyyDi has joined #ipfs
watDiscord[m] has joined #ipfs
jak_wolf[m] has joined #ipfs
<lidel> capDiscord[m], you probably want to run IPFS node without Docker NAT. Pass --net=host to use network interfaces directly. To test with ephemeral instance: docker run --rm -it --net=host ipfs/go-ipfs:v0.4.22
abhi_Discord[m] has joined #ipfs
xtream1101Discor has joined #ipfs
dqxDiscord[m] has joined #ipfs
Naughtylus[m] has joined #ipfs
musicmatze has joined #ipfs
victor[m]4 has joined #ipfs
freeforme[m] has joined #ipfs
sumner[m] has joined #ipfs
cesar[m] has joined #ipfs
Eryk[m] has joined #ipfs
tomjwatson[m] has joined #ipfs
Kisulken[m]1 has joined #ipfs
justyns[m] has joined #ipfs
newp[m] has joined #ipfs
Kube6349[m] has joined #ipfs
MikeShultzDiscor has joined #ipfs
mack[m] has joined #ipfs
Hsiu-PingNichola has joined #ipfs
godseyeview[m] has joined #ipfs
clf[m] has joined #ipfs
irongomme[m] has joined #ipfs
rihardsk[m] has joined #ipfs
rxnin[m] has joined #ipfs
roadt[m] has joined #ipfs
girzel[m] has joined #ipfs
fredrikj_tmp has joined #ipfs
sbpDiscord[m] has joined #ipfs
chrisDiscord[m] has joined #ipfs
arting[m] has joined #ipfs
carsonfarmer[m]1 has joined #ipfs
modul8[m] has joined #ipfs
RickDiscord[m] has joined #ipfs
LEdoian[m] has joined #ipfs
goodestgoy88[m] has joined #ipfs
Giovanni[m]1 has joined #ipfs
Amandine[m] has joined #ipfs
thestevewayDisco has joined #ipfs
felixfoertsch[m] has joined #ipfs
yeschyem[m] has joined #ipfs
tree[m] has joined #ipfs
braditzDiscord[m has joined #ipfs
exothermic[m] has joined #ipfs
mppl[m] has joined #ipfs
MatthDiscord[m] has joined #ipfs
loken87[m] has joined #ipfs
Heish1580[m] has joined #ipfs
Gabriel[Matrix] has joined #ipfs
dharwin[m] has joined #ipfs
MairkurDiscord[m has joined #ipfs
fozzieDiscord[m] has joined #ipfs
cristobal8876[m] has joined #ipfs
haz[m]2 has joined #ipfs
marcocastignoliD has joined #ipfs
lanzafame1 has joined #ipfs
didi-digitalsheh has joined #ipfs
vaultec81[m] has joined #ipfs
hamb_urglar[m] has joined #ipfs
admin[m]3 has joined #ipfs
D14na[m] has joined #ipfs
SoreGumsDiscord[ has joined #ipfs
aeddi has joined #ipfs
aaronpkDiscord[m has joined #ipfs
Elo[m] has joined #ipfs
JulianDreier[m] has joined #ipfs
ook_2001 has joined #ipfs
jimt[m] has joined #ipfs
SweatDiscord[m] has joined #ipfs
M5310Discord[m] has joined #ipfs
MrControl[m] has joined #ipfs
terichadbourne[m has joined #ipfs
guzmanillo[m] has joined #ipfs
marsan27[m] has joined #ipfs
kofalt[m] has joined #ipfs
aeddiDiscord[m] has joined #ipfs
khanson[m] has joined #ipfs
aleksssboss157[m has joined #ipfs
Brunothebloodhou has joined #ipfs
Jonwel[m] has joined #ipfs
tidux[m]1 has joined #ipfs
olizilla[m] has joined #ipfs
peterkDiscord[m] has joined #ipfs
Emile[m] has joined #ipfs
peterk[m] has joined #ipfs
nriccih[m] has joined #ipfs
TeeCee has joined #ipfs
CharlieRaptoreum has joined #ipfs
benaszab[m] has joined #ipfs
PhoenixDiscord[m has joined #ipfs
MilkManzJourDadd has joined #ipfs
jak[m] has joined #ipfs
Ablibu[m] has joined #ipfs
MarekIsalski[m] has joined #ipfs
tompa[m] has joined #ipfs
subuk[m] has joined #ipfs
drshamoonDiscord has joined #ipfs
olizillaDiscord[ has joined #ipfs
nocentDiscord[m] has joined #ipfs
KubeWorshipper[m has joined #ipfs
card[m]1 has joined #ipfs
wzwldn[m] has joined #ipfs
JakobTigerstrm[m has joined #ipfs
humanwire[m] has joined #ipfs
ozymandia5[m] has joined #ipfs
mvalente[m]1 has joined #ipfs
unc[m] has joined #ipfs
wicker[m] has joined #ipfs
M4star3starDisco has joined #ipfs
codynhatDiscord[ has joined #ipfs
M3baidDiscord[m] has joined #ipfs
JrmeCarretero[m] has joined #ipfs
ilee[m] has joined #ipfs
frislie[m] has joined #ipfs
hjoest[m] has joined #ipfs
berDiscord[m] has joined #ipfs
cristobal7524[m] has joined #ipfs
JungleHeart[m]1 has joined #ipfs
lng[m]1 has joined #ipfs
cristobalDiscord has joined #ipfs
janjko[m] has joined #ipfs
richtercamdenDis has joined #ipfs
h0lylag[m] has joined #ipfs
nofwayyDiscord[m has joined #ipfs
weeatbricks[m] has joined #ipfs
DokterBob has joined #ipfs
LSJI07Discord[m] has joined #ipfs
tsyn[m] has joined #ipfs
vencent has joined #ipfs
Bertschneider[m] has joined #ipfs
imatrix[m] has joined #ipfs
hxu[m] has joined #ipfs
CocoonCrashDisco has joined #ipfs
mZDiscord[m] has joined #ipfs
ohmu8[m] has joined #ipfs
Neuromancer[m] has joined #ipfs
fLsh42Discord[m] has joined #ipfs
MichaelTenDiscor has joined #ipfs
msena3Discord[m] has joined #ipfs
RealityDiscord[m has joined #ipfs
daopu[m] has joined #ipfs
itsundef[m] has joined #ipfs
SmileRobot[m] has joined #ipfs
pydera[m] has joined #ipfs
michaelrao[m] has joined #ipfs
hElpmomey[m] has joined #ipfs
iforgotmyusernam has joined #ipfs
PhillmacDiscord[ has joined #ipfs
maht0rz[m] has joined #ipfs
JayWelshDiscord[ has joined #ipfs
garblur83[m] has joined #ipfs
Tbi[m] has joined #ipfs
KisulkenDiscord[ has joined #ipfs
TravisJames[m] has joined #ipfs
megadogberthehi4 has joined #ipfs
DarkDrgn2k[m] has joined #ipfs
Jacob[m]1 has joined #ipfs
LaPingvino has joined #ipfs
raumji[m] has joined #ipfs
hueso[m] has joined #ipfs
ksDiscord[m] has joined #ipfs
AtiqDiscord[m] has joined #ipfs
li_matrix has joined #ipfs
jacopostanchi[m] has joined #ipfs
kw0n[m] has joined #ipfs
brancengregory[m has joined #ipfs
zwelsternDiscord has joined #ipfs
codyopel has joined #ipfs
hvergaraDiscord[ has joined #ipfs
user51[m] has joined #ipfs
l^discord[m]2 has joined #ipfs
pr1meDiscord[m] has joined #ipfs
chr0ma[m] has joined #ipfs
edejong[m] has joined #ipfs
zwj[m] has joined #ipfs
ladrl[m] has joined #ipfs
M_discord_507475 has joined #ipfs
gandi[m] has joined #ipfs
themsay[m] has joined #ipfs
muaahaahaa[m] has joined #ipfs
standard[m] has joined #ipfs
luigi[m] has joined #ipfs
mayel[m]1 has joined #ipfs
stanlog[m] has joined #ipfs
doorknob88Discor has joined #ipfs
albuic has joined #ipfs
UsDiscord[m] has joined #ipfs
Lindencommunity[ has joined #ipfs
koalalorenzoDisc has joined #ipfs
marcocastignoli[ has joined #ipfs
Lutices[m] has joined #ipfs
vpei[m] has joined #ipfs
deva[m] has joined #ipfs
VictorGDiscord[m has joined #ipfs
jochen[m]1 has joined #ipfs
eosianx[m] has joined #ipfs
pusherDiscord[m] has joined #ipfs
leoalvarezhDisco has joined #ipfs
andrewxhill3607[ has joined #ipfs
alex[m] has joined #ipfs
Caleb[m]1 has joined #ipfs
hiima[m] has joined #ipfs
SpaceOutlawDisco has joined #ipfs
riolf[m] has joined #ipfs
M948e5[m] has joined #ipfs
johnl[m] has joined #ipfs
TryptophanDiscor has joined #ipfs
shokunin has joined #ipfs
seed0c[m] has joined #ipfs
XierumengDiscord has joined #ipfs
EdmundM[m] has joined #ipfs
thomasDiscord[m] has joined #ipfs
jojobyte[m] has joined #ipfs
pps96Discord[m] has joined #ipfs
Sm03leBr00tDisco has joined #ipfs
IgutinDiscord[m] has joined #ipfs
weedDiscord[m] has joined #ipfs
jeeg[m] has joined #ipfs
ibit[m]1 has joined #ipfs
M699[m] has joined #ipfs
vamsiDiscord[m] has joined #ipfs
silur[m] has joined #ipfs
ithithDiscord[m] has joined #ipfs
defnofdumb[m] has joined #ipfs
mopsi[m] has joined #ipfs
RomainDiscord[m] has joined #ipfs
dafflDiscord[m] has joined #ipfs
M[AXEL]JulianDis has joined #ipfs
llatic[m] has joined #ipfs
NicolasLeGland[m has joined #ipfs
vladimir[m]1 has joined #ipfs
swedneck[GMT1]Di has joined #ipfs
carsonfarmerDisc has joined #ipfs
stark[m] has joined #ipfs
snap[m] has joined #ipfs
Swedneck has joined #ipfs
linus[m]1 has joined #ipfs
mistermonster[m] has joined #ipfs
kirpy0x[m] has joined #ipfs
randy[m] has joined #ipfs
baffle has joined #ipfs
te0dDiscord[m] has joined #ipfs
attenuation[m] has joined #ipfs
Half-Shot has joined #ipfs
ghastfilms[m] has joined #ipfs
felixschlDiscor4 has joined #ipfs
M4eekDiscord[m] has joined #ipfs
machine_sinatra[ has joined #ipfs
Standa[m] has joined #ipfs
AlekseyDiscord[m has joined #ipfs
gorhgorhDiscord[ has joined #ipfs
Brio[m] has joined #ipfs
the_nikinDiscord has joined #ipfs
Jaoheah[m]1 has joined #ipfs
Eugene[m] has joined #ipfs
hamburghammer[m] has joined #ipfs
MindlessTux[m] has joined #ipfs
brainbubble[m] has joined #ipfs
mburns[m] has joined #ipfs
alxev[m] has joined #ipfs
lilz[m] has joined #ipfs
makeworld has joined #ipfs
jon1012[m] has joined #ipfs
boytemp1[m] has joined #ipfs
piotrszegda[m] has joined #ipfs
postables[m] has joined #ipfs
eddyDiscord[m] has joined #ipfs
kechenzhou[m] has joined #ipfs
kyb[m] has joined #ipfs
GuillaumeDiscord has joined #ipfs
ar[m] has joined #ipfs
smarkey[m] has joined #ipfs
jcgruenhage has joined #ipfs
katakotoDiscord[ has joined #ipfs
kevinbird15Disco has joined #ipfs
nyarlathotepDisc has joined #ipfs
ambackDiscord[m] has joined #ipfs
ruko[m] has joined #ipfs
Quasdio[m] has joined #ipfs
leoalvarezhDisc4 has joined #ipfs
lacunaria[m] has joined #ipfs
ShadowLingDiscor has joined #ipfs
oatmealraisin[m] has joined #ipfs
yolo[m] has joined #ipfs
xdrixxyz[m] has joined #ipfs
Klara[m] has joined #ipfs
JungleHeartDisco has joined #ipfs
peatDiscord[m] has joined #ipfs
divi[m]1 has joined #ipfs
xswe3456ui[m] has joined #ipfs
kiwi_uk[m] has joined #ipfs
gnunicornDiscord has joined #ipfs
longwave[m] has joined #ipfs
jgmac1106Discord has joined #ipfs
malaclyps[m]1 has joined #ipfs
fiddeldibu[m] has joined #ipfs
jayw[m] has joined #ipfs
labs[m] has joined #ipfs
alex[m]20 has joined #ipfs
tuxiqae[m]1 has joined #ipfs
PeciakDiscord[m] has joined #ipfs
limace255[m] has joined #ipfs
netshroom[m] has joined #ipfs
ZaZ[m] has joined #ipfs
janttoDiscord[m] has joined #ipfs
logoilab[m] has joined #ipfs
gts[m] has joined #ipfs
NiGeR[m] has joined #ipfs
Crunch9960[m] has joined #ipfs
dtz has joined #ipfs
M0x1e[m] has joined #ipfs
MasterB[m] has joined #ipfs
Jenn[m] has joined #ipfs
ScottSmileyDisco has joined #ipfs
tomtato[m] has joined #ipfs
Swedneck1 has joined #ipfs
malaclypsDiscord has joined #ipfs
M0x100e[m] has joined #ipfs
Leer10[m] has joined #ipfs
killswitch[m] has joined #ipfs
fmidq[m] has joined #ipfs
tasrev[m] has joined #ipfs
delta[m]1 has joined #ipfs
Jtremback[m] has joined #ipfs
ghostfire51[m] has joined #ipfs
TH0RynDiscord[m] has joined #ipfs
xcesiv[m] has joined #ipfs
halifoxDiscord[m has joined #ipfs
gorhgorh[m]2 has joined #ipfs
DoggersUniteDisc has joined #ipfs
chmanieDiscord[4 has joined #ipfs
jeffcasavant[m] has joined #ipfs
theorangepotato[ has joined #ipfs
zgrDiscord[m] has joined #ipfs
AdamHepner[m] has joined #ipfs
franc1s has joined #ipfs
rocket20199[m] has joined #ipfs
rocketonmars[m] has joined #ipfs
ecloud[m] has joined #ipfs
Enmerkar[m] has joined #ipfs
lapav[m] has joined #ipfs
leer10matrixorg[ has joined #ipfs
shubatman[m] has joined #ipfs
TheDarthSquidwar has joined #ipfs
silent_ActivistD has joined #ipfs
Fuseteam has joined #ipfs
JustMaierDiscord has joined #ipfs
aswiththewildDis has joined #ipfs
ptonerDiscord[m] has joined #ipfs
bhp[m] has joined #ipfs
geriatricjacob[m has joined #ipfs
ZipperSKDiscord[ has joined #ipfs
betamosDiscord[m has joined #ipfs
celsoDiscord[m]1 has joined #ipfs
igel[m] has joined #ipfs
davidar[m] has joined #ipfs
PermawebEmbedDis has joined #ipfs
Us[m]1 has joined #ipfs
neurocis|piggy-c has joined #ipfs
ndarwincorn has joined #ipfs
braditz[m]1 has joined #ipfs
SteffDiscord[m] has joined #ipfs
TristanDiscord[m has joined #ipfs
notafile has joined #ipfs
jamiedubs[m]1 has joined #ipfs
pent[m] has joined #ipfs
rezamahdi[m] has joined #ipfs
bmiller59[m] has joined #ipfs
sigmaister[m] has joined #ipfs
Alpha3031[m] has joined #ipfs
hansyan[m] has joined #ipfs
KinnardDiscord[4 has joined #ipfs
edd[m] has joined #ipfs
common-deadwood[ has joined #ipfs
KinnardDiscord[m has joined #ipfs
anolir has joined #ipfs
nofwayy[m] has joined #ipfs
koreanlapdog[m] has joined #ipfs
new0neDiscord[m] has joined #ipfs
jothi_basu[m] has joined #ipfs
msmart[m] has joined #ipfs
mapachurroDiscor has joined #ipfs
Methos[m] has joined #ipfs
axx[m] has joined #ipfs
lamborghiniDisco has joined #ipfs
pinokio[m] has joined #ipfs
TeamIan[m]1 has joined #ipfs
r0cknr0lla[m] has joined #ipfs
l0re[m] has joined #ipfs
User[m]2 has joined #ipfs
hubaDiscord[m] has joined #ipfs
peddie has joined #ipfs
dar[m] has joined #ipfs
rappelDiscord[m] has joined #ipfs
felixschl[m]2 has joined #ipfs
Naughtylus[m]1 has joined #ipfs
radsal[m] has joined #ipfs
jamiedubsDiscord has joined #ipfs
GabrielBadGriefD has joined #ipfs
Guest65672 has joined #ipfs
Steff[m]1 has joined #ipfs
ist5shreawf[m] has joined #ipfs
krhubert[m] has joined #ipfs
attero has joined #ipfs
howitz3r[m] has joined #ipfs
KeiiNisimo[m] has joined #ipfs
Dave[m]6 has joined #ipfs
mav137[m] has joined #ipfs
chervol|MultiCha has joined #ipfs
dontstalkmepls[m has joined #ipfs
dennwc[m] has joined #ipfs
Kris[m]1 has joined #ipfs
TeamIanDiscord[m has joined #ipfs
lyonDiscord[m] has joined #ipfs
farhad312Discord has joined #ipfs
kremator[m] has joined #ipfs
alphapapaactualD has joined #ipfs
chmanieDiscord[m has joined #ipfs
flit[m] has joined #ipfs
test123Discord[m has joined #ipfs
astrojl_matrix has joined #ipfs
Marcin[m] has joined #ipfs
dignifiedquire[m has joined #ipfs
Noah[m] has joined #ipfs
Alex[m]21 has joined #ipfs
yiannisbot[m] has joined #ipfs
skywavesurfer[m4 has joined #ipfs
paulmahone[m]1 has joined #ipfs
deepitmatrixorg[ has joined #ipfs
mchelmre[m] has joined #ipfs
dxg168[m] has joined #ipfs
JohnnyMilkshake7 has joined #ipfs
alxmhe[m] has joined #ipfs
raku[m] has joined #ipfs
greg[m]1 has joined #ipfs
zondulon[m] has joined #ipfs
DrDeFacto[m] has joined #ipfs
Bzh[m] has joined #ipfs
fcgreg[m] has joined #ipfs
sexybiggetje[m] has joined #ipfs
soren-rademacher has joined #ipfs
legaltechno[m] has joined #ipfs
PopeRigby[m] has joined #ipfs
KYZITEMELOS93Dis has joined #ipfs
sid[m] has joined #ipfs
AutoAIDiscord[m] has joined #ipfs
Mateon1 has quit [Remote host closed the connection]
darfk[m] has joined #ipfs
brian[m] has joined #ipfs
DerrickFDiscord[ has joined #ipfs
drbhDiscord[m] has joined #ipfs
sekiDiscord[m] has joined #ipfs
Starism[m] has joined #ipfs
aer[m] has joined #ipfs
carson[m] has joined #ipfs
notfirewall[m] has joined #ipfs
inkspread[m] has joined #ipfs
mkg20001 has joined #ipfs
brotholo[m] has joined #ipfs
jimpickDiscord[m has joined #ipfs
dynodetk[m] has joined #ipfs
nebulerDiscord[m has joined #ipfs
timokau[m] has joined #ipfs
nilocDiscord[m] has joined #ipfs
RDeckardDiscord[ has joined #ipfs
RaymondFoley[m] has joined #ipfs
Michi[m] has joined #ipfs
Rnytom[m] has joined #ipfs
gharbeia[m] has joined #ipfs
M4eek[m] has joined #ipfs
Bads3ctor9700[m] has joined #ipfs
DioBrandonDiscor has joined #ipfs
M11112[m] has joined #ipfs
Dazuck-3BoxDisco has joined #ipfs
dominicusin[m] has joined #ipfs
koalalorenzo[m] has joined #ipfs
ivanDiscord[m] has joined #ipfs
silkeh has joined #ipfs
coil[m] has joined #ipfs
millysoose[m] has joined #ipfs
crestDiscord[m] has joined #ipfs
null_radix[m] has joined #ipfs
vrolland[m] has joined #ipfs
dhole[m] has joined #ipfs
phenomite[m] has joined #ipfs
Stephen304[m] has joined #ipfs
felixschl[m]3 has joined #ipfs
multik[m] has joined #ipfs
laurent[m]3 has joined #ipfs
iarp[m] has joined #ipfs
panDiscord[m] has joined #ipfs
dpiestrak[m] has joined #ipfs
bok911[m] has joined #ipfs
k0mpjut0r has joined #ipfs
QwertyWhoreDisco has joined #ipfs
JustMaier[m]1 has joined #ipfs
neilDiscord[m] has joined #ipfs
robinzzzDiscord[ has joined #ipfs
sukar[m]1 has joined #ipfs
skillman623[m] has joined #ipfs
d-nice2[m] has joined #ipfs
natmac[m] has joined #ipfs
AblibuDiscord[m] has joined #ipfs
planetx[m] has joined #ipfs
erlend_sh[m] has joined #ipfs
dy5es41Discord[m has joined #ipfs
NetluxeTV[m] has joined #ipfs
sethforkDiscord[ has joined #ipfs
AkshayDiscord[m] has joined #ipfs
vasaDiscord[m]1 has joined #ipfs
triskeon[m] has joined #ipfs
DevUYDiscord[m] has joined #ipfs
obzenba[m] has joined #ipfs
arinholmes[m] has joined #ipfs
Swedneck_ has joined #ipfs
gfelbing[m] has joined #ipfs
AXEL-BrianDiscor has joined #ipfs
OlegStotskyDisco has joined #ipfs
rasmuserik[m] has joined #ipfs
CrocodillianDisc has joined #ipfs
yoltid[m] has joined #ipfs
kbc[m] has joined #ipfs
FusonDiscord[m] has joined #ipfs
Roger[m]1 has joined #ipfs
IPFSFanDiscord[m has joined #ipfs
zazikiDiscord[m] has joined #ipfs
SchwartzDiscord[ has joined #ipfs
nocent has joined #ipfs
NebulousDiscord[ has joined #ipfs
yur3shmukcik[m] has joined #ipfs
celsoDiscord[m] has joined #ipfs
miseenplace[m] has joined #ipfs
instagateur[m] has joined #ipfs
sev42[m] has joined #ipfs
parasite[m] has joined #ipfs
dude[m]1 has joined #ipfs
norou[m] has joined #ipfs
GiyomuDiscord[m] has joined #ipfs
Krakakanok[m] has joined #ipfs
cwDiscord[m] has joined #ipfs
johnnym[m] has joined #ipfs
GorkaDiscord[m] has joined #ipfs
romanblanco[m] has joined #ipfs
techbolt has joined #ipfs
MisterGore[m] has joined #ipfs
sean[m]2 has joined #ipfs
simbergm has joined #ipfs
tcoe[m] has joined #ipfs
zegordo[m] has joined #ipfs
mtita[m] has joined #ipfs
mwee[m] has joined #ipfs
zumar[m] has joined #ipfs
kanej[m]2 has joined #ipfs
ciechomke[m] has joined #ipfs
piajesse[m]1 has joined #ipfs
adrienlivet[m] has joined #ipfs
emceeaich[m] has joined #ipfs
althaser has joined #ipfs
vugupogaha[m] has joined #ipfs
c0c00n[m] has joined #ipfs
aeaf123[m] has joined #ipfs
ryu5t[m] has joined #ipfs
Lostfile[m] has joined #ipfs
maratfx[m] has joined #ipfs
DioBrandon[m] has joined #ipfs
justbibibi[m] has joined #ipfs
aidenholmes[m] has joined #ipfs
love2lose[m] has joined #ipfs
OlegStotsky[m] has joined #ipfs
denko32133[m] has joined #ipfs
Chaos[m] has joined #ipfs
spencerflagg[m] has joined #ipfs
shadow53[m] has joined #ipfs
yosemite007[m] has joined #ipfs
Mateon1 has joined #ipfs
ericnoan has joined #ipfs
Mateon1 has quit [Remote host closed the connection]
Mateon1 has joined #ipfs
MindlessTux[m] is now known as MindlessTux[m]
<capDiscord[m]> dude, thank you
<capDiscord[m]> it worked
<capDiscord[m]> I can't thank you enough
easyKL has joined #ipfs
is_null has quit [Ping timeout: 264 seconds]
is_null_ has quit [Ping timeout: 276 seconds]
zeden has joined #ipfs
dwilliams has quit [Ping timeout: 246 seconds]