8.0.31 • Published 10 months ago

@libp2p/peer-record v8.0.31

Weekly downloads
-
License
Apache-2.0 OR MIT
Repository
github
Last release
10 months ago

@libp2p/peer-record

libp2p.io Discuss codecov CI

Used to transfer signed peer data across the network

About

Libp2p nodes need to store data in a public location (e.g. a DHT), or rely on potentially untrustworthy intermediaries to relay information over its lifetime. Accordingly, libp2p nodes need to be able to verify that the data came from a specific peer and that it hasn't been tampered with.

Envelope

Libp2p provides an all-purpose data container called envelope. It was created to enable the distribution of verifiable records, which we can prove originated from the addressed peer itself. The envelope includes a signature of the data, so that its authenticity is verified.

This envelope stores a marshaled record implementing the interface-record. These Records are designed to be serialized to bytes and placed inside of the envelopes before being shared with other peers.

You can read further about the envelope in RFC 0002 - Signed Envelopes. For the original discussion about it you can look at the PR that was used to create it: libp2p/specs#217.

Example - Creating a peer record

Create an envelope with an instance of an interface-record implementation and prepare it for being exchanged:

import { PeerRecord, RecordEnvelope } from '@libp2p/peer-record'
import { generateKeyPair } from '@libp2p/crypto/keys'
import { peerIdFromPrivateKey } from '@libp2p/peer-id'

const privateKey = await generateKeyPair('Ed25519')
const peerId = peerIdFromPrivateKey(privateKey)

const record = new PeerRecord({
   peerId,
  // ...other data
})

const envelope = await RecordEnvelope.seal(record, privateKey)
const wireData = envelope.marshal()

Example - Consuming a peer record

Consume a received envelope wireData and transform it back to a record:

import { PeerRecord, RecordEnvelope } from '@libp2p/peer-record'

const wireData = Uint8Array.from([0, 1, 2, 3, 4])
const envelope = await RecordEnvelope.openAndCertify(wireData, PeerRecord.DOMAIN)

const record = PeerRecord.createFromProtobuf(envelope.payload)

Peer Record

All libp2p nodes keep a PeerStore, that among other information stores a set of known addresses for each peer, which can come from a variety of sources.

Libp2p peer records were created to enable the distribution of verifiable address records, which we can prove originated from the addressed peer itself. With such guarantees, libp2p is able to prioritize addresses based on their authenticity, with the most strict strategy being to only dial certified addresses (no strategies have been implemented at the time of writing).

A peer record contains the peers' publicly reachable listen addresses, and may be extended in the future to contain additional metadata relevant to routing. It also contains a seqNumber field, a timestamp per the spec, so that we can verify the most recent record.

You can read further about the Peer Record in RFC 0003 - Peer Routing Records. For the original discussion about it you can view the PR that created the RFC: libp2p/specs#217.

Example

Create a new Peer Record

import { PeerRecord } from '@libp2p/peer-record'
import { peerIdFromPrivateKey } from '@libp2p/peer-id'
import { generateKeyPair } from '@libp2p/crypto/keys'
import { multiaddr } from '@multiformats/multiaddr'

const peerId = peerIdFromPrivateKey(await generateKeyPair('Ed25519'))

const record = new PeerRecord({
  peerId: peerId,
  multiaddrs: [
    multiaddr('/ip4/...'),
    multiaddr('/ip4/...')
  ]
})

Example

Create a Peer Record from a protobuf

import { PeerRecord } from '@libp2p/peer-record'

const data = Uint8Array.from([0, 1, 2, 3, 4])
const record = PeerRecord.createFromProtobuf(data)

Libp2p Flows

Self Record

Once a libp2p node has started and is listening on a set of multiaddrs, its own peer record can be created.

The identify service is responsible for creating the self record when the identify protocol kicks in for the first time. This record will be stored for future needs of the identify protocol when connecting with other peers.

Self record Updates

While creating peer records is fairly trivial, addresses are not static and might be modified at arbitrary times. This can happen via an Address Manager API, or even through AutoRelay/AutoNAT.

When a libp2p node changes its listen addresses, the identify service will be informed. Once that happens, the identify service creates a new self record and stores it. With the new record, the identify push/delta protocol will be used to communicate this change to the connected peers.

Subsystem receiving a record

Considering that a node can discover other peers' addresses from a variety of sources, Libp2p PeerStore can differentiate the addresses that were obtained through a signed peer record.

Once a record is received and its signature properly validated, its envelope is stored in the AddressBook in its byte representation. The seqNumber remains unmarshaled so that we can quickly compare it against incoming records to determine the most recent record.

The AddressBook Addresses will be updated with the content of the envelope with a certified property. This allows other subsystems to identify the known certified addresses of a peer.

Subsystem providing a record

Libp2p subsystems that exchange other peers information will provide the envelope that they received by those peers. As a result, other peers can verify if the envelope was really created by the addressed peer.

When a subsystem wants to provide a record, it will get it from the AddressBook, if it exists. Other subsystems are also able to provide the self record, since it is also stored in the AddressBook.

Future Work

  • Persistence only considering certified addresses?
  • Peers may not know their own addresses. It's often impossible to automatically infer one's own public address, and peers may need to rely on third party peers to inform them of their observed public addresses.
  • A peer may inadvertently or maliciously sign an address that they do not control. In other words, a signature isn't a guarantee that a given address is valid.
  • Some addresses may be ambiguous. For example, addresses on a private subnet are valid within that subnet but are useless on the public internet.
  • Once all these pieces are in place, we will also need a way to prioritize addresses based on their authenticity, that is, the dialer can prioritize self-certified addresses over addresses from an unknown origin.
  • Modular dialer? (taken from go PR notes)
    • With the modular dialer, users should easily be able to configure precedence. With dialer v1, anything we do to prioritize dials is gonna be spaghetti and adhoc. With the modular dialer, you’d be able to specify the order of dials when instantiating the pipeline.
    • Multiple parallel dials. We already have the issue where new addresses aren't added to existing dials.

Install

$ npm i @libp2p/peer-record

Browser <script> tag

Loading this module through a script tag will make its exports available as Libp2pPeerRecord in the global namespace.

<script src="https://unpkg.com/@libp2p/peer-record/dist/index.min.js"></script>

API Docs

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

8.0.27-185b23eac

10 months ago

8.0.27-f1de46607

11 months ago

8.0.25-da4e9da82

11 months ago

8.0.30-9f1be6742

10 months ago

8.0.30-b8600fce8

10 months ago

8.0.30-2a7425cdb

10 months ago

8.0.30-3528df829

10 months ago

8.0.27-6f96de86c

11 months ago

8.0.26-b9e32cc37

11 months ago

8.0.30

10 months ago

8.0.31

10 months ago

8.0.29-ab014c0c0

10 months ago

8.0.30-8e87be9e6

10 months ago

8.0.29-7788b4025

10 months ago

8.0.27-3577af88a

10 months ago

8.0.30-5b004c0c4

10 months ago

8.0.12

1 year ago

8.0.11

1 year ago

8.0.14

1 year ago

8.0.13

1 year ago

8.0.16

1 year ago

8.0.15

1 year ago

8.0.18

1 year ago

8.0.17

1 year ago

8.0.19

1 year ago

8.0.21

1 year ago

8.0.20

1 year ago

8.0.23

1 year ago

8.0.22

1 year ago

8.0.27-9b33d202e

10 months ago

8.0.25

1 year ago

8.0.24

1 year ago

8.0.27

11 months ago

8.0.26

11 months ago

8.0.29

10 months ago

8.0.28

10 months ago

8.0.27-772b4011e

11 months ago

8.0.29-776cb432d

10 months ago

8.0.25-d53ef170c

12 months ago

8.0.25-78cd7d53e

12 months ago

8.0.30-14dbebea8

10 months ago

8.0.26-f09bef843

11 months ago

8.0.30-bb4ad31db

10 months ago

8.0.25-53a9be54e

11 months ago

8.0.25-b2124c2db

12 months ago

8.0.30-dbbc6ef1d

10 months ago

8.0.30-cc7b34c0f

10 months ago

8.0.30-ec73d59a6

10 months ago

8.0.27-213a54a1e

10 months ago

8.0.25-0b9090aea

12 months ago

8.0.30-d91ae66c6

10 months ago

8.0.30-8efb065d2

10 months ago

8.0.30-b32bc8406

10 months ago

8.0.27-4b8c0a6bd

10 months ago

8.0.25-fc5122110

12 months ago

8.0.25-da7353a0b

11 months ago

8.0.25-71267286

12 months ago

8.0.27-3df5bf2da

10 months ago

8.0.27-a5a33afd9

10 months ago

8.0.25-4f37aff53

11 months ago

8.0.30-6a3ae02f5

10 months ago

8.0.27-cdc63e6cc

11 months ago

8.0.28-aa25d38ab

10 months ago

8.0.27-afa5c9f59

11 months ago

8.0.25-4c64bd06d

11 months ago

8.0.26-3833353bd

11 months ago

8.0.27-32627c876

10 months ago

8.0.30-307d0ba58

10 months ago

8.0.9-7383821e1

1 year ago

8.0.10

1 year ago

8.0.9-d34642db1

1 year ago

8.0.9-a657bbd2e

1 year ago

8.0.9-717731e49

1 year ago

8.0.8-aa8de9fd3

1 year ago

8.0.8-3bc9769b8

1 year ago

8.0.8-3244ed086

1 year ago

8.0.8-4521cf1f7

1 year ago

8.0.9

1 year ago

8.0.8-e6b4158c6

1 year ago

8.0.8-75301ac7d

1 year ago

8.0.5-dad979f9b

1 year ago

8.0.8-5d199f9b6

1 year ago

8.0.6-58784abf7

1 year ago

8.0.7-d7a818e8e

1 year ago

8.0.6-661d6586a

1 year ago

8.0.7-0d326d102

1 year ago

8.0.7-d4da56961

1 year ago

8.0.6-d9c7e0f7e

1 year ago

8.0.6-35b48025c

1 year ago

8.0.7-e99e8f448

1 year ago

8.0.5-a390db4a4

1 year ago

8.0.6-80e798cdc

1 year ago

8.0.7-934a891f9

1 year ago

8.0.6-24fa1d5af

1 year ago

8.0.5-82bd42bcf

1 year ago

8.0.6-b4f02a637

1 year ago

8.0.8

1 year ago

8.0.7

1 year ago

8.0.6

1 year ago

8.0.6-32c176fd5

1 year ago

8.0.6-27b2fa6b6

1 year ago

8.0.4-c5988cce8

1 year ago

8.0.4-0c5957836

1 year ago

8.0.4-980038477

1 year ago

8.0.5

1 year ago

8.0.4-fa83ee1c7

1 year ago

8.0.3-c258b35af

1 year ago

8.0.2-7f7ec82ae

1 year ago

8.0.2-b3272cfce

1 year ago

8.0.4

1 year ago

8.0.3

1 year ago

8.0.1-c628c44c5

1 year ago

8.0.1-21fe841f2

1 year ago

8.0.2

1 year ago

8.0.1-4fd7eb2e1

1 year ago

8.0.1-6ccbb06f0

1 year ago

8.0.1-34455b5f2

2 years ago

8.0.0-1210884ed

2 years ago

8.0.0-18dd3cb26

2 years ago

8.0.1

2 years ago

8.0.0-d101aac4b

2 years ago

7.0.25-71e5f7a5b

2 years ago

7.0.25-b6681bd25

2 years ago

7.0.25-c010d575c

2 years ago

7.0.25-81ebe4e47

2 years ago

7.0.25-e1ca9cced

2 years ago

8.0.0-7cd984569

2 years ago

7.0.25-5214dec4a

2 years ago

7.0.25-2bbaf4361

2 years ago

7.0.25-a142bb642

2 years ago

8.0.0

2 years ago

7.0.25-df330695a

2 years ago

7.0.25-dd7b329c4

2 years ago

7.0.25-2265e59ba

2 years ago

7.0.25-737b3ea5b

2 years ago

7.0.25-1675adee2

2 years ago

7.0.25-e211b46cc

2 years ago

7.0.25-7655e5200

2 years ago

7.0.25-50b897139

2 years ago

7.0.21-d1aec4d9f

2 years ago

7.0.24-c5dba70a9

2 years ago

7.0.19

2 years ago

7.0.20-af85a7cad

2 years ago

7.0.19-863b3de03

2 years ago

7.0.24-7939dbd5c

2 years ago

7.0.23-944935f8d

2 years ago

7.0.20-21cf7bc56

2 years ago

7.0.18-7464dc00c

2 years ago

7.0.20-0b55625d1

2 years ago

7.0.21-e9b6a242a

2 years ago

7.0.18-440c9b360

2 years ago

7.0.24-1dfb74e79

2 years ago

7.0.19-8e4fdcde9

2 years ago

7.0.18-769461d3b

2 years ago

7.0.18-6011d3697

2 years ago

7.0.22-8b3114292

2 years ago

7.0.18-757fb2674

2 years ago

7.0.18-4bd8e4f79

2 years ago

7.0.18-167bf2b3c

2 years ago

7.0.21-ce6da9896

2 years ago

7.0.19-d1f1c2be7

2 years ago

7.0.19-94cac115a

2 years ago

7.0.21-3319ff41e

2 years ago

7.0.20-abb9f90c7

2 years ago

7.0.18-f4e572cd6

2 years ago

7.0.18-e69a2f1b6

2 years ago

7.0.22-a82ff8221

2 years ago

7.0.20-15eb66428

2 years ago

7.0.18-62e32252a

2 years ago

7.0.22-73f2b6b6d

2 years ago

7.0.18-bc6556f96

2 years ago

7.0.18-f6fe2cc3c

2 years ago

7.0.22-a130993ed

2 years ago

7.0.24-0edbfe7af

2 years ago

7.0.18-12106b5b0

2 years ago

7.0.21-151bc46fb

2 years ago

7.0.20-6573cb8b0

2 years ago

7.0.22-a8ec2bcb7

2 years ago

7.0.25-359265a3a

2 years ago

7.0.25-3c8dd5bbf

2 years ago

7.0.20-3b9cbf7d8

2 years ago

7.0.22-4a994c5ef

2 years ago

7.0.18-7aec7bd45

2 years ago

7.0.18-169c9d85e

2 years ago

7.0.22-928801a80

2 years ago

7.0.23

2 years ago

7.0.24

2 years ago

7.0.21

2 years ago

7.0.22

2 years ago

7.0.18-352699ab5

2 years ago

7.0.20

2 years ago

7.0.19-44791342

2 years ago

7.0.19-9e0236627

2 years ago

7.0.25

2 years ago

7.0.23-f30e2ee8d

2 years ago

7.0.21-e1f0b307c

2 years ago

7.0.22-40902d99b

2 years ago

7.0.20-b0b6cae12

2 years ago

7.0.18-90d10b565

2 years ago

7.0.22-34cf1f7cd

2 years ago

7.0.18

2 years ago

7.0.17-1cc6a9405

2 years ago

7.0.17-1eb5b2713

2 years ago

7.0.17-1a41c28bb

2 years ago

7.0.17-a3e8beabd

2 years ago

7.0.17-1cd5aae11

2 years ago

7.0.17-48444f750

2 years ago

7.0.17-5b7380259

2 years ago

7.0.17-8214dcfb0

2 years ago

7.0.17-7de56f244

2 years ago

7.0.17-3c73707ff

2 years ago

7.0.17

2 years ago

7.0.16-9d4b0596f

2 years ago

7.0.16-43046b9ae

2 years ago

7.0.16-83c14d08f

2 years ago

7.0.16-7ae6063df

2 years ago

7.0.16-bfa7660d5

2 years ago

7.0.16-1488a7371

2 years ago

7.0.16-4ad63bb79

2 years ago

7.0.16-767b23e71

2 years ago

7.0.16-d9366f9aa

2 years ago

7.0.16-510d9ce65

2 years ago

7.0.16-a11e135c2

2 years ago

7.0.16

2 years ago

7.0.16-9d13a2f6a

2 years ago

7.0.15-de3f7aeaf

2 years ago

7.0.15-3d7a9da17

2 years ago

7.0.15-c82432312

2 years ago

7.0.15-3bc94b403

2 years ago

7.0.15-e1923b0a7

2 years ago

7.0.15-998fcaf94

2 years ago

7.0.15-90cfd25e2

2 years ago

7.0.14-2281f802b

2 years ago

7.0.14-c2181f0cf

2 years ago

7.0.15

2 years ago

7.0.14-fd1f8343d

2 years ago

7.0.14-eaf8ac7cf

2 years ago

7.0.14-acef72613

2 years ago

7.0.14

2 years ago

7.0.14-ea4f26285

2 years ago

7.0.13-31c78f4ed

2 years ago

7.0.13-08dabd390

2 years ago

7.0.12-2c56203f9

2 years ago

7.0.13

2 years ago

7.0.12-b17824a1d

2 years ago

7.0.12-936dbba10

2 years ago

7.0.12-732c436d4

2 years ago

7.0.12-2b2958fe6

2 years ago

7.0.12

2 years ago

7.0.11-3e515f007

2 years ago

7.0.11-d446c6c31

2 years ago

7.0.11-a2b41f793

2 years ago

7.0.11-80278b36b

2 years ago

7.0.11-afe15f669

2 years ago

7.0.11-1f589c822

2 years ago

7.0.11-4fc0a7d30

2 years ago

7.0.11-ab5f05763

2 years ago

7.0.11-3ffecc5bf

2 years ago

7.0.10-59a97b61b

2 years ago

7.0.10-82901e785

2 years ago

7.0.11

2 years ago

7.0.10-bf720c045

2 years ago

7.0.10-1fc929c1c

2 years ago

7.0.10-330a5ed72

2 years ago

7.0.10-fad3074b8

2 years ago

7.0.10-f39ce5f13

2 years ago

7.0.10-e1798aa26

2 years ago

7.0.10-cad9cf007

2 years ago

7.0.10-83ef3717e

2 years ago

7.0.10-ab466004b

2 years ago

7.0.10-a9cc0ee49

2 years ago

7.0.10-28e51652a

2 years ago

7.0.10-2122a713d

2 years ago

7.0.10-f71bc49bd

2 years ago

7.0.10

2 years ago

7.0.9-f0d2b52d0

2 years ago

7.0.9-e1c01370b

2 years ago

7.0.9-bedfd0aa2

2 years ago

7.0.9-8072a2e59

2 years ago

7.0.9-b1b77adb4

2 years ago

7.0.9-fb7c51c3c

2 years ago

7.0.7-03ff9fd82

2 years ago

7.0.7-1cb2408ac

2 years ago

7.0.7-9891ecd73

2 years ago

7.0.7-2370d1c39

2 years ago

7.0.7-0321812e7

2 years ago

7.0.8-0c7bbbb07

2 years ago

7.0.8

2 years ago

7.0.9

2 years ago

7.0.7-dab5cf724

2 years ago

7.0.7-e1db332a4

2 years ago

7.0.7-6f323de7d

2 years ago

7.0.7-c9ed1c7d6

2 years ago

7.0.6-dbc92ab74

2 years ago

7.0.6-2e464c099

2 years ago

7.0.7

2 years ago

7.0.6-74fb5671d

2 years ago

7.0.6-f4dda4a3c

2 years ago

7.0.6-72f0e09f7

2 years ago

7.0.6-8c6654c3a

2 years ago

7.0.6-f27138ca1

2 years ago

7.0.6-08f6f607d

2 years ago

7.0.6-74477f6ea

2 years ago

7.0.6-9376e61a1

2 years ago

7.0.6-3e47d88fd

2 years ago

7.0.6

2 years ago

7.0.5-092861e23

2 years ago

7.0.5-8bbd43628

2 years ago

7.0.5

2 years ago

7.0.4-ddaa59a60

2 years ago

7.0.4-856ccd708

2 years ago

7.0.4-4691f4173

2 years ago

7.0.4-ee7ffe9b9

2 years ago

7.0.4-900236724

2 years ago

7.0.4-821a38e24

2 years ago

7.0.3-528d73781

2 years ago

7.0.3-d011f6130

2 years ago

7.0.3-581574d6d

2 years ago

7.0.4

2 years ago

7.0.3-444d83751

2 years ago

7.0.3-388d02b33

2 years ago

7.0.3-ba7089984

2 years ago

7.0.3

2 years ago

7.0.2-28587d24f

2 years ago

7.0.2-5d1f68e92

2 years ago

7.0.2-4e0135c7d

2 years ago

7.0.2-6fd681d09

2 years ago

7.0.2-cd8cafcd5

2 years ago

7.0.2-c00378909

2 years ago

7.0.2-178fe2671

2 years ago

7.0.2-83dfc7dc8

2 years ago

7.0.1-07f3afe2d

2 years ago

7.0.1-ad6f70bf3

2 years ago

7.0.1-f71f2e14e

2 years ago

7.0.1-984f13e42

2 years ago

7.0.2

2 years ago

7.0.1-a7c6a93c6

2 years ago

7.0.1-230afea4b

2 years ago

7.0.1-9eff7eff0

2 years ago

7.0.1-f81be145a

2 years ago

7.0.1-01e9a5fe4

2 years ago

7.0.1

2 years ago

7.0.1-742915567

2 years ago

7.0.0-341581166

2 years ago

7.0.0-6d11e8268

2 years ago

7.0.0-d10506189

2 years ago

7.0.0-64a915ae9

2 years ago

7.0.0-3bf6387ff

2 years ago

7.0.0-93890c8f9

2 years ago

7.0.0-16588d27c

2 years ago

7.0.0-887c6ffe1

2 years ago

6.0.8-70d5efc2e

2 years ago

6.0.6-cf3ae893

2 years ago

6.0.8-dfbe0cc0

2 years ago

6.0.3-725f5df1

3 years ago

6.0.8-051154dd

2 years ago

5.0.4-c2232166

3 years ago

6.0.3-9a69e6f7

3 years ago

5.0.4-5315f7bc

3 years ago

6.0.5-e9099d40

2 years ago

6.0.0-72e81dc1

3 years ago

6.0.3-10cbc8fa

3 years ago

6.0.4-d9159dd5

3 years ago

6.0.3-32825633

3 years ago

6.0.5-b57bca44

2 years ago

6.0.3-0634e3b7

3 years ago

6.0.2-18567b7c

3 years ago

6.0.1-446fff87

3 years ago

6.0.3-6abcd22f

3 years ago

6.0.6-68504939

2 years ago

6.0.0-e66f4891

3 years ago

6.0.8-8b82e68e8

2 years ago

6.0.9-4a474d54d

2 years ago

6.0.6-b5a808af

2 years ago

6.0.5-f09ac4a7

2 years ago

6.0.7-b686fb5a

2 years ago

6.0.0-8f855a3c

3 years ago

6.0.0-58421e11

3 years ago

5.0.4-eabf6f36

3 years ago

6.0.9-68db79f6b

2 years ago

6.0.12

2 years ago

6.0.11

2 years ago

6.0.10

2 years ago

6.0.2-5e85154b

3 years ago

5.0.4-7debe031

3 years ago

6.0.2-a31b420f

3 years ago

6.0.5-f1053159

2 years ago

6.0.3-24a5edae

3 years ago

6.0.7-16a87076

2 years ago

6.0.6-ab2c1f67

2 years ago

6.0.0-5ffa7a74

3 years ago

6.0.9-9ad8f8686

2 years ago

6.0.2-123ded59

3 years ago

6.0.3-24c1c248

3 years ago

6.0.3-f3fd7b62

3 years ago

5.0.4-562f9b08

3 years ago

6.0.8-fdcb801e

2 years ago

6.0.3-6a02d765

3 years ago

6.0.3-46dc3ce9

3 years ago

6.0.11-cf963694f

2 years ago

6.0.5-28794fe4

2 years ago

5.0.4-a41d25d4

3 years ago

6.0.2-32212959

3 years ago

6.0.7-7903d7a5

2 years ago

6.0.3-b599905c

3 years ago

6.0.5-c97dea04

2 years ago

6.0.7-025c082a

2 years ago

6.0.3-87dc7e9f

3 years ago

6.0.5-6640116d

2 years ago

6.0.9-8f921ee97

2 years ago

6.0.5-e3ab1929

2 years ago

6.0.9-c960eb659

2 years ago

6.0.4-122f1e67

3 years ago

6.0.3-7b2ddc17

3 years ago

6.0.11-8c169db1b

2 years ago

6.0.9-8bb6d5333

2 years ago

6.0.9-3dee5df4d

2 years ago

6.0.5-7d8b1551

2 years ago

6.0.8-d25d9510

2 years ago

6.0.7

2 years ago

6.0.6

2 years ago

6.0.2-e26848b0

3 years ago

6.0.9

2 years ago

6.0.8

2 years ago

6.0.2-364e0592

3 years ago

6.0.4-4db2f5f5

3 years ago

5.0.4-5eee70a4

3 years ago

6.0.3-a6be8f0f

3 years ago

6.0.2-a1fbb7e2

3 years ago

6.0.4-0ee4f784

3 years ago

6.0.5-ae36e86b

2 years ago

7.0.0-bcfa15993

2 years ago

6.0.4-0ce318ec

3 years ago

6.0.9-74e84bc29

2 years ago

6.0.1

3 years ago

6.0.0

3 years ago

6.0.3

3 years ago

6.0.5-6cb80f7d

2 years ago

6.0.2

3 years ago

6.0.5

3 years ago

6.0.0-a4a10fd4

3 years ago

6.0.4

3 years ago

6.0.2-eaac8943

3 years ago

5.0.4-7f60b579

3 years ago

6.0.11-6c1f0ee81

2 years ago

6.0.8-78db573f9

2 years ago

6.0.10-06e6d235f

2 years ago

6.0.5-96166ada

2 years ago

6.0.2-3345f28b

3 years ago

6.0.9-bb6ceb192

2 years ago

6.0.9-97ab31c0c

2 years ago

7.0.0-10ea19700

2 years ago

5.0.4-57c32721

3 years ago

6.0.10-a32e70bac

2 years ago

6.0.10-273d8177c

2 years ago

6.0.9-7877a50e0

2 years ago

6.0.0-c858ca7f

3 years ago

6.0.9-0f5c305af

2 years ago

5.0.4-1f7e18b0

3 years ago

6.0.8-f4fac961

2 years ago

6.0.9-05b52d69c

2 years ago

6.0.11-f537b3731

2 years ago

6.0.11-9197f10ba

2 years ago

6.0.7-69581367

2 years ago

6.0.10-7682861f9

2 years ago

6.0.3-87165551

3 years ago

6.0.3-d30f09f2

3 years ago

7.0.0-09dd02987

2 years ago

6.0.10-8e4fbe13a

2 years ago

6.0.0-fdd80820

3 years ago

5.0.4-791f56f0

3 years ago

6.0.9-9c67c5b3d

2 years ago

5.0.4-e9cafd3d

3 years ago

6.0.9-effcfaa8e

2 years ago

6.0.7-50442d7a

2 years ago

6.0.11-53224004f

2 years ago

6.0.9-d8f5bc211

2 years ago

5.0.4-6eab9c5e

3 years ago

6.0.3-a533cc39

3 years ago

6.0.3-5294f14c

3 years ago

6.0.3-2b755a82

3 years ago

6.0.0-ef83dd1d

3 years ago

6.0.5-5a6a4379

2 years ago

5.0.4-69c93ac5

3 years ago

6.0.11-561797a89

2 years ago

7.0.0

2 years ago

6.0.3-7517082d

3 years ago

5.0.4-a1ec46b5

3 years ago

6.0.0-8d49602f

3 years ago

6.0.4-20d5f220

3 years ago

6.0.8-1d141331a

2 years ago

6.0.3-89778624

3 years ago

6.0.7-d5ef1c91

2 years ago

6.0.0-8f681db3

3 years ago

6.0.5-980857c3

2 years ago

6.0.5-91842c93

2 years ago

6.0.11-738dd40f1

2 years ago

6.0.3-13f5b48e

3 years ago

6.0.9-adea7bbbf

2 years ago

6.0.4-88c47f51

3 years ago

7.0.0-5a9362e21

2 years ago

6.0.5-972b10a9

2 years ago

5.0.4-b1024c6c

3 years ago

6.0.6-62a56b54

2 years ago

6.0.6-77e3cbc3

2 years ago

6.0.8-fb8a6f188

2 years ago

6.0.5-72319fe6

2 years ago

6.0.3-4559a624

3 years ago

6.0.3-73b87c5a

3 years ago

5.0.4-06f4901a

3 years ago

5.0.4-b36ec7f2

3 years ago

6.0.9-e2267d437

2 years ago

6.0.2-02b89323

3 years ago

6.0.3-d9948596

3 years ago

6.0.2-4c1a33b3

3 years ago

6.0.9-6625a27fc

2 years ago

6.0.3-4ef9c79c

3 years ago

5.0.4-7b5c54dd

3 years ago

6.0.7-346ff5a2

2 years ago

6.0.3-0d228f9f

3 years ago

6.0.3-28d6722f

3 years ago

6.0.3-e664d14f

3 years ago

6.0.11-7861ed882

2 years ago

6.0.3-63041afe

3 years ago

6.0.9-13a870cbe

2 years ago

6.0.6-50f912c2

2 years ago

6.0.11-e7167fe52

2 years ago

6.0.3-098ba082

3 years ago

6.0.5-c88de8e1

2 years ago

6.0.2-9c0353cf

3 years ago

6.0.5-e8123d3f

2 years ago

5.0.4-daeb43d8

3 years ago

6.0.10-bcf18265e

2 years ago

6.0.3-01acccef

3 years ago

6.0.9-0b4a2ee79

2 years ago

6.0.10-551622a96

2 years ago

6.0.11-bca8d6e68

2 years ago

6.0.6-f9d1c072

2 years ago

6.0.9-d729d66a5

2 years ago

5.0.4-c999d6a7

3 years ago

6.0.5-f670307a

2 years ago

6.0.2-6b839807

3 years ago

6.0.9-6b6ba9ab7

2 years ago

6.0.6-7534ae7b

2 years ago

6.0.3-c4eff4c5

3 years ago

5.0.4-3dfc236e

3 years ago

5.0.4

3 years ago

5.0.4-8b0e6bef

3 years ago

5.0.4-879f4794

3 years ago

5.0.4-7fb23cd3

3 years ago

5.0.4-f427cfc9

3 years ago

5.0.4-ea8a0637

3 years ago

5.0.4-d853d124

3 years ago

5.0.4-05abd49f

3 years ago

5.0.4-42c1c097

3 years ago

5.0.4-ab0e3980

3 years ago

5.0.4-2e561fe9

3 years ago

5.0.4-85a317bb

3 years ago

5.0.4-6fdaa7dc

3 years ago

5.0.3

3 years ago

5.0.2

3 years ago

5.0.1

3 years ago

5.0.0

3 years ago

4.0.5

3 years ago

4.0.4

3 years ago

4.0.3

3 years ago

3.0.0

4 years ago

2.0.2

4 years ago

4.0.1

4 years ago

4.0.0

4 years ago

4.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.0.9

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.12

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.0

4 years ago