Full Code of tigateam/tiga-ui for AI

main ba9c16433ea1 cached
29 files
11.2 KB
4.3k tokens
1 requests
Download .txt
Repository: tigateam/tiga-ui
Branch: main
Commit: ba9c16433ea1
Files: 29
Total size: 11.2 KB

Directory structure:
gitextract_u6uy4kq8/

├── .gitee/
│   ├── ISSUE_TEMPLATE.md
│   └── PULL_REQUEST_TEMPLATE.md
├── .github/
│   ├── FUNDING.yml
│   ├── ISSUE_TEMPLATE/
│   │   ├── issue-template-bug.md
│   │   └── issue-template-feature.md
│   ├── PULL_REQUEST_TEMPLATE/
│   │   ├── pull-request-template-feat.md
│   │   └── pull-request-template-fix.md
│   └── workflows/
│       └── deploy.yml
├── .gitignore
├── .npmignore
├── LICENSE
├── README.md
├── README.zh-Hans.md
├── babel.config.js
├── build/
│   ├── build-base.js
│   ├── build-example.js
│   ├── build-lib-all.js
│   ├── build-lib-components.js
│   └── gen-styles.js
├── docs/
│   └── README.md
├── package.json
├── src/
│   ├── index.js
│   ├── packages/
│   │   ├── button/
│   │   │   ├── index.js
│   │   │   └── src/
│   │   │       └── index.vue
│   │   └── link/
│   │       └── index.js
│   └── styles/
│       ├── common/
│       │   └── var.styl
│       ├── index.styl
│       └── mixins/
│           └── mixins.styl
└── website/
    └── README.md

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitee/ISSUE_TEMPLATE.md
================================================
<!--Please answer these questions before you submit a bug. | 请在您提交 bug 之前,回答以下这些问题。-->

## 1. Your usage scenarios? | 您使用的场景?

## 2. What did you do? | 您做了什么操作?

## 3. What are your problems? | 您遇到了什么问题?

## 4. What is your expected outcome? | 您期望的结果是怎样的?


================================================
FILE: .gitee/PULL_REQUEST_TEMPLATE.md
================================================
<!-- Please answer these questions before you submit a pull request. | 请在您提交 pull request 之前,回答以下这些问题。-->

## 详细描述

================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: misitebao # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: #['https://blog.misitebao.com'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']


================================================
FILE: .github/ISSUE_TEMPLATE/issue-template-bug.md
================================================
---
name: Bug Template | 问题提交模板
about: Please describe in detail the problems you encountered in the process of using | 请详细描述您使用过程中遇到的问题
title: "[Bug]Some problem... | 一些问题。。。"
---

<!-- Please answer these questions before you submit a bug. | 请在您提交 bug 之前,回答以下这些问题。 -->

#### 1. Your usage scenarios? | 您使用的场景?

#### 2. What did you do? | 您做了什么操作?

#### 3. What are your problems? | 您遇到了什么问题?

#### 4. What is your expected outcome? | 您期望的结果是怎样的?


================================================
FILE: .github/ISSUE_TEMPLATE/issue-template-feature.md
================================================
---
name: Feature Template | 功能提交模板
about: Please describe in detail the features you expect | 请详细描述您期望的功能
title: "[Feature]Some feature... | 一些功能。。。"
---

<!-- Please answer these questions before you submit the desired feature. | 请在您提交期望的功能之前,回答以下这些问题。 -->

#### 1. Your usage scenarios? | 您使用的场景?

#### 2. What is your expected outcome? | 您期望的结果是怎样的?


================================================
FILE: .github/PULL_REQUEST_TEMPLATE/pull-request-template-feat.md
================================================

## New feature description | 新增功能描述

================================================
FILE: .github/PULL_REQUEST_TEMPLATE/pull-request-template-fix.md
================================================

## Fix bug description | 修复Bug描述

================================================
FILE: .github/workflows/deploy.yml
================================================
# name: Deploy | 部署
# on:
#   push:
#     branches: [main]
# #  pull_request:
# #    branches: [master]
# jobs:
#   build-and-deploy:
#     runs-on: ubuntu-latest
#     if: github.repository == 'misitebao/template-git-repository'
#     steps:
#       - name: Checkout | 切换到部署分支
#         uses: actions/checkout@v2
#         with:
#           ref: "master"
#           submodules: true
#           fetch-depth: 0

#       - name: Setup Hugo | 设置Hugo环境
#         uses: peaceiris/actions-hugo@v2
#         with:
#           hugo-version: "0.81.0"
#           extended: true

#       - name: Build | 构建
#         run: hugo

#       - name: Deploy to Server | 部署到服务器
#         uses: hengkx/ssh-deploy@v1.0.1
#         with:
#           HOST: ${{ secrets.DEPLOY_HOST }}
#           USERNAME: ${{ secrets.DEPLOY_HOST_USER }} # 为了用户信息安全对敏感数据可以在secrets中配置请看下图
#           PASSWORD: ${{ secrets.DEPLOY_HOST_PASSWORD }}
#           SOURCE: "public"
#           TARGET: "/www/wwwroot/tigateam.org"


================================================
FILE: .gitignore
================================================
node_modules


================================================
FILE: .npmignore
================================================
node_modules
build
docs
src
test
website

.github
.gitee
.gitignore
.npmignore

babel.config.js

================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2020 TigaTeam

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.md
================================================
<!-- # README -->
<p align="center">
  <img src="https://cdn.jsdelivr.net/gh/misitebao/CDN@master/gravatar_tigateam.png" width="40%" /><br/>
</p>
<p align="center">
Tigaui is a high quality component library based on Vue
</p>

<span id="nav-1"></span>

## 🌏 Internationalization

[English](README.md) | [简体中文](README.zh-Hans.md)

<span id="nav-2"></span>

## 📚 Contents

- [Internationalization](#nav-1)
- [Contents](#nav-2)
- [Introductions](#nav-3)
  - [Official Website](#nav-3-1)
- [Graphic Demo](#nav-4)
- [Features](#nav-5)
- [Architecture](#nav-6)
- [Getting Started](#nav-7)
- [Authors](#nav-8)
- [Contributors](#nav-9)
  - [Community Exchange](#nav-9-1)
- [Part Of Users](#nav-10)
- [Release History](CHANGE.md)
- [Donators](#nav-11)
- [Sponsors](#nav-12)
- [Thanks](#nav-13)
- [License](#nav-14)

<span id="nav-3"></span>

## ℹ️ Introductions

`Tigaui` is a high quality component library based on `vue3.x`

<span id="nav-3-1"></span>

### 🔔 Official Website

[Official Website](https://tigaui.tigateam.org)

<span id="nav-4"></span>

## 🌅 Graphic Demo

<span id="nav-5"></span>

## ✳️ Features

<span id="nav-6"></span>

## 🍊 Architecture

<span id="nav-7"></span>

## 💎 Getting Started

<span id="nav-8"></span>

## 🙆 Authors

The author of this project: [Misitebao](https://github.com/misitebao). senior engineer, entrepreneur.

<span id="nav-9"></span>

## 🌟 Contributors

Thank you to all the contributors who participated in the development of Tigaui. [Contributors](https://github.com/tigateam/tiga-ui/graphs/contributors)

<span id="nav-9-1"></span>

### 😵 Community Exchange

<span id="nav-10"></span>

## 👼 Part Of Users

<span id="nav-11"></span>

## ☕ Donators

<span id="nav-12"></span>

## 💰 Sponsors

<span id="nav-13"></span>

## 👏 Thanks

<a href="https://www.jetbrains.com/?from=Tigaui"><img src="https://cdn.jsdelivr.net/gh/misitebao/CDN@main/logo/jetbrains.png" height="120" alt="JetBrains"/></a>

<span id="nav-14"></span>

## ©️ License

[License MIT](LICENSE)


================================================
FILE: README.zh-Hans.md
================================================
<!-- # README -->
<p align="center">
  <img src="https://cdn.jsdelivr.net/gh/misitebao/CDN@master/gravatar_tigateam.png" width="40%" /><br/>
</p>
<p align="center">
Tigaui 是一个基于 Vue 的高质量组件库
</p>

<span id="nav-1"></span>

## 🌏 国际化

[English](README.md) | [简体中文](README.zh-Hans.md)

<span id="nav-2"></span>

## 📚 内容目录

- [国际化](#nav-1)
- [内容目录](#nav-2)
- [项目介绍](#nav-3)
  - [官方网站](#nav-3-1)
- [图形演示](#nav-4)
- [功能特色](#nav-5)
- [架构](#nav-6)
- [新手入门](#nav-7)
- [关于作者](#nav-8)
- [贡献者](#nav-9)
  - [社区交流](#nav-9-1)
- [部分用户](#nav-10)
- [发布记录](CHANGE.md)
- [捐赠者](#nav-11)
- [赞助商](#nav-12)
- [特别鸣谢](#nav-13)
- [版权许可](#nav-14)

<span id="nav-3"></span>

## ℹ️ 项目介绍

`Tigaui` 是一个基于 `Vue3.x` 的高质量组件库

<span id="nav-3-1"></span>

### 🔔 官方网站

[官方网站](https://tigaui.tigateam.org)

<span id="nav-4"></span>

## 🌅 图形演示

<span id="nav-5"></span>

## ✳️ 功能特色

<span id="nav-6"></span>

## 🍊 架构

<span id="nav-7"></span>

## 💎 新手入门

<span id="nav-8"></span>

## 🙆 关于作者

本项目作者:[米司特包](https://github.com/misitebao)。高级工程师,创业者。

<span id="nav-9"></span>

## 🌟 贡献者

感谢所有参与 Tigaui 开发的贡献者。[Contributors](https://github.com/tigateam/tiga-ui/graphs/contributors)

<span id="nav-9-1"></span>

### 😵 社区交流

<span id="nav-10"></span>

## 👼 部分用户

<span id="nav-11"></span>

## ☕ 捐赠者

<span id="nav-12"></span>

## 💰 赞助商

<span id="nav-13"></span>

## 👏 鸣谢

<a href="https://www.jetbrains.com/?from=Tigaui"><img src="https://cdn.jsdelivr.net/gh/misitebao/CDN@main/logo/jetbrains.png" height="120" alt="JetBrains"/></a>

<span id="nav-14"></span>

## ©️ 版权许可

[License MIT](LICENSE)


================================================
FILE: babel.config.js
================================================


================================================
FILE: build/build-base.js
================================================
/*
 * @Author       : MS
 * @LastEditors  : MS
 * @Description  : 基础打包配置
 */

const path = require('path')
const webpack = require('webpack')
const package = require('../package.json')
const VueLoaderPlugin = require('vue-loader/lib/plugin')

module.exports = {
  module: {
    rules: [
      {
        test: /\.vue$/,
        loader: 'vue-loader',
        options: {

        }
      },
      {
        test: /\.js$/,
        loader: 'babel-loader',
        options: {
          sourceMap: true,
        },
        exclude: /node_modules/,
      },
      {
        test: /\.css$/,
        loaders: [
          {
            loader: 'style-loader',
            options: {
              sourceMap: true,
            },
          },
          {
            loader: 'css-loader',
            options: {
              sourceMap: true,
            },
          }
        ]
      },
      {
        test: /\.(gif|jpg|png|woff|svg|eot|ttf)\??.*$/,
        loader: 'url-loader?limit=8192'
      }

    ]
  },
  resolve: {
    extensions: ['.js', '.vue'],
    alias: {
      '@': resolve('src')
    }
  },
  plugins: [
    new VueLoaderPlugin()
  ]

}

================================================
FILE: build/build-example.js
================================================
/*
 * @Author       : MS
 * @LastEditors  : MS
 * @Description  : 示例展示打包配置
 */


================================================
FILE: build/build-lib-all.js
================================================
/*
 * @Author       : MS
 * @LastEditors  : MS
 * @Description  : 全量打包配置
 */

const path = require('path');
const webpack = require('webpack');
const webpackMerge = require('webpack-merge');
const webpackBaseConfig = require('./build-base.js');

module.exports = webpackMerge(webpackBaseConfig, {
  devtool: 'source-map',
  mode: 'production',
  entry: {
    index: path.resolve(__dirname, '../src/index.js')
  },
  output: {
    path: path.resolve(__dirname, '../lib'),
    publicPath: '/lib/',
    filename: 'tiga-ui.min.js',
    library: 'tiga-ui',
    libraryTarget: 'umd',
    umdNamedDefine: true
  },
  externals: {
    vue: {
      root: 'Vue',
      commonjs: 'vue',
      commonjs2: 'vue',
      amd: 'vue'
    }
  },
  plugins: []

})


================================================
FILE: build/build-lib-components.js
================================================
/*
 * @Author       : MS
 * @LastEditors  : MS
 * @Description  : 单独打包单个组件
 */


================================================
FILE: build/gen-styles.js
================================================
/*
 * @Author       : MS
 * @LastEditors  : MS
 * @Description  : 单独打包样式问件
 */

 


================================================
FILE: docs/README.md
================================================
# 项目文档

================================================
FILE: package.json
================================================
{
  "name": "@tigateam/tigaui",
  "version": "0.0.1",
  "description": "🎨 Tigaui is a high quality component library based on Vue",
  "main": "index.js",
  "scripts": {
    "test": "",
    "serve:doc": "",
    "build:doc": "",
    "build": "npm-run-all --parallel build:**",
    "build:lib:all": "webpack --config build/build-lib-all.js",
    "build:lib:components": "webpack --config build/build-lib-components.js",
    "build:lib:styles": "",
    "build:lib": "npm run build:lib:all && build:lib:components && npm run build:lib:styles",
    "serve:example": "aaaa"
  },
  "keywords": [
    "tigaui",
    "tigateam",
    "vue",
    "components"
  ],
  "author": "TigaTeam",
  "license": "MIT",
  "devDependencies": {
    "npm-run-all": "^4.1.5"
  }
}


================================================
FILE: src/index.js
================================================
/*
 * @Author       : MS
 * @LastEditors  : MS
 * @Description  : 打包入口文件
 */





const components = {


}


const install = function (Vue, opts = {}) {
  if (install.installed) return;





  // 根据传入参数配置TIGAUI
  Vue.prototype.$TIGA = {
    size: opts.size || '',
  }




}


if (typeof window !== 'undefined' && window.Vue) {
  install(window.Vue);
}


================================================
FILE: src/packages/button/index.js
================================================
import Button from './src/index.vue'


Button.install = function (Vue) {
  
  Vue.component(`T${Button.name}`, Button);

}

export default Button


================================================
FILE: src/packages/button/src/index.vue
================================================
<script>
export default {
  name: "Button",
  props: {
    size: {
      type: String,
      default() {
        return !this.$TIGA || this.$TIGA.size === ""
          ? "default"
          : this.$TIGA.size;
      },
      validator(value) {},
    },
  },
};
</script>

================================================
FILE: src/packages/link/index.js
================================================


================================================
FILE: src/styles/common/var.styl
================================================


================================================
FILE: src/styles/index.styl
================================================
/*
 * @Author       : MS
 * @LastEditors  : MS
 * @Description  : 样式文件入口
 */


================================================
FILE: src/styles/mixins/mixins.styl
================================================


================================================
FILE: website/README.md
================================================
# 项目官网
Download .txt
gitextract_u6uy4kq8/

├── .gitee/
│   ├── ISSUE_TEMPLATE.md
│   └── PULL_REQUEST_TEMPLATE.md
├── .github/
│   ├── FUNDING.yml
│   ├── ISSUE_TEMPLATE/
│   │   ├── issue-template-bug.md
│   │   └── issue-template-feature.md
│   ├── PULL_REQUEST_TEMPLATE/
│   │   ├── pull-request-template-feat.md
│   │   └── pull-request-template-fix.md
│   └── workflows/
│       └── deploy.yml
├── .gitignore
├── .npmignore
├── LICENSE
├── README.md
├── README.zh-Hans.md
├── babel.config.js
├── build/
│   ├── build-base.js
│   ├── build-example.js
│   ├── build-lib-all.js
│   ├── build-lib-components.js
│   └── gen-styles.js
├── docs/
│   └── README.md
├── package.json
├── src/
│   ├── index.js
│   ├── packages/
│   │   ├── button/
│   │   │   ├── index.js
│   │   │   └── src/
│   │   │       └── index.vue
│   │   └── link/
│   │       └── index.js
│   └── styles/
│       ├── common/
│       │   └── var.styl
│       ├── index.styl
│       └── mixins/
│           └── mixins.styl
└── website/
    └── README.md
Condensed preview — 29 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (15K chars).
[
  {
    "path": ".gitee/ISSUE_TEMPLATE.md",
    "chars": 256,
    "preview": "<!--Please answer these questions before you submit a bug. | 请在您提交 bug 之前,回答以下这些问题。-->\n\n## 1. Your usage scenarios? | 您使"
  },
  {
    "path": ".gitee/PULL_REQUEST_TEMPLATE.md",
    "chars": 114,
    "preview": "<!-- Please answer these questions before you submit a pull request. | 请在您提交 pull request 之前,回答以下这些问题。-->\n\n## 详细描述"
  },
  {
    "path": ".github/FUNDING.yml",
    "chars": 753,
    "preview": "# These are supported funding model platforms\n\ngithub: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [u"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/issue-template-bug.md",
    "chars": 448,
    "preview": "---\nname: Bug Template | 问题提交模板\nabout: Please describe in detail the problems you encountered in the process of using | "
  },
  {
    "path": ".github/ISSUE_TEMPLATE/issue-template-feature.md",
    "chars": 354,
    "preview": "---\nname: Feature Template | 功能提交模板\nabout: Please describe in detail the features you expect | 请详细描述您期望的功能\ntitle: \"[Feat"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE/pull-request-template-feat.md",
    "chars": 36,
    "preview": "\n## New feature description | 新增功能描述"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE/pull-request-template-fix.md",
    "chars": 33,
    "preview": "\n## Fix bug description | 修复Bug描述"
  },
  {
    "path": ".github/workflows/deploy.yml",
    "chars": 986,
    "preview": "# name: Deploy | 部署\n# on:\n#   push:\n#     branches: [main]\n# #  pull_request:\n# #    branches: [master]\n# jobs:\n#   buil"
  },
  {
    "path": ".gitignore",
    "chars": 13,
    "preview": "node_modules\n"
  },
  {
    "path": ".npmignore",
    "chars": 95,
    "preview": "node_modules\nbuild\ndocs\nsrc\ntest\nwebsite\n\n.github\n.gitee\n.gitignore\n.npmignore\n\nbabel.config.js"
  },
  {
    "path": "LICENSE",
    "chars": 1065,
    "preview": "MIT License\n\nCopyright (c) 2020 TigaTeam\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\no"
  },
  {
    "path": "README.md",
    "chars": 1993,
    "preview": "<!-- # README -->\n<p align=\"center\">\n  <img src=\"https://cdn.jsdelivr.net/gh/misitebao/CDN@master/gravatar_tigateam.png\""
  },
  {
    "path": "README.zh-Hans.md",
    "chars": 1548,
    "preview": "<!-- # README -->\n<p align=\"center\">\n  <img src=\"https://cdn.jsdelivr.net/gh/misitebao/CDN@master/gravatar_tigateam.png\""
  },
  {
    "path": "babel.config.js",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "build/build-base.js",
    "chars": 1142,
    "preview": "/*\n * @Author       : MS\n * @LastEditors  : MS\n * @Description  : 基础打包配置\n */\n\nconst path = require('path')\nconst webpack"
  },
  {
    "path": "build/build-example.js",
    "chars": 79,
    "preview": "/*\n * @Author       : MS\n * @LastEditors  : MS\n * @Description  : 示例展示打包配置\n */\n"
  },
  {
    "path": "build/build-lib-all.js",
    "chars": 746,
    "preview": "/*\n * @Author       : MS\n * @LastEditors  : MS\n * @Description  : 全量打包配置\n */\n\nconst path = require('path');\nconst webpac"
  },
  {
    "path": "build/build-lib-components.js",
    "chars": 79,
    "preview": "/*\n * @Author       : MS\n * @LastEditors  : MS\n * @Description  : 单独打包单个组件\n */\n"
  },
  {
    "path": "build/gen-styles.js",
    "chars": 82,
    "preview": "/*\n * @Author       : MS\n * @LastEditors  : MS\n * @Description  : 单独打包样式问件\n */\n\n \n"
  },
  {
    "path": "docs/README.md",
    "chars": 6,
    "preview": "# 项目文档"
  },
  {
    "path": "package.json",
    "chars": 752,
    "preview": "{\n  \"name\": \"@tigateam/tigaui\",\n  \"version\": \"0.0.1\",\n  \"description\": \"🎨 Tigaui is a high quality component library bas"
  },
  {
    "path": "src/index.js",
    "chars": 352,
    "preview": "/*\n * @Author       : MS\n * @LastEditors  : MS\n * @Description  : 打包入口文件\n */\n\n\n\n\n\nconst components = {\n\n\n}\n\n\nconst insta"
  },
  {
    "path": "src/packages/button/index.js",
    "chars": 146,
    "preview": "import Button from './src/index.vue'\n\n\nButton.install = function (Vue) {\n  \n  Vue.component(`T${Button.name}`, Button);\n"
  },
  {
    "path": "src/packages/button/src/index.vue",
    "chars": 269,
    "preview": "<script>\nexport default {\n  name: \"Button\",\n  props: {\n    size: {\n      type: String,\n      default() {\n        return "
  },
  {
    "path": "src/packages/link/index.js",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/styles/common/var.styl",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/styles/index.styl",
    "chars": 77,
    "preview": "/*\n * @Author       : MS\n * @LastEditors  : MS\n * @Description  : 样式文件入口\n */\n"
  },
  {
    "path": "src/styles/mixins/mixins.styl",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "website/README.md",
    "chars": 6,
    "preview": "# 项目官网"
  }
]

About this extraction

This page contains the full source code of the tigateam/tiga-ui GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 29 files (11.2 KB), approximately 4.3k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!