Coder Social home page Coder Social logo

swc-plugin-another-transform-imports's Introduction

swc-plugin-another-transform-imports

Another wasm plugin for swc, inspired from babel-plugin-transform-imports.

Installation

npm install --save-dev swc-plugin-another-transform-imports
# or
yarn add -D swc-plugin-another-transform-imports

Usage

It follows resolving rule of node.js, can be use in .swcrcwebpack.config.js or next.config.js and so on. For Example:

{
  "jsc": {
    "experimental": {
      "plugins": [
        [
          "swc-plugin-another-transform-imports",
          {
            "antd": {
              "transform": "antd/lib/${member}",
              "skipDefaultConversion": false,
              "preventFullImport": true,
              "style": "antd/lib/${member}/style",
              "memberTransformers": ["dashed_case"]
            },
            "lodash": {
              "transform": "lodash/${member}",
              "preventFullImport": true
            }
          }
        ]
      ]
    }
  }
}

Can convert the following lines:

import { Button as MyButton, BackTop } from "antd";
import { merge } from "lodash";

To:

import MyButton from "antd/lib/button";
import BackTop from "antd/lib/back-top";
import "antd/lib/back-top/style";
import "antd/lib/button/style";
import merge from "lodash/merge";

For next.js users

Ensure you read next.js compiler docs first!!!!

Since the semantic version association of @swc/core (npm) and swc_core (rust) for next.js is still experimental. next.js has a lot of breaking change in the swc native plugin mechanism between major and even minor versions.

It is possible that as next.js and swc are updated, the current plugin will fail in the new version. Hopefully the new plugin api for swc will be stable soon. Here is the current version correspondence.

next.js versions swc_versions This package version
12.3.x - 0.1.5
13.0.x - 0.2.1
13.2.4 ~ 13.3.1 - not support vercel/next.js#46989 (comment)
13.3.1 ~ 13.4.3 - 0.2.3
13.4.3-canary.2 ~ 13.4.7 1.3.58 ~ 1.3.62 0.2.4
13.4.8 ~ v13.4.10-canary.0 1.3.63 ~ 1.3.67 0.2.5
13.4.10-canary.1 ~ 1.3.68 ~ 1.3.80 0.2.6
~ 14.1.0 1.3.81 ~ 1.3.105 0.2.7
- 1.3.106 ~ 1.3.107 0.2.8
- 1.4.0 ~ 0.2.9

@swc/core and swc_core version mappings

For antd users

antd/es/xxx/style and antd/lib/xxx/style will introduce less, please add less-loader by yourself.

If you use antd and next.js at the same time, it will be a bit troublesome to work with them, you can use next-plugin-antd-less for convenience, see issue 1 for an example.

Options

Name Type Required Default Description
transform string yes undefined The library name to use instead of the one specified in the import statement. ${member} will be replaced with the member, aka Grid/Row/Col/etc.
preventFullImport boolean no true Whether or not to throw when an import is encountered which would cause the entire module to be imported.
skipDefaultConversion boolean no false When set to true, will preserve import { X } syntax instead of converting to import X.
style string no false The style path of the member, ${member} will be replaced with the member, aka Grid/Row/Col/etc.
memberTransformers Array<MemberTransformer> no [] Member transformers

1. type MemberTransformer

type MemberTransformer =
  | "camel_case"
  | "kebab_case"
  | "pascal_case"
  | "snake_case"
  | "upper_case"
  | "upper_first"
  | "lower_case"
  | "lower_first"
  | "dashed_case";

Common Issues

Usually upgrading to the latest version of @swc/core and other swc tools will solve the problem, see the following issue for typical solution:

  1. plugin-styled-components crashes with 'Error while importing "env"."__get_transform_plugin_config": unknown import.'
  2. about next.js and antd
  3. about next.js 13+

Fork & Modify

You can simply fork this plugin, modify its source code to suit your custom needs. For fast validation, you don't necessarily have to publish the modified project, but simply require your wasm file to the project. For example:

cargo prepublish

or

npm run prepublish

Then copy your wasm target file, and set your config to:

module.exports = {
  ...,
  "jsc": {
    "experimental": {
      "plugins": [
        [
          require.resolve("./path/to/your-modified-plugin.wasm"),
          {
            ..your options
          }
        ]
      ]
    }
  },
  ...
}

swc-plugin-another-transform-imports's People

Contributors

lonelyhentxi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

swc-plugin-another-transform-imports's Issues

start error

config

const { loaderByName, removeLoaders, addAfterLoader } = require('@craco/craco');

module.exports = {
  overrideWebpackConfig: ({
    webpackConfig,
  }) => {
    addAfterLoader(webpackConfig, loaderByName('babel-loader'), {
      test: /\.(js|mjs|jsx|ts|tsx)$/,
      exclude: /(node_modules)/,
      use: {
        loader: "swc-loader",
        options: {
          jsc: {
            externalHelpers: true,
            target: 'es2015',
            parser: {
              "syntax": "typescript",
              "tsx": false,
              "decorators": false,
              "dynamicImport": false
            },
            transform:{
              react:{
                runtime:'automatic'
              }
            },
            "experimental": {
              "plugins": [
                [
                  "swc-plugin-another-transform-imports",
                  {
                    "antd": {
                      "transform": "antd/lib/${member}",
                      "skipDefaultConversion": false,
                      "preventFullImport": true,
                      "style": "antd/lib/${member}/style",
                      "memberTransformers": ["dashed_case"]
                    },
                  }
                ]
              ]
            }
          }
        },
  
      }
    })
    removeLoaders(webpackConfig, loaderByName('babel-loader'));
    return webpackConfig;
  },
};

erro info

09, 97, 105, 110, 85, 115, 101, 114, 83, 116, 97, 102, 102, 83, 116, 97, 116, 117, 115, 32, 61, 61, 61, 32, 39, 80, 76, 65, 78, 95, 76, 73, 77, 73, 84, 95, 83, 84, 65, 84, 85, 83, 95, 76, 73, 77, 73, 84, 39, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 32, 32, 110, 97, 118, 105, 103, 97, 116, 101, 87, 105, 116, 104, 83, 97, 109, 101, 80, 97, 116, 104, 67, 104, 101, 99, 107, 40, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 83, 84, 65, 70, 70, 95, 65, 67, 67, 79, 85, 78, 84, 95, 68, 69, 77, 79, 84, 73, 79, 78, 44, 32, 91, 93, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 32, 32, 114, 101, 116, 117, 114, 110, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 125, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 229, 165, 151, 233, 164, 144, 230, 149, 176, 230, 141, 174, 232, 182, 133, 233, 153, 144, 32, 233, 156, 128, 232, 166, 129, 229, 142, 187, 229, 141, 135, 231, 186, 167, 229, 165, 151, 233, 164, 144, 230, 136, 150, 232, 128, 133, 233, 128, 137, 230, 139, 169, 228, 191, 157, 231, 149, 153, 229, 186, 151, 233, 147, 186, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 105, 102, 32, 40, 117, 115, 101, 114, 73, 110, 102, 111, 46, 100, 97, 116, 97, 46, 109, 97, 105, 110, 85, 115, 101, 114, 65, 101, 83, 116, 97, 116, 117, 115, 32, 61, 61, 61, 32, 39, 80, 76, 65, 78, 95, 76, 73, 77, 73, 84, 95, 83, 84, 65, 84, 85, 83, 95, 76, 73, 77, 73, 84, 39, 32, 124, 124, 32, 117, 115, 101, 114, 73, 110, 102, 111, 46, 100, 97, 116, 97, 46, 109, 97, 105, 110, 85, 115, 101, 114, 83, 101, 108, 108, 101, 114, 83, 116, 97, 116, 117, 115, 32, 61, 61, 61, 32, 39, 80, 76, 65, 78, 95, 76, 73, 77, 73, 84, 95, 83, 84, 65, 84, 85, 83, 95, 76, 73, 77, 73, 84, 39, 32, 124, 124, 32, 117, 115, 101, 114, 73, 110, 102, 111, 46, 100, 97, 116, 97, 46, 109, 97, 105, 110, 85, 115, 101, 114, 83, 116, 97, 102, 102, 83, 116, 97, 116, 117, 115, 32, 61, 61, 61, 32, 39, 80, 76, 65, 78, 95, 76, 73, 77, 73, 84, 95, 83, 84, 65, 84, 85, 83, 95, 76, 73, 77, 73, 84, 39, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 229, 165, 151, 233, 164, 144, 229, 186, 151, 233, 147, 186, 230, 136, 150, 115, 101, 108, 108, 101, 114, 32, 97, 112, 112, 232, 182, 133, 233, 153, 144, 32, 229, 143, 170, 232, 131, 189, 232, 191, 155, 112, 114, 105, 99, 105, 110, 103, 229, 143, 138, 229, 143, 175, 232, 131, 189, 231, 154, 132, 99, 97, 108, 108, 98, 97, 99, 107, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 110, 97, 118, 105, 103, 97, 116, 101, 87, 105, 116, 104, 83, 97, 109, 101, 80, 97, 116, 104, 67, 104, 101, 99, 107, 40, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 77, 65, 78, 65, 71, 69, 95, 83, 85, 66, 83, 67, 82, 73, 80, 84, 73, 79, 78, 44, 32, 91, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 80, 82, 73, 67, 73, 78, 71, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 83, 85, 66, 83, 67, 82, 73, 66, 69, 95, 67, 65, 76, 76, 66, 65, 67, 75, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 68, 73, 82, 84, 89, 95, 65, 80, 80, 95, 83, 84, 82, 73, 80, 69, 95, 67, 65, 76, 76, 66, 65, 67, 75, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 65, 85, 84, 72, 95, 67, 72, 69, 67, 75, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 93, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 114, 101, 116, 117, 114, 110, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 229, 165, 151, 233, 164, 144, 232, 191, 135, 230, 156, 159, 233, 156, 128, 232, 166, 129, 231, 187, 173, 230, 156, 159, 32, 232, 191, 153, 233, 135, 140, 229, 133, 136, 232, 183, 179, 109, 97, 110, 97, 103, 101, 233, 161, 181, 233, 157, 162, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 105, 102, 32, 40, 117, 115, 101, 114, 80, 108, 97, 110, 68, 97, 116, 97, 46, 115, 116, 97, 116, 117, 115, 32, 61, 61, 61, 32, 39, 83, 84, 65, 84, 85, 83, 95, 70, 82, 79, 90, 69, 78, 39, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 110, 97, 118, 105, 103, 97, 116, 101, 87, 105, 116, 104, 83, 97, 109, 101, 80, 97, 116, 104, 67, 104, 101, 99, 107, 40, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 77, 65, 78, 65, 71, 69, 95, 83, 85, 66, 83, 67, 82, 73, 80, 84, 73, 79, 78, 44, 32, 91, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 80, 82, 73, 67, 73, 78, 71, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 83, 85, 66, 83, 67, 82, 73, 66, 69, 95, 67, 65, 76, 76, 66, 65, 67, 75, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 68, 73, 82, 84, 89, 95, 65, 80, 80, 95, 83, 84, 82, 73, 80, 69, 95, 67, 65, 76, 76, 66, 65, 67, 75, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 65, 85, 84, 72, 95, 67, 72, 69, 67, 75, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 93, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 114, 101, 116, 117, 114, 110, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 105, 102, 32, 40, 40, 40, 95, 116, 104, 105, 115, 51, 32, 61, 32, 116, 104, 105, 115, 41, 32, 61, 61, 61, 32, 110, 117, 108, 108, 32, 124, 124, 32, 95, 116, 104, 105, 115, 51, 32, 61, 61, 61, 32, 118, 111, 105, 100, 32, 48, 32, 63, 32, 118, 111, 105, 100, 32, 48, 32, 58, 32, 95, 116, 104, 105, 115, 51, 40, 41, 41, 32, 33, 61, 61, 32, 39, 85, 83, 69, 82, 95, 65, 85, 84, 72, 95, 83, 84, 65, 84, 85, 83, 95, 89, 69, 83, 39, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 233, 128, 137, 230, 139, 169, 228, 190, 155, 231, 171, 175, 229, 186, 148, 231, 148, 168, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 110, 97, 118, 105, 103, 97, 116, 101, 87, 105, 116, 104, 83, 97, 109, 101, 80, 97, 116, 104, 67, 104, 101, 99, 107, 40, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 83, 69, 76, 69, 67, 84, 95, 83, 85, 80, 80, 76, 89, 95, 65, 80, 80, 44, 32, 91, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 65, 85, 84, 72, 95, 67, 72, 69, 67, 75, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 80, 82, 73, 67, 73, 78, 71, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 83, 85, 66, 83, 67, 82, 73, 66, 69, 95, 67, 65, 76, 76, 66, 65, 67, 75, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 93, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 114, 101, 116, 117, 114, 110, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 231, 156, 139, 230, 150, 176, 230, 137, 139, 229, 188, 149, 229, 175, 188, 32, 232, 191, 153, 230, 156, 159, 231, 148, 168, 228, 184, 141, 231, 157, 128, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 105, 102, 32, 40, 33, 117, 115, 101, 114, 80, 114, 111, 102, 105, 108, 101, 115, 68, 97, 116, 97, 63, 46, 100, 97, 116, 97, 63, 46, 115, 101, 116, 77, 97, 112, 46, 80, 82, 79, 70, 73, 76, 69, 95, 84, 89, 80, 69, 95, 78, 69, 87, 95, 85, 83, 69, 82, 95, 71, 85, 73, 68, 69, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 32, 32, 110, 97, 118, 105, 103, 97, 116, 101, 87, 105, 116, 104, 83, 97, 109, 101, 80, 97, 116, 104, 67, 104, 101, 99, 107, 40, 69, 79, 110, 98, 111, 97, 114, 100, 105, 110, 103, 80, 97, 116, 104, 115, 46, 71, 85, 73, 68, 69, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 32, 32, 114, 101, 116, 117, 114, 110, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 125, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 105, 110, 105, 116, 69, 118, 101, 110, 116, 40, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 233, 187, 152, 232, 174, 164, 232, 144, 189, 229, 156, 176, 233, 161, 181, 32, 229, 143, 170, 230, 137, 167, 232, 161, 140, 228, 184, 128, 230, 172, 161, 233, 135, 141, 229, 174, 154, 229, 144, 145, 229, 136, 176, 233, 187, 152, 232, 174, 164, 232, 144, 189, 229, 156, 176, 233, 161, 181, 32, 228, 184, 141, 228, 189, 191, 231, 148, 168, 232, 183, 175, 231, 148, 177, 233, 135, 141, 229, 174, 154, 229, 144, 145, 228, 186, 134, 32, 229, 156, 168, 232, 191, 153, 233, 135, 140, 233, 128, 187, 232, 190, 145, 229, 165, 189, 230, 142, 167, 229, 136, 182, 229, 155, 160, 228, 184, 186, 230, 156, 137, 231, 148, 168, 230, 136, 183, 228, 191, 161, 230, 129, 175, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 105, 102, 32, 40, 105, 110, 68, 101, 102, 97, 117, 108, 116, 80, 97, 116, 104, 32, 38, 38, 32, 33, 100, 101, 102, 97, 117, 108, 116, 82, 111, 117, 116, 101, 82, 101, 100, 105, 114, 101, 99, 116, 82, 101, 102, 46, 99, 117, 114, 114, 101, 110, 116, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 118, 97, 114, 32, 95, 116, 104, 105, 115, 52, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 100, 101, 102, 97, 117, 108, 116, 82, 111, 117, 116, 101, 82, 101, 100, 105, 114, 101, 99, 116, 82, 101, 102, 46, 99, 117, 114, 114, 101, 110, 116, 32, 61, 32, 116, 114, 117, 101, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 229, 191, 133, 233, 161, 187, 230, 156, 137, 102, 105, 110, 100, 32, 115, 117, 112, 112, 108, 105, 101, 114, 230, 157, 131, 233, 153, 144, 230, 137, 141, 232, 131, 189, 233, 187, 152, 232, 174, 164, 229, 142, 187, 102, 105, 110, 100, 32, 115, 117, 112, 112, 108, 105, 101, 114, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 110, 115, 116, 32, 102, 105, 114, 115, 116, 82, 111, 117, 116, 101, 32, 61, 32, 40, 40, 95, 116, 104, 105, 115, 52, 32, 61, 32, 116, 104, 105, 115, 41, 32, 61, 61, 61, 32, 110, 117, 108, 108, 32, 124, 124, 32, 95, 116, 104, 105, 115, 52, 32, 61, 61, 61, 32, 118, 111, 105, 100, 32, 48, 32, 63, 32, 118, 111, 105, 100, 32, 48, 32, 58, 32, 95, 116, 104, 105, 115, 52, 46, 41, 32, 63, 32, 39, 47, 104, 111, 109, 101, 39, 32, 58, 32, 39, 47, 102, 105, 110, 100, 95, 115, 117, 112, 112, 108, 105, 101, 114, 115, 39, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 110, 97, 118, 105, 103, 97, 116, 101, 40, 102, 105, 114, 115, 116, 82, 111, 117, 116, 101, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 114, 101, 112, 108, 97, 99, 101, 58, 32, 116, 114, 117, 101, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 114, 101, 116, 117, 114, 110, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 125, 44, 32, 91, 10, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 229, 133, 179, 233, 148, 174, 230, 149, 176, 230, 141, 174, 10, 32, 32, 32, 32, 32, 32, 32, 32, 117, 115, 101, 114, 73, 110, 102, 111, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 117, 115, 101, 114, 80, 114, 111, 102, 105, 108, 101, 115, 68, 97, 116, 97, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 117, 115, 101, 114, 80, 108, 97, 110, 68, 97, 116, 97, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 117, 115, 101, 114, 67, 117, 114, 114, 101, 110, 116, 80, 108, 97, 110, 76, 105, 109, 105, 116, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 97, 112, 112, 76, 105, 115, 116, 68, 97, 116, 97, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 117, 115, 101, 114, 67, 117, 114, 114, 101, 110, 116, 83, 101, 108, 108, 101, 114, 67, 111, 117, 110, 116, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 117, 115, 101, 114, 65, 117, 116, 104, 84, 111, 107, 101, 110, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 117, 115, 101, 114, 67, 111, 110, 116, 101, 110, 116, 73, 110, 102, 111, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 232, 191, 129, 231, 167, 187, 228, 191, 161, 230, 129, 175, 10, 32, 32, 32, 32, 32, 32, 32, 32, 117, 115, 101, 114, 77, 105, 103, 114, 97, 116, 101, 73, 110, 102, 111, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 230, 152, 175, 229, 144, 166, 229, 156, 168, 229, 143, 151, 228, 191, 157, 230, 138, 164, 231, 154, 132, 232, 183, 175, 231, 148, 177, 228, 184, 173, 10, 32, 32, 32, 32, 32, 32, 32, 32, 105, 110, 80, 114, 111, 116, 101, 99, 116, 101, 100, 80, 97, 116, 104, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 230, 152, 175, 229, 144, 166, 230, 152, 175, 233, 187, 152, 232, 174, 164, 232, 183, 175, 231, 148, 177, 10, 32, 32, 32, 32, 32, 32, 32, 32, 105, 110, 68, 101, 102, 97, 117, 108, 116, 80, 97, 116, 104, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 232, 183, 179, 232, 189, 172, 230, 150, 185, 230, 179, 149, 10, 32, 32, 32, 32, 32, 32, 32, 32, 110, 97, 118, 105, 103, 97, 116, 101, 87, 105, 116, 104, 83, 97, 109, 101, 80, 97, 116, 104, 67, 104, 101, 99, 107, 10, 32, 32, 32, 32, 93, 41, 59, 10, 32, 32, 32, 32, 47, 47, 32, 231, 148, 168, 230, 136, 183, 228, 191, 161, 230, 129, 175, 229, 136, 157, 229, 167, 139, 229, 140, 150, 229, 144, 142, 229, 129, 154, 228, 184, 128, 228, 186, 155, 232, 174, 190, 231, 189, 174, 32, 231, 148, 168, 228, 186, 142, 230, 137, 147, 231, 130, 185, 228, 191, 161, 230, 129, 175, 230, 155, 180, 230, 150, 176, 231, 173, 137, 10, 32, 32, 32, 32, 117, 115, 101, 65, 99, 99, 111, 117, 110, 116, 73, 110, 105, 116, 101, 100, 40, 41, 59, 10, 32, 32, 32, 32, 117, 115, 101, 65, 112, 112, 73, 110, 105, 116, 101, 100, 40, 41, 59, 10, 32, 32, 32, 32, 47, 47, 32, 230, 191, 128, 230, 180, 187, 232, 167, 146, 232, 137, 178, 32, 229, 133, 136, 229, 134, 153, 232, 191, 153, 233, 135, 140, 32, 229, 144, 142, 232, 190, 185, 230, 156, 137, 231, 169, 186, 228, 186, 134, 230, 139, 191, 229, 135, 186, 229, 142, 187, 10, 32, 32, 32, 32, 99, 111, 110, 115, 116, 32, 97, 99, 116, 105, 118, 97, 116, 101, 82, 111, 108, 101, 32, 61, 32, 117, 115, 101, 67, 97, 108, 108, 98, 97, 99, 107, 40, 47, 42, 35, 95, 95, 80, 85, 82, 69, 95, 95, 42, 47, 32, 95, 97, 115, 121, 110, 99, 95, 116, 111, 95, 103, 101, 110, 101, 114, 97, 116, 111, 114, 40, 102, 117, 110, 99, 116, 105, 111, 110, 42, 40, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 110, 115, 116, 32, 97, 99, 116, 105, 118, 97, 116, 101, 82, 101, 115, 32, 61, 32, 121, 105, 101, 108, 100, 32, 65, 99, 99, 111, 117, 110, 116, 83, 101, 114, 118, 105, 99, 101, 46, 97, 99, 116, 105, 118, 97, 116, 101, 85, 115, 101, 114, 82, 111, 108, 101, 40, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 112, 108, 97, 116, 102, 111, 114, 109, 58, 32, 39, 82, 79, 76, 69, 95, 84, 89, 80, 69, 95, 80, 76, 65, 84, 70, 79, 82, 77, 95, 68, 82, 79, 80, 95, 83, 72, 73, 80, 80, 69, 82, 39, 10, 32, 32, 32, 32, 32, 32, 32, 32, 125, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 105, 102, 32, 40, 97, 99, 116, 105, 118, 97, 116, 101, 82, 101, 115, 46, 99, 111, 100, 101, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 110, 115, 111, 108, 101, 46, 108, 111, 103, 40, 39, 65, 99, 116, 105, 118, 97, 116, 101, 32, 102, 101, 97, 116, 117, 114, 101, 32, 102, 97, 105, 108, 101, 100, 44, 32, 112, 108, 101, 97, 115, 101, 32, 116, 114, 121, 32, 97, 103, 97, 105, 110, 32, 108, 97, 116, 101, 114, 39, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 114, 101, 116, 117, 114, 110, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 32, 32, 32, 32, 47, 47, 32, 230, 191, 128, 230, 180, 187, 229, 144, 142, 229, 136, 183, 230, 150, 176, 233, 161, 181, 233, 157, 162, 10, 32, 32, 32, 32, 32, 32, 32, 32, 105, 102, 32, 40, 97, 99, 116, 105, 118, 97, 116, 101, 82, 101, 115, 46, 100, 97, 116, 97, 46, 105, 115, 83, 117, 99, 99, 101, 115, 115, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 119, 105, 110, 100, 111, 119, 46, 108, 111, 99, 97, 116, 105, 111, 110, 46, 114, 101, 108, 111, 97, 100, 40, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 125, 41, 44, 32, 91, 93, 41, 59, 10, 32, 32, 32, 32, 99, 111, 110, 115, 116, 32, 111, 110, 67, 97, 110, 99, 101, 108, 65, 99, 116, 105, 118, 97, 116, 101, 32, 61, 32, 117, 115, 101, 67, 97, 108, 108, 98, 97, 99, 107, 40, 40, 41, 61, 62, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 119, 105, 110, 100, 111, 119, 46, 108, 111, 99, 97, 116, 105, 111, 110, 46, 104, 114, 101, 102, 32, 61, 32, 112, 114, 111, 99, 101, 115, 115, 46, 101, 110, 118, 46, 82, 69, 65, 67, 84, 95, 65, 80, 80, 95, 68, 69, 86, 69, 76, 79, 80, 69, 82, 95, 83, 73, 84, 69, 95, 72, 79, 77, 69, 59, 10, 32, 32, 32, 32, 125, 44, 32, 91, 93, 41, 59, 10, 32, 32, 32, 32, 105, 102, 32, 40, 108, 97, 117, 110, 99, 104, 105, 110, 103, 32, 124, 124, 32, 114, 101, 100, 105, 114, 101, 99, 116, 76, 111, 97, 100, 105, 110, 103, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 114, 101, 116, 117, 114, 110, 32, 47, 42, 35, 95, 95, 80, 85, 82, 69, 95, 95, 42, 47, 32, 95, 106, 115, 120, 68, 69, 86, 40, 34, 100, 105, 118, 34, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 104, 105, 108, 100, 114, 101, 110, 58, 32, 102, 97, 108, 108, 98, 97, 99, 107, 82, 101, 110, 100, 101, 114, 40, 41, 10, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 32, 118, 111, 105, 100, 32, 48, 44, 32, 102, 97, 108, 115, 101, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 102, 105, 108, 101, 78, 97, 109, 101, 58, 32, 34, 47, 85, 115, 101, 114, 115, 47, 116, 97, 107, 101, 104, 111, 115, 104, 105, 47, 68, 101, 115, 107, 116, 111, 112, 47, 114, 101, 115, 116, 114, 117, 99, 116, 117, 114, 101, 45, 97, 112, 112, 47, 115, 114, 99, 47, 114, 111, 117, 116, 101, 115, 47, 105, 110, 100, 101, 120, 46, 116, 115, 120, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 108, 105, 110, 101, 78, 117, 109, 98, 101, 114, 58, 32, 52, 53, 48, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 108, 117, 109, 110, 78, 117, 109, 98, 101, 114, 58, 32, 49, 50, 10, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 32, 116, 104, 105, 115, 41, 59, 10, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 47, 47, 32, 230, 163, 128, 230, 159, 165, 232, 167, 146, 232, 137, 178, 230, 152, 175, 229, 144, 166, 230, 191, 128, 230, 180, 187, 32, 230, 156, 170, 230, 191, 128, 230, 180, 187, 231, 154, 132, 85, 73, 229, 133, 136, 232, 191, 153, 230, 160, 183, 32, 229, 144, 142, 231, 187, 173, 232, 161, 165, 228, 184, 138, 10, 32, 32, 32, 32, 105, 102, 32, 40, 40, 40, 95, 116, 104, 105, 115, 32, 61, 32, 116, 104, 105, 115, 41, 32, 61, 61, 61, 32, 110, 117, 108, 108, 32, 124, 124, 32, 95, 116, 104, 105, 115, 32, 61, 61, 61, 32, 118, 111, 105, 100, 32, 48, 32, 63, 32, 118, 111, 105, 100, 32, 48, 32, 58, 32, 95, 116, 104, 105, 115, 46, 117, 115, 101, 114, 73, 110, 102, 111, 14, 0, 0, 0, 89, 91, 0, 0, 97, 91, 0, 0, 12, 0, 0, 0, 8, 0, 0, 0, 232, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 89, 91, 0, 0, 102, 91, 0, 0, 0, 0, 0, 0, 176, 255, 255, 255, 0, 0, 0, 0, 98, 91, 0, 0, 102, 91, 0, 0, 0, 0, 0, 0, 100, 97, 116, 63, 41, 32, 38, 38, 32, 33, 116, 104, 105, 115, 46, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 114, 101, 116, 117, 114, 110, 32, 47, 42, 35, 95, 95, 80, 85, 82, 69, 95, 95, 42, 47, 32, 95, 106, 115, 120, 68, 69, 86, 40, 77, 111, 100, 97, 108, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 108, 111, 115, 97, 98, 108, 101, 58, 32, 102, 97, 108, 115, 101, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 116, 105, 116, 108, 101, 58, 32, 34, 70, 101, 97, 116, 117, 114, 101, 32, 110, 111, 116, 32, 97, 99, 116, 105, 118, 97, 116, 101, 100, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 111, 112, 101, 110, 58, 32, 116, 114, 117, 101, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 97, 110, 99, 101, 108, 66, 116, 110, 80, 114, 111, 112, 115, 58, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 111, 110, 67, 108, 105, 99, 107, 58, 32, 111, 110, 67, 97, 110, 99, 101, 108, 65, 99, 116, 105, 118, 97, 116, 101, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 111, 107, 84, 101, 120, 116, 58, 32, 39, 97, 99, 116, 105, 118, 97, 116, 101, 39, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 97, 110, 99, 101, 108, 84, 101, 120, 116, 58, 32, 39, 98, 97, 99, 107, 32, 116, 111, 32, 100, 101, 118, 101, 108, 111, 112, 101, 114, 32, 115, 105, 116, 101, 39, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 111, 107, 66, 116, 110, 80, 114, 111, 112, 115, 58, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 111, 110, 67, 108, 105, 99, 107, 58, 32, 97, 99, 116, 105, 118, 97, 116, 101, 82, 111, 108, 101, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 104, 105, 108, 100, 114, 101, 110, 58, 32, 91, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 42, 35, 95, 95, 80, 85, 82, 69, 95, 95, 42, 47, 32, 95, 106, 115, 120, 68, 69, 86, 40, 34, 100, 105, 118, 34, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 104, 105, 108, 100, 114, 101, 110, 58, 32, 34, 89, 111, 117, 114, 32, 97, 99, 99, 111, 117, 110, 116, 32, 104, 97, 115, 32, 110, 111, 116, 32, 121, 101, 116, 32, 97, 99, 116, 105, 118, 97, 116, 101, 100, 32, 116, 104, 105, 115, 32, 109, 111, 100, 117, 108, 101, 44, 32, 119, 104, 101, 116, 104, 101, 114, 32, 116, 111, 32, 97, 99, 116, 105, 118, 97, 116, 101, 32, 105, 116, 34, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 32, 118, 111, 105, 100, 32, 48, 44, 32, 102, 97, 108, 115, 101, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 102, 105, 108, 101, 78, 97, 109, 101, 58, 32, 34, 47, 85, 115, 101, 114, 115, 47, 116, 97, 107, 101, 104, 111, 115, 104, 105, 47, 68, 101, 115, 107, 116, 111, 112, 47, 114, 101, 115, 116, 114, 117, 99, 116, 117, 114, 101, 45, 97, 112, 112, 47, 115, 114, 99, 47, 114, 111, 117, 116, 101, 115, 47, 105, 110, 100, 101, 120, 46, 116, 115, 120, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 108, 105, 110, 101, 78, 117, 109, 98, 101, 114, 58, 32, 52, 54, 53, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 108, 117, 109, 110, 78, 117, 109, 98, 101, 114, 58, 32, 57, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 32, 116, 104, 105, 115, 41, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 47, 42, 35, 95, 95, 80, 85, 82, 69, 95, 95, 42, 47, 32, 95, 106, 115, 120, 68, 69, 86, 40, 34, 100, 105, 118, 34, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 104, 105, 108, 100, 114, 101, 110, 58, 32, 34, 73, 102, 32, 116, 104, 101, 32, 109, 111, 100, 117, 108, 101, 32, 105, 115, 32, 110, 111, 116, 32, 97, 99, 116, 105, 118, 97, 116, 101, 100, 44, 32, 116, 104, 101, 32, 112, 97, 103, 101, 32, 119, 105, 108, 108, 32, 97, 117, 116, 111, 109, 97, 116, 105, 99, 97, 108, 108, 121, 32, 114, 101, 100, 105, 114, 101, 99, 116, 32, 116, 111, 32, 116, 104, 101, 32, 100, 101, 118, 101, 108, 111, 112, 101, 114, 32, 115, 105, 116, 101, 34, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 32, 118, 111, 105, 100, 32, 48, 44, 32, 102, 97, 108, 115, 101, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 102, 105, 108, 101, 78, 97, 109, 101, 58, 32, 34, 47, 85, 115, 101, 114, 115, 47, 116, 97, 107, 101, 104, 111, 115, 104, 105, 47, 68, 101, 115, 107, 116, 111, 112, 47, 114, 101, 115, 116, 114, 117, 99, 116, 117, 114, 101, 45, 97, 112, 112, 47, 115, 114, 99, 47, 114, 111, 117, 116, 101, 115, 47, 105, 110, 100, 101, 120, 46, 116, 115, 120, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 108, 105, 110, 101, 78, 117, 109, 98, 101, 114, 58, 32, 52, 54, 54, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 108, 117, 109, 110, 78, 117, 109, 98, 101, 114, 58, 32, 57, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 32, 116, 104, 105, 115, 41, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 93, 10, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 32, 118, 111, 105, 100, 32, 48, 44, 32, 116, 114, 117, 101, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 102, 105, 108, 101, 78, 97, 109, 101, 58, 32, 34, 47, 85, 115, 101, 114, 115, 47, 116, 97, 107, 101, 104, 111, 115, 104, 105, 47, 68, 101, 115, 107, 116, 111, 112, 47, 114, 101, 115, 116, 114, 117, 99, 116, 117, 114, 101, 45, 97, 112, 112, 47, 115, 114, 99, 47, 114, 111, 117, 116, 101, 115, 47, 105, 110, 100, 101, 120, 46, 116, 115, 120, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 108, 105, 110, 101, 78, 117, 109, 98, 101, 114, 58, 32, 52, 53, 54, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 108, 117, 109, 110, 78, 117, 109, 98, 101, 114, 58, 32, 55, 10, 32, 32, 32, 32, 32, 32, 32, 32, 125, 44, 32, 116, 104, 105, 115, 41, 59, 10, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 114, 101, 116, 117, 114, 110, 32, 47, 42, 35, 95, 95, 80, 85, 82, 69, 95, 95, 42, 47, 32, 95, 106, 115, 120, 68, 69, 86, 40, 82, 111, 117, 116, 101, 115, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 114, 111, 117, 116, 101, 115, 67, 111, 110, 102, 105, 103, 58, 32, 114, 111, 117, 116, 101, 115, 67, 111, 110, 102, 105, 103, 10, 32, 32, 32, 32, 125, 44, 32, 118, 111, 105, 100, 32, 48, 44, 32, 102, 97, 108, 115, 101, 44, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 102, 105, 108, 101, 78, 97, 109, 101, 58, 32, 34, 47, 85, 115, 101, 114, 115, 47, 116, 97, 107, 101, 104, 111, 115, 104, 105, 47, 68, 101, 115, 107, 116, 111, 112, 47, 114, 101, 115, 116, 114, 117, 99, 116, 117, 114, 101, 45, 97, 112, 112, 47, 115, 114, 99, 47, 114, 111, 117, 116, 101, 115, 47, 105, 110, 100, 101, 120, 46, 116, 115, 120, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 108, 105, 110, 101, 78, 117, 109, 98, 101, 114, 58, 32, 52, 55, 51, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 108, 117, 109, 110, 78, 117, 109, 98, 101, 114, 58, 32, 49, 48, 10, 32, 32, 32, 32, 125, 44, 32, 116, 104, 105, 115, 41, 59, 10, 125, 59, 10], error: Utf8Error { valid_up_to: 15418, error_len: Some(1) } }', /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/swc-0.266.1/src/lib.rs:551:40
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
➜  restructure-app git:(master) ✗ node:internal/process/promises:279
            triggerUncaughtException(err, true /* fromPromise */);
            ^

RpcIpcMessagePortClosedError: Cannot send the message - the message port has been closed for the process 4233.
    at /Users/takehoshi/Desktop/restructure-app/node_modules/fork-ts-checker-webpack-plugin/lib/rpc/rpc-ipc/RpcIpcMessagePort.js:47:47
    at processTicksAndRejections (node:internal/process/task_queues:82:21) {
  code: undefined,
  signal: undefined
}

WechatIMG109619

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.