1.11.525 • Published 4 months ago

mam v1.11.525

Weekly downloads
377
License
-
Repository
-
Last release
4 months ago

$mol

Reactive micro-modular UI framework. Very simple, but very powerful!

npm.io

Contents

Features

Reviews

Quick start

Video of this process

Create MAM project

The easiest way is to checkout this preconfigured MAM repository and start a dev server:

git clone https://github.com/hyoo-ru/mam.git ./mam && cd mam
npm install && npm start

Or simply use Gitpod Online Dev Workspace.

Setup your editor

Create your application component

The following example uses the namespace "my" and the application name "hello", but you can use your own namespace and application name.

Let's create a component that allows you to enter your name and display greeting text: "Hello, " + your name.

You need to create next files:

  • ./my/hello/index.html - Web entry point
  • ./my/hello/hello.view.tree - Declarative component description
  • ./my/hello/hello.view.ts - Behaviour/User interface logic
  • ./my/hello/hello.test.ts - Tests
  • ./my/hello/hello.view.css - Styles

Add web entry point at ./my/hello/index.html:

<!doctype html> <!-- Disable quirks mode -->
<html mol_view_root> <!-- Reset root styles -->
	<head>
		<meta charset="utf-8" /> <!-- Force utf-8 encoding -->
		<meta
			name="viewport"
			content="width=device-width, height=device-height, initial-scale=1"
		/> <!-- Disable mobile browser auto zoom, $mol is adaptive -->
		<meta name="mobile-web-app-capable" content="yes"> <!-- Fullscreen support -->
		<meta name="apple-mobile-web-app-capable" content="yes">
	</head>
	<body mol_view_root> <!-- Reset root styles -->
		<div mol_view_root="$my_hello"></div> <!-- Autobind component to element on load -->
		<script src="web.js"></script> <!-- Load autogenerated js bundle -->
	</body>
</html>

Your application will be served at http://localhost:9080/my/hello/. Open it. You should refresh page to view your changes.

Add declarative component description at ./my/hello/hello.view.tree with string input field and greeting message:

$my_hello $mol_view
	sub /
		<= Name $mol_string
			hint \Name
			value? <=> name? \
		<= message \

Add your behaviour at ./my/hello/hello.view.ts by extending generated class:

namespace $.$$ {
	export class $my_hello extends $.$my_hello {
		
		message() {
			let name = this.name()
			return name && `Hello, ${name}!`
		}
		
	}
}

Add tests for your behaviour at ./my/hello/hello.test.ts

namespace $.$$ {

	$mol_test({

		'Generating greeting message'() {

			const app = new $my_hello
			$mol_assert_equal( app.message() , '' )
			
			app.name( 'Jin' )
			$mol_assert_equal( app.message() , 'Hello, Jin!' )

		}

	})

}

Add styles at ./my/hello/hello.view.css:

/* Styling BEM-block by autogenerated attribute */
[my_hello] {
	display: flex;
	flex-direction: column;
	align-items: center;
	font: 1.5rem/1 sans-serif;
	box-shadow: 0 0 0 1px var(--mol_theme_line);
	flex: 1 1 auto;
	align-self: stretch;
	margin: 0;
}

/* Styling BEM-element by autogenerated attribute */
[my_hello_name] {
	flex-grow: 0;
	margin: 1rem;
	width: 14rem;
}

That is all!

Tutorials

Rationale

Zero configuration

Instead of ensuring configurability by any means, $mol concentrates on everything working good directly out of the box and does not bother $mol's developer by a typical configuration process. (Nevertheless, this doesn't exclude setup for your needs if required)

For example if you download base MAM-project you'll get this:

Building of JS and CSS bundles for different platforms. A bundle can be built for any module. This bundle would contain sources of that module and sources of all other modules on which that module depends on. There also would not be any redundant modules in the bundle.

Here is a full set of supported bundles:

  • -/web.js - JS for browser
  • -/web.d.ts - TypeScript definitions
  • -/web.test.js - JS with tests for a browser
  • -/web.deps.json - map of dependencies modules for browser
  • -/web.locale=en.json - strings pulled from *.view.tree and *.locale=en.json sources
  • -/node.js - JS for NodeJS
  • -/node.test.js - JS with tests for NodeJS
  • -/node.deps.json - a map of dependencies modules for NodeJS

Support of Source Maps. Sources are compiled and integrated into maps, they are fully self-sufficient.

Development server, which compiles bundles as needed. For example, when http://localhost:9080/hyoo/todomvc/-/web.js is requested, the js bundle is built from hyoo/todomvc for web environment. Rebuilding occurs only if any source files are changed.

Transpilling TypeScript into JS. In TS configuration enabled support decorators and disabled implicit any type, to prevent missing typing by change.

Watching dependencies by fact of using and automatic inclusion of the needed modules on further bundling. You don't need to write include and require. All you need is to refer instance by full name like $mol_state_arg and $mol.state.arg (depending on its definition) in *.ts, *.view.ts, *.view.tree and *.jam.js files. Dependencies in CSS files are looked for by entries like [mol_check_checked] , [mol_check_checked= and .mol_check_checked.

Lego components

$mol uses the component approach to building interfaces, however every component is self-sufficient and can be used as a self-sufficient application. Small components are aggregated inside larger components etc.

Unlike another frameworks, $mol does not isolate the internals of its components. Vice versa, a comfortable mechanism is provided for developers to configure them, the creator of the component doesn't have to do any additional actions.

For example, to set the list of sub components you need to redefine sub property in view.tree

Confirm_delete $mol_row sub /
	<= Yes $mol_button_minor title \Yes
	<= No $mol_button_major title \No

Or the same code in TypeScript would be:

@ $mol_mem
Confirm_delete() {
	return $mol_row.make({
		sub : ()=> [ this.Yes() , this.No() ] ,
	})
}

In both variants the compiler would verify the existence of the property and correspondence of the signature. Normally you don't need to work with fields of the object directly, all definable properties are public and can be safely overloaded.

Details about viewers and view.tree language: $mol_view.

Laziness

$mol_view implements lazy rendering. $mol_scroll watches scroll position and suggests the view height to embedded components. $mol_list knows the view height and minimal sizes of the embedded components, it excludes components definitely outside viewport from rendering. And all other components report their minimal size through minimal_height property.

$my_icon $mol_view
	minimal_height 16

As the result opening of any window occurs instantly. It's independent from output data size. And since data would not be rendered, any requests would not be proceeded. This allows us to download them partly, when they are needed. Such a feature is possible due to reactive architecture, that penetrates through all layers of the application.

Reactivity

Unlike control-flow architectures, $mol implements the data-flow architecture. All applications are defined as a set of classes having properties. Every property is defined as some function from another property (and properties of another classes too). Properties, which were called while processing a function are saved as dependencies of current property. When their values change, all dependent properties would be invalidated cascading. Calling a non relevant property would lead to its pre-actualization.

In this way the whole application at the execution stage represents a huge tree of dependencies, with a special property at the root of the tree, which in case of invalidation would actualize itself automatically. And as any property always knows, whether something depends on it or not, then it is given a simple and reliable mechanism of controlling lifecycle of objects - they are created when dependence appears and are destroyed when nothing depends on them. This solves two fundamental problems: resources leaks and cache invalidation.

Besides, the reactive architecture allows us to abstract code elegantly from asynchronous operations. If the function can't return value at the moment, it can throw Promise and is marked as part of the tree as "waiting of results". When result is retrieved, it can be inserted into property directly and an application would be reconstructed for the new state.

namespace $ {
	export class $my_greeter {
		
		@ $mol_mem
		greeting() {
			const user_name = $mol_fetch.json( 'https://example.org/profile/name' )
			return `Hello, ${ user_name }!`
		}
		
	}
}

Details: $mol_wire.

Debugging

$mol pays special attention to debugging possibilities and research of how its code works.

A human friendly id is automatically formed for every DOM-element, e.g. $hyoo_todomvc.root(0).taskRow(0).titler(), which is a valid javascript code, that could be executed in a console, returning a link to the component, which the DOM-element corresponds to. Unfolding the content of the component you'd see names and values for its fields like:

$hyoo_todomvc
    dom_node() : div#$hyoo_todomvc.root(0)
    task(1474385802391) : Object
    task(1474386443175) : Object
    taskRow(0) : $hyoo_todomvc_task_rowRow
    taskRow(1) : $hyoo_todomvc_task_rowRow
    taskrows() : Array[2]

The name of the field corresponds to calling the property, the content of the field would be available through. And thanks to naming classes and functions by underscoring, you always know which class instance you're looking at and can briefly find it in the code by searching the substring.

Modules

Flow

Object model

Lifecycle

Functions

Collections

State modules

Simple components

Simple controls

Layout components

Plugin components

Complex components

Charts

Data formats

Math

Resources

Testing

API

Time

Maps

WebAssemply

Web Services

Building

Usage from NPM ecosystem

You can manually build any $mol module as standalone lib:

git clone https://github.com/hyoo-ru/mam.git ./mam
cd mam
npm install
npm start path/to/module
cp path/to/module/-/* your/build/directory

Some libs are already published to NPM:

  • $mol_data - Static typed DTO with strict runtime validation and user friendly error messages.
  • $mol_strict - Makes JS runtime more strict.
  • $mol_time - Proper date/time/duration/interval arithmetic.
  • $mol_type - TypeScript meta types for complex logic.
  • $mol_regexp - Regular Expressions builder.
  • $mol_crypto - Efficient cryptographic algorithms.
  • $mol_db - Static typed IndexedDB wrapper with auto migrations.
  • $hyoo_crowd - Conflict-free Reinterpretable Ordered Washed Data.
  • $mol_plot - Fastest plot lib for vector graphics.

All of them are very small, powerful and fastest. Use it for your pleasure.

Contributors

This project exists thanks to all the people who contribute.

Cool stuff

Donate

$mol_build$mol$mol_wire_async$mol_wire$mol_wire_sub$mol_wire_pub$mol_fail$mol_wire_cursor$mol_wire_fiber$mol_wire_pub_sub$mol_dev_format$mol_dev$mol_after_tick$mol_after$mol_object2$mol_ambient$mol_owning$mol_delegate$mol_fail_hidden$mol_type_writable$mol_type$mol_func_name$mol_func$mol_promise_like$mol_promise$mol_wire_task$mol_compare_deep$mol_compare$mol_log3$mol_tree2_from_json$mol_tree2_from$mol_tree2$mol_span$mol_tree2_from_string$mol_error_syntax$mol_error$mol_tree2_to_string$mol_tree2_to$mol_term_color$mol_term$mol_object$mol_mem$mol_wire_solo$mol_wire_atom$mol_key$mol_guid$mol_after_frame$mol_after_timeout$mol_wire_method$mol_type_foot$mol_type_tail$mol_fail_log$mol_fail_catch$mol_wire_plex$mol_file_base$mol_file$node$mol_exec$mol_run$mol_error_mix$mol_env$mol_wire_sync$mol_action$node_modules$mol_const$mol_wire_probe$mol_lock$mol_mem_cached$mol_compare_array$mol_charset_decode$mol_charset$mol_charset_encoding$mol_charset_encode$mol_file_transaction$mol_wire_solid$mol_build_server$mol_server$mol_compare_text$mol_tree2_js_to_text$mol_tree2_js_to$mol_tree2_js$mol_tree2_js_is_number$mol_tree2_js_is$mol_view_tree2_to_js$mol_view_tree2_to$mol_view_tree2$mol_view$mol_view_tree2_class$mol_view_tree2_prop$mol_regexp$mol_type_merge$mol_type_equals$mol_type_intersect$mol_type_override$mol_unicode$mol_locale$mol_state_local$mol_state$mol_dom_context$mol_dom$mol_storage$mol_mem_persist$mol_guard$mol_view_tree2_to_js_test$mol_view_tree2_to_dts$mol_type_enforce$mol_view_tree2_to_locale$mol_tree2_text_to_string$mol_tree2_text_to$mol_tree2_text$mol_tree2_text_to_sourcemap$mol_vlq$mol_sourcemap$mol_graph$mol_sourcemap_strip$mol_sourcemap_from$mol_sourcemap_dataurl$mol_sourcemap_url$mol_base64_encode$mol_base64$mol_build_ensure$mol_build_ensure_git$mol_build_ensure_vcs$mol_build_ensure_npm$mol_build_graph$mol_sourcemap_builder$mol_tree2_xml_to_text$mol_tree2_xml_to$mol_tree2_xml$mol_html_encode$mol_html
1.11.399

8 months ago

1.11.397

8 months ago

1.11.398

8 months ago

1.11.388

8 months ago

1.11.389

8 months ago

1.11.386

8 months ago

1.11.387

8 months ago

1.11.391

8 months ago

1.11.392

8 months ago

1.11.390

8 months ago

1.11.395

8 months ago

1.11.396

8 months ago

1.11.393

8 months ago

1.11.394

8 months ago

1.11.510

5 months ago

1.11.513

4 months ago

1.11.514

4 months ago

1.11.511

5 months ago

1.11.512

4 months ago

1.11.517

4 months ago

1.11.518

4 months ago

1.11.515

4 months ago

1.11.516

4 months ago

1.11.519

4 months ago

1.11.502

5 months ago

1.11.503

5 months ago

1.11.500

5 months ago

1.11.501

5 months ago

1.11.506

5 months ago

1.11.507

5 months ago

1.11.504

5 months ago

1.11.505

5 months ago

1.11.508

5 months ago

1.11.509

5 months ago

1.11.410

7 months ago

1.11.411

7 months ago

1.11.414

7 months ago

1.11.415

7 months ago

1.11.412

7 months ago

1.11.413

7 months ago

1.11.418

7 months ago

1.11.419

7 months ago

1.11.416

7 months ago

1.11.417

7 months ago

1.11.520

4 months ago

1.11.521

4 months ago

1.11.400

8 months ago

1.11.524

4 months ago

1.11.403

8 months ago

1.11.525

4 months ago

1.11.404

8 months ago

1.11.522

4 months ago

1.11.401

8 months ago

1.11.523

4 months ago

1.11.402

8 months ago

1.11.407

8 months ago

1.11.408

7 months ago

1.11.405

8 months ago

1.11.406

8 months ago

1.11.409

7 months ago

1.11.432

7 months ago

1.11.433

7 months ago

1.11.430

7 months ago

1.11.431

7 months ago

1.11.436

7 months ago

1.11.437

7 months ago

1.11.434

7 months ago

1.11.435

7 months ago

1.11.438

7 months ago

1.11.439

7 months ago

1.11.440

7 months ago

1.11.421

7 months ago

1.11.422

7 months ago

1.11.420

7 months ago

1.11.425

7 months ago

1.11.426

7 months ago

1.11.423

7 months ago

1.11.424

7 months ago

1.11.429

7 months ago

1.11.427

7 months ago

1.11.428

7 months ago

1.11.454

6 months ago

1.11.455

6 months ago

1.11.452

6 months ago

1.11.453

6 months ago

1.11.458

6 months ago

1.11.459

6 months ago

1.11.456

6 months ago

1.11.457

6 months ago

1.11.461

6 months ago

1.11.462

6 months ago

1.11.460

6 months ago

1.11.443

6 months ago

1.11.444

6 months ago

1.11.441

6 months ago

1.11.442

6 months ago

1.11.447

6 months ago

1.11.448

6 months ago

1.11.445

6 months ago

1.11.446

6 months ago

1.11.449

6 months ago

1.11.450

6 months ago

1.11.451

6 months ago

1.11.476

6 months ago

1.11.477

6 months ago

1.11.474

6 months ago

1.11.475

6 months ago

1.11.478

6 months ago

1.11.479

5 months ago

1.11.480

5 months ago

1.11.483

5 months ago

1.11.484

5 months ago

1.11.481

5 months ago

1.11.482

5 months ago

1.11.465

6 months ago

1.11.466

6 months ago

1.11.463

6 months ago

1.11.464

6 months ago

1.11.469

6 months ago

1.11.467

6 months ago

1.11.468

6 months ago

1.11.472

6 months ago

1.11.473

6 months ago

1.11.470

6 months ago

1.11.471

6 months ago

1.11.498

5 months ago

1.11.377

8 months ago

1.11.499

5 months ago

1.11.378

8 months ago

1.11.496

5 months ago

1.11.375

8 months ago

1.11.497

5 months ago

1.11.376

8 months ago

1.11.379

8 months ago

1.11.380

8 months ago

1.11.381

8 months ago

1.11.384

8 months ago

1.11.385

8 months ago

1.11.382

8 months ago

1.11.383

8 months ago

1.11.487

5 months ago

1.11.488

5 months ago

1.11.485

5 months ago

1.11.486

5 months ago

1.11.489

5 months ago

1.11.490

5 months ago

1.11.491

5 months ago

1.11.494

5 months ago

1.11.373

8 months ago

1.11.495

5 months ago

1.11.374

8 months ago

1.11.492

5 months ago

1.11.493

5 months ago

1.11.1

9 months ago

1.11.333

11 months ago

1.11.334

11 months ago

1.11.332

11 months ago

1.11.337

11 months ago

1.11.338

11 months ago

1.11.335

11 months ago

1.11.336

11 months ago

1.11.339

10 months ago

1.11.340

10 months ago

1.11.341

10 months ago

1.11.355

10 months ago

1.11.356

10 months ago

1.11.353

10 months ago

1.11.354

10 months ago

1.11.359

10 months ago

1.11.357

10 months ago

1.11.358

10 months ago

1.11.362

10 months ago

1.11.363

10 months ago

1.11.360

10 months ago

1.11.361

10 months ago

1.11.344

10 months ago

1.11.345

10 months ago

1.11.342

10 months ago

1.11.343

10 months ago

1.11.348

10 months ago

1.11.349

10 months ago

1.11.346

10 months ago

1.11.347

10 months ago

1.11.351

10 months ago

1.11.352

10 months ago

1.11.350

10 months ago

1.11.366

10 months ago

1.11.367

9 months ago

1.11.364

10 months ago

1.11.365

10 months ago

1.11.368

9 months ago

1.11.369

9 months ago

1.11.370

9 months ago

1.11.371

9 months ago

1.11.372

9 months ago

1.11.278

1 year ago

1.11.279

1 year ago

1.11.276

1 year ago

1.11.277

1 year ago

1.11.281

1 year ago

1.11.282

1 year ago

1.11.280

1 year ago

1.11.285

1 year ago

1.11.286

1 year ago

1.11.283

1 year ago

1.11.284

1 year ago

1.11.267

1 year ago

1.11.268

1 year ago

1.11.265

1 year ago

1.11.266

1 year ago

1.11.269

1 year ago

1.11.270

1 year ago

1.11.271

1 year ago

1.11.274

1 year ago

1.11.275

1 year ago

1.11.272

1 year ago

1.11.273

1 year ago

1.11.298

12 months ago

1.11.299

12 months ago

1.11.289

1 year ago

1.11.287

1 year ago

1.11.288

1 year ago

1.11.292

12 months ago

1.11.293

12 months ago

1.11.290

12 months ago

1.11.291

12 months ago

1.11.296

12 months ago

1.11.297

12 months ago

1.11.294

12 months ago

1.11.295

12 months ago

1.11.311

11 months ago

1.11.312

11 months ago

1.11.310

11 months ago

1.11.315

11 months ago

1.11.316

11 months ago

1.11.313

11 months ago

1.11.314

11 months ago

1.11.319

11 months ago

1.11.317

11 months ago

1.11.318

11 months ago

1.11.300

12 months ago

1.11.301

12 months ago

1.11.304

12 months ago

1.11.305

12 months ago

1.11.302

12 months ago

1.11.303

12 months ago

1.11.308

12 months ago

1.11.309

12 months ago

1.11.306

12 months ago

1.11.307

12 months ago

1.11.331

11 months ago

1.11.322

11 months ago

1.11.323

11 months ago

1.11.320

11 months ago

1.11.321

11 months ago

1.11.326

11 months ago

1.11.327

11 months ago

1.11.324

11 months ago

1.11.325

11 months ago

1.11.328

11 months ago

1.11.329

11 months ago

1.11.330

11 months ago

1.11.234

1 year ago

1.11.235

1 year ago

1.11.232

1 year ago

1.11.233

1 year ago

1.11.238

1 year ago

1.11.239

1 year ago

1.11.236

1 year ago

1.11.237

1 year ago

1.11.241

1 year ago

1.11.242

1 year ago

1.11.240

1 year ago

1.11.256

1 year ago

1.11.257

1 year ago

1.11.254

1 year ago

1.11.255

1 year ago

1.11.258

1 year ago

1.11.259

1 year ago

1.11.260

1 year ago

1.11.263

1 year ago

1.11.264

1 year ago

1.11.261

1 year ago

1.11.262

1 year ago

1.11.245

1 year ago

1.11.246

1 year ago

1.11.243

1 year ago

1.11.244

1 year ago

1.11.249

1 year ago

1.11.247

1 year ago

1.11.248

1 year ago

1.11.252

1 year ago

1.11.253

1 year ago

1.11.250

1 year ago

1.11.251

1 year ago

1.11.228

1 year ago

1.11.229

1 year ago

1.11.230

1 year ago

1.11.231

1 year ago

1.11.227

1 year ago

1.11.226

1 year ago

1.11.224

1 year ago

1.11.225

1 year ago

1.11.223

1 year ago

1.11.222

1 year ago

1.11.221

1 year ago

1.11.220

1 year ago

1.11.219

1 year ago

1.11.216

1 year ago

1.11.217

1 year ago

1.11.218

1 year ago

1.11.213

1 year ago

1.11.214

1 year ago

1.11.215

1 year ago

1.11.212

1 year ago

1.11.211

1 year ago

1.11.210

1 year ago

1.11.209

1 year ago

1.11.208

1 year ago

1.11.207

1 year ago

1.11.206

1 year ago

1.11.205

1 year ago

1.11.204

1 year ago

1.11.203

1 year ago

1.11.201

1 year ago

1.11.202

1 year ago

1.11.200

1 year ago

1.11.199

1 year ago

1.11.198

1 year ago

1.11.197

1 year ago

1.11.195

1 year ago

1.11.196

1 year ago

1.11.193

1 year ago

1.11.194

1 year ago

1.11.191

1 year ago

1.11.192

1 year ago

1.11.190

1 year ago

1.11.189

1 year ago

1.11.188

1 year ago

1.11.187

1 year ago

1.11.186

1 year ago

1.11.185

1 year ago

1.11.183

1 year ago

1.11.184

1 year ago

1.11.182

1 year ago

1.11.181

1 year ago

1.11.180

1 year ago

1.11.179

1 year ago

1.11.178

1 year ago

1.11.177

1 year ago

1.11.176

1 year ago

1.11.175

1 year ago

1.11.173

1 year ago

1.11.174

1 year ago

1.11.172

1 year ago

1.11.169

1 year ago

1.11.171

1 year ago

1.11.170

1 year ago

1.11.168

1 year ago

1.11.167

1 year ago

1.11.165

1 year ago

1.11.166

1 year ago

1.11.164

1 year ago

1.11.162

1 year ago

1.11.163

1 year ago

1.11.159

1 year ago

1.11.160

1 year ago

1.11.161

1 year ago

1.11.158

1 year ago

1.11.157

1 year ago

1.11.155

1 year ago

1.11.156

1 year ago

1.11.154

1 year ago

1.11.153

1 year ago

1.11.151

1 year ago

1.11.152

1 year ago

1.11.150

1 year ago

1.11.148

1 year ago

1.11.149

1 year ago

1.11.147

1 year ago

1.11.146

1 year ago

1.11.144

1 year ago

1.11.145

1 year ago

1.11.139

1 year ago

1.11.142

1 year ago

1.11.143

1 year ago

1.11.140

1 year ago

1.11.141

1 year ago

1.11.135

1 year ago

1.11.136

1 year ago

1.11.133

1 year ago

1.11.134

1 year ago

1.11.137

1 year ago

1.11.138

1 year ago

1.11.132

1 year ago

1.11.129

1 year ago

1.11.131

1 year ago

1.11.130

1 year ago

1.11.128

1 year ago

1.11.126

1 year ago

1.11.127

1 year ago

1.11.124

1 year ago

1.11.125

1 year ago

1.11.122

1 year ago

1.11.123

1 year ago

1.11.117

1 year ago

1.11.118

1 year ago

1.11.116

1 year ago

1.11.119

1 year ago

1.11.120

1 year ago

1.11.121

1 year ago

1.11.115

1 year ago

1.11.114

1 year ago

1.11.113

1 year ago

1.11.112

1 year ago

1.11.111

1 year ago

1.11.110

1 year ago

1.11.109

1 year ago

1.11.103

1 year ago

1.11.106

1 year ago

1.11.107

1 year ago

1.11.104

1 year ago

1.11.105

1 year ago

1.11.108

1 year ago

1.11.102

1 year ago

1.11.101

1 year ago

1.11.96

1 year ago

1.11.97

1 year ago

1.11.95

1 year ago

1.11.98

1 year ago

1.11.99

1 year ago

1.11.100

1 year ago

1.11.94

1 year ago

1.11.92

1 year ago

1.11.93

1 year ago

1.11.91

1 year ago

1.11.90

1 year ago

1.11.89

1 year ago

1.11.87

1 year ago

1.11.88

1 year ago

1.11.85

1 year ago

1.11.86

1 year ago

1.11.83

1 year ago

1.11.84

1 year ago

1.11.82

1 year ago

1.11.81

1 year ago

1.11.80

1 year ago

1.11.79

1 year ago

1.11.75

2 years ago

1.11.78

2 years ago

1.11.76

2 years ago

1.11.77

2 years ago

1.11.74

2 years ago

1.11.73

2 years ago

1.11.72

2 years ago

1.11.71

2 years ago

1.11.70

2 years ago

1.11.69

2 years ago

1.11.68

2 years ago

1.11.67

2 years ago

1.11.66

2 years ago

1.11.65

2 years ago

1.11.63

2 years ago

1.11.64

2 years ago

1.11.61

2 years ago

1.11.62

2 years ago

1.11.59

2 years ago

1.11.60

2 years ago

1.11.58

2 years ago

1.11.56

2 years ago

1.11.57

2 years ago

1.11.53

2 years ago

1.11.54

2 years ago

1.11.55

2 years ago

1.11.52

2 years ago

1.11.51

2 years ago

1.11.50

2 years ago

1.11.49

2 years ago

1.11.48

2 years ago

1.11.47

2 years ago

1.11.46

2 years ago

1.11.41

2 years ago

1.11.42

2 years ago

1.11.40

2 years ago

1.11.45

2 years ago

1.11.43

2 years ago

1.11.44

2 years ago

1.11.38

2 years ago

1.11.39

2 years ago

1.11.36

2 years ago

1.11.37

2 years ago

1.11.34

2 years ago

1.11.35

2 years ago

1.11.33

2 years ago

1.11.30

3 years ago

1.11.31

3 years ago

1.11.32

3 years ago

1.11.29

3 years ago

1.11.28

3 years ago

1.11.27

3 years ago

1.11.25

3 years ago

1.11.26

3 years ago

1.11.23

4 years ago

1.11.24

4 years ago

1.11.21

5 years ago

1.11.22

5 years ago

1.11.20

5 years ago

1.11.19

5 years ago

1.11.16

5 years ago

1.11.17

5 years ago

1.11.18

5 years ago

1.11.15

5 years ago

1.11.14

5 years ago

1.11.13

5 years ago

1.11.12

5 years ago

1.10.11

5 years ago

1.10.10

5 years ago

1.10.9

5 years ago

1.10.8

5 years ago

1.10.7

6 years ago

1.10.1

6 years ago

1.10.0

6 years ago

1.9.10

6 years ago

1.9.8

6 years ago

1.9.6

6 years ago

1.9.5

6 years ago

1.9.4

6 years ago

1.8.0

6 years ago

1.7.0

6 years ago

1.6.3

6 years ago

1.6.2

6 years ago

1.6.1

6 years ago

1.6.0

6 years ago

1.5.1

8 years ago

1.5.0

8 years ago

1.4.0

9 years ago

1.3.0

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.0.1

10 years ago