2.8.1 • Published 29 days ago

@tap-payments/auth-jsconnect v2.8.1

Weekly downloads
-
License
ISC
Repository
-
Last release
29 days ago

Auth-JsConnect

Handling user authentication and identification

Install

This is a React module available through the npm registry. Installation is done using the npm install command:

npm install @tap-payments/auth-jsconnect

---------------------------- OR -------------------------

yarn add @tap-payments/auth-jsconnect

Features

Examples

ES6

import { ConnectLib } from '@tap-payments/auth-jsconnect'

const App = () => {
	return (
		<ConnectLib
			open={true}
			merchantDomain={'https://www.example.com'}
			publicKey={'pk_test_xxxxxx'}
			appInfo={{
				identifier: 'tap_connect_demo',
				name: 'Tap Connect Demo',
				version: 'V2.0.0'
			}}
			businessCountryCode='SA'
			language='en'
			onError={(error) => {
				alert(JSON.stringify({ error }))
			}}
			onFlowCompleted={(data) => {
				console.log(data)
			}}
			onReady={() => {
				console.log('ready!')
			}}
			onStepCompleted={(name, data) => {
				console.log(name, data)
			}}
			onStepStarted={(name) => {
				console.log(name)
			}}
			scope={[]}
		/>
	)
}

Vanilla JS

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no,shrink-to-fit=no" />
    <title>Auth-JsConnect</title>
    <script src="https://auth-jsconnect.b-cdn.net/build-2.0.0/main.js"></script>
    <link href="https://auth-jsconnect.b-cdn.net/build-2.0.0/main.css" rel="stylesheet" />
  </head>
  <body>
    <div id="root"></div>
    <script>
      const { renderConnectLib, unmountConnectLib } = window.TapAuth
      const startConnect = () => {
       const {unmount}= renderConnectLib(
                      {
                        open: true,
                        merchantDomain: window.location.origin,
                        publicKey: "pk_test_lat64TEDSvHrUOYAxVRe28PQ",
                        appInfo: {
                          identifier: "tap_connect_demo",
                          name: "Tap Connect Demo",
                          version: "V2.0.0"
                        },
                        businessCountryCode: "SA",
                        language: "en",
                        onError: (error) => {
                          alert(JSON.stringify({ error }))
                        },
                        onFlowCompleted: (data) => {
                          console.log(data)
                        },
                        onReady: () => {
                          console.log("ready!")
                        },
                        onStepCompleted: (name, data) => {
                          console.log(name, data)
                        },
                        onStepError: (name, error) => {
                          console.log(name, error)
                        },
                        onStepStarted: (name) => {
                          console.log(name)
                        },
                        scope: []
                      },

          "root"
        )
      }
      const stopConnect = () => {
        unmount("root")
      }

    </script>
    <button onclick="startConnect()">Start</button>
    <button onclick="stopConnect()">Stop</button>
  </body>
</html>
## Connect
- Help our merchants to create a account with Tap Payments

## Business

## Password

## Individual

## Bank

## Tax

Properties

namedescription
open required - booleanopen/close the library
merchantDomain required - stringdomain name https://expamle.com
publicKey required - stringmerchant public key
appInfo requiredit's an object from type AppInfo
businessCountryCode required - stringmerchant country code and it should be the ISO2 of the country
scope required - stringit's an string
language required - stringit can be enor ar
onError required - functioncallback function will call in case of any error happened
onFlowCompleted required - functioncallback function will called after completing the flow
onReady required - functioncallback function will call after loading library configuration
onStepError required - functioncallback function will call in case if any error happened in the screen
onStepStarted required - functioncallback function will call in the begging of each step
2.10.0-development

2 months ago

2.10.0-sandbox

2 months ago

2.11.0-beta

1 month ago

2.7.12

3 months ago

2.10.4-development

2 months ago

2.8.1

1 month ago

2.9.44-sandbox

3 months ago

2.10.15-beta

3 months ago

2.10.2-development

2 months ago

2.10.1-development

2 months ago

2.10.3-development

2 months ago

2.9.49-development

2 months ago

2.7.11

4 months ago

2.10.14-beta

4 months ago

2.9.43-sandbox

4 months ago

2.9.48-development

4 months ago

2.7.10

5 months ago

2.10.13-beta

5 months ago

2.10.12-beta

5 months ago

2.9.44-development

5 months ago

2.9.41-sandbox

5 months ago

2.9.42-sandbox

5 months ago

2.9.43-development

6 months ago

2.9.47-development

5 months ago

2.9.46-development

5 months ago

2.9.45-development

5 months ago

2.9.42-development

6 months ago

2.7.9

6 months ago

2.9.40-sandbox

7 months ago

2.10.11-beta

7 months ago

2.9.37-development

8 months ago

2.10.5-beta

8 months ago

2.9.40-development

7 months ago

2.9.39-sandbox

7 months ago

2.9.37-sandbox

8 months ago

2.10.8-beta

8 months ago

2.7.6

8 months ago

2.7.5

8 months ago

2.7.8

7 months ago

2.7.7

7 months ago

2.10.9-beta

7 months ago

2.9.35-sandbox

8 months ago

2.9.33-development

8 months ago

2.9.38-sandbox

7 months ago

2.8.0

8 months ago

2.10.7-beta

8 months ago

2.9.39-development

7 months ago

2.9.35-development

8 months ago

2.9.31-development

8 months ago

2.9.31-sandbox

8 months ago

2.9.36-sandbox

8 months ago

2.9.38-development

8 months ago

2.9.36-development

8 months ago

2.9.34-development

8 months ago

2.9.32-development

8 months ago

2.9.41-development

7 months ago

2.10.10-beta

7 months ago

2.10.6-beta

8 months ago

2.7.2

9 months ago

2.10.2-beta

9 months ago

2.9.29-development

8 months ago

2.7.1

9 months ago

2.10.1-beta

9 months ago

2.9.27-sandbox

9 months ago

2.9.28-development

9 months ago

2.9.27-development

9 months ago

2.9.21-sandbox

9 months ago

2.7.0

9 months ago

2.9.26-sandbox

9 months ago

2.9.23-sandbox

9 months ago

2.9.24-sandbox

9 months ago

2.10.0-beta

9 months ago

2.9.20-sandbox

10 months ago

2.9.19-development

10 months ago

2.9.22-sandbox

9 months ago

2.9.25-development

9 months ago

2.9.26-development

9 months ago

2.9.24-development

9 months ago

2.9.23-development

9 months ago

2.9.20-development

10 months ago

2.9.21-development

9 months ago

2.9.22-development

9 months ago

2.9.9-development

11 months ago

2.9.1-development

12 months ago

2.9.12-development

11 months ago

2.8.85-sandbox

1 year ago

2.9.10-sandbox

11 months ago

2.9.6-development

12 months ago

2.9.4-development

12 months ago

2.8.99-development

12 months ago

2.9.5-sandbox

12 months ago

2.9.3-development

12 months ago

2.9.7-development

11 months ago

2.9.12-sandbox

10 months ago

2.9.6-beta

11 months ago

2.9.5-beta

12 months ago

2.9.5-development

12 months ago

2.9.16-development

10 months ago

2.8.97-beta

1 year ago

2.8.86-sandbox

1 year ago

2.8.97-sandbox

1 year ago

2.9.7-beta

10 months ago

2.9.2-development

12 months ago

2.9.8-development

11 months ago

2.6.1

1 year ago

2.6.0

1 year ago

2.6.3

1 year ago

2.6.5

12 months ago

2.6.7

10 months ago

2.6.6

10 months ago

2.6.8

10 months ago

2.8.98-development

12 months ago

2.9.18-development

10 months ago

2.9.14-development

10 months ago

2.8.83-sandbox

1 year ago

2.9.10-development

11 months ago

2.8.88-beta

1 year ago

2.8.88-sandbox

1 year ago

2.9.17-development

10 months ago

2.9.15-development

10 months ago

2.9.13-development

10 months ago

2.9.8-beta

10 months ago

2.8.86-beta

1 year ago

2.9.11-sandbox

10 months ago

2.5.6

1 year ago

2.8.78-sandbox

1 year ago

2.8.75-sandbox

1 year ago

2.8.75-beta

1 year ago

2.5.5

1 year ago

2.8.64-beta

1 year ago

2.5.4

1 year ago

2.8.64-sandbox

1 year ago

2.8.65-sandbox

1 year ago

2.8.65-beta

1 year ago

2.5.3

1 year ago

2.8.63-beta

1 year ago

2.8.63-sandbox

1 year ago

2.8.62-sandbox

1 year ago

2.5.2

1 year ago

2.5.1

1 year ago

2.8.62-beta

1 year ago

2.5.0

1 year ago

2.8.61-sandbox

1 year ago

2.8.61-beta

1 year ago

2.8.60-beta

1 year ago

2.8.60-sandbox

1 year ago

2.8.59-beta

1 year ago

2.4.29

1 year ago

2.8.59-sandbox

1 year ago

2.4.27

1 year ago

2.8.55-sandbox

1 year ago

2.8.55-beta

1 year ago

2.8.52-beta

1 year ago

2.8.52-sandbox

1 year ago

2.8.51-sandbox

1 year ago

2.8.45-sandbox

1 year ago

2.8.45-beta

1 year ago

2.8.45-test

1 year ago

2.8.42-test

1 year ago

2.8.44-test

1 year ago

2.4.26

2 years ago

2.8.41-test

2 years ago

2.8.40-test

2 years ago

2.8.38-test

2 years ago

2.8.37-test

2 years ago

2.8.39-test

2 years ago

2.4.25

2 years ago

2.4.23

2 years ago

2.8.36-test

2 years ago

2.8.35-test

2 years ago

2.8.32-test

2 years ago

2.8.31-test

2 years ago

2.8.30-test

2 years ago

2.8.29-test

2 years ago

2.8.28-test

2 years ago

2.8.26-test

2 years ago

2.8.25-test

2 years ago

2.4.21

2 years ago

2.4.22

2 years ago

2.8.24-test

2 years ago

2.8.27-test

2 years ago

2.8.23-test

2 years ago

2.8.22-test

2 years ago

2.8.21-test

2 years ago

2.8.13-test

2 years ago

2.8.18-test

2 years ago

2.8.16-test

2 years ago

2.8.19-test

2 years ago

2.4.18

2 years ago

2.4.17

2 years ago

2.4.19

2 years ago

2.8.14-test

2 years ago

2.8.20-test

2 years ago

2.8.15-test

2 years ago

2.6.97-test

2 years ago

2.5.22-test

2 years ago

2.6.24-test

2 years ago

2.4.1

2 years ago

2.4.0

2 years ago

2.4.3

2 years ago

2.4.5

2 years ago

2.4.4

2 years ago

2.5.12-test

2 years ago

2.6.3-test

2 years ago

2.7.11-test

2 years ago

2.6.59-test

2 years ago

2.6.39-test

2 years ago

2.7.6-test

2 years ago

2.4.7

2 years ago

2.4.6

2 years ago

2.4.9

2 years ago

2.4.8

2 years ago

2.6.100-test

2 years ago

2.6.90-test

2 years ago

2.6.87-test

2 years ago

2.5.17-test

2 years ago

2.5.14-test

2 years ago

2.7.8-test

2 years ago

2.6.16-test

2 years ago

2.3.7

2 years ago

2.6.54-test

2 years ago

2.5.20-test

2 years ago

2.7.1-test

2 years ago

2.5.19-test

2 years ago

2.6.52-test

2 years ago

2.6.49-test

2 years ago

2.6.95-test

2 years ago

2.8.10-test

2 years ago

2.8.1-test

2 years ago

2.6.27-test

2 years ago

2.6.94-test

2 years ago

2.6.40-test

2 years ago

2.6.28-test

2 years ago

2.6.41-test

2 years ago

2.7.3-test

2 years ago

2.5.16-test

2 years ago

2.6.57-test

2 years ago

2.6.12-test

2 years ago

2.7.4-test

2 years ago

2.6.56-test

2 years ago

2.6.89-test

2 years ago

2.6.86-test

2 years ago

2.6.32-test

2 years ago

2.6.19-test

2 years ago

2.6.61-test

2 years ago

2.6.98-test

2 years ago

2.6.36-test

2 years ago

2.8.8-test

2 years ago

2.6.82-test

2 years ago

2.6.20-test

2 years ago

2.6.48-test

2 years ago

3.0.0-test

2 years ago

2.6.9-test

2 years ago

2.6.91-test

2 years ago

2.7.7-test

2 years ago

2.5.18-test

2 years ago

2.6.53-test

2 years ago

2.6.2-test

2 years ago

2.7.10-test

2 years ago

2.6.25-test

2 years ago

2.5.13-test

2 years ago

2.4.14

2 years ago

2.4.13

2 years ago

2.4.16

2 years ago

2.4.15

2 years ago

2.4.10

2 years ago

2.4.12

2 years ago

2.4.11

2 years ago

2.6.4-test

2 years ago

2.6.35-test

2 years ago

2.6.83-test

2 years ago

2.6.23-test

2 years ago

2.6.7-test

2 years ago

2.6.93-test

2 years ago

2.6.33-test

2 years ago

2.8.0-test

2 years ago

2.6.0-test

2 years ago

2.6.18-test

2 years ago

2.6.102-test

2 years ago

2.6.46-test

2 years ago

2.6.37-test

2 years ago

2.6.84-test

2 years ago

2.6.31-test

2 years ago

2.6.60-test

2 years ago

2.6.5-test

2 years ago

2.8.2-test

2 years ago

2.6.30-test

2 years ago

2.6.101-test

2 years ago

2.6.55-test

2 years ago

2.6.26-test

2 years ago

2.5.15-test

2 years ago

1.0.0-beta

2 years ago

2.7.5-test

2 years ago

2.6.38-test

2 years ago

2.6.13-test

2 years ago

2.6.10-test

2 years ago

2.6.92-test

2 years ago

2.6.29-test

2 years ago

2.6.17-test

2 years ago

2.6.8-test

2 years ago

2.7.9-test

2 years ago

2.6.51-test

2 years ago

2.6.96-test

2 years ago

2.8.11-test

2 years ago

2.6.34-test

2 years ago

2.5.23-test

2 years ago

2.3.6

2 years ago

2.5.10-test

2 years ago

2.5.9-test

2 years ago

2.5.8-test

2 years ago

2.5.11-test

2 years ago

2.3.4

2 years ago

2.5.7-test

2 years ago

2.3.3

2 years ago

2.5.5-test

2 years ago

2.5.3-test

2 years ago

2.5.4-test

2 years ago

2.4.83-test

2 years ago

2.4.93-test

2 years ago

2.4.98-test

2 years ago

2.3.0

2 years ago

2.3.2

2 years ago

2.4.63-test

2 years ago

2.3.1

2 years ago

2.4.75-test

2 years ago

2.2.0

2 years ago

2.4.85-test

2 years ago

2.4.68-test

2 years ago

2.4.58-test

2 years ago

2.1.0

2 years ago

2.4.73-test

2 years ago

2.4.67-test

2 years ago

2.4.76-test

2 years ago

2.5.2-test

2 years ago

2.4.96-test

2 years ago

2.4.81-test

2 years ago

2.4.72-test

2 years ago

2.4.59-test

2 years ago

2.4.84-test

2 years ago

2.4.60-test

2 years ago

2.4.88-test

2 years ago

2.4.64-test

2 years ago

2.4.89-test

2 years ago

2.4.99-test

2 years ago

2.4.82-test

2 years ago

2.4.79-test

2 years ago

2.4.97-test

2 years ago

2.4.94-test

2 years ago

2.4.92-test

2 years ago

2.4.87-test

2 years ago

2.4.90-test

2 years ago

2.4.61-test

2 years ago

2.4.86-test

2 years ago

2.4.70-test

2 years ago

2.4.77-test

2 years ago

2.4.71-test

2 years ago

2.4.95-test

2 years ago

2.4.66-test

2 years ago

2.4.91-test

2 years ago

2.4.78-test

2 years ago

2.4.69-test

2 years ago

2.4.62-test

2 years ago

2.5.0-test

2 years ago

2.4.74-test

2 years ago

2.4.57-test

2 years ago

2.4.40-test

2 years ago

2.4.37-test

2 years ago

2.4.38-test

2 years ago

2.4.47-test

2 years ago

2.4.52-test

2 years ago

2.4.51-test

2 years ago

2.0.62

2 years ago

2.4.55-test

2 years ago

2.4.43-test

2 years ago

2.4.54-test

2 years ago

2.4.36-test

2 years ago

2.4.46-test

2 years ago

2.4.39-test

2 years ago

2.4.44-test

2 years ago

2.4.42-test

2 years ago

2.4.48-test

2 years ago

2.4.50-test

2 years ago

2.4.53-test

2 years ago

2.4.41-test

2 years ago

2.4.10-test

2 years ago

2.3.58-test

2 years ago

2.3.96-test

2 years ago

2.4.17-test

2 years ago

2.3.86-test

2 years ago

2.3.68-test

2 years ago

2.4.20-test

2 years ago

2.3.88-test

2 years ago

2.4.15-test

2 years ago

2.4.30-test

2 years ago

2.3.91-test

2 years ago

2.4.25-test

2 years ago

2.3.78-test

2 years ago

2.3.93-test

2 years ago

2.4.0-test

2 years ago

2.4.27-test

2 years ago

2.4.13-test

2 years ago

2.3.74-test

2 years ago

2.3.65-test

2 years ago

2.4.29-test

2 years ago

2.4.23-test

2 years ago

2.0.57

2 years ago

2.0.58

2 years ago

2.0.55

2 years ago

2.0.56

2 years ago

2.0.53

2 years ago

2.0.54

2 years ago

2.3.85-test

2 years ago

2.0.60

2 years ago

2.0.61

2 years ago

2.4.5-test

2 years ago

2.3.98-test

2 years ago

2.4.31-test

2 years ago

2.3.61-test

2 years ago

2.4.14-test

2 years ago

2.3.94-test

2 years ago

2.4.26-test

2 years ago

2.3.87-test

2 years ago

2.4.16-test

2 years ago

2.4.8-test

2 years ago

2.3.90-test

2 years ago

2.3.67-test

2 years ago

2.3.72-test

2 years ago

2.3.69-test

2 years ago

2.4.21-test

2 years ago

2.4.34-test

2 years ago

2.3.70-test

2 years ago

2.3.95-test

2 years ago

2.3.57-test

2 years ago

2.3.64-test

2 years ago

2.3.50-test

2 years ago

2.4.11-test

2 years ago

2.3.59-test

2 years ago

2.3.62-test

2 years ago

2.3.84-test

2 years ago

2.4.32-test

2 years ago

2.4.33-test

2 years ago

2.3.83-test

2 years ago

2.4.19-test

2 years ago

2.3.99-test

2 years ago

2.3.92-test

2 years ago

2.4.3-test

2 years ago

2.3.51-test

2 years ago

2.3.80-test

2 years ago

2.4.28-test

2 years ago

2.3.75-test

2 years ago

2.4.12-test

2 years ago

2.3.47-test

2 years ago

2.3.43-test

2 years ago

2.0.52

2 years ago

2.3.46-test

2 years ago

2.3.39-test

2 years ago

2.3.40-test

2 years ago

2.3.37-test

2 years ago

2.3.33-test

2 years ago

2.3.23-test

2 years ago

2.3.28-test

2 years ago

2.3.12-test

2 years ago

2.3.18-test

2 years ago

2.3.8-test

2 years ago

2.3.16-test

2 years ago

2.3.31-test

2 years ago

2.3.11-test

2 years ago

2.3.17-test

2 years ago

2.3.36-test

2 years ago

2.3.30-test

2 years ago

2.3.7-test

2 years ago

2.3.27-test

2 years ago

2.0.48

2 years ago

2.0.49

2 years ago

2.0.47

2 years ago

2.3.26-test

2 years ago

2.0.51

2 years ago

2.0.50

2 years ago

2.3.10-test

2 years ago

2.3.25-test

2 years ago

2.3.22-test

2 years ago

2.3.19-test

2 years ago

2.3.13-test

2 years ago

2.3.34-test

2 years ago

2.3.9-test

2 years ago

2.3.32-test

2 years ago

2.1.92-test

2 years ago

2.1.98-test

2 years ago

2.1.89-test

2 years ago

2.3.3-test

2 years ago

2.2.5-test

2 years ago

2.3.4-test

2 years ago

2.1.93-test

2 years ago

2.3.5-test

2 years ago

2.1.97-test

2 years ago

2.1.90-test

2 years ago

2.1.100-test

2 years ago

2.3.1-test

2 years ago

2.1.99-test

2 years ago

2.1.95-test

2 years ago

2.0.46

2 years ago

2.3.6-test

2 years ago

2.2.1-test

2 years ago

2.1.91-test

2 years ago

2.1.96-test

2 years ago

2.3.2-test

2 years ago

2.0.116-test

3 years ago

2.1.8-test

3 years ago

2.1.2-test

3 years ago

2.1.79-test

2 years ago

2.1.73-test

2 years ago

2.1.25-test

3 years ago

2.1.44-test

3 years ago

2.1.88-test

2 years ago

2.1.35-test

3 years ago

2.0.125-test

3 years ago

2.1.15-test

3 years ago

2.1.20-test

3 years ago

2.1.45-test

3 years ago

2.1.34-test

3 years ago

2.1.59-test

2 years ago

2.1.78-test

2 years ago

2.1.7-test

3 years ago

2.0.126-test

3 years ago

2.0.115-test

3 years ago

2.1.63-test

2 years ago

2.1.16-test

3 years ago

2.0.124-test

3 years ago

2.1.68-test

2 years ago

2.1.87-test

2 years ago

2.1.11-test

3 years ago

2.1.30-test

3 years ago

2.1.33-test

3 years ago

2.1.21-test

3 years ago

2.1.3-test

3 years ago

2.1.58-test

2 years ago

2.0.117-test

3 years ago

2.1.52-test

3 years ago

2.1.27-test

3 years ago

2.1.23-test

3 years ago

2.1.42-test

3 years ago

2.1.37-test

3 years ago

2.0.120-test

3 years ago

2.1.1-test

3 years ago

2.1.56-test

3 years ago

2.1.39-test

3 years ago

2.1.71-test

2 years ago

2.0.122-test

3 years ago

2.1.54-test

3 years ago

2.1.85-test

2 years ago

2.1.40-test

3 years ago

2.1.76-test

2 years ago

2.1.5-test

3 years ago

2.0.119-test

3 years ago

2.1.70-test

2 years ago

2.0.29

3 years ago

2.0.37

3 years ago

2.0.38

3 years ago

2.0.35

3 years ago

2.0.36

3 years ago

2.0.33

3 years ago

2.0.34

3 years ago

2.0.31

3 years ago

2.0.32

3 years ago

2.0.30

3 years ago

2.1.28-test

3 years ago

2.1.60-test

2 years ago

2.1.66-test

2 years ago

2.1.13-test

3 years ago

2.0.39

3 years ago

2.1.51-test

3 years ago

2.0.44

3 years ago

2.0.45

2 years ago

2.0.42

3 years ago

2.0.43

3 years ago

2.0.40

3 years ago

2.0.41

3 years ago

2.1.12-test

3 years ago

2.1.31-test

3 years ago

2.1.80-test

2 years ago

2.1.75-test

2 years ago

2.1.50-test

3 years ago

2.1.61-test

2 years ago

2.1.6-test

3 years ago

2.1.32-test

3 years ago

2.1.77-test

2 years ago

2.1.29-test

3 years ago

2.1.65-test

2 years ago

2.1.62-test

2 years ago

2.0.121-test

3 years ago

2.1.14-test

3 years ago

2.1.36-test

3 years ago

2.1.43-test

3 years ago

2.1.74-test

2 years ago

2.1.26-test

3 years ago

2.1.9-test

3 years ago

2.1.72-test

2 years ago

2.0.118-test

3 years ago

2.1.53-test

3 years ago

2.0.123-test

3 years ago

2.1.67-test

2 years ago

2.1.55-test

3 years ago

2.1.86-test

2 years ago

2.1.41-test

3 years ago

2.1.24-test

3 years ago

2.1.69-test

2 years ago

2.1.10-test

3 years ago

2.1.38-test

3 years ago

2.0.110-test

3 years ago

2.0.23-test

3 years ago

2.0.61-test

3 years ago

2.0.48-test

3 years ago

2.0.42-test

3 years ago

2.0.67-test

3 years ago

2.0.39-test

3 years ago

2.0.86-test

3 years ago

2.0.33-test

3 years ago

2.0.80-test

3 years ago

2.0.32-test

3 years ago

2.0.77-test

3 years ago

2.0.29-test

3 years ago

2.0.71-test

3 years ago

2.0.38-test

3 years ago

1.1.7-test

3 years ago

2.0.81-test

3 years ago

2.0.70-test

3 years ago

2.0.68-test

3 years ago

2.0.101-test

3 years ago

2.0.22-test

3 years ago

2.0.95-test

3 years ago

2.0.52-test

3 years ago

2.0.100-test

3 years ago

2.0.97-test

3 years ago

2.0.66-test

3 years ago

2.0.96-test

3 years ago

2.0.51-test

3 years ago

2.0.49-test

3 years ago

2.0.53-test

3 years ago

2.0.72-test

3 years ago

2.0.59-test

3 years ago

2.0.50-test

3 years ago

2.0.28-test

3 years ago

2.0.78-test

3 years ago

2.0.47-test

3 years ago

2.0.41-test

3 years ago

2.0.69-test

3 years ago

2.0.24-test

3 years ago

2.0.57-test

3 years ago

2.0.76-test

3 years ago

2.0.62-test

3 years ago

2.0.15

3 years ago

2.0.16

3 years ago

2.0.13

3 years ago

2.0.11

3 years ago

2.0.107-test

3 years ago

2.0.12

3 years ago

2.0.10

3 years ago

2.0.14-test

3 years ago

2.0.60-test

3 years ago

2.0.91-test

3 years ago

2.0.19

3 years ago

2.0.17

3 years ago

2.0.18

3 years ago

2.0.26

3 years ago

2.0.27

3 years ago

2.0.24

3 years ago

2.0.25

3 years ago

2.0.22

3 years ago

2.0.23

3 years ago

2.0.20

3 years ago

2.0.21

3 years ago

2.0.43-test

3 years ago

2.0.105-test

3 years ago

2.0.88-test

3 years ago

2.0.20-test

3 years ago

2.0.99-test

3 years ago

2.0.113-test

3 years ago

2.0.26-test

3 years ago

2.0.28

3 years ago

2.0.45-test

3 years ago

2.0.64-test

3 years ago

2.0.55-test

3 years ago

2.0.103-test

3 years ago

2.0.93-test

3 years ago

2.0.65-test

3 years ago

2.0.84-test

3 years ago

2.0.54-test

3 years ago

2.0.79-test

3 years ago

2.0.112-test

3 years ago

2.0.98-test

3 years ago

2.0.109-test

3 years ago

2.0.36-test

3 years ago

2.0.114-test

3 years ago

2.0.83-test

3 years ago

2.0.82-test

3 years ago

2.0.21-test

3 years ago

2.0.35-test

3 years ago

2.0.34-test

3 years ago

2.0.37-test

3 years ago

2.0.56-test

3 years ago

2.0.75-test

3 years ago

2.0.94-test

3 years ago

2.0.111-test

3 years ago

2.0.63-test

3 years ago

2.0.85-test

3 years ago

2.0.40-test

3 years ago

2.0.102-test

3 years ago

2.0.46-test

3 years ago

2.0.108-test

3 years ago

2.0.104-test

3 years ago

2.0.92-test

3 years ago

2.0.25-test

3 years ago

2.0.89-test

3 years ago

2.0.30-test

3 years ago

2.0.106-test

3 years ago

2.0.58-test

3 years ago

2.0.90-test

3 years ago

2.0.27-test

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.5

3 years ago

1.1.3-test

3 years ago

2.0.4

3 years ago

1.1.6-test

3 years ago

2.0.7

3 years ago

2.0.6

3 years ago

2.0.9

3 years ago

2.0.8

3 years ago

1.1.0-test

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.0.95-test

3 years ago

1.0.100-test

3 years ago

1.0.79

3 years ago

1.0.78

3 years ago

1.0.97-test

3 years ago

1.0.99-test

3 years ago

1.0.98-test

3 years ago

1.0.96-test

3 years ago

1.0.90-test

3 years ago

1.1.5-test

3 years ago

1.1.4-test

3 years ago

1.0.94-test

3 years ago

1.0.91-test

3 years ago

1.0.89-test

3 years ago

1.0.80

3 years ago

1.0.84

3 years ago

1.0.82

3 years ago

1.0.88

3 years ago

1.0.87

3 years ago

1.0.86

3 years ago

1.0.85

3 years ago

1.0.89

3 years ago

1.0.93-test

3 years ago

1.1.2-test

3 years ago

1.1.1-test

3 years ago

1.0.62

3 years ago

1.0.61

3 years ago

1.0.60

3 years ago

1.0.66

3 years ago

1.0.65

3 years ago

1.0.63

3 years ago

1.0.69

3 years ago

1.0.68

3 years ago

1.0.67

3 years ago

1.0.72

3 years ago

1.0.71

3 years ago

1.0.70

3 years ago

1.0.77

3 years ago

1.0.76

3 years ago

1.0.75

3 years ago

1.0.59

3 years ago

1.0.55

3 years ago

1.0.54

3 years ago

1.0.53

3 years ago

1.0.57

3 years ago

1.0.56

3 years ago

1.0.52

3 years ago

1.0.51

3 years ago

1.0.50

3 years ago

1.0.49

3 years ago

1.0.48

3 years ago

1.0.47

3 years ago

1.0.46

3 years ago

1.0.45

3 years ago

1.0.44

3 years ago

1.0.43

3 years ago

1.0.41

3 years ago

1.0.40

3 years ago

1.0.38

3 years ago

1.0.37

3 years ago

1.0.36

3 years ago

1.0.35

3 years ago

1.0.34

3 years ago

1.0.33

3 years ago

1.0.32

3 years ago

1.0.31

3 years ago

1.0.30

3 years ago

1.0.29

3 years ago

1.0.28

3 years ago

1.0.27

3 years ago

1.0.26

3 years ago

1.0.25

3 years ago

1.0.24

3 years ago

1.0.23

3 years ago

1.0.22

3 years ago

1.0.21

3 years ago

1.0.20

3 years ago

1.0.16

3 years ago

1.0.14

3 years ago

1.0.13

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago