diff --git a/EGUI/lab3/README.md b/EGUI/lab3/README.md deleted file mode 100644 index 58beeacc..00000000 --- a/EGUI/lab3/README.md +++ /dev/null @@ -1,70 +0,0 @@ -# Getting Started with Create React App - -This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). - -## Available Scripts - -In the project directory, you can run: - -### `npm start` - -Runs the app in the development mode.\ -Open [http://localhost:3000](http://localhost:3000) to view it in your browser. - -The page will reload when you make changes.\ -You may also see any lint errors in the console. - -### `npm test` - -Launches the test runner in the interactive watch mode.\ -See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. - -### `npm run build` - -Builds the app for production to the `build` folder.\ -It correctly bundles React in production mode and optimizes the build for the best performance. - -The build is minified and the filenames include the hashes.\ -Your app is ready to be deployed! - -See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. - -### `npm run eject` - -**Note: this is a one-way operation. Once you `eject`, you can't go back!** - -If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. - -Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. - -You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. - -## Learn More - -You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). - -To learn React, check out the [React documentation](https://reactjs.org/). - -### Code Splitting - -This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) - -### Analyzing the Bundle Size - -This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) - -### Making a Progressive Web App - -This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) - -### Advanced Configuration - -This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) - -### Deployment - -This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) - -### `npm run build` fails to minify - -This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) diff --git a/EGUI/lab3/api/models/User.js b/EGUI/lab3/api/models/User.js index 1856b7b3..199fe8cf 100644 --- a/EGUI/lab3/api/models/User.js +++ b/EGUI/lab3/api/models/User.js @@ -14,6 +14,9 @@ const UserSchema = new mongoose.Schema({ type:String, required:true }, + blogTitle:{ + type:String + } }, { timestamps: true } diff --git a/EGUI/lab3/api/routes/authentication.js b/EGUI/lab3/api/routes/authentication.js index 09889f00..95b69871 100644 --- a/EGUI/lab3/api/routes/authentication.js +++ b/EGUI/lab3/api/routes/authentication.js @@ -11,6 +11,7 @@ router.post("/register", async (request, response)=>{ login: request.body.login, email: request.body.email, password: hashedPassword, + blogTitle: request.body.blogTitle, }); const user = await newUser.save(); diff --git a/EGUI/lab3/front/node_modules/.cache/.eslintcache b/EGUI/lab3/front/node_modules/.cache/.eslintcache index b0372491..df4ffe56 100644 --- a/EGUI/lab3/front/node_modules/.cache/.eslintcache +++ b/EGUI/lab3/front/node_modules/.cache/.eslintcache @@ -1 +1 @@ -[{"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/index.js":"1","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js":"2","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/topbar/TopBar.jsx":"3","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/home/Home.jsx":"4","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/blogs/Blogs.jsx":"5","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/blog/blog.jsx":"6","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx":"7","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx":"8","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/Login/Login.jsx":"9","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/Register/Register.jsx":"10"},{"size":233,"mtime":1655244700531,"results":"11","hashOfConfig":"12"},{"size":943,"mtime":1655254057189,"results":"13","hashOfConfig":"12"},{"size":818,"mtime":1655254361552,"results":"14","hashOfConfig":"12"},{"size":483,"mtime":1655254780885,"results":"15","hashOfConfig":"12"},{"size":273,"mtime":1655247016174,"results":"16","hashOfConfig":"12"},{"size":458,"mtime":1655254546165,"results":"17","hashOfConfig":"12"},{"size":629,"mtime":1655251093473,"results":"18","hashOfConfig":"12"},{"size":752,"mtime":1655251642294,"results":"19","hashOfConfig":"12"},{"size":696,"mtime":1655252495516,"results":"20","hashOfConfig":"12"},{"size":1239,"mtime":1655252498384,"results":"21","hashOfConfig":"12"},{"filePath":"22","messages":"23","suppressedMessages":"24","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"ui5ir6",{"filePath":"25","messages":"26","suppressedMessages":"27","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"28","messages":"29","suppressedMessages":"30","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"31","messages":"32","suppressedMessages":"33","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"34","messages":"35","suppressedMessages":"36","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"37","messages":"38","suppressedMessages":"39","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"40","messages":"41","suppressedMessages":"42","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"43","messages":"44","suppressedMessages":"45","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"46","messages":"47","suppressedMessages":"48","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"49","messages":"50","suppressedMessages":"51","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/index.js",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/topbar/TopBar.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/home/Home.jsx",["52","53"],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/blogs/Blogs.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/blog/blog.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/Login/Login.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/Register/Register.jsx",[],[],{"ruleId":"54","severity":1,"message":"55","line":7,"column":12,"nodeType":"56","messageId":"57","endLine":7,"endColumn":23},{"ruleId":"54","severity":1,"message":"58","line":7,"column":25,"nodeType":"56","messageId":"57","endLine":7,"endColumn":39},"no-unused-vars","'blogEntries' is assigned a value but never used.","Identifier","unusedVar","'setBlogEntires' is assigned a value but never used."] \ No newline at end of file +[{"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/index.js":"1","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/App.js":"2","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/topbar/TopBar.jsx":"3","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/Login/Login.jsx":"4","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/blogEntry/BlogEntry.jsx":"5","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/home/Home.jsx":"6","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/createEntry/CreateEntry.jsx":"7","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/blogs/Blogs.jsx":"8","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/blog/blog.jsx":"9","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/Register/Register.jsx":"10"},{"size":233,"mtime":1655244700531,"results":"11","hashOfConfig":"12"},{"size":938,"mtime":1655267810309,"results":"13","hashOfConfig":"12"},{"size":818,"mtime":1655254361552,"results":"14","hashOfConfig":"12"},{"size":696,"mtime":1655252495516,"results":"15","hashOfConfig":"12"},{"size":1115,"mtime":1655265458177,"results":"16","hashOfConfig":"12"},{"size":559,"mtime":1655264194000,"results":"17","hashOfConfig":"12"},{"size":752,"mtime":1655251642294,"results":"18","hashOfConfig":"12"},{"size":279,"mtime":1655264237218,"results":"19","hashOfConfig":"12"},{"size":749,"mtime":1655264916454,"results":"20","hashOfConfig":"12"},{"size":1917,"mtime":1655267799837,"results":"21","hashOfConfig":"12"},{"filePath":"22","messages":"23","suppressedMessages":"24","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"4jkpkk",{"filePath":"25","messages":"26","suppressedMessages":"27","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"28","messages":"29","suppressedMessages":"30","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"31","messages":"32","suppressedMessages":"33","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"34","messages":"35","suppressedMessages":"36","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"37","messages":"38","suppressedMessages":"39","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"40","messages":"41","suppressedMessages":"42","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"43","messages":"44","suppressedMessages":"45","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"46","messages":"47","suppressedMessages":"48","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"49","messages":"50","suppressedMessages":"51","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/index.js",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/App.js",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/topbar/TopBar.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/Login/Login.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/blogEntry/BlogEntry.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/home/Home.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/createEntry/CreateEntry.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/blogs/Blogs.jsx",[],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/blog/blog.jsx",["52"],[],"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/Register/Register.jsx",["53"],[],{"ruleId":"54","severity":1,"message":"55","line":3,"column":8,"nodeType":"56","messageId":"57","endLine":3,"endColumn":14},{"ruleId":"54","severity":1,"message":"58","line":17,"column":11,"nodeType":"56","messageId":"57","endLine":17,"endColumn":19},"no-unused-vars","'Button' is defined but never used.","Identifier","unusedVar","'response' is assigned a value but never used."] \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0021118b6e3ab2e2d913f1bcde21cdb4.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0021118b6e3ab2e2d913f1bcde21cdb4.json deleted file mode 100644 index 0c046c53..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0021118b6e3ab2e2d913f1bcde21cdb4.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var call = require('../internals/function-call');\n\nvar isObject = require('../internals/is-object');\n\nvar isSymbol = require('../internals/is-symbol');\n\nvar getMethod = require('../internals/get-method');\n\nvar ordinaryToPrimitive = require('../internals/ordinary-to-primitive');\n\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar $TypeError = TypeError;\nvar TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); // `ToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-toprimitive\n\nmodule.exports = function (input, pref) {\n if (!isObject(input) || isSymbol(input)) return input;\n var exoticToPrim = getMethod(input, TO_PRIMITIVE);\n var result;\n\n if (exoticToPrim) {\n if (pref === undefined) pref = 'default';\n result = call(exoticToPrim, input, pref);\n if (!isObject(result) || isSymbol(result)) return result;\n throw $TypeError(\"Can't convert object to primitive value\");\n }\n\n if (pref === undefined) pref = 'number';\n return ordinaryToPrimitive(input, pref);\n};","map":{"version":3,"names":["call","require","isObject","isSymbol","getMethod","ordinaryToPrimitive","wellKnownSymbol","$TypeError","TypeError","TO_PRIMITIVE","module","exports","input","pref","exoticToPrim","result","undefined"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/to-primitive.js"],"sourcesContent":["var call = require('../internals/function-call');\nvar isObject = require('../internals/is-object');\nvar isSymbol = require('../internals/is-symbol');\nvar getMethod = require('../internals/get-method');\nvar ordinaryToPrimitive = require('../internals/ordinary-to-primitive');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar $TypeError = TypeError;\nvar TO_PRIMITIVE = wellKnownSymbol('toPrimitive');\n\n// `ToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-toprimitive\nmodule.exports = function (input, pref) {\n if (!isObject(input) || isSymbol(input)) return input;\n var exoticToPrim = getMethod(input, TO_PRIMITIVE);\n var result;\n if (exoticToPrim) {\n if (pref === undefined) pref = 'default';\n result = call(exoticToPrim, input, pref);\n if (!isObject(result) || isSymbol(result)) return result;\n throw $TypeError(\"Can't convert object to primitive value\");\n }\n if (pref === undefined) pref = 'number';\n return ordinaryToPrimitive(input, pref);\n};\n"],"mappings":"AAAA,IAAIA,IAAI,GAAGC,OAAO,CAAC,4BAAD,CAAlB;;AACA,IAAIC,QAAQ,GAAGD,OAAO,CAAC,wBAAD,CAAtB;;AACA,IAAIE,QAAQ,GAAGF,OAAO,CAAC,wBAAD,CAAtB;;AACA,IAAIG,SAAS,GAAGH,OAAO,CAAC,yBAAD,CAAvB;;AACA,IAAII,mBAAmB,GAAGJ,OAAO,CAAC,oCAAD,CAAjC;;AACA,IAAIK,eAAe,GAAGL,OAAO,CAAC,gCAAD,CAA7B;;AAEA,IAAIM,UAAU,GAAGC,SAAjB;AACA,IAAIC,YAAY,GAAGH,eAAe,CAAC,aAAD,CAAlC,C,CAEA;AACA;;AACAI,MAAM,CAACC,OAAP,GAAiB,UAAUC,KAAV,EAAiBC,IAAjB,EAAuB;EACtC,IAAI,CAACX,QAAQ,CAACU,KAAD,CAAT,IAAoBT,QAAQ,CAACS,KAAD,CAAhC,EAAyC,OAAOA,KAAP;EACzC,IAAIE,YAAY,GAAGV,SAAS,CAACQ,KAAD,EAAQH,YAAR,CAA5B;EACA,IAAIM,MAAJ;;EACA,IAAID,YAAJ,EAAkB;IAChB,IAAID,IAAI,KAAKG,SAAb,EAAwBH,IAAI,GAAG,SAAP;IACxBE,MAAM,GAAGf,IAAI,CAACc,YAAD,EAAeF,KAAf,EAAsBC,IAAtB,CAAb;IACA,IAAI,CAACX,QAAQ,CAACa,MAAD,CAAT,IAAqBZ,QAAQ,CAACY,MAAD,CAAjC,EAA2C,OAAOA,MAAP;IAC3C,MAAMR,UAAU,CAAC,yCAAD,CAAhB;EACD;;EACD,IAAIM,IAAI,KAAKG,SAAb,EAAwBH,IAAI,GAAG,QAAP;EACxB,OAAOR,mBAAmB,CAACO,KAAD,EAAQC,IAAR,CAA1B;AACD,CAZD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0058434a199112ce8d92b3ffb8761fbb.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0058434a199112ce8d92b3ffb8761fbb.json new file mode 100644 index 00000000..9af7358f --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0058434a199112ce8d92b3ffb8761fbb.json @@ -0,0 +1 @@ +{"ast":null,"code":"import classNames from 'classnames';\nimport * as React from 'react';\nimport Anchor from '@restart/ui/Anchor';\nimport { useNavItem } from '@restart/ui/NavItem';\nimport { makeEventKey } from '@restart/ui/SelectableContext';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst defaultProps = {\n disabled: false\n};\nconst NavLink = /*#__PURE__*/React.forwardRef((_ref, ref) => {\n let {\n bsPrefix,\n className,\n as: Component = Anchor,\n active,\n eventKey,\n ...props\n } = _ref;\n bsPrefix = useBootstrapPrefix(bsPrefix, 'nav-link');\n const [navItemProps, meta] = useNavItem({\n key: makeEventKey(eventKey, props.href),\n active,\n ...props\n });\n return /*#__PURE__*/_jsx(Component, { ...props,\n ...navItemProps,\n ref: ref,\n className: classNames(className, bsPrefix, props.disabled && 'disabled', meta.isActive && 'active')\n });\n});\nNavLink.displayName = 'NavLink';\nNavLink.defaultProps = defaultProps;\nexport default NavLink;","map":{"version":3,"names":["classNames","React","Anchor","useNavItem","makeEventKey","useBootstrapPrefix","jsx","_jsx","defaultProps","disabled","NavLink","forwardRef","ref","bsPrefix","className","as","Component","active","eventKey","props","navItemProps","meta","key","href","isActive","displayName"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-bootstrap/esm/NavLink.js"],"sourcesContent":["import classNames from 'classnames';\nimport * as React from 'react';\nimport Anchor from '@restart/ui/Anchor';\nimport { useNavItem } from '@restart/ui/NavItem';\nimport { makeEventKey } from '@restart/ui/SelectableContext';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst defaultProps = {\n disabled: false\n};\nconst NavLink = /*#__PURE__*/React.forwardRef(({\n bsPrefix,\n className,\n as: Component = Anchor,\n active,\n eventKey,\n ...props\n}, ref) => {\n bsPrefix = useBootstrapPrefix(bsPrefix, 'nav-link');\n const [navItemProps, meta] = useNavItem({\n key: makeEventKey(eventKey, props.href),\n active,\n ...props\n });\n return /*#__PURE__*/_jsx(Component, { ...props,\n ...navItemProps,\n ref: ref,\n className: classNames(className, bsPrefix, props.disabled && 'disabled', meta.isActive && 'active')\n });\n});\nNavLink.displayName = 'NavLink';\nNavLink.defaultProps = defaultProps;\nexport default NavLink;"],"mappings":"AAAA,OAAOA,UAAP,MAAuB,YAAvB;AACA,OAAO,KAAKC,KAAZ,MAAuB,OAAvB;AACA,OAAOC,MAAP,MAAmB,oBAAnB;AACA,SAASC,UAAT,QAA2B,qBAA3B;AACA,SAASC,YAAT,QAA6B,+BAA7B;AACA,SAASC,kBAAT,QAAmC,iBAAnC;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,MAAMC,YAAY,GAAG;EACnBC,QAAQ,EAAE;AADS,CAArB;AAGA,MAAMC,OAAO,GAAG,aAAaT,KAAK,CAACU,UAAN,CAAiB,OAO3CC,GAP2C,KAOnC;EAAA,IAPoC;IAC7CC,QAD6C;IAE7CC,SAF6C;IAG7CC,EAAE,EAAEC,SAAS,GAAGd,MAH6B;IAI7Ce,MAJ6C;IAK7CC,QAL6C;IAM7C,GAAGC;EAN0C,CAOpC;EACTN,QAAQ,GAAGR,kBAAkB,CAACQ,QAAD,EAAW,UAAX,CAA7B;EACA,MAAM,CAACO,YAAD,EAAeC,IAAf,IAAuBlB,UAAU,CAAC;IACtCmB,GAAG,EAAElB,YAAY,CAACc,QAAD,EAAWC,KAAK,CAACI,IAAjB,CADqB;IAEtCN,MAFsC;IAGtC,GAAGE;EAHmC,CAAD,CAAvC;EAKA,OAAO,aAAaZ,IAAI,CAACS,SAAD,EAAY,EAAE,GAAGG,KAAL;IAClC,GAAGC,YAD+B;IAElCR,GAAG,EAAEA,GAF6B;IAGlCE,SAAS,EAAEd,UAAU,CAACc,SAAD,EAAYD,QAAZ,EAAsBM,KAAK,CAACV,QAAN,IAAkB,UAAxC,EAAoDY,IAAI,CAACG,QAAL,IAAiB,QAArE;EAHa,CAAZ,CAAxB;AAKD,CAnB4B,CAA7B;AAoBAd,OAAO,CAACe,WAAR,GAAsB,SAAtB;AACAf,OAAO,CAACF,YAAR,GAAuBA,YAAvB;AACA,eAAeE,OAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/00ec39fc2fcd5d49c95a9fa8ad222f36.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/00ec39fc2fcd5d49c95a9fa8ad222f36.json deleted file mode 100644 index 2d42f1a9..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/00ec39fc2fcd5d49c95a9fa8ad222f36.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Card from 'bootstrap/';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blog() {\n return /*#__PURE__*/_jsxDEV(Card, {\n style: {\n width: '18rem'\n },\n children: [/*#__PURE__*/_jsxDEV(Card.Img, {\n variant: \"top\",\n src: \"holder.js/100px180\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n children: \"Card Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Some quick example text to build on the card title and make up the bulk of the card's content.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Go somewhere\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 1\n }, this);\n}\n_c = Blog;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blog\");","map":{"version":3,"names":["Card","React","Blog","width"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Card from 'bootstrap/'\nimport React from \"react\";\nexport default function Blog() {\n return (\n\n \n \n Card Title\n \n Some quick example text to build on the card title and make up the bulk of\n the card's content.\n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,IAAP,MAAiB,YAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AACA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACJ,QAAC,IAAD;IAAM,KAAK,EAAE;MAAEC,KAAK,EAAE;IAAT,CAAb;IAAA,wBACE,QAAC,IAAD,CAAM,GAAN;MAAU,OAAO,EAAC,KAAlB;MAAwB,GAAG,EAAC;IAA5B;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBD,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/010028ccbbab41e54c2099bbc86be590.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/010028ccbbab41e54c2099bbc86be590.json deleted file mode 100644 index 853b89e6..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/010028ccbbab41e54c2099bbc86be590.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { Route, Router, Routes } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(Router, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 7\n }, this), /*#__PURE__*/_jsxDEV(Routes, {\n children: [/*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/\",\n children: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/register\",\n children: /*#__PURE__*/_jsxDEV(Login, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 25,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 24,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/login\",\n children: /*#__PURE__*/_jsxDEV(Register, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 29,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 28,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["Route","Router","Routes","BlogEntry","CreateEntry","Home","Login","Register","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n Route,\n Router,\n Routes,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n return (\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,KADF,EAEEC,MAFF,EAGEC,MAHF,QAIO,kBAJP;AAMA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,KAAP,MAAkB,gCAAlB;AACA,OAAOC,QAAP,MAAqB,sCAArB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE,QAAC,MAAD;IAAA,wBACE,QAAC,MAAD;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,MAAD;MAAA,wBAEE,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,GAAlB;QAAA,uBACE,QAAC,IAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAFF,eAME,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,WAAlB;QAAA,uBACE,QAAC,KAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QANF,eAUE,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,QAAlB;QAAA,uBACE,QAAC,QAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAVF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADF;AAoBD;;KArBQA,G;AAuBT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/010ac947e94db81d4feafd01d0d807b5.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/010ac947e94db81d4feafd01d0d807b5.json deleted file mode 100644 index c2bb49ee..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/010ac947e94db81d4feafd01d0d807b5.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1 m-5\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary \",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary p-5\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: Created: \n \n Entry Title \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,2BAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,UAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,aAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/01acb077e8aa3d26d2c94d3c829bc998.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/01acb077e8aa3d26d2c94d3c829bc998.json new file mode 100644 index 00000000..3759c4b4 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/01acb077e8aa3d26d2c94d3c829bc998.json @@ -0,0 +1 @@ +{"ast":null,"code":"import * as React from 'react';\nimport { useContext } from 'react';\nimport useEventCallback from '@restart/hooks/useEventCallback';\nimport CloseButton from './CloseButton';\nimport ModalContext from './ModalContext';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { jsxs as _jsxs } from \"react/jsx-runtime\";\nconst defaultProps = {\n closeLabel: 'Close',\n closeButton: false\n};\nconst AbstractModalHeader = /*#__PURE__*/React.forwardRef((_ref, ref) => {\n let {\n closeLabel,\n closeVariant,\n closeButton,\n onHide,\n children,\n ...props\n } = _ref;\n const context = useContext(ModalContext);\n const handleClick = useEventCallback(() => {\n context == null ? void 0 : context.onHide();\n onHide == null ? void 0 : onHide();\n });\n return /*#__PURE__*/_jsxs(\"div\", {\n ref: ref,\n ...props,\n children: [children, closeButton && /*#__PURE__*/_jsx(CloseButton, {\n \"aria-label\": closeLabel,\n variant: closeVariant,\n onClick: handleClick\n })]\n });\n});\nAbstractModalHeader.defaultProps = defaultProps;\nexport default AbstractModalHeader;","map":{"version":3,"names":["React","useContext","useEventCallback","CloseButton","ModalContext","jsx","_jsx","jsxs","_jsxs","defaultProps","closeLabel","closeButton","AbstractModalHeader","forwardRef","ref","closeVariant","onHide","children","props","context","handleClick","variant","onClick"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-bootstrap/esm/AbstractModalHeader.js"],"sourcesContent":["import * as React from 'react';\nimport { useContext } from 'react';\nimport useEventCallback from '@restart/hooks/useEventCallback';\nimport CloseButton from './CloseButton';\nimport ModalContext from './ModalContext';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { jsxs as _jsxs } from \"react/jsx-runtime\";\nconst defaultProps = {\n closeLabel: 'Close',\n closeButton: false\n};\nconst AbstractModalHeader = /*#__PURE__*/React.forwardRef(({\n closeLabel,\n closeVariant,\n closeButton,\n onHide,\n children,\n ...props\n}, ref) => {\n const context = useContext(ModalContext);\n const handleClick = useEventCallback(() => {\n context == null ? void 0 : context.onHide();\n onHide == null ? void 0 : onHide();\n });\n return /*#__PURE__*/_jsxs(\"div\", {\n ref: ref,\n ...props,\n children: [children, closeButton && /*#__PURE__*/_jsx(CloseButton, {\n \"aria-label\": closeLabel,\n variant: closeVariant,\n onClick: handleClick\n })]\n });\n});\nAbstractModalHeader.defaultProps = defaultProps;\nexport default AbstractModalHeader;"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SAASC,UAAT,QAA2B,OAA3B;AACA,OAAOC,gBAAP,MAA6B,iCAA7B;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,SAASC,IAAI,IAAIC,KAAjB,QAA8B,mBAA9B;AACA,MAAMC,YAAY,GAAG;EACnBC,UAAU,EAAE,OADO;EAEnBC,WAAW,EAAE;AAFM,CAArB;AAIA,MAAMC,mBAAmB,GAAG,aAAaZ,KAAK,CAACa,UAAN,CAAiB,OAOvDC,GAPuD,KAO/C;EAAA,IAPgD;IACzDJ,UADyD;IAEzDK,YAFyD;IAGzDJ,WAHyD;IAIzDK,MAJyD;IAKzDC,QALyD;IAMzD,GAAGC;EANsD,CAOhD;EACT,MAAMC,OAAO,GAAGlB,UAAU,CAACG,YAAD,CAA1B;EACA,MAAMgB,WAAW,GAAGlB,gBAAgB,CAAC,MAAM;IACzCiB,OAAO,IAAI,IAAX,GAAkB,KAAK,CAAvB,GAA2BA,OAAO,CAACH,MAAR,EAA3B;IACAA,MAAM,IAAI,IAAV,GAAiB,KAAK,CAAtB,GAA0BA,MAAM,EAAhC;EACD,CAHmC,CAApC;EAIA,OAAO,aAAaR,KAAK,CAAC,KAAD,EAAQ;IAC/BM,GAAG,EAAEA,GAD0B;IAE/B,GAAGI,KAF4B;IAG/BD,QAAQ,EAAE,CAACA,QAAD,EAAWN,WAAW,IAAI,aAAaL,IAAI,CAACH,WAAD,EAAc;MACjE,cAAcO,UADmD;MAEjEW,OAAO,EAAEN,YAFwD;MAGjEO,OAAO,EAAEF;IAHwD,CAAd,CAA3C;EAHqB,CAAR,CAAzB;AASD,CAtBwC,CAAzC;AAuBAR,mBAAmB,CAACH,YAApB,GAAmCA,YAAnC;AACA,eAAeG,mBAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/01ea16aca347ef4feec0a1f21db908d8.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/01ea16aca347ef4feec0a1f21db908d8.json deleted file mode 100644 index 59b5295f..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/01ea16aca347ef4feec0a1f21db908d8.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1 m-5\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary p-4\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary m-5 p-4\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Entry Title \n Author: \n Created: \n \n \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACQ,QAAC,IAAD,CAAM,KAAN;MAAY,KAAK,EAAC,2BAAlB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADR,eAEE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF,eAGE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAHF,eAIE,QAAC,IAAD,CAAM,IAAN;MAAA,wBAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,aAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,iBAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAJF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAeH;KAhBuBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/01f5a93cf45f73fc81099dffa70bfe81.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/01f5a93cf45f73fc81099dffa70bfe81.json deleted file mode 100644 index fa810afb..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/01f5a93cf45f73fc81099dffa70bfe81.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1 m-5\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary p-3\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary m-5 p-5\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n\n Author: Created: \n \n Entry Title \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBAEE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF,eAGE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,2BAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,aAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,iBAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAHF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAcH;KAfuBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/026582dacf564d802a239f3ac1b129cc.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/026582dacf564d802a239f3ac1b129cc.json deleted file mode 100644 index d80cfa08..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/026582dacf564d802a239f3ac1b129cc.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/topbar/TopBar.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Container from 'react-bootstrap/Container';\nimport Nav from 'react-bootstrap/Nav';\nimport Navbar from 'react-bootstrap/Navbar';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function TopBar() {\n const logged = false;\n return /*#__PURE__*/_jsxDEV(Navbar, {\n bg: \"light\",\n expand: \"lg\",\n children: /*#__PURE__*/_jsxDEV(Container, {\n children: [/*#__PURE__*/_jsxDEV(Navbar.Brand, {\n href: \"\",\n children: \"Lab 3 Blog\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Navbar.Toggle, {\n \"aria-controls\": \"basic-navbar-nav\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Navbar.Collapse, {\n id: \"basic-navbar-nav\",\n children: /*#__PURE__*/_jsxDEV(Nav, {\n className: \"me-auto\",\n children: [/*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/\",\n children: \"Home\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/login\",\n children: logged ? \"\" : \"Login\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/register\",\n children: logged ? \"\" : \"Register\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/createEntry\",\n children: [\" \", logged ? \"Create entry\" : \"\"]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 1\n }, this);\n}\n_c = TopBar;\n\nvar _c;\n\n$RefreshReg$(_c, \"TopBar\");","map":{"version":3,"names":["Container","Nav","Navbar","TopBar","logged"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/topbar/TopBar.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Container from 'react-bootstrap/Container'\nimport Nav from 'react-bootstrap/Nav';\nimport Navbar from 'react-bootstrap/Navbar'\n\nexport default function TopBar() {\n const logged = false;\n return (\n\n \n Lab 3 Blog\n \n \n \n \n \n\n )\n}\n"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,SAAP,MAAsB,2BAAtB;AACA,OAAOC,GAAP,MAAgB,qBAAhB;AACA,OAAOC,MAAP,MAAmB,wBAAnB;;AAEA,eAAe,SAASC,MAAT,GAAkB;EAC/B,MAAMC,MAAM,GAAG,KAAf;EACE,oBACJ,QAAC,MAAD;IAAQ,EAAE,EAAC,OAAX;IAAmB,MAAM,EAAC,IAA1B;IAAA,uBACE,QAAC,SAAD;MAAA,wBACE,QAAC,MAAD,CAAQ,KAAR;QAAc,IAAI,EAAC,EAAnB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,MAAD,CAAQ,MAAR;QAAe,iBAAc;MAA7B;QAAA;QAAA;QAAA;MAAA,QAFF,eAGE,QAAC,MAAD,CAAQ,QAAR;QAAiB,EAAE,EAAC,kBAApB;QAAA,uBACE,QAAC,GAAD;UAAK,SAAS,EAAC,SAAf;UAAA,wBACE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,GAAf;YAAA;UAAA;YAAA;YAAA;YAAA;UAAA,QADF,eAEE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,QAAf;YAAA,UAAyBA,MAAM,GAAG,EAAH,GAAQ;UAAvC;YAAA;YAAA;YAAA;UAAA,QAFF,eAGE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,WAAf;YAAA,UAA4BA,MAAM,GAAG,EAAH,GAAQ;UAA1C;YAAA;YAAA;YAAA;UAAA,QAHF,eAIE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,cAAf;YAAA,gBAAgCA,MAAM,GAAG,cAAH,GAAoB,EAA1D;UAAA;YAAA;YAAA;YAAA;UAAA,QAJF;QAAA;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAHF;IAAA;MAAA;MAAA;MAAA;IAAA;EADF;IAAA;IAAA;IAAA;EAAA,QADI;AAgBH;KAlBuBD,M"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/028b5cd5038e90a291f4f842b0da6902.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/028b5cd5038e90a291f4f842b0da6902.json deleted file mode 100644 index c260e358..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/028b5cd5038e90a291f4f842b0da6902.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blog() {\n return /*#__PURE__*/_jsxDEV(Card, {\n style: {\n width: '72 rem'\n },\n children: /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n children: \"Blog title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Blog text\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = Blog;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blog\");","map":{"version":3,"names":["Button","Card","React","Blog","width"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function Blog() {\n return (\n\n \n \n Blog title\n \n Blog text\n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACJ,QAAC,IAAD;IAAM,KAAK,EAAE;MAAEC,KAAK,EAAE;IAAT,CAAb;IAAA,uBAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF;IAAA;MAAA;MAAA;MAAA;IAAA;EAFF;IAAA;IAAA;IAAA;EAAA,QADI;AAYH;KAbuBD,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/02e833eeb3b1a92cee8b7fe97d499e7f.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/02e833eeb3b1a92cee8b7fe97d499e7f.json new file mode 100644 index 00000000..d54b8977 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/02e833eeb3b1a92cee8b7fe97d499e7f.json @@ -0,0 +1 @@ +{"ast":null,"code":"/**\n * React Router v6.3.0\n *\n * Copyright (c) Remix Software Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE.md file in the root directory of this source tree.\n *\n * @license MIT\n */\nimport { parsePath, createMemoryHistory, Action } from 'history';\nexport { Action as NavigationType, createPath, parsePath } from 'history';\nimport { createContext, useContext, useMemo, useRef, useEffect, useCallback, createElement, useState, useLayoutEffect, Children, isValidElement, Fragment } from 'react';\nconst NavigationContext = /*#__PURE__*/createContext(null);\n\nif (process.env.NODE_ENV !== \"production\") {\n NavigationContext.displayName = \"Navigation\";\n}\n\nconst LocationContext = /*#__PURE__*/createContext(null);\n\nif (process.env.NODE_ENV !== \"production\") {\n LocationContext.displayName = \"Location\";\n}\n\nconst RouteContext = /*#__PURE__*/createContext({\n outlet: null,\n matches: []\n});\n\nif (process.env.NODE_ENV !== \"production\") {\n RouteContext.displayName = \"Route\";\n}\n\nfunction invariant(cond, message) {\n if (!cond) throw new Error(message);\n}\n\nfunction warning(cond, message) {\n if (!cond) {\n // eslint-disable-next-line no-console\n if (typeof console !== \"undefined\") console.warn(message);\n\n try {\n // Welcome to debugging React Router!\n //\n // This error is thrown as a convenience so you can more easily\n // find the source for a warning that appears in the console by\n // enabling \"pause on exceptions\" in your JavaScript debugger.\n throw new Error(message); // eslint-disable-next-line no-empty\n } catch (e) {}\n }\n}\n\nconst alreadyWarned = {};\n\nfunction warningOnce(key, cond, message) {\n if (!cond && !alreadyWarned[key]) {\n alreadyWarned[key] = true;\n process.env.NODE_ENV !== \"production\" ? warning(false, message) : void 0;\n }\n}\n/**\n * Returns a path with params interpolated.\n *\n * @see https://reactrouter.com/docs/en/v6/api#generatepath\n */\n\n\nfunction generatePath(path, params) {\n if (params === void 0) {\n params = {};\n }\n\n return path.replace(/:(\\w+)/g, (_, key) => {\n !(params[key] != null) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"Missing \\\":\" + key + \"\\\" param\") : invariant(false) : void 0;\n return params[key];\n }).replace(/\\/*\\*$/, _ => params[\"*\"] == null ? \"\" : params[\"*\"].replace(/^\\/*/, \"/\"));\n}\n/**\n * A RouteMatch contains info about how a route matched a URL.\n */\n\n/**\n * Matches the given routes to a location and returns the match data.\n *\n * @see https://reactrouter.com/docs/en/v6/api#matchroutes\n */\n\n\nfunction matchRoutes(routes, locationArg, basename) {\n if (basename === void 0) {\n basename = \"/\";\n }\n\n let location = typeof locationArg === \"string\" ? parsePath(locationArg) : locationArg;\n let pathname = stripBasename(location.pathname || \"/\", basename);\n\n if (pathname == null) {\n return null;\n }\n\n let branches = flattenRoutes(routes);\n rankRouteBranches(branches);\n let matches = null;\n\n for (let i = 0; matches == null && i < branches.length; ++i) {\n matches = matchRouteBranch(branches[i], pathname);\n }\n\n return matches;\n}\n\nfunction flattenRoutes(routes, branches, parentsMeta, parentPath) {\n if (branches === void 0) {\n branches = [];\n }\n\n if (parentsMeta === void 0) {\n parentsMeta = [];\n }\n\n if (parentPath === void 0) {\n parentPath = \"\";\n }\n\n routes.forEach((route, index) => {\n let meta = {\n relativePath: route.path || \"\",\n caseSensitive: route.caseSensitive === true,\n childrenIndex: index,\n route\n };\n\n if (meta.relativePath.startsWith(\"/\")) {\n !meta.relativePath.startsWith(parentPath) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"Absolute route path \\\"\" + meta.relativePath + \"\\\" nested under path \" + (\"\\\"\" + parentPath + \"\\\" is not valid. An absolute child route path \") + \"must start with the combined path of all its parent routes.\") : invariant(false) : void 0;\n meta.relativePath = meta.relativePath.slice(parentPath.length);\n }\n\n let path = joinPaths([parentPath, meta.relativePath]);\n let routesMeta = parentsMeta.concat(meta); // Add the children before adding this route to the array so we traverse the\n // route tree depth-first and child routes appear before their parents in\n // the \"flattened\" version.\n\n if (route.children && route.children.length > 0) {\n !(route.index !== true) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"Index routes must not have child routes. Please remove \" + (\"all child routes from route path \\\"\" + path + \"\\\".\")) : invariant(false) : void 0;\n flattenRoutes(route.children, branches, routesMeta, path);\n } // Routes without a path shouldn't ever match by themselves unless they are\n // index routes, so don't add them to the list of possible branches.\n\n\n if (route.path == null && !route.index) {\n return;\n }\n\n branches.push({\n path,\n score: computeScore(path, route.index),\n routesMeta\n });\n });\n return branches;\n}\n\nfunction rankRouteBranches(branches) {\n branches.sort((a, b) => a.score !== b.score ? b.score - a.score // Higher score first\n : compareIndexes(a.routesMeta.map(meta => meta.childrenIndex), b.routesMeta.map(meta => meta.childrenIndex)));\n}\n\nconst paramRe = /^:\\w+$/;\nconst dynamicSegmentValue = 3;\nconst indexRouteValue = 2;\nconst emptySegmentValue = 1;\nconst staticSegmentValue = 10;\nconst splatPenalty = -2;\n\nconst isSplat = s => s === \"*\";\n\nfunction computeScore(path, index) {\n let segments = path.split(\"/\");\n let initialScore = segments.length;\n\n if (segments.some(isSplat)) {\n initialScore += splatPenalty;\n }\n\n if (index) {\n initialScore += indexRouteValue;\n }\n\n return segments.filter(s => !isSplat(s)).reduce((score, segment) => score + (paramRe.test(segment) ? dynamicSegmentValue : segment === \"\" ? emptySegmentValue : staticSegmentValue), initialScore);\n}\n\nfunction compareIndexes(a, b) {\n let siblings = a.length === b.length && a.slice(0, -1).every((n, i) => n === b[i]);\n return siblings ? // If two routes are siblings, we should try to match the earlier sibling\n // first. This allows people to have fine-grained control over the matching\n // behavior by simply putting routes with identical paths in the order they\n // want them tried.\n a[a.length - 1] - b[b.length - 1] : // Otherwise, it doesn't really make sense to rank non-siblings by index,\n // so they sort equally.\n 0;\n}\n\nfunction matchRouteBranch(branch, pathname) {\n let {\n routesMeta\n } = branch;\n let matchedParams = {};\n let matchedPathname = \"/\";\n let matches = [];\n\n for (let i = 0; i < routesMeta.length; ++i) {\n let meta = routesMeta[i];\n let end = i === routesMeta.length - 1;\n let remainingPathname = matchedPathname === \"/\" ? pathname : pathname.slice(matchedPathname.length) || \"/\";\n let match = matchPath({\n path: meta.relativePath,\n caseSensitive: meta.caseSensitive,\n end\n }, remainingPathname);\n if (!match) return null;\n Object.assign(matchedParams, match.params);\n let route = meta.route;\n matches.push({\n params: matchedParams,\n pathname: joinPaths([matchedPathname, match.pathname]),\n pathnameBase: normalizePathname(joinPaths([matchedPathname, match.pathnameBase])),\n route\n });\n\n if (match.pathnameBase !== \"/\") {\n matchedPathname = joinPaths([matchedPathname, match.pathnameBase]);\n }\n }\n\n return matches;\n}\n/**\n * A PathPattern is used to match on some portion of a URL pathname.\n */\n\n/**\n * Performs pattern matching on a URL pathname and returns information about\n * the match.\n *\n * @see https://reactrouter.com/docs/en/v6/api#matchpath\n */\n\n\nfunction matchPath(pattern, pathname) {\n if (typeof pattern === \"string\") {\n pattern = {\n path: pattern,\n caseSensitive: false,\n end: true\n };\n }\n\n let [matcher, paramNames] = compilePath(pattern.path, pattern.caseSensitive, pattern.end);\n let match = pathname.match(matcher);\n if (!match) return null;\n let matchedPathname = match[0];\n let pathnameBase = matchedPathname.replace(/(.)\\/+$/, \"$1\");\n let captureGroups = match.slice(1);\n let params = paramNames.reduce((memo, paramName, index) => {\n // We need to compute the pathnameBase here using the raw splat value\n // instead of using params[\"*\"] later because it will be decoded then\n if (paramName === \"*\") {\n let splatValue = captureGroups[index] || \"\";\n pathnameBase = matchedPathname.slice(0, matchedPathname.length - splatValue.length).replace(/(.)\\/+$/, \"$1\");\n }\n\n memo[paramName] = safelyDecodeURIComponent(captureGroups[index] || \"\", paramName);\n return memo;\n }, {});\n return {\n params,\n pathname: matchedPathname,\n pathnameBase,\n pattern\n };\n}\n\nfunction compilePath(path, caseSensitive, end) {\n if (caseSensitive === void 0) {\n caseSensitive = false;\n }\n\n if (end === void 0) {\n end = true;\n }\n\n process.env.NODE_ENV !== \"production\" ? warning(path === \"*\" || !path.endsWith(\"*\") || path.endsWith(\"/*\"), \"Route path \\\"\" + path + \"\\\" will be treated as if it were \" + (\"\\\"\" + path.replace(/\\*$/, \"/*\") + \"\\\" because the `*` character must \") + \"always follow a `/` in the pattern. To get rid of this warning, \" + (\"please change the route path to \\\"\" + path.replace(/\\*$/, \"/*\") + \"\\\".\")) : void 0;\n let paramNames = [];\n let regexpSource = \"^\" + path.replace(/\\/*\\*?$/, \"\") // Ignore trailing / and /*, we'll handle it below\n .replace(/^\\/*/, \"/\") // Make sure it has a leading /\n .replace(/[\\\\.*+^$?{}|()[\\]]/g, \"\\\\$&\") // Escape special regex chars\n .replace(/:(\\w+)/g, (_, paramName) => {\n paramNames.push(paramName);\n return \"([^\\\\/]+)\";\n });\n\n if (path.endsWith(\"*\")) {\n paramNames.push(\"*\");\n regexpSource += path === \"*\" || path === \"/*\" ? \"(.*)$\" // Already matched the initial /, just match the rest\n : \"(?:\\\\/(.+)|\\\\/*)$\"; // Don't include the / in params[\"*\"]\n } else {\n regexpSource += end ? \"\\\\/*$\" // When matching to the end, ignore trailing slashes\n : // Otherwise, match a word boundary or a proceeding /. The word boundary restricts\n // parent routes to matching only their own words and nothing more, e.g. parent\n // route \"/home\" should not match \"/home2\".\n // Additionally, allow paths starting with `.`, `-`, `~`, and url-encoded entities,\n // but do not consume the character in the matched path so they can match against\n // nested paths.\n \"(?:(?=[.~-]|%[0-9A-F]{2})|\\\\b|\\\\/|$)\";\n }\n\n let matcher = new RegExp(regexpSource, caseSensitive ? undefined : \"i\");\n return [matcher, paramNames];\n}\n\nfunction safelyDecodeURIComponent(value, paramName) {\n try {\n return decodeURIComponent(value);\n } catch (error) {\n process.env.NODE_ENV !== \"production\" ? warning(false, \"The value for the URL param \\\"\" + paramName + \"\\\" will not be decoded because\" + (\" the string \\\"\" + value + \"\\\" is a malformed URL segment. This is probably\") + (\" due to a bad percent encoding (\" + error + \").\")) : void 0;\n return value;\n }\n}\n/**\n * Returns a resolved path object relative to the given pathname.\n *\n * @see https://reactrouter.com/docs/en/v6/api#resolvepath\n */\n\n\nfunction resolvePath(to, fromPathname) {\n if (fromPathname === void 0) {\n fromPathname = \"/\";\n }\n\n let {\n pathname: toPathname,\n search = \"\",\n hash = \"\"\n } = typeof to === \"string\" ? parsePath(to) : to;\n let pathname = toPathname ? toPathname.startsWith(\"/\") ? toPathname : resolvePathname(toPathname, fromPathname) : fromPathname;\n return {\n pathname,\n search: normalizeSearch(search),\n hash: normalizeHash(hash)\n };\n}\n\nfunction resolvePathname(relativePath, fromPathname) {\n let segments = fromPathname.replace(/\\/+$/, \"\").split(\"/\");\n let relativeSegments = relativePath.split(\"/\");\n relativeSegments.forEach(segment => {\n if (segment === \"..\") {\n // Keep the root \"\" segment so the pathname starts at /\n if (segments.length > 1) segments.pop();\n } else if (segment !== \".\") {\n segments.push(segment);\n }\n });\n return segments.length > 1 ? segments.join(\"/\") : \"/\";\n}\n\nfunction resolveTo(toArg, routePathnames, locationPathname) {\n let to = typeof toArg === \"string\" ? parsePath(toArg) : toArg;\n let toPathname = toArg === \"\" || to.pathname === \"\" ? \"/\" : to.pathname; // If a pathname is explicitly provided in `to`, it should be relative to the\n // route context. This is explained in `Note on `` values` in our\n // migration guide from v5 as a means of disambiguation between `to` values\n // that begin with `/` and those that do not. However, this is problematic for\n // `to` values that do not provide a pathname. `to` can simply be a search or\n // hash string, in which case we should assume that the navigation is relative\n // to the current location's pathname and *not* the route pathname.\n\n let from;\n\n if (toPathname == null) {\n from = locationPathname;\n } else {\n let routePathnameIndex = routePathnames.length - 1;\n\n if (toPathname.startsWith(\"..\")) {\n let toSegments = toPathname.split(\"/\"); // Each leading .. segment means \"go up one route\" instead of \"go up one\n // URL segment\". This is a key difference from how works and a\n // major reason we call this a \"to\" value instead of a \"href\".\n\n while (toSegments[0] === \"..\") {\n toSegments.shift();\n routePathnameIndex -= 1;\n }\n\n to.pathname = toSegments.join(\"/\");\n } // If there are more \"..\" segments than parent routes, resolve relative to\n // the root / URL.\n\n\n from = routePathnameIndex >= 0 ? routePathnames[routePathnameIndex] : \"/\";\n }\n\n let path = resolvePath(to, from); // Ensure the pathname has a trailing slash if the original to value had one.\n\n if (toPathname && toPathname !== \"/\" && toPathname.endsWith(\"/\") && !path.pathname.endsWith(\"/\")) {\n path.pathname += \"/\";\n }\n\n return path;\n}\n\nfunction getToPathname(to) {\n // Empty strings should be treated the same as / paths\n return to === \"\" || to.pathname === \"\" ? \"/\" : typeof to === \"string\" ? parsePath(to).pathname : to.pathname;\n}\n\nfunction stripBasename(pathname, basename) {\n if (basename === \"/\") return pathname;\n\n if (!pathname.toLowerCase().startsWith(basename.toLowerCase())) {\n return null;\n }\n\n let nextChar = pathname.charAt(basename.length);\n\n if (nextChar && nextChar !== \"/\") {\n // pathname does not start with basename/\n return null;\n }\n\n return pathname.slice(basename.length) || \"/\";\n}\n\nconst joinPaths = paths => paths.join(\"/\").replace(/\\/\\/+/g, \"/\");\n\nconst normalizePathname = pathname => pathname.replace(/\\/+$/, \"\").replace(/^\\/*/, \"/\");\n\nconst normalizeSearch = search => !search || search === \"?\" ? \"\" : search.startsWith(\"?\") ? search : \"?\" + search;\n\nconst normalizeHash = hash => !hash || hash === \"#\" ? \"\" : hash.startsWith(\"#\") ? hash : \"#\" + hash;\n/**\n * Returns the full href for the given \"to\" value. This is useful for building\n * custom links that are also accessible and preserve right-click behavior.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usehref\n */\n\n\nfunction useHref(to) {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useHref() may be used only in the context of a component.\") : invariant(false) : void 0;\n let {\n basename,\n navigator\n } = useContext(NavigationContext);\n let {\n hash,\n pathname,\n search\n } = useResolvedPath(to);\n let joinedPathname = pathname;\n\n if (basename !== \"/\") {\n let toPathname = getToPathname(to);\n let endsWithSlash = toPathname != null && toPathname.endsWith(\"/\");\n joinedPathname = pathname === \"/\" ? basename + (endsWithSlash ? \"/\" : \"\") : joinPaths([basename, pathname]);\n }\n\n return navigator.createHref({\n pathname: joinedPathname,\n search,\n hash\n });\n}\n/**\n * Returns true if this component is a descendant of a .\n *\n * @see https://reactrouter.com/docs/en/v6/api#useinroutercontext\n */\n\n\nfunction useInRouterContext() {\n return useContext(LocationContext) != null;\n}\n/**\n * Returns the current location object, which represents the current URL in web\n * browsers.\n *\n * Note: If you're using this it may mean you're doing some of your own\n * \"routing\" in your app, and we'd like to know what your use case is. We may\n * be able to provide something higher-level to better suit your needs.\n *\n * @see https://reactrouter.com/docs/en/v6/api#uselocation\n */\n\n\nfunction useLocation() {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useLocation() may be used only in the context of a component.\") : invariant(false) : void 0;\n return useContext(LocationContext).location;\n}\n/**\n * Returns the current navigation action which describes how the router came to\n * the current location, either by a pop, push, or replace on the history stack.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usenavigationtype\n */\n\n\nfunction useNavigationType() {\n return useContext(LocationContext).navigationType;\n}\n/**\n * Returns true if the URL for the given \"to\" value matches the current URL.\n * This is useful for components that need to know \"active\" state, e.g.\n * .\n *\n * @see https://reactrouter.com/docs/en/v6/api#usematch\n */\n\n\nfunction useMatch(pattern) {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useMatch() may be used only in the context of a component.\") : invariant(false) : void 0;\n let {\n pathname\n } = useLocation();\n return useMemo(() => matchPath(pattern, pathname), [pathname, pattern]);\n}\n/**\n * The interface for the navigate() function returned from useNavigate().\n */\n\n/**\n * Returns an imperative method for changing the location. Used by s, but\n * may also be used by other elements to change the location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usenavigate\n */\n\n\nfunction useNavigate() {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useNavigate() may be used only in the context of a component.\") : invariant(false) : void 0;\n let {\n basename,\n navigator\n } = useContext(NavigationContext);\n let {\n matches\n } = useContext(RouteContext);\n let {\n pathname: locationPathname\n } = useLocation();\n let routePathnamesJson = JSON.stringify(matches.map(match => match.pathnameBase));\n let activeRef = useRef(false);\n useEffect(() => {\n activeRef.current = true;\n });\n let navigate = useCallback(function (to, options) {\n if (options === void 0) {\n options = {};\n }\n\n process.env.NODE_ENV !== \"production\" ? warning(activeRef.current, \"You should call navigate() in a React.useEffect(), not when \" + \"your component is first rendered.\") : void 0;\n if (!activeRef.current) return;\n\n if (typeof to === \"number\") {\n navigator.go(to);\n return;\n }\n\n let path = resolveTo(to, JSON.parse(routePathnamesJson), locationPathname);\n\n if (basename !== \"/\") {\n path.pathname = joinPaths([basename, path.pathname]);\n }\n\n (!!options.replace ? navigator.replace : navigator.push)(path, options.state);\n }, [basename, navigator, routePathnamesJson, locationPathname]);\n return navigate;\n}\n\nconst OutletContext = /*#__PURE__*/createContext(null);\n/**\n * Returns the context (if provided) for the child route at this level of the route\n * hierarchy.\n * @see https://reactrouter.com/docs/en/v6/api#useoutletcontext\n */\n\nfunction useOutletContext() {\n return useContext(OutletContext);\n}\n/**\n * Returns the element for the child route at this level of the route\n * hierarchy. Used internally by to render child routes.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useoutlet\n */\n\n\nfunction useOutlet(context) {\n let outlet = useContext(RouteContext).outlet;\n\n if (outlet) {\n return /*#__PURE__*/createElement(OutletContext.Provider, {\n value: context\n }, outlet);\n }\n\n return outlet;\n}\n/**\n * Returns an object of key/value pairs of the dynamic params from the current\n * URL that were matched by the route path.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useparams\n */\n\n\nfunction useParams() {\n let {\n matches\n } = useContext(RouteContext);\n let routeMatch = matches[matches.length - 1];\n return routeMatch ? routeMatch.params : {};\n}\n/**\n * Resolves the pathname of the given `to` value against the current location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useresolvedpath\n */\n\n\nfunction useResolvedPath(to) {\n let {\n matches\n } = useContext(RouteContext);\n let {\n pathname: locationPathname\n } = useLocation();\n let routePathnamesJson = JSON.stringify(matches.map(match => match.pathnameBase));\n return useMemo(() => resolveTo(to, JSON.parse(routePathnamesJson), locationPathname), [to, routePathnamesJson, locationPathname]);\n}\n/**\n * Returns the element of the route that matched the current location, prepared\n * with the correct context to render the remainder of the route tree. Route\n * elements in the tree must render an to render their child route's\n * element.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useroutes\n */\n\n\nfunction useRoutes(routes, locationArg) {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useRoutes() may be used only in the context of a component.\") : invariant(false) : void 0;\n let {\n matches: parentMatches\n } = useContext(RouteContext);\n let routeMatch = parentMatches[parentMatches.length - 1];\n let parentParams = routeMatch ? routeMatch.params : {};\n let parentPathname = routeMatch ? routeMatch.pathname : \"/\";\n let parentPathnameBase = routeMatch ? routeMatch.pathnameBase : \"/\";\n let parentRoute = routeMatch && routeMatch.route;\n\n if (process.env.NODE_ENV !== \"production\") {\n // You won't get a warning about 2 different under a \n // without a trailing *, but this is a best-effort warning anyway since we\n // cannot even give the warning unless they land at the parent route.\n //\n // Example:\n //\n // \n // {/* This route path MUST end with /* because otherwise\n // it will never match /blog/post/123 */}\n // } />\n // } />\n // \n //\n // function Blog() {\n // return (\n // \n // } />\n // \n // );\n // }\n let parentPath = parentRoute && parentRoute.path || \"\";\n warningOnce(parentPathname, !parentRoute || parentPath.endsWith(\"*\"), \"You rendered descendant (or called `useRoutes()`) at \" + (\"\\\"\" + parentPathname + \"\\\" (under ) but the \") + \"parent route path has no trailing \\\"*\\\". This means if you navigate \" + \"deeper, the parent won't match anymore and therefore the child \" + \"routes will never render.\\n\\n\" + (\"Please change the parent to .\"));\n }\n\n let locationFromContext = useLocation();\n let location;\n\n if (locationArg) {\n var _parsedLocationArg$pa;\n\n let parsedLocationArg = typeof locationArg === \"string\" ? parsePath(locationArg) : locationArg;\n !(parentPathnameBase === \"/\" || ((_parsedLocationArg$pa = parsedLocationArg.pathname) == null ? void 0 : _parsedLocationArg$pa.startsWith(parentPathnameBase))) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"When overriding the location using `` or `useRoutes(routes, location)`, \" + \"the location pathname must begin with the portion of the URL pathname that was \" + (\"matched by all parent routes. The current pathname base is \\\"\" + parentPathnameBase + \"\\\" \") + (\"but pathname \\\"\" + parsedLocationArg.pathname + \"\\\" was given in the `location` prop.\")) : invariant(false) : void 0;\n location = parsedLocationArg;\n } else {\n location = locationFromContext;\n }\n\n let pathname = location.pathname || \"/\";\n let remainingPathname = parentPathnameBase === \"/\" ? pathname : pathname.slice(parentPathnameBase.length) || \"/\";\n let matches = matchRoutes(routes, {\n pathname: remainingPathname\n });\n\n if (process.env.NODE_ENV !== \"production\") {\n process.env.NODE_ENV !== \"production\" ? warning(parentRoute || matches != null, \"No routes matched location \\\"\" + location.pathname + location.search + location.hash + \"\\\" \") : void 0;\n process.env.NODE_ENV !== \"production\" ? warning(matches == null || matches[matches.length - 1].route.element !== undefined, \"Matched leaf route at location \\\"\" + location.pathname + location.search + location.hash + \"\\\" does not have an element. \" + \"This means it will render an with a null value by default resulting in an \\\"empty\\\" page.\") : void 0;\n }\n\n return _renderMatches(matches && matches.map(match => Object.assign({}, match, {\n params: Object.assign({}, parentParams, match.params),\n pathname: joinPaths([parentPathnameBase, match.pathname]),\n pathnameBase: match.pathnameBase === \"/\" ? parentPathnameBase : joinPaths([parentPathnameBase, match.pathnameBase])\n })), parentMatches);\n}\n\nfunction _renderMatches(matches, parentMatches) {\n if (parentMatches === void 0) {\n parentMatches = [];\n }\n\n if (matches == null) return null;\n return matches.reduceRight((outlet, match, index) => {\n return /*#__PURE__*/createElement(RouteContext.Provider, {\n children: match.route.element !== undefined ? match.route.element : outlet,\n value: {\n outlet,\n matches: parentMatches.concat(matches.slice(0, index + 1))\n }\n });\n }, null);\n}\n/**\n * A that stores all entries in memory.\n *\n * @see https://reactrouter.com/docs/en/v6/api#memoryrouter\n */\n\n\nfunction MemoryRouter(_ref) {\n let {\n basename,\n children,\n initialEntries,\n initialIndex\n } = _ref;\n let historyRef = useRef();\n\n if (historyRef.current == null) {\n historyRef.current = createMemoryHistory({\n initialEntries,\n initialIndex\n });\n }\n\n let history = historyRef.current;\n let [state, setState] = useState({\n action: history.action,\n location: history.location\n });\n useLayoutEffect(() => history.listen(setState), [history]);\n return /*#__PURE__*/createElement(Router, {\n basename: basename,\n children: children,\n location: state.location,\n navigationType: state.action,\n navigator: history\n });\n}\n/**\n * Changes the current location.\n *\n * Note: This API is mostly useful in React.Component subclasses that are not\n * able to use hooks. In functional components, we recommend you use the\n * `useNavigate` hook instead.\n *\n * @see https://reactrouter.com/docs/en/v6/api#navigate\n */\n\n\nfunction Navigate(_ref2) {\n let {\n to,\n replace,\n state\n } = _ref2;\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of\n // the router loaded. We can help them understand how to avoid that.\n \" may be used only in the context of a component.\") : invariant(false) : void 0;\n process.env.NODE_ENV !== \"production\" ? warning(!useContext(NavigationContext).static, \" must not be used on the initial render in a . \" + \"This is a no-op, but you should modify your code so the is \" + \"only ever rendered in response to some user interaction or state change.\") : void 0;\n let navigate = useNavigate();\n useEffect(() => {\n navigate(to, {\n replace,\n state\n });\n });\n return null;\n}\n/**\n * Renders the child route's element, if there is one.\n *\n * @see https://reactrouter.com/docs/en/v6/api#outlet\n */\n\n\nfunction Outlet(props) {\n return useOutlet(props.context);\n}\n/**\n * Declares an element that should be rendered at a certain URL path.\n *\n * @see https://reactrouter.com/docs/en/v6/api#route\n */\n\n\nfunction Route(_props) {\n process.env.NODE_ENV !== \"production\" ? invariant(false, \"A is only ever to be used as the child of element, \" + \"never rendered directly. Please wrap your in a .\") : invariant(false);\n}\n/**\n * Provides location context for the rest of the app.\n *\n * Note: You usually won't render a directly. Instead, you'll render a\n * router that is more specific to your environment such as a \n * in web browsers or a for server rendering.\n *\n * @see https://reactrouter.com/docs/en/v6/api#router\n */\n\n\nfunction Router(_ref3) {\n let {\n basename: basenameProp = \"/\",\n children = null,\n location: locationProp,\n navigationType = Action.Pop,\n navigator,\n static: staticProp = false\n } = _ref3;\n !!useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"You cannot render a inside another .\" + \" You should never have more than one in your app.\") : invariant(false) : void 0;\n let basename = normalizePathname(basenameProp);\n let navigationContext = useMemo(() => ({\n basename,\n navigator,\n static: staticProp\n }), [basename, navigator, staticProp]);\n\n if (typeof locationProp === \"string\") {\n locationProp = parsePath(locationProp);\n }\n\n let {\n pathname = \"/\",\n search = \"\",\n hash = \"\",\n state = null,\n key = \"default\"\n } = locationProp;\n let location = useMemo(() => {\n let trailingPathname = stripBasename(pathname, basename);\n\n if (trailingPathname == null) {\n return null;\n }\n\n return {\n pathname: trailingPathname,\n search,\n hash,\n state,\n key\n };\n }, [basename, pathname, search, hash, state, key]);\n process.env.NODE_ENV !== \"production\" ? warning(location != null, \" is not able to match the URL \" + (\"\\\"\" + pathname + search + hash + \"\\\" because it does not start with the \") + \"basename, so the won't render anything.\") : void 0;\n\n if (location == null) {\n return null;\n }\n\n return /*#__PURE__*/createElement(NavigationContext.Provider, {\n value: navigationContext\n }, /*#__PURE__*/createElement(LocationContext.Provider, {\n children: children,\n value: {\n location,\n navigationType\n }\n }));\n}\n/**\n * A container for a nested tree of elements that renders the branch\n * that best matches the current location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#routes\n */\n\n\nfunction Routes(_ref4) {\n let {\n children,\n location\n } = _ref4;\n return useRoutes(createRoutesFromChildren(children), location);\n} ///////////////////////////////////////////////////////////////////////////////\n// UTILS\n///////////////////////////////////////////////////////////////////////////////\n\n/**\n * Creates a route config from a React \"children\" object, which is usually\n * either a `` element or an array of them. Used internally by\n * `` to create a route config from its children.\n *\n * @see https://reactrouter.com/docs/en/v6/api#createroutesfromchildren\n */\n\n\nfunction createRoutesFromChildren(children) {\n let routes = [];\n Children.forEach(children, element => {\n if (! /*#__PURE__*/isValidElement(element)) {\n // Ignore non-elements. This allows people to more easily inline\n // conditionals in their route config.\n return;\n }\n\n if (element.type === Fragment) {\n // Transparently support React.Fragment and its children.\n routes.push.apply(routes, createRoutesFromChildren(element.props.children));\n return;\n }\n\n !(element.type === Route) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"[\" + (typeof element.type === \"string\" ? element.type : element.type.name) + \"] is not a component. All component children of must be a or \") : invariant(false) : void 0;\n let route = {\n caseSensitive: element.props.caseSensitive,\n element: element.props.element,\n index: element.props.index,\n path: element.props.path\n };\n\n if (element.props.children) {\n route.children = createRoutesFromChildren(element.props.children);\n }\n\n routes.push(route);\n });\n return routes;\n}\n/**\n * Renders the result of `matchRoutes()` into a React element.\n */\n\n\nfunction renderMatches(matches) {\n return _renderMatches(matches);\n}\n\nexport { MemoryRouter, Navigate, Outlet, Route, Router, Routes, LocationContext as UNSAFE_LocationContext, NavigationContext as UNSAFE_NavigationContext, RouteContext as UNSAFE_RouteContext, createRoutesFromChildren, generatePath, matchPath, matchRoutes, renderMatches, resolvePath, useHref, useInRouterContext, useLocation, useMatch, useNavigate, useNavigationType, useOutlet, useOutletContext, useParams, useResolvedPath, useRoutes };","map":{"version":3,"mappings":"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","names":["NavigationContext","React","displayName","LocationContext","RouteContext","outlet","matches","invariant","cond","message","Error","warning","console","warn","e","alreadyWarned","warningOnce","key","process","generatePath","path","params","replace","_","matchRoutes","routes","locationArg","basename","location","parsePath","pathname","stripBasename","branches","flattenRoutes","rankRouteBranches","i","length","matchRouteBranch","parentsMeta","parentPath","forEach","route","index","meta","relativePath","caseSensitive","childrenIndex","startsWith","slice","joinPaths","routesMeta","concat","children","push","score","computeScore","sort","a","b","compareIndexes","map","paramRe","dynamicSegmentValue","indexRouteValue","emptySegmentValue","staticSegmentValue","splatPenalty","isSplat","s","segments","split","initialScore","some","filter","reduce","segment","test","siblings","every","n","branch","matchedParams","matchedPathname","end","remainingPathname","match","matchPath","Object","assign","pathnameBase","normalizePathname","pattern","matcher","paramNames","compilePath","captureGroups","memo","paramName","splatValue","safelyDecodeURIComponent","endsWith","regexpSource","RegExp","undefined","value","decodeURIComponent","error","resolvePath","to","fromPathname","toPathname","search","hash","resolvePathname","normalizeSearch","normalizeHash","relativeSegments","pop","join","resolveTo","toArg","routePathnames","locationPathname","from","routePathnameIndex","toSegments","shift","getToPathname","toLowerCase","nextChar","charAt","paths","useHref","useInRouterContext","navigator","useResolvedPath","joinedPathname","endsWithSlash","createHref","useLocation","useNavigationType","navigationType","useMatch","useNavigate","routePathnamesJson","JSON","stringify","activeRef","current","navigate","options","go","parse","state","OutletContext","useOutletContext","useOutlet","context","React.createElement","Provider","useParams","routeMatch","useRoutes","parentMatches","parentParams","parentPathname","parentPathnameBase","parentRoute","locationFromContext","parsedLocationArg","_parsedLocationArg$pa","element","_renderMatches","reduceRight","MemoryRouter","_ref","initialEntries","initialIndex","historyRef","createMemoryHistory","history","setState","action","listen","Router","Navigate","_ref2","static","Outlet","props","Route","_props","_ref3","basenameProp","locationProp","NavigationType","Pop","staticProp","navigationContext","trailingPathname","Routes","_ref4","createRoutesFromChildren","type","apply","name","renderMatches"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/packages/react-router/lib/context.ts","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/packages/react-router/lib/router.ts","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/packages/react-router/lib/hooks.tsx","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/packages/react-router/lib/components.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { History, Location } from \"history\";\nimport { Action as NavigationType } from \"history\";\n\nimport type { RouteMatch } from \"./router\";\n\n/**\n * A Navigator is a \"location changer\"; it's how you get to different locations.\n *\n * Every history instance conforms to the Navigator interface, but the\n * distinction is useful primarily when it comes to the low-level API\n * where both the location and a navigator must be provided separately in order\n * to avoid \"tearing\" that may occur in a suspense-enabled app if the action\n * and/or location were to be read directly from the history instance.\n */\nexport type Navigator = Pick;\n\ninterface NavigationContextObject {\n basename: string;\n navigator: Navigator;\n static: boolean;\n}\n\nexport const NavigationContext = React.createContext(\n null!\n);\n\nif (__DEV__) {\n NavigationContext.displayName = \"Navigation\";\n}\n\ninterface LocationContextObject {\n location: Location;\n navigationType: NavigationType;\n}\n\nexport const LocationContext = React.createContext(\n null!\n);\n\nif (__DEV__) {\n LocationContext.displayName = \"Location\";\n}\n\ninterface RouteContextObject {\n outlet: React.ReactElement | null;\n matches: RouteMatch[];\n}\n\nexport const RouteContext = React.createContext({\n outlet: null,\n matches: [],\n});\n\nif (__DEV__) {\n RouteContext.displayName = \"Route\";\n}\n","import type { Location, Path, To } from \"history\";\nimport { parsePath } from \"history\";\n\nexport function invariant(cond: any, message: string): asserts cond {\n if (!cond) throw new Error(message);\n}\n\nexport function warning(cond: any, message: string): void {\n if (!cond) {\n // eslint-disable-next-line no-console\n if (typeof console !== \"undefined\") console.warn(message);\n\n try {\n // Welcome to debugging React Router!\n //\n // This error is thrown as a convenience so you can more easily\n // find the source for a warning that appears in the console by\n // enabling \"pause on exceptions\" in your JavaScript debugger.\n throw new Error(message);\n // eslint-disable-next-line no-empty\n } catch (e) {}\n }\n}\n\nconst alreadyWarned: Record = {};\nexport function warningOnce(key: string, cond: boolean, message: string) {\n if (!cond && !alreadyWarned[key]) {\n alreadyWarned[key] = true;\n warning(false, message);\n }\n}\n\ntype ParamParseFailed = { failed: true };\n\ntype ParamParseSegment =\n // Check here if there exists a forward slash in the string.\n Segment extends `${infer LeftSegment}/${infer RightSegment}`\n ? // If there is a forward slash, then attempt to parse each side of the\n // forward slash.\n ParamParseSegment extends infer LeftResult\n ? ParamParseSegment extends infer RightResult\n ? LeftResult extends string\n ? // If the left side is successfully parsed as a param, then check if\n // the right side can be successfully parsed as well. If both sides\n // can be parsed, then the result is a union of the two sides\n // (read: \"foo\" | \"bar\").\n RightResult extends string\n ? LeftResult | RightResult\n : LeftResult\n : // If the left side is not successfully parsed as a param, then check\n // if only the right side can be successfully parse as a param. If it\n // can, then the result is just right, else it's a failure.\n RightResult extends string\n ? RightResult\n : ParamParseFailed\n : ParamParseFailed\n : // If the left side didn't parse into a param, then just check the right\n // side.\n ParamParseSegment extends infer RightResult\n ? RightResult extends string\n ? RightResult\n : ParamParseFailed\n : ParamParseFailed\n : // If there's no forward slash, then check if this segment starts with a\n // colon. If it does, then this is a dynamic segment, so the result is\n // just the remainder of the string. Otherwise, it's a failure.\n Segment extends `:${infer Remaining}`\n ? Remaining\n : ParamParseFailed;\n\n// Attempt to parse the given string segment. If it fails, then just return the\n// plain string type as a default fallback. Otherwise return the union of the\n// parsed string literals that were referenced as dynamic segments in the route.\nexport type ParamParseKey =\n ParamParseSegment extends string\n ? ParamParseSegment\n : string;\n\n/**\n * The parameters that were parsed from the URL path.\n */\nexport type Params = {\n readonly [key in Key]: string | undefined;\n};\n\n/**\n * A route object represents a logical route, with (optionally) its child\n * routes organized in a tree-like structure.\n */\nexport interface RouteObject {\n caseSensitive?: boolean;\n children?: RouteObject[];\n element?: React.ReactNode;\n index?: boolean;\n path?: string;\n}\n\n/**\n * Returns a path with params interpolated.\n *\n * @see https://reactrouter.com/docs/en/v6/api#generatepath\n */\nexport function generatePath(path: string, params: Params = {}): string {\n return path\n .replace(/:(\\w+)/g, (_, key) => {\n invariant(params[key] != null, `Missing \":${key}\" param`);\n return params[key]!;\n })\n .replace(/\\/*\\*$/, (_) =>\n params[\"*\"] == null ? \"\" : params[\"*\"].replace(/^\\/*/, \"/\")\n );\n}\n\n/**\n * A RouteMatch contains info about how a route matched a URL.\n */\nexport interface RouteMatch {\n /**\n * The names and values of dynamic parameters in the URL.\n */\n params: Params;\n /**\n * The portion of the URL pathname that was matched.\n */\n pathname: string;\n /**\n * The portion of the URL pathname that was matched before child routes.\n */\n pathnameBase: string;\n /**\n * The route object that was used to match.\n */\n route: RouteObject;\n}\n\n/**\n * Matches the given routes to a location and returns the match data.\n *\n * @see https://reactrouter.com/docs/en/v6/api#matchroutes\n */\nexport function matchRoutes(\n routes: RouteObject[],\n locationArg: Partial | string,\n basename = \"/\"\n): RouteMatch[] | null {\n let location =\n typeof locationArg === \"string\" ? parsePath(locationArg) : locationArg;\n\n let pathname = stripBasename(location.pathname || \"/\", basename);\n\n if (pathname == null) {\n return null;\n }\n\n let branches = flattenRoutes(routes);\n rankRouteBranches(branches);\n\n let matches = null;\n for (let i = 0; matches == null && i < branches.length; ++i) {\n matches = matchRouteBranch(branches[i], pathname);\n }\n\n return matches;\n}\n\ninterface RouteMeta {\n relativePath: string;\n caseSensitive: boolean;\n childrenIndex: number;\n route: RouteObject;\n}\n\ninterface RouteBranch {\n path: string;\n score: number;\n routesMeta: RouteMeta[];\n}\n\nfunction flattenRoutes(\n routes: RouteObject[],\n branches: RouteBranch[] = [],\n parentsMeta: RouteMeta[] = [],\n parentPath = \"\"\n): RouteBranch[] {\n routes.forEach((route, index) => {\n let meta: RouteMeta = {\n relativePath: route.path || \"\",\n caseSensitive: route.caseSensitive === true,\n childrenIndex: index,\n route,\n };\n\n if (meta.relativePath.startsWith(\"/\")) {\n invariant(\n meta.relativePath.startsWith(parentPath),\n `Absolute route path \"${meta.relativePath}\" nested under path ` +\n `\"${parentPath}\" is not valid. An absolute child route path ` +\n `must start with the combined path of all its parent routes.`\n );\n\n meta.relativePath = meta.relativePath.slice(parentPath.length);\n }\n\n let path = joinPaths([parentPath, meta.relativePath]);\n let routesMeta = parentsMeta.concat(meta);\n\n // Add the children before adding this route to the array so we traverse the\n // route tree depth-first and child routes appear before their parents in\n // the \"flattened\" version.\n if (route.children && route.children.length > 0) {\n invariant(\n route.index !== true,\n `Index routes must not have child routes. Please remove ` +\n `all child routes from route path \"${path}\".`\n );\n\n flattenRoutes(route.children, branches, routesMeta, path);\n }\n\n // Routes without a path shouldn't ever match by themselves unless they are\n // index routes, so don't add them to the list of possible branches.\n if (route.path == null && !route.index) {\n return;\n }\n\n branches.push({ path, score: computeScore(path, route.index), routesMeta });\n });\n\n return branches;\n}\n\nfunction rankRouteBranches(branches: RouteBranch[]): void {\n branches.sort((a, b) =>\n a.score !== b.score\n ? b.score - a.score // Higher score first\n : compareIndexes(\n a.routesMeta.map((meta) => meta.childrenIndex),\n b.routesMeta.map((meta) => meta.childrenIndex)\n )\n );\n}\n\nconst paramRe = /^:\\w+$/;\nconst dynamicSegmentValue = 3;\nconst indexRouteValue = 2;\nconst emptySegmentValue = 1;\nconst staticSegmentValue = 10;\nconst splatPenalty = -2;\nconst isSplat = (s: string) => s === \"*\";\n\nfunction computeScore(path: string, index: boolean | undefined): number {\n let segments = path.split(\"/\");\n let initialScore = segments.length;\n if (segments.some(isSplat)) {\n initialScore += splatPenalty;\n }\n\n if (index) {\n initialScore += indexRouteValue;\n }\n\n return segments\n .filter((s) => !isSplat(s))\n .reduce(\n (score, segment) =>\n score +\n (paramRe.test(segment)\n ? dynamicSegmentValue\n : segment === \"\"\n ? emptySegmentValue\n : staticSegmentValue),\n initialScore\n );\n}\n\nfunction compareIndexes(a: number[], b: number[]): number {\n let siblings =\n a.length === b.length && a.slice(0, -1).every((n, i) => n === b[i]);\n\n return siblings\n ? // If two routes are siblings, we should try to match the earlier sibling\n // first. This allows people to have fine-grained control over the matching\n // behavior by simply putting routes with identical paths in the order they\n // want them tried.\n a[a.length - 1] - b[b.length - 1]\n : // Otherwise, it doesn't really make sense to rank non-siblings by index,\n // so they sort equally.\n 0;\n}\n\nfunction matchRouteBranch(\n branch: RouteBranch,\n pathname: string\n): RouteMatch[] | null {\n let { routesMeta } = branch;\n\n let matchedParams = {};\n let matchedPathname = \"/\";\n let matches: RouteMatch[] = [];\n for (let i = 0; i < routesMeta.length; ++i) {\n let meta = routesMeta[i];\n let end = i === routesMeta.length - 1;\n let remainingPathname =\n matchedPathname === \"/\"\n ? pathname\n : pathname.slice(matchedPathname.length) || \"/\";\n let match = matchPath(\n { path: meta.relativePath, caseSensitive: meta.caseSensitive, end },\n remainingPathname\n );\n\n if (!match) return null;\n\n Object.assign(matchedParams, match.params);\n\n let route = meta.route;\n\n matches.push({\n params: matchedParams,\n pathname: joinPaths([matchedPathname, match.pathname]),\n pathnameBase: normalizePathname(\n joinPaths([matchedPathname, match.pathnameBase])\n ),\n route,\n });\n\n if (match.pathnameBase !== \"/\") {\n matchedPathname = joinPaths([matchedPathname, match.pathnameBase]);\n }\n }\n\n return matches;\n}\n\n/**\n * A PathPattern is used to match on some portion of a URL pathname.\n */\nexport interface PathPattern {\n /**\n * A string to match against a URL pathname. May contain `:id`-style segments\n * to indicate placeholders for dynamic parameters. May also end with `/*` to\n * indicate matching the rest of the URL pathname.\n */\n path: Path;\n /**\n * Should be `true` if the static portions of the `path` should be matched in\n * the same case.\n */\n caseSensitive?: boolean;\n /**\n * Should be `true` if this pattern should match the entire URL pathname.\n */\n end?: boolean;\n}\n\n/**\n * A PathMatch contains info about how a PathPattern matched on a URL pathname.\n */\nexport interface PathMatch {\n /**\n * The names and values of dynamic parameters in the URL.\n */\n params: Params;\n /**\n * The portion of the URL pathname that was matched.\n */\n pathname: string;\n /**\n * The portion of the URL pathname that was matched before child routes.\n */\n pathnameBase: string;\n /**\n * The pattern that was used to match.\n */\n pattern: PathPattern;\n}\n\ntype Mutable = {\n -readonly [P in keyof T]: T[P];\n};\n\n/**\n * Performs pattern matching on a URL pathname and returns information about\n * the match.\n *\n * @see https://reactrouter.com/docs/en/v6/api#matchpath\n */\nexport function matchPath<\n ParamKey extends ParamParseKey,\n Path extends string\n>(\n pattern: PathPattern | Path,\n pathname: string\n): PathMatch | null {\n if (typeof pattern === \"string\") {\n pattern = { path: pattern, caseSensitive: false, end: true };\n }\n\n let [matcher, paramNames] = compilePath(\n pattern.path,\n pattern.caseSensitive,\n pattern.end\n );\n\n let match = pathname.match(matcher);\n if (!match) return null;\n\n let matchedPathname = match[0];\n let pathnameBase = matchedPathname.replace(/(.)\\/+$/, \"$1\");\n let captureGroups = match.slice(1);\n let params: Params = paramNames.reduce>(\n (memo, paramName, index) => {\n // We need to compute the pathnameBase here using the raw splat value\n // instead of using params[\"*\"] later because it will be decoded then\n if (paramName === \"*\") {\n let splatValue = captureGroups[index] || \"\";\n pathnameBase = matchedPathname\n .slice(0, matchedPathname.length - splatValue.length)\n .replace(/(.)\\/+$/, \"$1\");\n }\n\n memo[paramName] = safelyDecodeURIComponent(\n captureGroups[index] || \"\",\n paramName\n );\n return memo;\n },\n {}\n );\n\n return {\n params,\n pathname: matchedPathname,\n pathnameBase,\n pattern,\n };\n}\n\nfunction compilePath(\n path: string,\n caseSensitive = false,\n end = true\n): [RegExp, string[]] {\n warning(\n path === \"*\" || !path.endsWith(\"*\") || path.endsWith(\"/*\"),\n `Route path \"${path}\" will be treated as if it were ` +\n `\"${path.replace(/\\*$/, \"/*\")}\" because the \\`*\\` character must ` +\n `always follow a \\`/\\` in the pattern. To get rid of this warning, ` +\n `please change the route path to \"${path.replace(/\\*$/, \"/*\")}\".`\n );\n\n let paramNames: string[] = [];\n let regexpSource =\n \"^\" +\n path\n .replace(/\\/*\\*?$/, \"\") // Ignore trailing / and /*, we'll handle it below\n .replace(/^\\/*/, \"/\") // Make sure it has a leading /\n .replace(/[\\\\.*+^$?{}|()[\\]]/g, \"\\\\$&\") // Escape special regex chars\n .replace(/:(\\w+)/g, (_: string, paramName: string) => {\n paramNames.push(paramName);\n return \"([^\\\\/]+)\";\n });\n\n if (path.endsWith(\"*\")) {\n paramNames.push(\"*\");\n regexpSource +=\n path === \"*\" || path === \"/*\"\n ? \"(.*)$\" // Already matched the initial /, just match the rest\n : \"(?:\\\\/(.+)|\\\\/*)$\"; // Don't include the / in params[\"*\"]\n } else {\n regexpSource += end\n ? \"\\\\/*$\" // When matching to the end, ignore trailing slashes\n : // Otherwise, match a word boundary or a proceeding /. The word boundary restricts\n // parent routes to matching only their own words and nothing more, e.g. parent\n // route \"/home\" should not match \"/home2\".\n // Additionally, allow paths starting with `.`, `-`, `~`, and url-encoded entities,\n // but do not consume the character in the matched path so they can match against\n // nested paths.\n \"(?:(?=[.~-]|%[0-9A-F]{2})|\\\\b|\\\\/|$)\";\n }\n\n let matcher = new RegExp(regexpSource, caseSensitive ? undefined : \"i\");\n\n return [matcher, paramNames];\n}\n\nfunction safelyDecodeURIComponent(value: string, paramName: string) {\n try {\n return decodeURIComponent(value);\n } catch (error) {\n warning(\n false,\n `The value for the URL param \"${paramName}\" will not be decoded because` +\n ` the string \"${value}\" is a malformed URL segment. This is probably` +\n ` due to a bad percent encoding (${error}).`\n );\n\n return value;\n }\n}\n\n/**\n * Returns a resolved path object relative to the given pathname.\n *\n * @see https://reactrouter.com/docs/en/v6/api#resolvepath\n */\nexport function resolvePath(to: To, fromPathname = \"/\"): Path {\n let {\n pathname: toPathname,\n search = \"\",\n hash = \"\",\n } = typeof to === \"string\" ? parsePath(to) : to;\n\n let pathname = toPathname\n ? toPathname.startsWith(\"/\")\n ? toPathname\n : resolvePathname(toPathname, fromPathname)\n : fromPathname;\n\n return {\n pathname,\n search: normalizeSearch(search),\n hash: normalizeHash(hash),\n };\n}\n\nfunction resolvePathname(relativePath: string, fromPathname: string): string {\n let segments = fromPathname.replace(/\\/+$/, \"\").split(\"/\");\n let relativeSegments = relativePath.split(\"/\");\n\n relativeSegments.forEach((segment) => {\n if (segment === \"..\") {\n // Keep the root \"\" segment so the pathname starts at /\n if (segments.length > 1) segments.pop();\n } else if (segment !== \".\") {\n segments.push(segment);\n }\n });\n\n return segments.length > 1 ? segments.join(\"/\") : \"/\";\n}\n\nexport function resolveTo(\n toArg: To,\n routePathnames: string[],\n locationPathname: string\n): Path {\n let to = typeof toArg === \"string\" ? parsePath(toArg) : toArg;\n let toPathname = toArg === \"\" || to.pathname === \"\" ? \"/\" : to.pathname;\n\n // If a pathname is explicitly provided in `to`, it should be relative to the\n // route context. This is explained in `Note on `` values` in our\n // migration guide from v5 as a means of disambiguation between `to` values\n // that begin with `/` and those that do not. However, this is problematic for\n // `to` values that do not provide a pathname. `to` can simply be a search or\n // hash string, in which case we should assume that the navigation is relative\n // to the current location's pathname and *not* the route pathname.\n let from: string;\n if (toPathname == null) {\n from = locationPathname;\n } else {\n let routePathnameIndex = routePathnames.length - 1;\n\n if (toPathname.startsWith(\"..\")) {\n let toSegments = toPathname.split(\"/\");\n\n // Each leading .. segment means \"go up one route\" instead of \"go up one\n // URL segment\". This is a key difference from how works and a\n // major reason we call this a \"to\" value instead of a \"href\".\n while (toSegments[0] === \"..\") {\n toSegments.shift();\n routePathnameIndex -= 1;\n }\n\n to.pathname = toSegments.join(\"/\");\n }\n\n // If there are more \"..\" segments than parent routes, resolve relative to\n // the root / URL.\n from = routePathnameIndex >= 0 ? routePathnames[routePathnameIndex] : \"/\";\n }\n\n let path = resolvePath(to, from);\n\n // Ensure the pathname has a trailing slash if the original to value had one.\n if (\n toPathname &&\n toPathname !== \"/\" &&\n toPathname.endsWith(\"/\") &&\n !path.pathname.endsWith(\"/\")\n ) {\n path.pathname += \"/\";\n }\n\n return path;\n}\n\nexport function getToPathname(to: To): string | undefined {\n // Empty strings should be treated the same as / paths\n return to === \"\" || (to as Path).pathname === \"\"\n ? \"/\"\n : typeof to === \"string\"\n ? parsePath(to).pathname\n : to.pathname;\n}\n\nexport function stripBasename(\n pathname: string,\n basename: string\n): string | null {\n if (basename === \"/\") return pathname;\n\n if (!pathname.toLowerCase().startsWith(basename.toLowerCase())) {\n return null;\n }\n\n let nextChar = pathname.charAt(basename.length);\n if (nextChar && nextChar !== \"/\") {\n // pathname does not start with basename/\n return null;\n }\n\n return pathname.slice(basename.length) || \"/\";\n}\n\nexport const joinPaths = (paths: string[]): string =>\n paths.join(\"/\").replace(/\\/\\/+/g, \"/\");\n\nexport const normalizePathname = (pathname: string): string =>\n pathname.replace(/\\/+$/, \"\").replace(/^\\/*/, \"/\");\n\nconst normalizeSearch = (search: string): string =>\n !search || search === \"?\"\n ? \"\"\n : search.startsWith(\"?\")\n ? search\n : \"?\" + search;\n\nconst normalizeHash = (hash: string): string =>\n !hash || hash === \"#\" ? \"\" : hash.startsWith(\"#\") ? hash : \"#\" + hash;\n","import * as React from \"react\";\nimport type { Location, Path, To } from \"history\";\nimport { Action as NavigationType, parsePath } from \"history\";\n\nimport { LocationContext, NavigationContext, RouteContext } from \"./context\";\nimport type {\n ParamParseKey,\n Params,\n PathMatch,\n PathPattern,\n RouteMatch,\n RouteObject,\n} from \"./router\";\nimport {\n getToPathname,\n invariant,\n joinPaths,\n matchPath,\n matchRoutes,\n resolveTo,\n warning,\n warningOnce,\n} from \"./router\";\n\n/**\n * Returns the full href for the given \"to\" value. This is useful for building\n * custom links that are also accessible and preserve right-click behavior.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usehref\n */\nexport function useHref(to: To): string {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useHref() may be used only in the context of a component.`\n );\n\n let { basename, navigator } = React.useContext(NavigationContext);\n let { hash, pathname, search } = useResolvedPath(to);\n\n let joinedPathname = pathname;\n if (basename !== \"/\") {\n let toPathname = getToPathname(to);\n let endsWithSlash = toPathname != null && toPathname.endsWith(\"/\");\n joinedPathname =\n pathname === \"/\"\n ? basename + (endsWithSlash ? \"/\" : \"\")\n : joinPaths([basename, pathname]);\n }\n\n return navigator.createHref({ pathname: joinedPathname, search, hash });\n}\n\n/**\n * Returns true if this component is a descendant of a .\n *\n * @see https://reactrouter.com/docs/en/v6/api#useinroutercontext\n */\nexport function useInRouterContext(): boolean {\n return React.useContext(LocationContext) != null;\n}\n\n/**\n * Returns the current location object, which represents the current URL in web\n * browsers.\n *\n * Note: If you're using this it may mean you're doing some of your own\n * \"routing\" in your app, and we'd like to know what your use case is. We may\n * be able to provide something higher-level to better suit your needs.\n *\n * @see https://reactrouter.com/docs/en/v6/api#uselocation\n */\nexport function useLocation(): Location {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useLocation() may be used only in the context of a component.`\n );\n\n return React.useContext(LocationContext).location;\n}\n\n/**\n * Returns the current navigation action which describes how the router came to\n * the current location, either by a pop, push, or replace on the history stack.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usenavigationtype\n */\nexport function useNavigationType(): NavigationType {\n return React.useContext(LocationContext).navigationType;\n}\n\n/**\n * Returns true if the URL for the given \"to\" value matches the current URL.\n * This is useful for components that need to know \"active\" state, e.g.\n * .\n *\n * @see https://reactrouter.com/docs/en/v6/api#usematch\n */\nexport function useMatch<\n ParamKey extends ParamParseKey,\n Path extends string\n>(pattern: PathPattern | Path): PathMatch | null {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useMatch() may be used only in the context of a component.`\n );\n\n let { pathname } = useLocation();\n return React.useMemo(\n () => matchPath(pattern, pathname),\n [pathname, pattern]\n );\n}\n\n/**\n * The interface for the navigate() function returned from useNavigate().\n */\nexport interface NavigateFunction {\n (to: To, options?: NavigateOptions): void;\n (delta: number): void;\n}\n\nexport interface NavigateOptions {\n replace?: boolean;\n state?: any;\n}\n\n/**\n * Returns an imperative method for changing the location. Used by s, but\n * may also be used by other elements to change the location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usenavigate\n */\nexport function useNavigate(): NavigateFunction {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useNavigate() may be used only in the context of a component.`\n );\n\n let { basename, navigator } = React.useContext(NavigationContext);\n let { matches } = React.useContext(RouteContext);\n let { pathname: locationPathname } = useLocation();\n\n let routePathnamesJson = JSON.stringify(\n matches.map((match) => match.pathnameBase)\n );\n\n let activeRef = React.useRef(false);\n React.useEffect(() => {\n activeRef.current = true;\n });\n\n let navigate: NavigateFunction = React.useCallback(\n (to: To | number, options: NavigateOptions = {}) => {\n warning(\n activeRef.current,\n `You should call navigate() in a React.useEffect(), not when ` +\n `your component is first rendered.`\n );\n\n if (!activeRef.current) return;\n\n if (typeof to === \"number\") {\n navigator.go(to);\n return;\n }\n\n let path = resolveTo(\n to,\n JSON.parse(routePathnamesJson),\n locationPathname\n );\n\n if (basename !== \"/\") {\n path.pathname = joinPaths([basename, path.pathname]);\n }\n\n (!!options.replace ? navigator.replace : navigator.push)(\n path,\n options.state\n );\n },\n [basename, navigator, routePathnamesJson, locationPathname]\n );\n\n return navigate;\n}\n\nconst OutletContext = React.createContext(null);\n\n/**\n * Returns the context (if provided) for the child route at this level of the route\n * hierarchy.\n * @see https://reactrouter.com/docs/en/v6/api#useoutletcontext\n */\nexport function useOutletContext(): Context {\n return React.useContext(OutletContext) as Context;\n}\n\n/**\n * Returns the element for the child route at this level of the route\n * hierarchy. Used internally by to render child routes.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useoutlet\n */\nexport function useOutlet(context?: unknown): React.ReactElement | null {\n let outlet = React.useContext(RouteContext).outlet;\n if (outlet) {\n return (\n {outlet}\n );\n }\n return outlet;\n}\n\n/**\n * Returns an object of key/value pairs of the dynamic params from the current\n * URL that were matched by the route path.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useparams\n */\nexport function useParams<\n ParamsOrKey extends string | Record = string\n>(): Readonly<\n [ParamsOrKey] extends [string] ? Params : Partial\n> {\n let { matches } = React.useContext(RouteContext);\n let routeMatch = matches[matches.length - 1];\n return routeMatch ? (routeMatch.params as any) : {};\n}\n\n/**\n * Resolves the pathname of the given `to` value against the current location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useresolvedpath\n */\nexport function useResolvedPath(to: To): Path {\n let { matches } = React.useContext(RouteContext);\n let { pathname: locationPathname } = useLocation();\n\n let routePathnamesJson = JSON.stringify(\n matches.map((match) => match.pathnameBase)\n );\n\n return React.useMemo(\n () => resolveTo(to, JSON.parse(routePathnamesJson), locationPathname),\n [to, routePathnamesJson, locationPathname]\n );\n}\n\n/**\n * Returns the element of the route that matched the current location, prepared\n * with the correct context to render the remainder of the route tree. Route\n * elements in the tree must render an to render their child route's\n * element.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useroutes\n */\nexport function useRoutes(\n routes: RouteObject[],\n locationArg?: Partial | string\n): React.ReactElement | null {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useRoutes() may be used only in the context of a component.`\n );\n\n let { matches: parentMatches } = React.useContext(RouteContext);\n let routeMatch = parentMatches[parentMatches.length - 1];\n let parentParams = routeMatch ? routeMatch.params : {};\n let parentPathname = routeMatch ? routeMatch.pathname : \"/\";\n let parentPathnameBase = routeMatch ? routeMatch.pathnameBase : \"/\";\n let parentRoute = routeMatch && routeMatch.route;\n\n if (__DEV__) {\n // You won't get a warning about 2 different under a \n // without a trailing *, but this is a best-effort warning anyway since we\n // cannot even give the warning unless they land at the parent route.\n //\n // Example:\n //\n // \n // {/* This route path MUST end with /* because otherwise\n // it will never match /blog/post/123 */}\n // } />\n // } />\n // \n //\n // function Blog() {\n // return (\n // \n // } />\n // \n // );\n // }\n let parentPath = (parentRoute && parentRoute.path) || \"\";\n warningOnce(\n parentPathname,\n !parentRoute || parentPath.endsWith(\"*\"),\n `You rendered descendant (or called \\`useRoutes()\\`) at ` +\n `\"${parentPathname}\" (under ) but the ` +\n `parent route path has no trailing \"*\". This means if you navigate ` +\n `deeper, the parent won't match anymore and therefore the child ` +\n `routes will never render.\\n\\n` +\n `Please change the parent to .`\n );\n }\n\n let locationFromContext = useLocation();\n\n let location;\n if (locationArg) {\n let parsedLocationArg =\n typeof locationArg === \"string\" ? parsePath(locationArg) : locationArg;\n\n invariant(\n parentPathnameBase === \"/\" ||\n parsedLocationArg.pathname?.startsWith(parentPathnameBase),\n `When overriding the location using \\`\\` or \\`useRoutes(routes, location)\\`, ` +\n `the location pathname must begin with the portion of the URL pathname that was ` +\n `matched by all parent routes. The current pathname base is \"${parentPathnameBase}\" ` +\n `but pathname \"${parsedLocationArg.pathname}\" was given in the \\`location\\` prop.`\n );\n\n location = parsedLocationArg;\n } else {\n location = locationFromContext;\n }\n\n let pathname = location.pathname || \"/\";\n let remainingPathname =\n parentPathnameBase === \"/\"\n ? pathname\n : pathname.slice(parentPathnameBase.length) || \"/\";\n let matches = matchRoutes(routes, { pathname: remainingPathname });\n\n if (__DEV__) {\n warning(\n parentRoute || matches != null,\n `No routes matched location \"${location.pathname}${location.search}${location.hash}\" `\n );\n\n warning(\n matches == null ||\n matches[matches.length - 1].route.element !== undefined,\n `Matched leaf route at location \"${location.pathname}${location.search}${location.hash}\" does not have an element. ` +\n `This means it will render an with a null value by default resulting in an \"empty\" page.`\n );\n }\n\n return _renderMatches(\n matches &&\n matches.map((match) =>\n Object.assign({}, match, {\n params: Object.assign({}, parentParams, match.params),\n pathname: joinPaths([parentPathnameBase, match.pathname]),\n pathnameBase:\n match.pathnameBase === \"/\"\n ? parentPathnameBase\n : joinPaths([parentPathnameBase, match.pathnameBase]),\n })\n ),\n parentMatches\n );\n}\n\nexport function _renderMatches(\n matches: RouteMatch[] | null,\n parentMatches: RouteMatch[] = []\n): React.ReactElement | null {\n if (matches == null) return null;\n\n return matches.reduceRight((outlet, match, index) => {\n return (\n \n );\n }, null as React.ReactElement | null);\n}\n","import * as React from \"react\";\nimport type { InitialEntry, Location, MemoryHistory, To } from \"history\";\nimport {\n Action as NavigationType,\n createMemoryHistory,\n parsePath,\n} from \"history\";\n\nimport { LocationContext, NavigationContext, Navigator } from \"./context\";\nimport {\n useInRouterContext,\n useNavigate,\n useOutlet,\n useRoutes,\n _renderMatches,\n} from \"./hooks\";\nimport type { RouteMatch, RouteObject } from \"./router\";\nimport { invariant, normalizePathname, stripBasename, warning } from \"./router\";\n\nexport interface MemoryRouterProps {\n basename?: string;\n children?: React.ReactNode;\n initialEntries?: InitialEntry[];\n initialIndex?: number;\n}\n\n/**\n * A that stores all entries in memory.\n *\n * @see https://reactrouter.com/docs/en/v6/api#memoryrouter\n */\nexport function MemoryRouter({\n basename,\n children,\n initialEntries,\n initialIndex,\n}: MemoryRouterProps): React.ReactElement {\n let historyRef = React.useRef();\n if (historyRef.current == null) {\n historyRef.current = createMemoryHistory({ initialEntries, initialIndex });\n }\n\n let history = historyRef.current;\n let [state, setState] = React.useState({\n action: history.action,\n location: history.location,\n });\n\n React.useLayoutEffect(() => history.listen(setState), [history]);\n\n return (\n \n );\n}\n\nexport interface NavigateProps {\n to: To;\n replace?: boolean;\n state?: any;\n}\n\n/**\n * Changes the current location.\n *\n * Note: This API is mostly useful in React.Component subclasses that are not\n * able to use hooks. In functional components, we recommend you use the\n * `useNavigate` hook instead.\n *\n * @see https://reactrouter.com/docs/en/v6/api#navigate\n */\nexport function Navigate({ to, replace, state }: NavigateProps): null {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of\n // the router loaded. We can help them understand how to avoid that.\n ` may be used only in the context of a component.`\n );\n\n warning(\n !React.useContext(NavigationContext).static,\n ` must not be used on the initial render in a . ` +\n `This is a no-op, but you should modify your code so the is ` +\n `only ever rendered in response to some user interaction or state change.`\n );\n\n let navigate = useNavigate();\n React.useEffect(() => {\n navigate(to, { replace, state });\n });\n\n return null;\n}\n\nexport interface OutletProps {\n context?: unknown;\n}\n\n/**\n * Renders the child route's element, if there is one.\n *\n * @see https://reactrouter.com/docs/en/v6/api#outlet\n */\nexport function Outlet(props: OutletProps): React.ReactElement | null {\n return useOutlet(props.context);\n}\n\nexport interface RouteProps {\n caseSensitive?: boolean;\n children?: React.ReactNode;\n element?: React.ReactNode | null;\n index?: boolean;\n path?: string;\n}\n\nexport interface PathRouteProps {\n caseSensitive?: boolean;\n children?: React.ReactNode;\n element?: React.ReactNode | null;\n index?: false;\n path: string;\n}\n\nexport interface LayoutRouteProps {\n children?: React.ReactNode;\n element?: React.ReactNode | null;\n}\n\nexport interface IndexRouteProps {\n element?: React.ReactNode | null;\n index: true;\n}\n\n/**\n * Declares an element that should be rendered at a certain URL path.\n *\n * @see https://reactrouter.com/docs/en/v6/api#route\n */\nexport function Route(\n _props: PathRouteProps | LayoutRouteProps | IndexRouteProps\n): React.ReactElement | null {\n invariant(\n false,\n `A is only ever to be used as the child of element, ` +\n `never rendered directly. Please wrap your in a .`\n );\n}\n\nexport interface RouterProps {\n basename?: string;\n children?: React.ReactNode;\n location: Partial | string;\n navigationType?: NavigationType;\n navigator: Navigator;\n static?: boolean;\n}\n\n/**\n * Provides location context for the rest of the app.\n *\n * Note: You usually won't render a directly. Instead, you'll render a\n * router that is more specific to your environment such as a \n * in web browsers or a for server rendering.\n *\n * @see https://reactrouter.com/docs/en/v6/api#router\n */\nexport function Router({\n basename: basenameProp = \"/\",\n children = null,\n location: locationProp,\n navigationType = NavigationType.Pop,\n navigator,\n static: staticProp = false,\n}: RouterProps): React.ReactElement | null {\n invariant(\n !useInRouterContext(),\n `You cannot render a inside another .` +\n ` You should never have more than one in your app.`\n );\n\n let basename = normalizePathname(basenameProp);\n let navigationContext = React.useMemo(\n () => ({ basename, navigator, static: staticProp }),\n [basename, navigator, staticProp]\n );\n\n if (typeof locationProp === \"string\") {\n locationProp = parsePath(locationProp);\n }\n\n let {\n pathname = \"/\",\n search = \"\",\n hash = \"\",\n state = null,\n key = \"default\",\n } = locationProp;\n\n let location = React.useMemo(() => {\n let trailingPathname = stripBasename(pathname, basename);\n\n if (trailingPathname == null) {\n return null;\n }\n\n return {\n pathname: trailingPathname,\n search,\n hash,\n state,\n key,\n };\n }, [basename, pathname, search, hash, state, key]);\n\n warning(\n location != null,\n ` is not able to match the URL ` +\n `\"${pathname}${search}${hash}\" because it does not start with the ` +\n `basename, so the won't render anything.`\n );\n\n if (location == null) {\n return null;\n }\n\n return (\n \n \n \n );\n}\n\nexport interface RoutesProps {\n children?: React.ReactNode;\n location?: Partial | string;\n}\n\n/**\n * A container for a nested tree of elements that renders the branch\n * that best matches the current location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#routes\n */\nexport function Routes({\n children,\n location,\n}: RoutesProps): React.ReactElement | null {\n return useRoutes(createRoutesFromChildren(children), location);\n}\n\n///////////////////////////////////////////////////////////////////////////////\n// UTILS\n///////////////////////////////////////////////////////////////////////////////\n\n/**\n * Creates a route config from a React \"children\" object, which is usually\n * either a `` element or an array of them. Used internally by\n * `` to create a route config from its children.\n *\n * @see https://reactrouter.com/docs/en/v6/api#createroutesfromchildren\n */\nexport function createRoutesFromChildren(\n children: React.ReactNode\n): RouteObject[] {\n let routes: RouteObject[] = [];\n\n React.Children.forEach(children, (element) => {\n if (!React.isValidElement(element)) {\n // Ignore non-elements. This allows people to more easily inline\n // conditionals in their route config.\n return;\n }\n\n if (element.type === React.Fragment) {\n // Transparently support React.Fragment and its children.\n routes.push.apply(\n routes,\n createRoutesFromChildren(element.props.children)\n );\n return;\n }\n\n invariant(\n element.type === Route,\n `[${\n typeof element.type === \"string\" ? element.type : element.type.name\n }] is not a component. All component children of must be a or `\n );\n\n let route: RouteObject = {\n caseSensitive: element.props.caseSensitive,\n element: element.props.element,\n index: element.props.index,\n path: element.props.path,\n };\n\n if (element.props.children) {\n route.children = createRoutesFromChildren(element.props.children);\n }\n\n routes.push(route);\n });\n\n return routes;\n}\n\n/**\n * Renders the result of `matchRoutes()` into a React element.\n */\nexport function renderMatches(\n matches: RouteMatch[] | null\n): React.ReactElement | null {\n return _renderMatches(matches);\n}\n"]},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/031a879f42b5515134c7540321ea5dc1.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/031a879f42b5515134c7540321ea5dc1.json deleted file mode 100644 index 6c684537..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/031a879f42b5515134c7540321ea5dc1.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nvar warning = function () {};\n\nif (__DEV__) {\n var printWarning = function printWarning(format, args) {\n var len = arguments.length;\n args = new Array(len > 1 ? len - 1 : 0);\n\n for (var key = 1; key < len; key++) {\n args[key - 1] = arguments[key];\n }\n\n var argIndex = 0;\n var message = 'Warning: ' + format.replace(/%s/g, function () {\n return args[argIndex++];\n });\n\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n };\n\n warning = function (condition, format, args) {\n var len = arguments.length;\n args = new Array(len > 2 ? len - 2 : 0);\n\n for (var key = 2; key < len; key++) {\n args[key - 2] = arguments[key];\n }\n\n if (format === undefined) {\n throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'message argument');\n }\n\n if (!condition) {\n printWarning.apply(null, [format].concat(args));\n }\n };\n}\n\nmodule.exports = warning;","map":{"version":3,"names":["__DEV__","process","env","NODE_ENV","warning","printWarning","format","args","len","arguments","length","Array","key","argIndex","message","replace","console","error","Error","x","condition","undefined","apply","concat","module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/warning/warning.js"],"sourcesContent":["/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nvar warning = function() {};\n\nif (__DEV__) {\n var printWarning = function printWarning(format, args) {\n var len = arguments.length;\n args = new Array(len > 1 ? len - 1 : 0);\n for (var key = 1; key < len; key++) {\n args[key - 1] = arguments[key];\n }\n var argIndex = 0;\n var message = 'Warning: ' +\n format.replace(/%s/g, function() {\n return args[argIndex++];\n });\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n }\n\n warning = function(condition, format, args) {\n var len = arguments.length;\n args = new Array(len > 2 ? len - 2 : 0);\n for (var key = 2; key < len; key++) {\n args[key - 2] = arguments[key];\n }\n if (format === undefined) {\n throw new Error(\n '`warning(condition, format, ...args)` requires a warning ' +\n 'message argument'\n );\n }\n if (!condition) {\n printWarning.apply(null, [format].concat(args));\n }\n };\n}\n\nmodule.exports = warning;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AAEA;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,IAAIA,OAAO,GAAGC,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAvC;;AAEA,IAAIC,OAAO,GAAG,YAAW,CAAE,CAA3B;;AAEA,IAAIJ,OAAJ,EAAa;EACX,IAAIK,YAAY,GAAG,SAASA,YAAT,CAAsBC,MAAtB,EAA8BC,IAA9B,EAAoC;IACrD,IAAIC,GAAG,GAAGC,SAAS,CAACC,MAApB;IACAH,IAAI,GAAG,IAAII,KAAJ,CAAUH,GAAG,GAAG,CAAN,GAAUA,GAAG,GAAG,CAAhB,GAAoB,CAA9B,CAAP;;IACA,KAAK,IAAII,GAAG,GAAG,CAAf,EAAkBA,GAAG,GAAGJ,GAAxB,EAA6BI,GAAG,EAAhC,EAAoC;MAClCL,IAAI,CAACK,GAAG,GAAG,CAAP,CAAJ,GAAgBH,SAAS,CAACG,GAAD,CAAzB;IACD;;IACD,IAAIC,QAAQ,GAAG,CAAf;IACA,IAAIC,OAAO,GAAG,cACZR,MAAM,CAACS,OAAP,CAAe,KAAf,EAAsB,YAAW;MAC/B,OAAOR,IAAI,CAACM,QAAQ,EAAT,CAAX;IACD,CAFD,CADF;;IAIA,IAAI,OAAOG,OAAP,KAAmB,WAAvB,EAAoC;MAClCA,OAAO,CAACC,KAAR,CAAcH,OAAd;IACD;;IACD,IAAI;MACF;MACA;MACA;MACA,MAAM,IAAII,KAAJ,CAAUJ,OAAV,CAAN;IACD,CALD,CAKE,OAAOK,CAAP,EAAU,CAAE;EACf,CApBD;;EAsBAf,OAAO,GAAG,UAASgB,SAAT,EAAoBd,MAApB,EAA4BC,IAA5B,EAAkC;IAC1C,IAAIC,GAAG,GAAGC,SAAS,CAACC,MAApB;IACAH,IAAI,GAAG,IAAII,KAAJ,CAAUH,GAAG,GAAG,CAAN,GAAUA,GAAG,GAAG,CAAhB,GAAoB,CAA9B,CAAP;;IACA,KAAK,IAAII,GAAG,GAAG,CAAf,EAAkBA,GAAG,GAAGJ,GAAxB,EAA6BI,GAAG,EAAhC,EAAoC;MAClCL,IAAI,CAACK,GAAG,GAAG,CAAP,CAAJ,GAAgBH,SAAS,CAACG,GAAD,CAAzB;IACD;;IACD,IAAIN,MAAM,KAAKe,SAAf,EAA0B;MACxB,MAAM,IAAIH,KAAJ,CACF,8DACA,kBAFE,CAAN;IAID;;IACD,IAAI,CAACE,SAAL,EAAgB;MACdf,YAAY,CAACiB,KAAb,CAAmB,IAAnB,EAAyB,CAAChB,MAAD,EAASiB,MAAT,CAAgBhB,IAAhB,CAAzB;IACD;EACF,CAfD;AAgBD;;AAEDiB,MAAM,CAACC,OAAP,GAAiBrB,OAAjB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/035fcc028c311c6c31dac8b08b484b83.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/035fcc028c311c6c31dac8b08b484b83.json new file mode 100644 index 00000000..e6427519 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/035fcc028c311c6c31dac8b08b484b83.json @@ -0,0 +1 @@ +{"ast":null,"code":"var DESCRIPTORS = require('../internals/descriptors');\n\nvar call = require('../internals/function-call');\n\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\n\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nvar toIndexedObject = require('../internals/to-indexed-object');\n\nvar toPropertyKey = require('../internals/to-property-key');\n\nvar hasOwn = require('../internals/has-own-property');\n\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define'); // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\n\n\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // `Object.getOwnPropertyDescriptor` method\n// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor\n\nexports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPropertyKey(P);\n if (IE8_DOM_DEFINE) try {\n return $getOwnPropertyDescriptor(O, P);\n } catch (error) {\n /* empty */\n }\n if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);\n};","map":{"version":3,"names":["DESCRIPTORS","require","call","propertyIsEnumerableModule","createPropertyDescriptor","toIndexedObject","toPropertyKey","hasOwn","IE8_DOM_DEFINE","$getOwnPropertyDescriptor","Object","getOwnPropertyDescriptor","exports","f","O","P","error"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/internals/object-get-own-property-descriptor.js"],"sourcesContent":["var DESCRIPTORS = require('../internals/descriptors');\nvar call = require('../internals/function-call');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPropertyKey = require('../internals/to-property-key');\nvar hasOwn = require('../internals/has-own-property');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPropertyKey(P);\n if (IE8_DOM_DEFINE) try {\n return $getOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);\n};\n"],"mappings":"AAAA,IAAIA,WAAW,GAAGC,OAAO,CAAC,0BAAD,CAAzB;;AACA,IAAIC,IAAI,GAAGD,OAAO,CAAC,4BAAD,CAAlB;;AACA,IAAIE,0BAA0B,GAAGF,OAAO,CAAC,4CAAD,CAAxC;;AACA,IAAIG,wBAAwB,GAAGH,OAAO,CAAC,yCAAD,CAAtC;;AACA,IAAII,eAAe,GAAGJ,OAAO,CAAC,gCAAD,CAA7B;;AACA,IAAIK,aAAa,GAAGL,OAAO,CAAC,8BAAD,CAA3B;;AACA,IAAIM,MAAM,GAAGN,OAAO,CAAC,+BAAD,CAApB;;AACA,IAAIO,cAAc,GAAGP,OAAO,CAAC,6BAAD,CAA5B,C,CAEA;;;AACA,IAAIQ,yBAAyB,GAAGC,MAAM,CAACC,wBAAvC,C,CAEA;AACA;;AACAC,OAAO,CAACC,CAAR,GAAYb,WAAW,GAAGS,yBAAH,GAA+B,SAASE,wBAAT,CAAkCG,CAAlC,EAAqCC,CAArC,EAAwC;EAC5FD,CAAC,GAAGT,eAAe,CAACS,CAAD,CAAnB;EACAC,CAAC,GAAGT,aAAa,CAACS,CAAD,CAAjB;EACA,IAAIP,cAAJ,EAAoB,IAAI;IACtB,OAAOC,yBAAyB,CAACK,CAAD,EAAIC,CAAJ,CAAhC;EACD,CAFmB,CAElB,OAAOC,KAAP,EAAc;IAAE;EAAa;EAC/B,IAAIT,MAAM,CAACO,CAAD,EAAIC,CAAJ,CAAV,EAAkB,OAAOX,wBAAwB,CAAC,CAACF,IAAI,CAACC,0BAA0B,CAACU,CAA5B,EAA+BC,CAA/B,EAAkCC,CAAlC,CAAN,EAA4CD,CAAC,CAACC,CAAD,CAA7C,CAA/B;AACnB,CAPD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/03723717efe3ae127bd8227a1051fd2f.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/03723717efe3ae127bd8227a1051fd2f.json deleted file mode 100644 index 9224ce03..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/03723717efe3ae127bd8227a1051fd2f.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import getVariation from \"./getVariation.js\";\nimport { variationPlacements, basePlacements, placements as allPlacements } from \"../enums.js\";\nimport detectOverflow from \"./detectOverflow.js\";\nimport getBasePlacement from \"./getBasePlacement.js\";\nexport default function computeAutoPlacement(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n placement = _options.placement,\n boundary = _options.boundary,\n rootBoundary = _options.rootBoundary,\n padding = _options.padding,\n flipVariations = _options.flipVariations,\n _options$allowedAutoP = _options.allowedAutoPlacements,\n allowedAutoPlacements = _options$allowedAutoP === void 0 ? allPlacements : _options$allowedAutoP;\n var variation = getVariation(placement);\n var placements = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function (placement) {\n return getVariation(placement) === variation;\n }) : basePlacements;\n var allowedPlacements = placements.filter(function (placement) {\n return allowedAutoPlacements.indexOf(placement) >= 0;\n });\n\n if (allowedPlacements.length === 0) {\n allowedPlacements = placements;\n\n if (process.env.NODE_ENV !== \"production\") {\n console.error(['Popper: The `allowedAutoPlacements` option did not allow any', 'placements. Ensure the `placement` option matches the variation', 'of the allowed placements.', 'For example, \"auto\" cannot be used to allow \"bottom-start\".', 'Use \"auto-start\" instead.'].join(' '));\n }\n } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions...\n\n\n var overflows = allowedPlacements.reduce(function (acc, placement) {\n acc[placement] = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding\n })[getBasePlacement(placement)];\n return acc;\n }, {});\n return Object.keys(overflows).sort(function (a, b) {\n return overflows[a] - overflows[b];\n });\n}","map":{"version":3,"names":["getVariation","variationPlacements","basePlacements","placements","allPlacements","detectOverflow","getBasePlacement","computeAutoPlacement","state","options","_options","placement","boundary","rootBoundary","padding","flipVariations","_options$allowedAutoP","allowedAutoPlacements","variation","filter","allowedPlacements","indexOf","length","process","env","NODE_ENV","console","error","join","overflows","reduce","acc","Object","keys","sort","a","b"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js"],"sourcesContent":["import getVariation from \"./getVariation.js\";\nimport { variationPlacements, basePlacements, placements as allPlacements } from \"../enums.js\";\nimport detectOverflow from \"./detectOverflow.js\";\nimport getBasePlacement from \"./getBasePlacement.js\";\nexport default function computeAutoPlacement(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n placement = _options.placement,\n boundary = _options.boundary,\n rootBoundary = _options.rootBoundary,\n padding = _options.padding,\n flipVariations = _options.flipVariations,\n _options$allowedAutoP = _options.allowedAutoPlacements,\n allowedAutoPlacements = _options$allowedAutoP === void 0 ? allPlacements : _options$allowedAutoP;\n var variation = getVariation(placement);\n var placements = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function (placement) {\n return getVariation(placement) === variation;\n }) : basePlacements;\n var allowedPlacements = placements.filter(function (placement) {\n return allowedAutoPlacements.indexOf(placement) >= 0;\n });\n\n if (allowedPlacements.length === 0) {\n allowedPlacements = placements;\n\n if (process.env.NODE_ENV !== \"production\") {\n console.error(['Popper: The `allowedAutoPlacements` option did not allow any', 'placements. Ensure the `placement` option matches the variation', 'of the allowed placements.', 'For example, \"auto\" cannot be used to allow \"bottom-start\".', 'Use \"auto-start\" instead.'].join(' '));\n }\n } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions...\n\n\n var overflows = allowedPlacements.reduce(function (acc, placement) {\n acc[placement] = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding\n })[getBasePlacement(placement)];\n return acc;\n }, {});\n return Object.keys(overflows).sort(function (a, b) {\n return overflows[a] - overflows[b];\n });\n}"],"mappings":"AAAA,OAAOA,YAAP,MAAyB,mBAAzB;AACA,SAASC,mBAAT,EAA8BC,cAA9B,EAA8CC,UAAU,IAAIC,aAA5D,QAAiF,aAAjF;AACA,OAAOC,cAAP,MAA2B,qBAA3B;AACA,OAAOC,gBAAP,MAA6B,uBAA7B;AACA,eAAe,SAASC,oBAAT,CAA8BC,KAA9B,EAAqCC,OAArC,EAA8C;EAC3D,IAAIA,OAAO,KAAK,KAAK,CAArB,EAAwB;IACtBA,OAAO,GAAG,EAAV;EACD;;EAED,IAAIC,QAAQ,GAAGD,OAAf;EAAA,IACIE,SAAS,GAAGD,QAAQ,CAACC,SADzB;EAAA,IAEIC,QAAQ,GAAGF,QAAQ,CAACE,QAFxB;EAAA,IAGIC,YAAY,GAAGH,QAAQ,CAACG,YAH5B;EAAA,IAIIC,OAAO,GAAGJ,QAAQ,CAACI,OAJvB;EAAA,IAKIC,cAAc,GAAGL,QAAQ,CAACK,cAL9B;EAAA,IAMIC,qBAAqB,GAAGN,QAAQ,CAACO,qBANrC;EAAA,IAOIA,qBAAqB,GAAGD,qBAAqB,KAAK,KAAK,CAA/B,GAAmCZ,aAAnC,GAAmDY,qBAP/E;EAQA,IAAIE,SAAS,GAAGlB,YAAY,CAACW,SAAD,CAA5B;EACA,IAAIR,UAAU,GAAGe,SAAS,GAAGH,cAAc,GAAGd,mBAAH,GAAyBA,mBAAmB,CAACkB,MAApB,CAA2B,UAAUR,SAAV,EAAqB;IAClH,OAAOX,YAAY,CAACW,SAAD,CAAZ,KAA4BO,SAAnC;EACD,CAFmE,CAA1C,GAErBhB,cAFL;EAGA,IAAIkB,iBAAiB,GAAGjB,UAAU,CAACgB,MAAX,CAAkB,UAAUR,SAAV,EAAqB;IAC7D,OAAOM,qBAAqB,CAACI,OAAtB,CAA8BV,SAA9B,KAA4C,CAAnD;EACD,CAFuB,CAAxB;;EAIA,IAAIS,iBAAiB,CAACE,MAAlB,KAA6B,CAAjC,EAAoC;IAClCF,iBAAiB,GAAGjB,UAApB;;IAEA,IAAIoB,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;MACzCC,OAAO,CAACC,KAAR,CAAc,CAAC,8DAAD,EAAiE,iEAAjE,EAAoI,4BAApI,EAAkK,6DAAlK,EAAiO,2BAAjO,EAA8PC,IAA9P,CAAmQ,GAAnQ,CAAd;IACD;EACF,CA3B0D,CA2BzD;;;EAGF,IAAIC,SAAS,GAAGT,iBAAiB,CAACU,MAAlB,CAAyB,UAAUC,GAAV,EAAepB,SAAf,EAA0B;IACjEoB,GAAG,CAACpB,SAAD,CAAH,GAAiBN,cAAc,CAACG,KAAD,EAAQ;MACrCG,SAAS,EAAEA,SAD0B;MAErCC,QAAQ,EAAEA,QAF2B;MAGrCC,YAAY,EAAEA,YAHuB;MAIrCC,OAAO,EAAEA;IAJ4B,CAAR,CAAd,CAKdR,gBAAgB,CAACK,SAAD,CALF,CAAjB;IAMA,OAAOoB,GAAP;EACD,CARe,EAQb,EARa,CAAhB;EASA,OAAOC,MAAM,CAACC,IAAP,CAAYJ,SAAZ,EAAuBK,IAAvB,CAA4B,UAAUC,CAAV,EAAaC,CAAb,EAAgB;IACjD,OAAOP,SAAS,CAACM,CAAD,CAAT,GAAeN,SAAS,CAACO,CAAD,CAA/B;EACD,CAFM,CAAP;AAGD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0416bcc5d3e182ed51d9acdf1c1369ca.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0416bcc5d3e182ed51d9acdf1c1369ca.json deleted file mode 100644 index b86ce47f..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0416bcc5d3e182ed51d9acdf1c1369ca.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n\nvar utils = require('./utils');\n\nvar bind = require('./helpers/bind');\n\nvar Axios = require('./core/Axios');\n\nvar mergeConfig = require('./core/mergeConfig');\n\nvar defaults = require('./defaults');\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\n\n\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context); // Copy axios.prototype to instance\n\n utils.extend(instance, Axios.prototype, context); // Copy context to instance\n\n utils.extend(instance, context); // Factory for creating new instances\n\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n} // Create the default instance to be exported\n\n\nvar axios = createInstance(defaults); // Expose Axios class to allow class inheritance\n\naxios.Axios = Axios; // Expose Cancel & CancelToken\n\naxios.CanceledError = require('./cancel/CanceledError');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\naxios.VERSION = require('./env/data').version;\naxios.toFormData = require('./helpers/toFormData'); // Expose AxiosError class\n\naxios.AxiosError = require('../lib/core/AxiosError'); // alias for CanceledError for backward compatibility\n\naxios.Cancel = axios.CanceledError; // Expose all/spread\n\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\n\naxios.spread = require('./helpers/spread'); // Expose isAxiosError\n\naxios.isAxiosError = require('./helpers/isAxiosError');\nmodule.exports = axios; // Allow use of default import syntax in TypeScript\n\nmodule.exports.default = axios;","map":{"version":3,"names":["utils","require","bind","Axios","mergeConfig","defaults","createInstance","defaultConfig","context","instance","prototype","request","extend","create","instanceConfig","axios","CanceledError","CancelToken","isCancel","VERSION","version","toFormData","AxiosError","Cancel","all","promises","Promise","spread","isAxiosError","module","exports","default"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/axios/lib/axios.js"],"sourcesContent":["'use strict';\n\nvar utils = require('./utils');\nvar bind = require('./helpers/bind');\nvar Axios = require('./core/Axios');\nvar mergeConfig = require('./core/mergeConfig');\nvar defaults = require('./defaults');\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Expose Cancel & CancelToken\naxios.CanceledError = require('./cancel/CanceledError');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\naxios.VERSION = require('./env/data').version;\naxios.toFormData = require('./helpers/toFormData');\n\n// Expose AxiosError class\naxios.AxiosError = require('../lib/core/AxiosError');\n\n// alias for CanceledError for backward compatibility\naxios.Cancel = axios.CanceledError;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = require('./helpers/spread');\n\n// Expose isAxiosError\naxios.isAxiosError = require('./helpers/isAxiosError');\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n"],"mappings":"AAAA;;AAEA,IAAIA,KAAK,GAAGC,OAAO,CAAC,SAAD,CAAnB;;AACA,IAAIC,IAAI,GAAGD,OAAO,CAAC,gBAAD,CAAlB;;AACA,IAAIE,KAAK,GAAGF,OAAO,CAAC,cAAD,CAAnB;;AACA,IAAIG,WAAW,GAAGH,OAAO,CAAC,oBAAD,CAAzB;;AACA,IAAII,QAAQ,GAAGJ,OAAO,CAAC,YAAD,CAAtB;AAEA;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASK,cAAT,CAAwBC,aAAxB,EAAuC;EACrC,IAAIC,OAAO,GAAG,IAAIL,KAAJ,CAAUI,aAAV,CAAd;EACA,IAAIE,QAAQ,GAAGP,IAAI,CAACC,KAAK,CAACO,SAAN,CAAgBC,OAAjB,EAA0BH,OAA1B,CAAnB,CAFqC,CAIrC;;EACAR,KAAK,CAACY,MAAN,CAAaH,QAAb,EAAuBN,KAAK,CAACO,SAA7B,EAAwCF,OAAxC,EALqC,CAOrC;;EACAR,KAAK,CAACY,MAAN,CAAaH,QAAb,EAAuBD,OAAvB,EARqC,CAUrC;;EACAC,QAAQ,CAACI,MAAT,GAAkB,SAASA,MAAT,CAAgBC,cAAhB,EAAgC;IAChD,OAAOR,cAAc,CAACF,WAAW,CAACG,aAAD,EAAgBO,cAAhB,CAAZ,CAArB;EACD,CAFD;;EAIA,OAAOL,QAAP;AACD,C,CAED;;;AACA,IAAIM,KAAK,GAAGT,cAAc,CAACD,QAAD,CAA1B,C,CAEA;;AACAU,KAAK,CAACZ,KAAN,GAAcA,KAAd,C,CAEA;;AACAY,KAAK,CAACC,aAAN,GAAsBf,OAAO,CAAC,wBAAD,CAA7B;AACAc,KAAK,CAACE,WAAN,GAAoBhB,OAAO,CAAC,sBAAD,CAA3B;AACAc,KAAK,CAACG,QAAN,GAAiBjB,OAAO,CAAC,mBAAD,CAAxB;AACAc,KAAK,CAACI,OAAN,GAAgBlB,OAAO,CAAC,YAAD,CAAP,CAAsBmB,OAAtC;AACAL,KAAK,CAACM,UAAN,GAAmBpB,OAAO,CAAC,sBAAD,CAA1B,C,CAEA;;AACAc,KAAK,CAACO,UAAN,GAAmBrB,OAAO,CAAC,wBAAD,CAA1B,C,CAEA;;AACAc,KAAK,CAACQ,MAAN,GAAeR,KAAK,CAACC,aAArB,C,CAEA;;AACAD,KAAK,CAACS,GAAN,GAAY,SAASA,GAAT,CAAaC,QAAb,EAAuB;EACjC,OAAOC,OAAO,CAACF,GAAR,CAAYC,QAAZ,CAAP;AACD,CAFD;;AAGAV,KAAK,CAACY,MAAN,GAAe1B,OAAO,CAAC,kBAAD,CAAtB,C,CAEA;;AACAc,KAAK,CAACa,YAAN,GAAqB3B,OAAO,CAAC,wBAAD,CAA5B;AAEA4B,MAAM,CAACC,OAAP,GAAiBf,KAAjB,C,CAEA;;AACAc,MAAM,CAACC,OAAP,CAAeC,OAAf,GAAyBhB,KAAzB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/04aebc41b9fc5125010b6f458af34247.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/04aebc41b9fc5125010b6f458af34247.json deleted file mode 100644 index 25409b60..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/04aebc41b9fc5125010b6f458af34247.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"export default function getAltAxis(axis) {\n return axis === 'x' ? 'y' : 'x';\n}","map":{"version":3,"names":["getAltAxis","axis"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/utils/getAltAxis.js"],"sourcesContent":["export default function getAltAxis(axis) {\n return axis === 'x' ? 'y' : 'x';\n}"],"mappings":"AAAA,eAAe,SAASA,UAAT,CAAoBC,IAApB,EAA0B;EACvC,OAAOA,IAAI,KAAK,GAAT,GAAe,GAAf,GAAqB,GAA5B;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/04e361a5e8ab09d2f1a9bc5483ddd84a.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/04e361a5e8ab09d2f1a9bc5483ddd84a.json deleted file mode 100644 index 2514c376..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/04e361a5e8ab09d2f1a9bc5483ddd84a.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"/**\n * Safe chained function\n *\n * Will only create a new function if needed,\n * otherwise will pass back existing functions or null.\n *\n * @param {function} functions to chain\n * @returns {function|null}\n */\nfunction createChainedFunction() {\n for (var _len = arguments.length, funcs = new Array(_len), _key = 0; _key < _len; _key++) {\n funcs[_key] = arguments[_key];\n }\n\n return funcs.filter(f => f != null).reduce((acc, f) => {\n if (typeof f !== 'function') {\n throw new Error('Invalid Argument Type, must only provide functions, undefined, or null.');\n }\n\n if (acc === null) return f;\n return function chainedFunction() {\n for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n // @ts-ignore\n acc.apply(this, args); // @ts-ignore\n\n f.apply(this, args);\n };\n }, null);\n}\n\nexport default createChainedFunction;","map":{"version":3,"names":["createChainedFunction","funcs","filter","f","reduce","acc","Error","chainedFunction","args","apply"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-bootstrap/esm/createChainedFunction.js"],"sourcesContent":["/**\n * Safe chained function\n *\n * Will only create a new function if needed,\n * otherwise will pass back existing functions or null.\n *\n * @param {function} functions to chain\n * @returns {function|null}\n */\nfunction createChainedFunction(...funcs) {\n return funcs.filter(f => f != null).reduce((acc, f) => {\n if (typeof f !== 'function') {\n throw new Error('Invalid Argument Type, must only provide functions, undefined, or null.');\n }\n\n if (acc === null) return f;\n return function chainedFunction(...args) {\n // @ts-ignore\n acc.apply(this, args); // @ts-ignore\n\n f.apply(this, args);\n };\n }, null);\n}\n\nexport default createChainedFunction;"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,qBAAT,GAAyC;EAAA,kCAAPC,KAAO;IAAPA,KAAO;EAAA;;EACvC,OAAOA,KAAK,CAACC,MAAN,CAAaC,CAAC,IAAIA,CAAC,IAAI,IAAvB,EAA6BC,MAA7B,CAAoC,CAACC,GAAD,EAAMF,CAAN,KAAY;IACrD,IAAI,OAAOA,CAAP,KAAa,UAAjB,EAA6B;MAC3B,MAAM,IAAIG,KAAJ,CAAU,yEAAV,CAAN;IACD;;IAED,IAAID,GAAG,KAAK,IAAZ,EAAkB,OAAOF,CAAP;IAClB,OAAO,SAASI,eAAT,GAAkC;MAAA,mCAANC,IAAM;QAANA,IAAM;MAAA;;MACvC;MACAH,GAAG,CAACI,KAAJ,CAAU,IAAV,EAAgBD,IAAhB,EAFuC,CAEhB;;MAEvBL,CAAC,CAACM,KAAF,CAAQ,IAAR,EAAcD,IAAd;IACD,CALD;EAMD,CAZM,EAYJ,IAZI,CAAP;AAaD;;AAED,eAAeR,qBAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/04f5f457cd286398b27ce93e371dae1a.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/04f5f457cd286398b27ce93e371dae1a.json deleted file mode 100644 index 6005ab9a..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/04f5f457cd286398b27ce93e371dae1a.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\n\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};","map":{"version":3,"names":["module","exports","spread","callback","wrap","arr","apply"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/axios/lib/helpers/spread.js"],"sourcesContent":["'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n"],"mappings":"AAAA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACAA,MAAM,CAACC,OAAP,GAAiB,SAASC,MAAT,CAAgBC,QAAhB,EAA0B;EACzC,OAAO,SAASC,IAAT,CAAcC,GAAd,EAAmB;IACxB,OAAOF,QAAQ,CAACG,KAAT,CAAe,IAAf,EAAqBD,GAArB,CAAP;EACD,CAFD;AAGD,CAJD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/04f7385d5bb583b7b21b61306340a84a.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/04f7385d5bb583b7b21b61306340a84a.json deleted file mode 100644 index c917c3a4..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/04f7385d5bb583b7b21b61306340a84a.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var $TypeError = TypeError; // `RequireObjectCoercible` abstract operation\n// https://tc39.es/ecma262/#sec-requireobjectcoercible\n\nmodule.exports = function (it) {\n if (it == undefined) throw $TypeError(\"Can't call method on \" + it);\n return it;\n};","map":{"version":3,"names":["$TypeError","TypeError","module","exports","it","undefined"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/require-object-coercible.js"],"sourcesContent":["var $TypeError = TypeError;\n\n// `RequireObjectCoercible` abstract operation\n// https://tc39.es/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw $TypeError(\"Can't call method on \" + it);\n return it;\n};\n"],"mappings":"AAAA,IAAIA,UAAU,GAAGC,SAAjB,C,CAEA;AACA;;AACAC,MAAM,CAACC,OAAP,GAAiB,UAAUC,EAAV,EAAc;EAC7B,IAAIA,EAAE,IAAIC,SAAV,EAAqB,MAAML,UAAU,CAAC,0BAA0BI,EAA3B,CAAhB;EACrB,OAAOA,EAAP;AACD,CAHD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/05246cfa806f4fbb26f8533cf4416949.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/05246cfa806f4fbb26f8533cf4416949.json new file mode 100644 index 00000000..df8df8f6 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/05246cfa806f4fbb26f8533cf4416949.json @@ -0,0 +1 @@ +{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/home/Register.jsx\",\n _s = $RefreshSig$();\n\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Form from 'react-bootstrap/Form';\nimport axios from 'axios';\nimport { useState } from 'react';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Register() {\n _s();\n\n const [login, setLogin] = useState(\"\");\n const [email, setEmail] = useState(\"\");\n const [password, setPassword] = useState(\"\");\n const [blogTitle, setBlogTitle] = useState(\"\");\n const address = \"http://localhost:5000/api/auth/register\";\n\n const sendRegisterInfo = async e => {\n e.preventDefault();\n const response = await axios.post(address, {\n login,\n email,\n password,\n blogTitle\n });\n };\n\n return /*#__PURE__*/_jsxDEV(Form, {\n onSubmit: sendRegisterInfo,\n children: [/*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBasicEmail\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Email address\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 27,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"email\",\n placeholder: \"Enter email\",\n onChange: e => setEmail(e.target.value)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 28,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 26,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formLogin\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Login\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 34,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"login\",\n placeholder: \"Enter Login\",\n onChange: e => setLogin(e.target.value)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 35,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 33,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBlogTitle\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 41,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"blogTitle\",\n placeholder: \"Enter Blog Title\",\n onChange: e => setBlogTitle(e.target.value)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 42,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 40,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formPassword\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 48,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"password\",\n placeholder: \"Enter Password\",\n onChange: e => setPassword(e.target.value)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 49,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 47,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n type: \"submit\",\n children: \"Submit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 53,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 25,\n columnNumber: 9\n }, this);\n}\n\n_s(Register, \"Yrn69UQ2vz6BtSxKnm+P3tBN1t0=\");\n\n_c = Register;\n\nvar _c;\n\n$RefreshReg$(_c, \"Register\");","map":{"version":3,"names":["Button","Form","axios","useState","Register","login","setLogin","email","setEmail","password","setPassword","blogTitle","setBlogTitle","address","sendRegisterInfo","e","preventDefault","response","post","target","value"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/components/pages/home/Register.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button';\nimport Form from 'react-bootstrap/Form';\nimport axios from 'axios';\nimport { useState } from 'react';\n\nexport default function Register() {\n const [login, setLogin] = useState(\"\");\n const [email, setEmail] = useState(\"\");\n const [password, setPassword] = useState(\"\");\n const [blogTitle, setBlogTitle] = useState(\"\");\n const address = \"http://localhost:5000/api/auth/register\"\n\n const sendRegisterInfo = async (e) => {\n e.preventDefault();\n const response = await axios.post(address, {\n login,\n email,\n password,\n blogTitle,\n });\n }\n return (\n
\n \n Email address\n setEmail(e.target.value)}\n />\n \n \n \n Login\n setLogin(e.target.value)}\n />\n \n \n \n Blog Title\n setBlogTitle(e.target.value)}\n />\n \n \n \n Password\n setPassword(e.target.value)}\n />\n \n \n
\n );\n}"],"mappings":";;;AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;AACA,SAASC,QAAT,QAAyB,OAAzB;;AAEA,eAAe,SAASC,QAAT,GAAoB;EAAA;;EACjC,MAAM,CAACC,KAAD,EAAQC,QAAR,IAAoBH,QAAQ,CAAC,EAAD,CAAlC;EACA,MAAM,CAACI,KAAD,EAAQC,QAAR,IAAoBL,QAAQ,CAAC,EAAD,CAAlC;EACA,MAAM,CAACM,QAAD,EAAWC,WAAX,IAA0BP,QAAQ,CAAC,EAAD,CAAxC;EACA,MAAM,CAACQ,SAAD,EAAYC,YAAZ,IAA4BT,QAAQ,CAAC,EAAD,CAA1C;EACA,MAAMU,OAAO,GAAG,yCAAhB;;EAEA,MAAMC,gBAAgB,GAAG,MAAOC,CAAP,IAAa;IACpCA,CAAC,CAACC,cAAF;IACA,MAAMC,QAAQ,GAAG,MAAMf,KAAK,CAACgB,IAAN,CAAWL,OAAX,EAAoB;MACzCR,KADyC;MAEzCE,KAFyC;MAGzCE,QAHyC;MAIzCE;IAJyC,CAApB,CAAvB;EAMD,CARD;;EASE,oBACI,QAAC,IAAD;IAAM,QAAQ,EAAEG,gBAAhB;IAAA,wBACA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,gBAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,OAAnB;QAA2B,WAAW,EAAC,aAAvC;QACA,QAAQ,EAAEC,CAAC,IAAEP,QAAQ,CAACO,CAAC,CAACI,MAAF,CAASC,KAAV;MADrB;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QADA,eAQI,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,WAAvC;MAAA,wBACA,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADA,eAEA,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,OAAnB;QAA2B,WAAW,EAAC,aAAvC;QACA,QAAQ,EAAEL,CAAC,IAAET,QAAQ,CAACS,CAAC,CAACI,MAAF,CAASC,KAAV;MADrB;QAAA;QAAA;QAAA;MAAA,QAFA;IAAA;MAAA;MAAA;MAAA;IAAA,QARJ,eAeI,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,eAAvC;MAAA,wBACA,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADA,eAEA,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,WAAnB;QAA+B,WAAW,EAAC,kBAA3C;QACA,QAAQ,EAAEL,CAAC,IAAEH,YAAY,CAACG,CAAC,CAACI,MAAF,CAASC,KAAV;MADzB;QAAA;QAAA;QAAA;MAAA,QAFA;IAAA;MAAA;MAAA;MAAA;IAAA,QAfJ,eAsBI,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,cAAvC;MAAA,wBACA,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADA,eAEA,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,UAAnB;QAA8B,WAAW,EAAC,gBAA1C;QACA,QAAQ,EAAEL,CAAC,IAAEL,WAAW,CAACK,CAAC,CAACI,MAAF,CAASC,KAAV;MADxB;QAAA;QAAA;QAAA;MAAA,QAFA;IAAA;MAAA;MAAA;MAAA;IAAA,QAtBJ,eA4BA,QAAC,MAAD;MAAQ,OAAO,EAAC,SAAhB;MAA0B,IAAI,EAAC,QAA/B;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QA5BA;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAkCH;;GAlDuBhB,Q;;KAAAA,Q"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/054bb9212de32ba42a64ee345496df61.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/054bb9212de32ba42a64ee345496df61.json new file mode 100644 index 00000000..d76a73a1 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/054bb9212de32ba42a64ee345496df61.json @@ -0,0 +1 @@ +{"ast":null,"code":"/* eslint-disable es-x/no-symbol -- required for testing */\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL && !Symbol.sham && typeof Symbol.iterator == 'symbol';","map":{"version":3,"names":["NATIVE_SYMBOL","require","module","exports","Symbol","sham","iterator"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/internals/use-symbol-as-uid.js"],"sourcesContent":["/* eslint-disable es-x/no-symbol -- required for testing */\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n && !Symbol.sham\n && typeof Symbol.iterator == 'symbol';\n"],"mappings":"AAAA;AACA,IAAIA,aAAa,GAAGC,OAAO,CAAC,4BAAD,CAA3B;;AAEAC,MAAM,CAACC,OAAP,GAAiBH,aAAa,IACzB,CAACI,MAAM,CAACC,IADI,IAEZ,OAAOD,MAAM,CAACE,QAAd,IAA0B,QAF/B"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0555e364d154951b5b1983af8bdd0fa5.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0555e364d154951b5b1983af8bdd0fa5.json deleted file mode 100644 index a8beac08..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0555e364d154951b5b1983af8bdd0fa5.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { Route, Router } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: /*#__PURE__*/_jsxDEV(Router, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 7\n }, this), /*#__PURE__*/_jsxDEV(Switch, {\n children: [/*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/\",\n children: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/login\",\n children: /*#__PURE__*/_jsxDEV(Login, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 23,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/register\",\n children: /*#__PURE__*/_jsxDEV(Register, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 26,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 25,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["Route","Router","BlogEntry","CreateEntry","Home","Login","Register","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n Route,\n Router,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n return (\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,KADF,EAEEC,MAFF,QAGO,kBAHP;AAKA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,KAAP,MAAkB,gCAAlB;AACA,OAAOC,QAAP,MAAqB,sCAArB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE;IAAA,uBACA,QAAC,MAAD;MAAA,wBACE,QAAC,MAAD;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,MAAD;QAAA,wBACE,QAAC,KAAD;UAAO,KAAK,MAAZ;UAAa,IAAI,EAAC,GAAlB;UAAA,uBACA,QAAC,IAAD;YAAA;YAAA;YAAA;UAAA;QADA;UAAA;UAAA;UAAA;QAAA,QADF,eAIE,QAAC,KAAD;UAAO,KAAK,MAAZ;UAAa,IAAI,EAAC,QAAlB;UAAA,uBACA,QAAC,KAAD;YAAA;YAAA;YAAA;UAAA;QADA;UAAA;UAAA;UAAA;QAAA,QAJF,eAOE,QAAC,KAAD;UAAO,KAAK,MAAZ;UAAa,IAAI,EAAC,WAAlB;UAAA,uBACA,QAAC,QAAD;YAAA;YAAA;YAAA;UAAA;QADA;UAAA;UAAA;UAAA;QAAA,QAPF;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF;IAAA;MAAA;MAAA;MAAA;IAAA;EADA;IAAA;IAAA;IAAA;EAAA,QADF;AAkBD;;KAnBQA,G;AAqBT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/05673995d05eb1843dee94eea314bbd3.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/05673995d05eb1843dee94eea314bbd3.json new file mode 100644 index 00000000..75ab5e28 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/05673995d05eb1843dee94eea314bbd3.json @@ -0,0 +1 @@ +{"ast":null,"code":"function _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nimport { useCallback, useState } from 'react';\n/**\n * Mimics a React class component's state model, of having a single unified\n * `state` object and an updater that merges updates into the existing state, as\n * opposed to replacing it.\n *\n * ```js\n * const [state, setState] = useMergeState({ name: 'Betsy', age: 24 })\n *\n * setState({ name: 'Johan' }) // { name: 'Johan', age: 24 }\n *\n * setState(state => ({ age: state.age + 10 })) // { name: 'Johan', age: 34 }\n * ```\n *\n * @param initialState The initial state object\n */\n\nexport default function useMergeState(initialState) {\n var _useState = useState(initialState),\n state = _useState[0],\n setState = _useState[1];\n\n var updater = useCallback(function (update) {\n if (update === null) return;\n\n if (typeof update === 'function') {\n setState(function (state) {\n var nextState = update(state);\n return nextState == null ? state : _extends({}, state, nextState);\n });\n } else {\n setState(function (state) {\n return _extends({}, state, update);\n });\n }\n }, [setState]);\n return [state, updater];\n}","map":{"version":3,"names":["_extends","Object","assign","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","useCallback","useState","useMergeState","initialState","_useState","state","setState","updater","update","nextState"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/@restart/hooks/esm/useMergeState.js"],"sourcesContent":["function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nimport { useCallback, useState } from 'react';\n\n/**\n * Mimics a React class component's state model, of having a single unified\n * `state` object and an updater that merges updates into the existing state, as\n * opposed to replacing it.\n *\n * ```js\n * const [state, setState] = useMergeState({ name: 'Betsy', age: 24 })\n *\n * setState({ name: 'Johan' }) // { name: 'Johan', age: 24 }\n *\n * setState(state => ({ age: state.age + 10 })) // { name: 'Johan', age: 34 }\n * ```\n *\n * @param initialState The initial state object\n */\nexport default function useMergeState(initialState) {\n var _useState = useState(initialState),\n state = _useState[0],\n setState = _useState[1];\n\n var updater = useCallback(function (update) {\n if (update === null) return;\n\n if (typeof update === 'function') {\n setState(function (state) {\n var nextState = update(state);\n return nextState == null ? state : _extends({}, state, nextState);\n });\n } else {\n setState(function (state) {\n return _extends({}, state, update);\n });\n }\n }, [setState]);\n return [state, updater];\n}"],"mappings":"AAAA,SAASA,QAAT,GAAoB;EAAEA,QAAQ,GAAGC,MAAM,CAACC,MAAP,IAAiB,UAAUC,MAAV,EAAkB;IAAE,KAAK,IAAIC,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGC,SAAS,CAACC,MAA9B,EAAsCF,CAAC,EAAvC,EAA2C;MAAE,IAAIG,MAAM,GAAGF,SAAS,CAACD,CAAD,CAAtB;;MAA2B,KAAK,IAAII,GAAT,IAAgBD,MAAhB,EAAwB;QAAE,IAAIN,MAAM,CAACQ,SAAP,CAAiBC,cAAjB,CAAgCC,IAAhC,CAAqCJ,MAArC,EAA6CC,GAA7C,CAAJ,EAAuD;UAAEL,MAAM,CAACK,GAAD,CAAN,GAAcD,MAAM,CAACC,GAAD,CAApB;QAA4B;MAAE;IAAE;;IAAC,OAAOL,MAAP;EAAgB,CAA5P;;EAA8P,OAAOH,QAAQ,CAACY,KAAT,CAAe,IAAf,EAAqBP,SAArB,CAAP;AAAyC;;AAE7T,SAASQ,WAAT,EAAsBC,QAAtB,QAAsC,OAAtC;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA,eAAe,SAASC,aAAT,CAAuBC,YAAvB,EAAqC;EAClD,IAAIC,SAAS,GAAGH,QAAQ,CAACE,YAAD,CAAxB;EAAA,IACIE,KAAK,GAAGD,SAAS,CAAC,CAAD,CADrB;EAAA,IAEIE,QAAQ,GAAGF,SAAS,CAAC,CAAD,CAFxB;;EAIA,IAAIG,OAAO,GAAGP,WAAW,CAAC,UAAUQ,MAAV,EAAkB;IAC1C,IAAIA,MAAM,KAAK,IAAf,EAAqB;;IAErB,IAAI,OAAOA,MAAP,KAAkB,UAAtB,EAAkC;MAChCF,QAAQ,CAAC,UAAUD,KAAV,EAAiB;QACxB,IAAII,SAAS,GAAGD,MAAM,CAACH,KAAD,CAAtB;QACA,OAAOI,SAAS,IAAI,IAAb,GAAoBJ,KAApB,GAA4BlB,QAAQ,CAAC,EAAD,EAAKkB,KAAL,EAAYI,SAAZ,CAA3C;MACD,CAHO,CAAR;IAID,CALD,MAKO;MACLH,QAAQ,CAAC,UAAUD,KAAV,EAAiB;QACxB,OAAOlB,QAAQ,CAAC,EAAD,EAAKkB,KAAL,EAAYG,MAAZ,CAAf;MACD,CAFO,CAAR;IAGD;EACF,CAbwB,EAatB,CAACF,QAAD,CAbsB,CAAzB;EAcA,OAAO,CAACD,KAAD,EAAQE,OAAR,CAAP;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/05dacb8e38aae81880c8d22fb018871c.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/05dacb8e38aae81880c8d22fb018871c.json deleted file mode 100644 index f2fb66ad..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/05dacb8e38aae81880c8d22fb018871c.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary m-5rm\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: Created: \n \n Entry Title \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,uBAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,eAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/05e63c0b9078b0d68088608cf981db90.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/05e63c0b9078b0d68088608cf981db90.json deleted file mode 100644 index 26cbf18d..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/05e63c0b9078b0d68088608cf981db90.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport TopBar from \"./topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: /*#__PURE__*/_jsxDEV(TopBar, {\n children: \" \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 6,\n columnNumber: 5\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 5,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import TopBar from \"./topbar/TopBar\";\n\nfunction App() {\n return (\n
\n \n\n
\n );\n}\n\nexport default App;\n"],"mappings":";AAAA,OAAOA,MAAP,MAAmB,iBAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE;IAAA,uBACA,QAAC,MAAD;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA;EADA;IAAA;IAAA;IAAA;EAAA,QADF;AAMD;;KAPQA,G;AAST,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/05f65ca01eeb0bf78761428dc9574cb1.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/05f65ca01eeb0bf78761428dc9574cb1.json deleted file mode 100644 index d7d57e50..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/05f65ca01eeb0bf78761428dc9574cb1.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var DESCRIPTORS = require('../internals/descriptors');\n\nvar fails = require('../internals/fails'); // V8 ~ Chrome 36-\n// https://bugs.chromium.org/p/v8/issues/detail?id=3334\n\n\nmodule.exports = DESCRIPTORS && fails(function () {\n // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing\n return Object.defineProperty(function () {\n /* empty */\n }, 'prototype', {\n value: 42,\n writable: false\n }).prototype != 42;\n});","map":{"version":3,"names":["DESCRIPTORS","require","fails","module","exports","Object","defineProperty","value","writable","prototype"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/v8-prototype-define-bug.js"],"sourcesContent":["var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\n\n// V8 ~ Chrome 36-\n// https://bugs.chromium.org/p/v8/issues/detail?id=3334\nmodule.exports = DESCRIPTORS && fails(function () {\n // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing\n return Object.defineProperty(function () { /* empty */ }, 'prototype', {\n value: 42,\n writable: false\n }).prototype != 42;\n});\n"],"mappings":"AAAA,IAAIA,WAAW,GAAGC,OAAO,CAAC,0BAAD,CAAzB;;AACA,IAAIC,KAAK,GAAGD,OAAO,CAAC,oBAAD,CAAnB,C,CAEA;AACA;;;AACAE,MAAM,CAACC,OAAP,GAAiBJ,WAAW,IAAIE,KAAK,CAAC,YAAY;EAChD;EACA,OAAOG,MAAM,CAACC,cAAP,CAAsB,YAAY;IAAE;EAAa,CAAjD,EAAmD,WAAnD,EAAgE;IACrEC,KAAK,EAAE,EAD8D;IAErEC,QAAQ,EAAE;EAF2D,CAAhE,EAGJC,SAHI,IAGS,EAHhB;AAID,CANoC,CAArC"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/06141eaa869aca74f7222a3ad6cad005.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/06141eaa869aca74f7222a3ad6cad005.json new file mode 100644 index 00000000..cceb1fb8 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/06141eaa869aca74f7222a3ad6cad005.json @@ -0,0 +1 @@ +{"ast":null,"code":"var DESCRIPTORS = require('../internals/descriptors');\n\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};","map":{"version":3,"names":["DESCRIPTORS","require","definePropertyModule","createPropertyDescriptor","module","exports","object","key","value","f"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/internals/create-non-enumerable-property.js"],"sourcesContent":["var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n"],"mappings":"AAAA,IAAIA,WAAW,GAAGC,OAAO,CAAC,0BAAD,CAAzB;;AACA,IAAIC,oBAAoB,GAAGD,OAAO,CAAC,qCAAD,CAAlC;;AACA,IAAIE,wBAAwB,GAAGF,OAAO,CAAC,yCAAD,CAAtC;;AAEAG,MAAM,CAACC,OAAP,GAAiBL,WAAW,GAAG,UAAUM,MAAV,EAAkBC,GAAlB,EAAuBC,KAAvB,EAA8B;EAC3D,OAAON,oBAAoB,CAACO,CAArB,CAAuBH,MAAvB,EAA+BC,GAA/B,EAAoCJ,wBAAwB,CAAC,CAAD,EAAIK,KAAJ,CAA5D,CAAP;AACD,CAF2B,GAExB,UAAUF,MAAV,EAAkBC,GAAlB,EAAuBC,KAAvB,EAA8B;EAChCF,MAAM,CAACC,GAAD,CAAN,GAAcC,KAAd;EACA,OAAOF,MAAP;AACD,CALD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0681f18508c2e351b4e5e1d1450b949a.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0681f18508c2e351b4e5e1d1450b949a.json new file mode 100644 index 00000000..27872ff0 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0681f18508c2e351b4e5e1d1450b949a.json @@ -0,0 +1 @@ +{"ast":null,"code":"'use strict';\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\n\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n};","map":{"version":3,"names":["module","exports","isAbsoluteURL","url","test"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/axios/lib/helpers/isAbsoluteURL.js"],"sourcesContent":["'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n};\n"],"mappings":"AAAA;AAEA;AACA;AACA;AACA;AACA;AACA;;AACAA,MAAM,CAACC,OAAP,GAAiB,SAASC,aAAT,CAAuBC,GAAvB,EAA4B;EAC3C;EACA;EACA;EACA,OAAO,8BAA8BC,IAA9B,CAAmCD,GAAnC,CAAP;AACD,CALD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/068be7b7173294e0c9c4350507696a8b.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/068be7b7173294e0c9c4350507696a8b.json new file mode 100644 index 00000000..492a8c8e --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/068be7b7173294e0c9c4350507696a8b.json @@ -0,0 +1 @@ +{"ast":null,"code":"'use strict';\n\nvar bind = require('./helpers/bind'); // utils is a library of generic helper functions non-specific to axios\n\n\nvar toString = Object.prototype.toString; // eslint-disable-next-line func-names\n\nvar kindOf = function (cache) {\n // eslint-disable-next-line func-names\n return function (thing) {\n var str = toString.call(thing);\n return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());\n };\n}(Object.create(null));\n\nfunction kindOfTest(type) {\n type = type.toLowerCase();\n return function isKindOf(thing) {\n return kindOf(thing) === type;\n };\n}\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\n\n\nfunction isArray(val) {\n return Array.isArray(val);\n}\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\n\n\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n/**\n * Determine if a value is a Buffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\n\n\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);\n}\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\n\n\nvar isArrayBuffer = kindOfTest('ArrayBuffer');\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\n\nfunction isArrayBufferView(val) {\n var result;\n\n if (typeof ArrayBuffer !== 'undefined' && ArrayBuffer.isView) {\n result = ArrayBuffer.isView(val);\n } else {\n result = val && val.buffer && isArrayBuffer(val.buffer);\n }\n\n return result;\n}\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\n\n\nfunction isString(val) {\n return typeof val === 'string';\n}\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\n\n\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\n\n\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n/**\n * Determine if a value is a plain Object\n *\n * @param {Object} val The value to test\n * @return {boolean} True if value is a plain Object, otherwise false\n */\n\n\nfunction isPlainObject(val) {\n if (kindOf(val) !== 'object') {\n return false;\n }\n\n var prototype = Object.getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n/**\n * Determine if a value is a Date\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\n\n\nvar isDate = kindOfTest('Date');\n/**\n * Determine if a value is a File\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\n\nvar isFile = kindOfTest('File');\n/**\n * Determine if a value is a Blob\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\n\nvar isBlob = kindOfTest('Blob');\n/**\n * Determine if a value is a FileList\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\n\nvar isFileList = kindOfTest('FileList');\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\n\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\n\n\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} thing The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\n\n\nfunction isFormData(thing) {\n var pattern = '[object FormData]';\n return thing && (typeof FormData === 'function' && thing instanceof FormData || toString.call(thing) === pattern || isFunction(thing.toString) && thing.toString() === pattern);\n}\n/**\n * Determine if a value is a URLSearchParams object\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\n\n\nvar isURLSearchParams = kindOfTest('URLSearchParams');\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\n\nfunction trim(str) {\n return str.trim ? str.trim() : str.replace(/^\\s+|\\s+$/g, '');\n}\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n */\n\n\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' || navigator.product === 'NativeScript' || navigator.product === 'NS')) {\n return false;\n }\n\n return typeof window !== 'undefined' && typeof document !== 'undefined';\n}\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\n\n\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n } // Force an array if not already something iterable\n\n\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\n\n\nfunction\n /* obj1, obj2, obj3, ... */\nmerge() {\n var result = {};\n\n function assignValue(val, key) {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n\n return result;\n}\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\n\n\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n * @return {string} content value without BOM\n */\n\n\nfunction stripBOM(content) {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n\n return content;\n}\n/**\n * Inherit the prototype methods from one constructor into another\n * @param {function} constructor\n * @param {function} superConstructor\n * @param {object} [props]\n * @param {object} [descriptors]\n */\n\n\nfunction inherits(constructor, superConstructor, props, descriptors) {\n constructor.prototype = Object.create(superConstructor.prototype, descriptors);\n constructor.prototype.constructor = constructor;\n props && Object.assign(constructor.prototype, props);\n}\n/**\n * Resolve object with deep prototype chain to a flat object\n * @param {Object} sourceObj source object\n * @param {Object} [destObj]\n * @param {Function} [filter]\n * @returns {Object}\n */\n\n\nfunction toFlatObject(sourceObj, destObj, filter) {\n var props;\n var i;\n var prop;\n var merged = {};\n destObj = destObj || {};\n\n do {\n props = Object.getOwnPropertyNames(sourceObj);\n i = props.length;\n\n while (i-- > 0) {\n prop = props[i];\n\n if (!merged[prop]) {\n destObj[prop] = sourceObj[prop];\n merged[prop] = true;\n }\n }\n\n sourceObj = Object.getPrototypeOf(sourceObj);\n } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);\n\n return destObj;\n}\n/*\n * determines whether a string ends with the characters of a specified string\n * @param {String} str\n * @param {String} searchString\n * @param {Number} [position= 0]\n * @returns {boolean}\n */\n\n\nfunction endsWith(str, searchString, position) {\n str = String(str);\n\n if (position === undefined || position > str.length) {\n position = str.length;\n }\n\n position -= searchString.length;\n var lastIndex = str.indexOf(searchString, position);\n return lastIndex !== -1 && lastIndex === position;\n}\n/**\n * Returns new array from array like object\n * @param {*} [thing]\n * @returns {Array}\n */\n\n\nfunction toArray(thing) {\n if (!thing) return null;\n var i = thing.length;\n if (isUndefined(i)) return null;\n var arr = new Array(i);\n\n while (i-- > 0) {\n arr[i] = thing[i];\n }\n\n return arr;\n} // eslint-disable-next-line func-names\n\n\nvar isTypedArray = function (TypedArray) {\n // eslint-disable-next-line func-names\n return function (thing) {\n return TypedArray && thing instanceof TypedArray;\n };\n}(typeof Uint8Array !== 'undefined' && Object.getPrototypeOf(Uint8Array));\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isPlainObject: isPlainObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim,\n stripBOM: stripBOM,\n inherits: inherits,\n toFlatObject: toFlatObject,\n kindOf: kindOf,\n kindOfTest: kindOfTest,\n endsWith: endsWith,\n toArray: toArray,\n isTypedArray: isTypedArray,\n isFileList: isFileList\n};","map":{"version":3,"names":["bind","require","toString","Object","prototype","kindOf","cache","thing","str","call","slice","toLowerCase","create","kindOfTest","type","isKindOf","isArray","val","Array","isUndefined","isBuffer","constructor","isArrayBuffer","isArrayBufferView","result","ArrayBuffer","isView","buffer","isString","isNumber","isObject","isPlainObject","getPrototypeOf","isDate","isFile","isBlob","isFileList","isFunction","isStream","pipe","isFormData","pattern","FormData","isURLSearchParams","trim","replace","isStandardBrowserEnv","navigator","product","window","document","forEach","obj","fn","i","l","length","key","hasOwnProperty","merge","assignValue","arguments","extend","a","b","thisArg","stripBOM","content","charCodeAt","inherits","superConstructor","props","descriptors","assign","toFlatObject","sourceObj","destObj","filter","prop","merged","getOwnPropertyNames","endsWith","searchString","position","String","undefined","lastIndex","indexOf","toArray","arr","isTypedArray","TypedArray","Uint8Array","module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/axios/lib/utils.js"],"sourcesContent":["'use strict';\n\nvar bind = require('./helpers/bind');\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n// eslint-disable-next-line func-names\nvar kindOf = (function(cache) {\n // eslint-disable-next-line func-names\n return function(thing) {\n var str = toString.call(thing);\n return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());\n };\n})(Object.create(null));\n\nfunction kindOfTest(type) {\n type = type.toLowerCase();\n return function isKindOf(thing) {\n return kindOf(thing) === type;\n };\n}\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return Array.isArray(val);\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nvar isArrayBuffer = kindOfTest('ArrayBuffer');\n\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {Object} val The value to test\n * @return {boolean} True if value is a plain Object, otherwise false\n */\nfunction isPlainObject(val) {\n if (kindOf(val) !== 'object') {\n return false;\n }\n\n var prototype = Object.getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nvar isDate = kindOfTest('Date');\n\n/**\n * Determine if a value is a File\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nvar isFile = kindOfTest('File');\n\n/**\n * Determine if a value is a Blob\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nvar isBlob = kindOfTest('Blob');\n\n/**\n * Determine if a value is a FileList\n *\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nvar isFileList = kindOfTest('FileList');\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} thing The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(thing) {\n var pattern = '[object FormData]';\n return thing && (\n (typeof FormData === 'function' && thing instanceof FormData) ||\n toString.call(thing) === pattern ||\n (isFunction(thing.toString) && thing.toString() === pattern)\n );\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n * @function\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nvar isURLSearchParams = kindOfTest('URLSearchParams');\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.trim ? str.trim() : str.replace(/^\\s+|\\s+$/g, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||\n navigator.product === 'NativeScript' ||\n navigator.product === 'NS')) {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n * @return {string} content value without BOM\n */\nfunction stripBOM(content) {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\n/**\n * Inherit the prototype methods from one constructor into another\n * @param {function} constructor\n * @param {function} superConstructor\n * @param {object} [props]\n * @param {object} [descriptors]\n */\n\nfunction inherits(constructor, superConstructor, props, descriptors) {\n constructor.prototype = Object.create(superConstructor.prototype, descriptors);\n constructor.prototype.constructor = constructor;\n props && Object.assign(constructor.prototype, props);\n}\n\n/**\n * Resolve object with deep prototype chain to a flat object\n * @param {Object} sourceObj source object\n * @param {Object} [destObj]\n * @param {Function} [filter]\n * @returns {Object}\n */\n\nfunction toFlatObject(sourceObj, destObj, filter) {\n var props;\n var i;\n var prop;\n var merged = {};\n\n destObj = destObj || {};\n\n do {\n props = Object.getOwnPropertyNames(sourceObj);\n i = props.length;\n while (i-- > 0) {\n prop = props[i];\n if (!merged[prop]) {\n destObj[prop] = sourceObj[prop];\n merged[prop] = true;\n }\n }\n sourceObj = Object.getPrototypeOf(sourceObj);\n } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);\n\n return destObj;\n}\n\n/*\n * determines whether a string ends with the characters of a specified string\n * @param {String} str\n * @param {String} searchString\n * @param {Number} [position= 0]\n * @returns {boolean}\n */\nfunction endsWith(str, searchString, position) {\n str = String(str);\n if (position === undefined || position > str.length) {\n position = str.length;\n }\n position -= searchString.length;\n var lastIndex = str.indexOf(searchString, position);\n return lastIndex !== -1 && lastIndex === position;\n}\n\n\n/**\n * Returns new array from array like object\n * @param {*} [thing]\n * @returns {Array}\n */\nfunction toArray(thing) {\n if (!thing) return null;\n var i = thing.length;\n if (isUndefined(i)) return null;\n var arr = new Array(i);\n while (i-- > 0) {\n arr[i] = thing[i];\n }\n return arr;\n}\n\n// eslint-disable-next-line func-names\nvar isTypedArray = (function(TypedArray) {\n // eslint-disable-next-line func-names\n return function(thing) {\n return TypedArray && thing instanceof TypedArray;\n };\n})(typeof Uint8Array !== 'undefined' && Object.getPrototypeOf(Uint8Array));\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isPlainObject: isPlainObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim,\n stripBOM: stripBOM,\n inherits: inherits,\n toFlatObject: toFlatObject,\n kindOf: kindOf,\n kindOfTest: kindOfTest,\n endsWith: endsWith,\n toArray: toArray,\n isTypedArray: isTypedArray,\n isFileList: isFileList\n};\n"],"mappings":"AAAA;;AAEA,IAAIA,IAAI,GAAGC,OAAO,CAAC,gBAAD,CAAlB,C,CAEA;;;AAEA,IAAIC,QAAQ,GAAGC,MAAM,CAACC,SAAP,CAAiBF,QAAhC,C,CAEA;;AACA,IAAIG,MAAM,GAAI,UAASC,KAAT,EAAgB;EAC5B;EACA,OAAO,UAASC,KAAT,EAAgB;IACrB,IAAIC,GAAG,GAAGN,QAAQ,CAACO,IAAT,CAAcF,KAAd,CAAV;IACA,OAAOD,KAAK,CAACE,GAAD,CAAL,KAAeF,KAAK,CAACE,GAAD,CAAL,GAAaA,GAAG,CAACE,KAAJ,CAAU,CAAV,EAAa,CAAC,CAAd,EAAiBC,WAAjB,EAA5B,CAAP;EACD,CAHD;AAID,CANY,CAMVR,MAAM,CAACS,MAAP,CAAc,IAAd,CANU,CAAb;;AAQA,SAASC,UAAT,CAAoBC,IAApB,EAA0B;EACxBA,IAAI,GAAGA,IAAI,CAACH,WAAL,EAAP;EACA,OAAO,SAASI,QAAT,CAAkBR,KAAlB,EAAyB;IAC9B,OAAOF,MAAM,CAACE,KAAD,CAAN,KAAkBO,IAAzB;EACD,CAFD;AAGD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASE,OAAT,CAAiBC,GAAjB,EAAsB;EACpB,OAAOC,KAAK,CAACF,OAAN,CAAcC,GAAd,CAAP;AACD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASE,WAAT,CAAqBF,GAArB,EAA0B;EACxB,OAAO,OAAOA,GAAP,KAAe,WAAtB;AACD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASG,QAAT,CAAkBH,GAAlB,EAAuB;EACrB,OAAOA,GAAG,KAAK,IAAR,IAAgB,CAACE,WAAW,CAACF,GAAD,CAA5B,IAAqCA,GAAG,CAACI,WAAJ,KAAoB,IAAzD,IAAiE,CAACF,WAAW,CAACF,GAAG,CAACI,WAAL,CAA7E,IACF,OAAOJ,GAAG,CAACI,WAAJ,CAAgBD,QAAvB,KAAoC,UADlC,IACgDH,GAAG,CAACI,WAAJ,CAAgBD,QAAhB,CAAyBH,GAAzB,CADvD;AAED;AAED;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA,IAAIK,aAAa,GAAGT,UAAU,CAAC,aAAD,CAA9B;AAGA;AACA;AACA;AACA;AACA;AACA;;AACA,SAASU,iBAAT,CAA2BN,GAA3B,EAAgC;EAC9B,IAAIO,MAAJ;;EACA,IAAK,OAAOC,WAAP,KAAuB,WAAxB,IAAyCA,WAAW,CAACC,MAAzD,EAAkE;IAChEF,MAAM,GAAGC,WAAW,CAACC,MAAZ,CAAmBT,GAAnB,CAAT;EACD,CAFD,MAEO;IACLO,MAAM,GAAIP,GAAD,IAAUA,GAAG,CAACU,MAAd,IAA0BL,aAAa,CAACL,GAAG,CAACU,MAAL,CAAhD;EACD;;EACD,OAAOH,MAAP;AACD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASI,QAAT,CAAkBX,GAAlB,EAAuB;EACrB,OAAO,OAAOA,GAAP,KAAe,QAAtB;AACD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASY,QAAT,CAAkBZ,GAAlB,EAAuB;EACrB,OAAO,OAAOA,GAAP,KAAe,QAAtB;AACD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASa,QAAT,CAAkBb,GAAlB,EAAuB;EACrB,OAAOA,GAAG,KAAK,IAAR,IAAgB,OAAOA,GAAP,KAAe,QAAtC;AACD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASc,aAAT,CAAuBd,GAAvB,EAA4B;EAC1B,IAAIZ,MAAM,CAACY,GAAD,CAAN,KAAgB,QAApB,EAA8B;IAC5B,OAAO,KAAP;EACD;;EAED,IAAIb,SAAS,GAAGD,MAAM,CAAC6B,cAAP,CAAsBf,GAAtB,CAAhB;EACA,OAAOb,SAAS,KAAK,IAAd,IAAsBA,SAAS,KAAKD,MAAM,CAACC,SAAlD;AACD;AAED;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA,IAAI6B,MAAM,GAAGpB,UAAU,CAAC,MAAD,CAAvB;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA,IAAIqB,MAAM,GAAGrB,UAAU,CAAC,MAAD,CAAvB;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA,IAAIsB,MAAM,GAAGtB,UAAU,CAAC,MAAD,CAAvB;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA,IAAIuB,UAAU,GAAGvB,UAAU,CAAC,UAAD,CAA3B;AAEA;AACA;AACA;AACA;AACA;AACA;;AACA,SAASwB,UAAT,CAAoBpB,GAApB,EAAyB;EACvB,OAAOf,QAAQ,CAACO,IAAT,CAAcQ,GAAd,MAAuB,mBAA9B;AACD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASqB,QAAT,CAAkBrB,GAAlB,EAAuB;EACrB,OAAOa,QAAQ,CAACb,GAAD,CAAR,IAAiBoB,UAAU,CAACpB,GAAG,CAACsB,IAAL,CAAlC;AACD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASC,UAAT,CAAoBjC,KAApB,EAA2B;EACzB,IAAIkC,OAAO,GAAG,mBAAd;EACA,OAAOlC,KAAK,KACT,OAAOmC,QAAP,KAAoB,UAApB,IAAkCnC,KAAK,YAAYmC,QAApD,IACAxC,QAAQ,CAACO,IAAT,CAAcF,KAAd,MAAyBkC,OADzB,IAECJ,UAAU,CAAC9B,KAAK,CAACL,QAAP,CAAV,IAA8BK,KAAK,CAACL,QAAN,OAAqBuC,OAH1C,CAAZ;AAKD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,IAAIE,iBAAiB,GAAG9B,UAAU,CAAC,iBAAD,CAAlC;AAEA;AACA;AACA;AACA;AACA;AACA;;AACA,SAAS+B,IAAT,CAAcpC,GAAd,EAAmB;EACjB,OAAOA,GAAG,CAACoC,IAAJ,GAAWpC,GAAG,CAACoC,IAAJ,EAAX,GAAwBpC,GAAG,CAACqC,OAAJ,CAAY,YAAZ,EAA0B,EAA1B,CAA/B;AACD;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASC,oBAAT,GAAgC;EAC9B,IAAI,OAAOC,SAAP,KAAqB,WAArB,KAAqCA,SAAS,CAACC,OAAV,KAAsB,aAAtB,IACAD,SAAS,CAACC,OAAV,KAAsB,cADtB,IAEAD,SAAS,CAACC,OAAV,KAAsB,IAF3D,CAAJ,EAEsE;IACpE,OAAO,KAAP;EACD;;EACD,OACE,OAAOC,MAAP,KAAkB,WAAlB,IACA,OAAOC,QAAP,KAAoB,WAFtB;AAID;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASC,OAAT,CAAiBC,GAAjB,EAAsBC,EAAtB,EAA0B;EACxB;EACA,IAAID,GAAG,KAAK,IAAR,IAAgB,OAAOA,GAAP,KAAe,WAAnC,EAAgD;IAC9C;EACD,CAJuB,CAMxB;;;EACA,IAAI,OAAOA,GAAP,KAAe,QAAnB,EAA6B;IAC3B;IACAA,GAAG,GAAG,CAACA,GAAD,CAAN;EACD;;EAED,IAAIpC,OAAO,CAACoC,GAAD,CAAX,EAAkB;IAChB;IACA,KAAK,IAAIE,CAAC,GAAG,CAAR,EAAWC,CAAC,GAAGH,GAAG,CAACI,MAAxB,EAAgCF,CAAC,GAAGC,CAApC,EAAuCD,CAAC,EAAxC,EAA4C;MAC1CD,EAAE,CAAC5C,IAAH,CAAQ,IAAR,EAAc2C,GAAG,CAACE,CAAD,CAAjB,EAAsBA,CAAtB,EAAyBF,GAAzB;IACD;EACF,CALD,MAKO;IACL;IACA,KAAK,IAAIK,GAAT,IAAgBL,GAAhB,EAAqB;MACnB,IAAIjD,MAAM,CAACC,SAAP,CAAiBsD,cAAjB,CAAgCjD,IAAhC,CAAqC2C,GAArC,EAA0CK,GAA1C,CAAJ,EAAoD;QAClDJ,EAAE,CAAC5C,IAAH,CAAQ,IAAR,EAAc2C,GAAG,CAACK,GAAD,CAAjB,EAAwBA,GAAxB,EAA6BL,GAA7B;MACD;IACF;EACF;AACF;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;EAAe;AAANO,KAAT,GAA4C;EAC1C,IAAInC,MAAM,GAAG,EAAb;;EACA,SAASoC,WAAT,CAAqB3C,GAArB,EAA0BwC,GAA1B,EAA+B;IAC7B,IAAI1B,aAAa,CAACP,MAAM,CAACiC,GAAD,CAAP,CAAb,IAA8B1B,aAAa,CAACd,GAAD,CAA/C,EAAsD;MACpDO,MAAM,CAACiC,GAAD,CAAN,GAAcE,KAAK,CAACnC,MAAM,CAACiC,GAAD,CAAP,EAAcxC,GAAd,CAAnB;IACD,CAFD,MAEO,IAAIc,aAAa,CAACd,GAAD,CAAjB,EAAwB;MAC7BO,MAAM,CAACiC,GAAD,CAAN,GAAcE,KAAK,CAAC,EAAD,EAAK1C,GAAL,CAAnB;IACD,CAFM,MAEA,IAAID,OAAO,CAACC,GAAD,CAAX,EAAkB;MACvBO,MAAM,CAACiC,GAAD,CAAN,GAAcxC,GAAG,CAACP,KAAJ,EAAd;IACD,CAFM,MAEA;MACLc,MAAM,CAACiC,GAAD,CAAN,GAAcxC,GAAd;IACD;EACF;;EAED,KAAK,IAAIqC,CAAC,GAAG,CAAR,EAAWC,CAAC,GAAGM,SAAS,CAACL,MAA9B,EAAsCF,CAAC,GAAGC,CAA1C,EAA6CD,CAAC,EAA9C,EAAkD;IAChDH,OAAO,CAACU,SAAS,CAACP,CAAD,CAAV,EAAeM,WAAf,CAAP;EACD;;EACD,OAAOpC,MAAP;AACD;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASsC,MAAT,CAAgBC,CAAhB,EAAmBC,CAAnB,EAAsBC,OAAtB,EAA+B;EAC7Bd,OAAO,CAACa,CAAD,EAAI,SAASJ,WAAT,CAAqB3C,GAArB,EAA0BwC,GAA1B,EAA+B;IACxC,IAAIQ,OAAO,IAAI,OAAOhD,GAAP,KAAe,UAA9B,EAA0C;MACxC8C,CAAC,CAACN,GAAD,CAAD,GAASzD,IAAI,CAACiB,GAAD,EAAMgD,OAAN,CAAb;IACD,CAFD,MAEO;MACLF,CAAC,CAACN,GAAD,CAAD,GAASxC,GAAT;IACD;EACF,CANM,CAAP;EAOA,OAAO8C,CAAP;AACD;AAED;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASG,QAAT,CAAkBC,OAAlB,EAA2B;EACzB,IAAIA,OAAO,CAACC,UAAR,CAAmB,CAAnB,MAA0B,MAA9B,EAAsC;IACpCD,OAAO,GAAGA,OAAO,CAACzD,KAAR,CAAc,CAAd,CAAV;EACD;;EACD,OAAOyD,OAAP;AACD;AAED;AACA;AACA;AACA;AACA;AACA;AACA;;;AAEA,SAASE,QAAT,CAAkBhD,WAAlB,EAA+BiD,gBAA/B,EAAiDC,KAAjD,EAAwDC,WAAxD,EAAqE;EACnEnD,WAAW,CAACjB,SAAZ,GAAwBD,MAAM,CAACS,MAAP,CAAc0D,gBAAgB,CAAClE,SAA/B,EAA0CoE,WAA1C,CAAxB;EACAnD,WAAW,CAACjB,SAAZ,CAAsBiB,WAAtB,GAAoCA,WAApC;EACAkD,KAAK,IAAIpE,MAAM,CAACsE,MAAP,CAAcpD,WAAW,CAACjB,SAA1B,EAAqCmE,KAArC,CAAT;AACD;AAED;AACA;AACA;AACA;AACA;AACA;AACA;;;AAEA,SAASG,YAAT,CAAsBC,SAAtB,EAAiCC,OAAjC,EAA0CC,MAA1C,EAAkD;EAChD,IAAIN,KAAJ;EACA,IAAIjB,CAAJ;EACA,IAAIwB,IAAJ;EACA,IAAIC,MAAM,GAAG,EAAb;EAEAH,OAAO,GAAGA,OAAO,IAAI,EAArB;;EAEA,GAAG;IACDL,KAAK,GAAGpE,MAAM,CAAC6E,mBAAP,CAA2BL,SAA3B,CAAR;IACArB,CAAC,GAAGiB,KAAK,CAACf,MAAV;;IACA,OAAOF,CAAC,KAAK,CAAb,EAAgB;MACdwB,IAAI,GAAGP,KAAK,CAACjB,CAAD,CAAZ;;MACA,IAAI,CAACyB,MAAM,CAACD,IAAD,CAAX,EAAmB;QACjBF,OAAO,CAACE,IAAD,CAAP,GAAgBH,SAAS,CAACG,IAAD,CAAzB;QACAC,MAAM,CAACD,IAAD,CAAN,GAAe,IAAf;MACD;IACF;;IACDH,SAAS,GAAGxE,MAAM,CAAC6B,cAAP,CAAsB2C,SAAtB,CAAZ;EACD,CAXD,QAWSA,SAAS,KAAK,CAACE,MAAD,IAAWA,MAAM,CAACF,SAAD,EAAYC,OAAZ,CAAtB,CAAT,IAAwDD,SAAS,KAAKxE,MAAM,CAACC,SAXtF;;EAaA,OAAOwE,OAAP;AACD;AAED;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASK,QAAT,CAAkBzE,GAAlB,EAAuB0E,YAAvB,EAAqCC,QAArC,EAA+C;EAC7C3E,GAAG,GAAG4E,MAAM,CAAC5E,GAAD,CAAZ;;EACA,IAAI2E,QAAQ,KAAKE,SAAb,IAA0BF,QAAQ,GAAG3E,GAAG,CAACgD,MAA7C,EAAqD;IACnD2B,QAAQ,GAAG3E,GAAG,CAACgD,MAAf;EACD;;EACD2B,QAAQ,IAAID,YAAY,CAAC1B,MAAzB;EACA,IAAI8B,SAAS,GAAG9E,GAAG,CAAC+E,OAAJ,CAAYL,YAAZ,EAA0BC,QAA1B,CAAhB;EACA,OAAOG,SAAS,KAAK,CAAC,CAAf,IAAoBA,SAAS,KAAKH,QAAzC;AACD;AAGD;AACA;AACA;AACA;AACA;;;AACA,SAASK,OAAT,CAAiBjF,KAAjB,EAAwB;EACtB,IAAI,CAACA,KAAL,EAAY,OAAO,IAAP;EACZ,IAAI+C,CAAC,GAAG/C,KAAK,CAACiD,MAAd;EACA,IAAIrC,WAAW,CAACmC,CAAD,CAAf,EAAoB,OAAO,IAAP;EACpB,IAAImC,GAAG,GAAG,IAAIvE,KAAJ,CAAUoC,CAAV,CAAV;;EACA,OAAOA,CAAC,KAAK,CAAb,EAAgB;IACdmC,GAAG,CAACnC,CAAD,CAAH,GAAS/C,KAAK,CAAC+C,CAAD,CAAd;EACD;;EACD,OAAOmC,GAAP;AACD,C,CAED;;;AACA,IAAIC,YAAY,GAAI,UAASC,UAAT,EAAqB;EACvC;EACA,OAAO,UAASpF,KAAT,EAAgB;IACrB,OAAOoF,UAAU,IAAIpF,KAAK,YAAYoF,UAAtC;EACD,CAFD;AAGD,CALkB,CAKhB,OAAOC,UAAP,KAAsB,WAAtB,IAAqCzF,MAAM,CAAC6B,cAAP,CAAsB4D,UAAtB,CALrB,CAAnB;;AAOAC,MAAM,CAACC,OAAP,GAAiB;EACf9E,OAAO,EAAEA,OADM;EAEfM,aAAa,EAAEA,aAFA;EAGfF,QAAQ,EAAEA,QAHK;EAIfoB,UAAU,EAAEA,UAJG;EAKfjB,iBAAiB,EAAEA,iBALJ;EAMfK,QAAQ,EAAEA,QANK;EAOfC,QAAQ,EAAEA,QAPK;EAQfC,QAAQ,EAAEA,QARK;EASfC,aAAa,EAAEA,aATA;EAUfZ,WAAW,EAAEA,WAVE;EAWfc,MAAM,EAAEA,MAXO;EAYfC,MAAM,EAAEA,MAZO;EAafC,MAAM,EAAEA,MAbO;EAcfE,UAAU,EAAEA,UAdG;EAefC,QAAQ,EAAEA,QAfK;EAgBfK,iBAAiB,EAAEA,iBAhBJ;EAiBfG,oBAAoB,EAAEA,oBAjBP;EAkBfK,OAAO,EAAEA,OAlBM;EAmBfQ,KAAK,EAAEA,KAnBQ;EAoBfG,MAAM,EAAEA,MApBO;EAqBflB,IAAI,EAAEA,IArBS;EAsBfsB,QAAQ,EAAEA,QAtBK;EAuBfG,QAAQ,EAAEA,QAvBK;EAwBfK,YAAY,EAAEA,YAxBC;EAyBfrE,MAAM,EAAEA,MAzBO;EA0BfQ,UAAU,EAAEA,UA1BG;EA2BfoE,QAAQ,EAAEA,QA3BK;EA4BfO,OAAO,EAAEA,OA5BM;EA6BfE,YAAY,EAAEA,YA7BC;EA8BftD,UAAU,EAAEA;AA9BG,CAAjB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/068f52b30692f0998dab5443942ad6d7.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/068f52b30692f0998dab5443942ad6d7.json deleted file mode 100644 index 82e9b2ec..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/068f52b30692f0998dab5443942ad6d7.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(CreateEntry, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["BlogEntry","CreateEntry","Home","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\nfunction App() {\n return (\n
\n \n \n
\n );\n}\n\nexport default App;\n"],"mappings":";AAAA,OAAOA,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AACA,SAASC,GAAT,GAAe;EACb,oBACE;IAAA,wBACA,QAAC,MAAD;MAAA;MAAA;MAAA;IAAA,QADA,eAEA,QAAC,WAAD;MAAA;MAAA;MAAA;IAAA,QAFA;EAAA;IAAA;IAAA;IAAA;EAAA,QADF;AAMD;;KAPQA,G;AAST,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/07205196e94d2970b54b79b430e24fe2.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/07205196e94d2970b54b79b430e24fe2.json new file mode 100644 index 00000000..f3bdc8df --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/07205196e94d2970b54b79b430e24fe2.json @@ -0,0 +1 @@ +{"ast":null,"code":"// TODO: Remove from `core-js@4`\nrequire('../modules/es.global-this');","map":{"version":3,"names":["require"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/modules/esnext.global-this.js"],"sourcesContent":["// TODO: Remove from `core-js@4`\nrequire('../modules/es.global-this');\n"],"mappings":"AAAA;AACAA,OAAO,CAAC,2BAAD,CAAP"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/072220a9be895c7eae2e99e7701649f0.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/072220a9be895c7eae2e99e7701649f0.json deleted file mode 100644 index 5c6cb4b6..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/072220a9be895c7eae2e99e7701649f0.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n class: \"text-center margin-5rm \",\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: Created: \n \n Entry Title \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,uBAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAW,KAAK,EAAC,yBAAjB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/072337d51ce41254175485c9629c222f.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/072337d51ce41254175485c9629c222f.json new file mode 100644 index 00000000..3becc4d3 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/072337d51ce41254175485c9629c222f.json @@ -0,0 +1 @@ +{"ast":null,"code":"/**\n * Checks if a given element has a CSS class.\n * \n * @param element the element\n * @param className the CSS class name\n */\nexport default function hasClass(element, className) {\n if (element.classList) return !!className && element.classList.contains(className);\n return (\" \" + (element.className.baseVal || element.className) + \" \").indexOf(\" \" + className + \" \") !== -1;\n}","map":{"version":3,"names":["hasClass","element","className","classList","contains","baseVal","indexOf"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/dom-helpers/esm/hasClass.js"],"sourcesContent":["/**\n * Checks if a given element has a CSS class.\n * \n * @param element the element\n * @param className the CSS class name\n */\nexport default function hasClass(element, className) {\n if (element.classList) return !!className && element.classList.contains(className);\n return (\" \" + (element.className.baseVal || element.className) + \" \").indexOf(\" \" + className + \" \") !== -1;\n}"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,SAASA,QAAT,CAAkBC,OAAlB,EAA2BC,SAA3B,EAAsC;EACnD,IAAID,OAAO,CAACE,SAAZ,EAAuB,OAAO,CAAC,CAACD,SAAF,IAAeD,OAAO,CAACE,SAAR,CAAkBC,QAAlB,CAA2BF,SAA3B,CAAtB;EACvB,OAAO,CAAC,OAAOD,OAAO,CAACC,SAAR,CAAkBG,OAAlB,IAA6BJ,OAAO,CAACC,SAA5C,IAAyD,GAA1D,EAA+DI,OAA/D,CAAuE,MAAMJ,SAAN,GAAkB,GAAzF,MAAkG,CAAC,CAA1G;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/076138df6f92d139e1c9ab0f7bef8c59.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/076138df6f92d139e1c9ab0f7bef8c59.json deleted file mode 100644 index f4717ab3..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/076138df6f92d139e1c9ab0f7bef8c59.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import addClass from 'dom-helpers/addClass';\nimport css from 'dom-helpers/css';\nimport qsa from 'dom-helpers/querySelectorAll';\nimport removeClass from 'dom-helpers/removeClass';\nimport ModalManager from '@restart/ui/ModalManager';\nconst Selector = {\n FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top',\n STICKY_CONTENT: '.sticky-top',\n NAVBAR_TOGGLER: '.navbar-toggler'\n};\n\nclass BootstrapModalManager extends ModalManager {\n adjustAndStore(prop, element, adjust) {\n const actual = element.style[prop]; // TODO: DOMStringMap and CSSStyleDeclaration aren't strictly compatible\n // @ts-ignore\n\n element.dataset[prop] = actual;\n css(element, {\n [prop]: `${parseFloat(css(element, prop)) + adjust}px`\n });\n }\n\n restore(prop, element) {\n const value = element.dataset[prop];\n\n if (value !== undefined) {\n delete element.dataset[prop];\n css(element, {\n [prop]: value\n });\n }\n }\n\n setContainerStyle(containerState) {\n super.setContainerStyle(containerState);\n const container = this.getElement();\n addClass(container, 'modal-open');\n if (!containerState.scrollBarWidth) return;\n const paddingProp = this.isRTL ? 'paddingLeft' : 'paddingRight';\n const marginProp = this.isRTL ? 'marginLeft' : 'marginRight';\n qsa(container, Selector.FIXED_CONTENT).forEach(el => this.adjustAndStore(paddingProp, el, containerState.scrollBarWidth));\n qsa(container, Selector.STICKY_CONTENT).forEach(el => this.adjustAndStore(marginProp, el, -containerState.scrollBarWidth));\n qsa(container, Selector.NAVBAR_TOGGLER).forEach(el => this.adjustAndStore(marginProp, el, containerState.scrollBarWidth));\n }\n\n removeContainerStyle(containerState) {\n super.removeContainerStyle(containerState);\n const container = this.getElement();\n removeClass(container, 'modal-open');\n const paddingProp = this.isRTL ? 'paddingLeft' : 'paddingRight';\n const marginProp = this.isRTL ? 'marginLeft' : 'marginRight';\n qsa(container, Selector.FIXED_CONTENT).forEach(el => this.restore(paddingProp, el));\n qsa(container, Selector.STICKY_CONTENT).forEach(el => this.restore(marginProp, el));\n qsa(container, Selector.NAVBAR_TOGGLER).forEach(el => this.restore(marginProp, el));\n }\n\n}\n\nlet sharedManager;\nexport function getSharedManager(options) {\n if (!sharedManager) sharedManager = new BootstrapModalManager(options);\n return sharedManager;\n}\nexport default BootstrapModalManager;","map":{"version":3,"names":["addClass","css","qsa","removeClass","ModalManager","Selector","FIXED_CONTENT","STICKY_CONTENT","NAVBAR_TOGGLER","BootstrapModalManager","adjustAndStore","prop","element","adjust","actual","style","dataset","parseFloat","restore","value","undefined","setContainerStyle","containerState","container","getElement","scrollBarWidth","paddingProp","isRTL","marginProp","forEach","el","removeContainerStyle","sharedManager","getSharedManager","options"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-bootstrap/esm/BootstrapModalManager.js"],"sourcesContent":["import addClass from 'dom-helpers/addClass';\nimport css from 'dom-helpers/css';\nimport qsa from 'dom-helpers/querySelectorAll';\nimport removeClass from 'dom-helpers/removeClass';\nimport ModalManager from '@restart/ui/ModalManager';\nconst Selector = {\n FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top',\n STICKY_CONTENT: '.sticky-top',\n NAVBAR_TOGGLER: '.navbar-toggler'\n};\n\nclass BootstrapModalManager extends ModalManager {\n adjustAndStore(prop, element, adjust) {\n const actual = element.style[prop]; // TODO: DOMStringMap and CSSStyleDeclaration aren't strictly compatible\n // @ts-ignore\n\n element.dataset[prop] = actual;\n css(element, {\n [prop]: `${parseFloat(css(element, prop)) + adjust}px`\n });\n }\n\n restore(prop, element) {\n const value = element.dataset[prop];\n\n if (value !== undefined) {\n delete element.dataset[prop];\n css(element, {\n [prop]: value\n });\n }\n }\n\n setContainerStyle(containerState) {\n super.setContainerStyle(containerState);\n const container = this.getElement();\n addClass(container, 'modal-open');\n if (!containerState.scrollBarWidth) return;\n const paddingProp = this.isRTL ? 'paddingLeft' : 'paddingRight';\n const marginProp = this.isRTL ? 'marginLeft' : 'marginRight';\n qsa(container, Selector.FIXED_CONTENT).forEach(el => this.adjustAndStore(paddingProp, el, containerState.scrollBarWidth));\n qsa(container, Selector.STICKY_CONTENT).forEach(el => this.adjustAndStore(marginProp, el, -containerState.scrollBarWidth));\n qsa(container, Selector.NAVBAR_TOGGLER).forEach(el => this.adjustAndStore(marginProp, el, containerState.scrollBarWidth));\n }\n\n removeContainerStyle(containerState) {\n super.removeContainerStyle(containerState);\n const container = this.getElement();\n removeClass(container, 'modal-open');\n const paddingProp = this.isRTL ? 'paddingLeft' : 'paddingRight';\n const marginProp = this.isRTL ? 'marginLeft' : 'marginRight';\n qsa(container, Selector.FIXED_CONTENT).forEach(el => this.restore(paddingProp, el));\n qsa(container, Selector.STICKY_CONTENT).forEach(el => this.restore(marginProp, el));\n qsa(container, Selector.NAVBAR_TOGGLER).forEach(el => this.restore(marginProp, el));\n }\n\n}\n\nlet sharedManager;\nexport function getSharedManager(options) {\n if (!sharedManager) sharedManager = new BootstrapModalManager(options);\n return sharedManager;\n}\nexport default BootstrapModalManager;"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0780bd6d3da06b01eab0c3ec34ca88fb.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0780bd6d3da06b01eab0c3ec34ca88fb.json new file mode 100644 index 00000000..04274669 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0780bd6d3da06b01eab0c3ec34ca88fb.json @@ -0,0 +1 @@ +{"ast":null,"code":"function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n Object.defineProperty(Constructor, \"prototype\", {\n writable: false\n });\n return Constructor;\n}\n\nimport { log } from \"../utils/log.js\";\n\nvar WebSocketClient = /*#__PURE__*/function () {\n /**\n * @param {string} url\n */\n function WebSocketClient(url) {\n _classCallCheck(this, WebSocketClient);\n\n this.client = new WebSocket(url);\n\n this.client.onerror = function (error) {\n log.error(error);\n };\n }\n /**\n * @param {(...args: any[]) => void} f\n */\n\n\n _createClass(WebSocketClient, [{\n key: \"onOpen\",\n value: function onOpen(f) {\n this.client.onopen = f;\n }\n /**\n * @param {(...args: any[]) => void} f\n */\n\n }, {\n key: \"onClose\",\n value: function onClose(f) {\n this.client.onclose = f;\n } // call f with the message string as the first argument\n\n /**\n * @param {(...args: any[]) => void} f\n */\n\n }, {\n key: \"onMessage\",\n value: function onMessage(f) {\n this.client.onmessage = function (e) {\n f(e.data);\n };\n }\n }]);\n\n return WebSocketClient;\n}();\n\nexport { WebSocketClient as default };","map":{"version":3,"names":["_classCallCheck","instance","Constructor","TypeError","_defineProperties","target","props","i","length","descriptor","enumerable","configurable","writable","Object","defineProperty","key","_createClass","protoProps","staticProps","prototype","log","WebSocketClient","url","client","WebSocket","onerror","error","value","onOpen","f","onopen","onClose","onclose","onMessage","onmessage","e","data","default"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/webpack-dev-server/client/clients/WebSocketClient.js"],"sourcesContent":["function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nimport { log } from \"../utils/log.js\";\n\nvar WebSocketClient = /*#__PURE__*/function () {\n /**\n * @param {string} url\n */\n function WebSocketClient(url) {\n _classCallCheck(this, WebSocketClient);\n\n this.client = new WebSocket(url);\n\n this.client.onerror = function (error) {\n log.error(error);\n };\n }\n /**\n * @param {(...args: any[]) => void} f\n */\n\n\n _createClass(WebSocketClient, [{\n key: \"onOpen\",\n value: function onOpen(f) {\n this.client.onopen = f;\n }\n /**\n * @param {(...args: any[]) => void} f\n */\n\n }, {\n key: \"onClose\",\n value: function onClose(f) {\n this.client.onclose = f;\n } // call f with the message string as the first argument\n\n /**\n * @param {(...args: any[]) => void} f\n */\n\n }, {\n key: \"onMessage\",\n value: function onMessage(f) {\n this.client.onmessage = function (e) {\n f(e.data);\n };\n }\n }]);\n\n return WebSocketClient;\n}();\n\nexport { WebSocketClient as default };"],"mappings":"AAAA,SAASA,eAAT,CAAyBC,QAAzB,EAAmCC,WAAnC,EAAgD;EAAE,IAAI,EAAED,QAAQ,YAAYC,WAAtB,CAAJ,EAAwC;IAAE,MAAM,IAAIC,SAAJ,CAAc,mCAAd,CAAN;EAA2D;AAAE;;AAEzJ,SAASC,iBAAT,CAA2BC,MAA3B,EAAmCC,KAAnC,EAA0C;EAAE,KAAK,IAAIC,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGD,KAAK,CAACE,MAA1B,EAAkCD,CAAC,EAAnC,EAAuC;IAAE,IAAIE,UAAU,GAAGH,KAAK,CAACC,CAAD,CAAtB;IAA2BE,UAAU,CAACC,UAAX,GAAwBD,UAAU,CAACC,UAAX,IAAyB,KAAjD;IAAwDD,UAAU,CAACE,YAAX,GAA0B,IAA1B;IAAgC,IAAI,WAAWF,UAAf,EAA2BA,UAAU,CAACG,QAAX,GAAsB,IAAtB;IAA4BC,MAAM,CAACC,cAAP,CAAsBT,MAAtB,EAA8BI,UAAU,CAACM,GAAzC,EAA8CN,UAA9C;EAA4D;AAAE;;AAE7T,SAASO,YAAT,CAAsBd,WAAtB,EAAmCe,UAAnC,EAA+CC,WAA/C,EAA4D;EAAE,IAAID,UAAJ,EAAgBb,iBAAiB,CAACF,WAAW,CAACiB,SAAb,EAAwBF,UAAxB,CAAjB;EAAsD,IAAIC,WAAJ,EAAiBd,iBAAiB,CAACF,WAAD,EAAcgB,WAAd,CAAjB;EAA6CL,MAAM,CAACC,cAAP,CAAsBZ,WAAtB,EAAmC,WAAnC,EAAgD;IAAEU,QAAQ,EAAE;EAAZ,CAAhD;EAAsE,OAAOV,WAAP;AAAqB;;AAE7R,SAASkB,GAAT,QAAoB,iBAApB;;AAEA,IAAIC,eAAe,GAAG,aAAa,YAAY;EAC7C;AACF;AACA;EACE,SAASA,eAAT,CAAyBC,GAAzB,EAA8B;IAC5BtB,eAAe,CAAC,IAAD,EAAOqB,eAAP,CAAf;;IAEA,KAAKE,MAAL,GAAc,IAAIC,SAAJ,CAAcF,GAAd,CAAd;;IAEA,KAAKC,MAAL,CAAYE,OAAZ,GAAsB,UAAUC,KAAV,EAAiB;MACrCN,GAAG,CAACM,KAAJ,CAAUA,KAAV;IACD,CAFD;EAGD;EACD;AACF;AACA;;;EAGEV,YAAY,CAACK,eAAD,EAAkB,CAAC;IAC7BN,GAAG,EAAE,QADwB;IAE7BY,KAAK,EAAE,SAASC,MAAT,CAAgBC,CAAhB,EAAmB;MACxB,KAAKN,MAAL,CAAYO,MAAZ,GAAqBD,CAArB;IACD;IACD;AACJ;AACA;;EAPiC,CAAD,EAS3B;IACDd,GAAG,EAAE,SADJ;IAEDY,KAAK,EAAE,SAASI,OAAT,CAAiBF,CAAjB,EAAoB;MACzB,KAAKN,MAAL,CAAYS,OAAZ,GAAsBH,CAAtB;IACD,CAJA,CAIC;;IAEF;AACJ;AACA;;EARK,CAT2B,EAmB3B;IACDd,GAAG,EAAE,WADJ;IAEDY,KAAK,EAAE,SAASM,SAAT,CAAmBJ,CAAnB,EAAsB;MAC3B,KAAKN,MAAL,CAAYW,SAAZ,GAAwB,UAAUC,CAAV,EAAa;QACnCN,CAAC,CAACM,CAAC,CAACC,IAAH,CAAD;MACD,CAFD;IAGD;EANA,CAnB2B,CAAlB,CAAZ;;EA4BA,OAAOf,eAAP;AACD,CA/CkC,EAAnC;;AAiDA,SAASA,eAAe,IAAIgB,OAA5B"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/078c148e824f4b4948f657b9bbbaa664.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/078c148e824f4b4948f657b9bbbaa664.json deleted file mode 100644 index 798e6ad9..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/078c148e824f4b4948f657b9bbbaa664.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var uncurryThis = require('../internals/function-uncurry-this');\n\nvar aCallable = require('../internals/a-callable');\n\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar bind = uncurryThis(uncurryThis.bind); // optional / simple context binding\n\nmodule.exports = function (fn, that) {\n aCallable(fn);\n return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function\n /* ...args */\n () {\n return fn.apply(that, arguments);\n };\n};","map":{"version":3,"names":["uncurryThis","require","aCallable","NATIVE_BIND","bind","module","exports","fn","that","undefined","apply","arguments"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/function-bind-context.js"],"sourcesContent":["var uncurryThis = require('../internals/function-uncurry-this');\nvar aCallable = require('../internals/a-callable');\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar bind = uncurryThis(uncurryThis.bind);\n\n// optional / simple context binding\nmodule.exports = function (fn, that) {\n aCallable(fn);\n return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n"],"mappings":"AAAA,IAAIA,WAAW,GAAGC,OAAO,CAAC,oCAAD,CAAzB;;AACA,IAAIC,SAAS,GAAGD,OAAO,CAAC,yBAAD,CAAvB;;AACA,IAAIE,WAAW,GAAGF,OAAO,CAAC,mCAAD,CAAzB;;AAEA,IAAIG,IAAI,GAAGJ,WAAW,CAACA,WAAW,CAACI,IAAb,CAAtB,C,CAEA;;AACAC,MAAM,CAACC,OAAP,GAAiB,UAAUC,EAAV,EAAcC,IAAd,EAAoB;EACnCN,SAAS,CAACK,EAAD,CAAT;EACA,OAAOC,IAAI,KAAKC,SAAT,GAAqBF,EAArB,GAA0BJ,WAAW,GAAGC,IAAI,CAACG,EAAD,EAAKC,IAAL,CAAP,GAAoB;IAAU;EAAV,GAAyB;IACvF,OAAOD,EAAE,CAACG,KAAH,CAASF,IAAT,EAAeG,SAAf,CAAP;EACD,CAFD;AAGD,CALD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/07a6dc0a39a0992dd8dcda7a9c9b02cf.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/07a6dc0a39a0992dd8dcda7a9c9b02cf.json deleted file mode 100644 index 7b13de49..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/07a6dc0a39a0992dd8dcda7a9c9b02cf.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n'use strict';\n/* eslint-disable no-unused-vars */\n\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n if (val === null || val === undefined) {\n throw new TypeError('Object.assign cannot be called with null or undefined');\n }\n\n return Object(val);\n}\n\nfunction shouldUseNative() {\n try {\n if (!Object.assign) {\n return false;\n } // Detect buggy property enumeration order in older V8 versions.\n // https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\n\n var test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\n test1[5] = 'de';\n\n if (Object.getOwnPropertyNames(test1)[0] === '5') {\n return false;\n } // https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\n\n var test2 = {};\n\n for (var i = 0; i < 10; i++) {\n test2['_' + String.fromCharCode(i)] = i;\n }\n\n var order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n return test2[n];\n });\n\n if (order2.join('') !== '0123456789') {\n return false;\n } // https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\n\n var test3 = {};\n 'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n test3[letter] = letter;\n });\n\n if (Object.keys(Object.assign({}, test3)).join('') !== 'abcdefghijklmnopqrst') {\n return false;\n }\n\n return true;\n } catch (err) {\n // We don't expect any of the above to throw, but better to be safe.\n return false;\n }\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n var from;\n var to = toObject(target);\n var symbols;\n\n for (var s = 1; s < arguments.length; s++) {\n from = Object(arguments[s]);\n\n for (var key in from) {\n if (hasOwnProperty.call(from, key)) {\n to[key] = from[key];\n }\n }\n\n if (getOwnPropertySymbols) {\n symbols = getOwnPropertySymbols(from);\n\n for (var i = 0; i < symbols.length; i++) {\n if (propIsEnumerable.call(from, symbols[i])) {\n to[symbols[i]] = from[symbols[i]];\n }\n }\n }\n }\n\n return to;\n};","map":{"version":3,"names":["getOwnPropertySymbols","Object","hasOwnProperty","prototype","propIsEnumerable","propertyIsEnumerable","toObject","val","undefined","TypeError","shouldUseNative","assign","test1","String","getOwnPropertyNames","test2","i","fromCharCode","order2","map","n","join","test3","split","forEach","letter","keys","err","module","exports","target","source","from","to","symbols","s","arguments","length","key","call"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/object-assign/index.js"],"sourcesContent":["/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n"],"mappings":"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"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0871e9d935ff1dfb2308cb6afd34aa90.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0871e9d935ff1dfb2308cb6afd34aa90.json deleted file mode 100644 index af6ed985..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0871e9d935ff1dfb2308cb6afd34aa90.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Form from 'react-bootstrap/Form';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function CreateEntry() {\n return /*#__PURE__*/_jsxDEV(Form, {\n children: [/*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBasicEmail\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"text\",\n placeholder: \"Enter Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBasicPassword\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"password\",\n placeholder: \"Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBasicCheckbox\",\n children: /*#__PURE__*/_jsxDEV(Form.Check, {\n type: \"checkbox\",\n label: \"Check me out\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n type: \"submit\",\n children: \"Submit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 9\n }, this);\n}\n_c = CreateEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"CreateEntry\");","map":{"version":3,"names":["Button","Form","React","CreateEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Form from 'react-bootstrap/Form'\nimport React from \"react\";\n\nexport default function CreateEntry() {\n return (\n
\n \n Blog Title\n \n \n\n \n Password\n \n \n \n \n \n \n
\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,WAAT,GAAuB;EAClC,oBACI,QAAC,IAAD;IAAA,wBACA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,gBAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,MAAnB;QAA0B,WAAW,EAAC;MAAtC;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QADA,eAMA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,mBAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,UAAnB;QAA8B,WAAW,EAAC;MAA1C;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QANA,eAUA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,mBAAvC;MAAA,uBACI,QAAC,IAAD,CAAM,KAAN;QAAY,IAAI,EAAC,UAAjB;QAA4B,KAAK,EAAC;MAAlC;QAAA;QAAA;QAAA;MAAA;IADJ;MAAA;MAAA;MAAA;IAAA,QAVA,eAaA,QAAC,MAAD;MAAQ,OAAO,EAAC,SAAhB;MAA0B,IAAI,EAAC,QAA/B;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAbA;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAmBH;KApBuBA,W"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0879544870364e3d5648c4e021b292d1.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0879544870364e3d5648c4e021b292d1.json new file mode 100644 index 00000000..163209b2 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0879544870364e3d5648c4e021b292d1.json @@ -0,0 +1 @@ +{"ast":null,"code":"import { createContext, useContext } from 'react';\nimport canUseDOM from 'dom-helpers/canUseDOM';\nconst Context = /*#__PURE__*/createContext(canUseDOM ? window : undefined);\nexport const WindowProvider = Context.Provider;\n/**\n * The document \"window\" placed in React context. Helpful for determining\n * SSR context, or when rendering into an iframe.\n *\n * @returns the current window\n */\n\nexport default function useWindow() {\n return useContext(Context);\n}","map":{"version":3,"names":["createContext","useContext","canUseDOM","Context","window","undefined","WindowProvider","Provider","useWindow"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/@restart/ui/esm/useWindow.js"],"sourcesContent":["import { createContext, useContext } from 'react';\nimport canUseDOM from 'dom-helpers/canUseDOM';\nconst Context = /*#__PURE__*/createContext(canUseDOM ? window : undefined);\nexport const WindowProvider = Context.Provider;\n/**\n * The document \"window\" placed in React context. Helpful for determining\n * SSR context, or when rendering into an iframe.\n *\n * @returns the current window\n */\n\nexport default function useWindow() {\n return useContext(Context);\n}"],"mappings":"AAAA,SAASA,aAAT,EAAwBC,UAAxB,QAA0C,OAA1C;AACA,OAAOC,SAAP,MAAsB,uBAAtB;AACA,MAAMC,OAAO,GAAG,aAAaH,aAAa,CAACE,SAAS,GAAGE,MAAH,GAAYC,SAAtB,CAA1C;AACA,OAAO,MAAMC,cAAc,GAAGH,OAAO,CAACI,QAA/B;AACP;AACA;AACA;AACA;AACA;AACA;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAClC,OAAOP,UAAU,CAACE,OAAD,CAAjB;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0889755f896d0cee82abe8c218007082.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0889755f896d0cee82abe8c218007082.json deleted file mode 100644 index e46c0dfd..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0889755f896d0cee82abe8c218007082.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"/* global __resourceQuery WorkerGlobalScope */\n// Send messages to the outside, so plugins can consume it.\n\n/**\n * @param {string} type\n * @param {any} [data]\n */\nfunction sendMsg(type, data) {\n if (typeof self !== \"undefined\" && (typeof WorkerGlobalScope === \"undefined\" || !(self instanceof WorkerGlobalScope))) {\n self.postMessage({\n type: \"webpack\".concat(type),\n data: data\n }, \"*\");\n }\n}\n\nexport default sendMsg;","map":{"version":3,"names":["sendMsg","type","data","self","WorkerGlobalScope","postMessage","concat"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/webpack-dev-server/client/utils/sendMessage.js"],"sourcesContent":["/* global __resourceQuery WorkerGlobalScope */\n// Send messages to the outside, so plugins can consume it.\n\n/**\n * @param {string} type\n * @param {any} [data]\n */\nfunction sendMsg(type, data) {\n if (typeof self !== \"undefined\" && (typeof WorkerGlobalScope === \"undefined\" || !(self instanceof WorkerGlobalScope))) {\n self.postMessage({\n type: \"webpack\".concat(type),\n data: data\n }, \"*\");\n }\n}\n\nexport default sendMsg;"],"mappings":"AAAA;AACA;;AAEA;AACA;AACA;AACA;AACA,SAASA,OAAT,CAAiBC,IAAjB,EAAuBC,IAAvB,EAA6B;EAC3B,IAAI,OAAOC,IAAP,KAAgB,WAAhB,KAAgC,OAAOC,iBAAP,KAA6B,WAA7B,IAA4C,EAAED,IAAI,YAAYC,iBAAlB,CAA5E,CAAJ,EAAuH;IACrHD,IAAI,CAACE,WAAL,CAAiB;MACfJ,IAAI,EAAE,UAAUK,MAAV,CAAiBL,IAAjB,CADS;MAEfC,IAAI,EAAEA;IAFS,CAAjB,EAGG,GAHH;EAID;AACF;;AAED,eAAeF,OAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/08a89287bf3d696915c5c101b2cde5c7.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/08a89287bf3d696915c5c101b2cde5c7.json deleted file mode 100644 index 4cab5838..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/08a89287bf3d696915c5c101b2cde5c7.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"/**\n * React Router v6.3.0\n *\n * Copyright (c) Remix Software Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE.md file in the root directory of this source tree.\n *\n * @license MIT\n */\nimport { parsePath, createMemoryHistory, Action } from 'history';\nexport { Action as NavigationType, createPath, parsePath } from 'history';\nimport { createContext, useContext, useMemo, useRef, useEffect, useCallback, createElement, useState, useLayoutEffect, Children, isValidElement, Fragment } from 'react';\nconst NavigationContext = /*#__PURE__*/createContext(null);\n\nif (process.env.NODE_ENV !== \"production\") {\n NavigationContext.displayName = \"Navigation\";\n}\n\nconst LocationContext = /*#__PURE__*/createContext(null);\n\nif (process.env.NODE_ENV !== \"production\") {\n LocationContext.displayName = \"Location\";\n}\n\nconst RouteContext = /*#__PURE__*/createContext({\n outlet: null,\n matches: []\n});\n\nif (process.env.NODE_ENV !== \"production\") {\n RouteContext.displayName = \"Route\";\n}\n\nfunction invariant(cond, message) {\n if (!cond) throw new Error(message);\n}\n\nfunction warning(cond, message) {\n if (!cond) {\n // eslint-disable-next-line no-console\n if (typeof console !== \"undefined\") console.warn(message);\n\n try {\n // Welcome to debugging React Router!\n //\n // This error is thrown as a convenience so you can more easily\n // find the source for a warning that appears in the console by\n // enabling \"pause on exceptions\" in your JavaScript debugger.\n throw new Error(message); // eslint-disable-next-line no-empty\n } catch (e) {}\n }\n}\n\nconst alreadyWarned = {};\n\nfunction warningOnce(key, cond, message) {\n if (!cond && !alreadyWarned[key]) {\n alreadyWarned[key] = true;\n process.env.NODE_ENV !== \"production\" ? warning(false, message) : void 0;\n }\n}\n/**\n * Returns a path with params interpolated.\n *\n * @see https://reactrouter.com/docs/en/v6/api#generatepath\n */\n\n\nfunction generatePath(path, params) {\n if (params === void 0) {\n params = {};\n }\n\n return path.replace(/:(\\w+)/g, (_, key) => {\n !(params[key] != null) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"Missing \\\":\" + key + \"\\\" param\") : invariant(false) : void 0;\n return params[key];\n }).replace(/\\/*\\*$/, _ => params[\"*\"] == null ? \"\" : params[\"*\"].replace(/^\\/*/, \"/\"));\n}\n/**\n * A RouteMatch contains info about how a route matched a URL.\n */\n\n/**\n * Matches the given routes to a location and returns the match data.\n *\n * @see https://reactrouter.com/docs/en/v6/api#matchroutes\n */\n\n\nfunction matchRoutes(routes, locationArg, basename) {\n if (basename === void 0) {\n basename = \"/\";\n }\n\n let location = typeof locationArg === \"string\" ? parsePath(locationArg) : locationArg;\n let pathname = stripBasename(location.pathname || \"/\", basename);\n\n if (pathname == null) {\n return null;\n }\n\n let branches = flattenRoutes(routes);\n rankRouteBranches(branches);\n let matches = null;\n\n for (let i = 0; matches == null && i < branches.length; ++i) {\n matches = matchRouteBranch(branches[i], pathname);\n }\n\n return matches;\n}\n\nfunction flattenRoutes(routes, branches, parentsMeta, parentPath) {\n if (branches === void 0) {\n branches = [];\n }\n\n if (parentsMeta === void 0) {\n parentsMeta = [];\n }\n\n if (parentPath === void 0) {\n parentPath = \"\";\n }\n\n routes.forEach((route, index) => {\n let meta = {\n relativePath: route.path || \"\",\n caseSensitive: route.caseSensitive === true,\n childrenIndex: index,\n route\n };\n\n if (meta.relativePath.startsWith(\"/\")) {\n !meta.relativePath.startsWith(parentPath) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"Absolute route path \\\"\" + meta.relativePath + \"\\\" nested under path \" + (\"\\\"\" + parentPath + \"\\\" is not valid. An absolute child route path \") + \"must start with the combined path of all its parent routes.\") : invariant(false) : void 0;\n meta.relativePath = meta.relativePath.slice(parentPath.length);\n }\n\n let path = joinPaths([parentPath, meta.relativePath]);\n let routesMeta = parentsMeta.concat(meta); // Add the children before adding this route to the array so we traverse the\n // route tree depth-first and child routes appear before their parents in\n // the \"flattened\" version.\n\n if (route.children && route.children.length > 0) {\n !(route.index !== true) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"Index routes must not have child routes. Please remove \" + (\"all child routes from route path \\\"\" + path + \"\\\".\")) : invariant(false) : void 0;\n flattenRoutes(route.children, branches, routesMeta, path);\n } // Routes without a path shouldn't ever match by themselves unless they are\n // index routes, so don't add them to the list of possible branches.\n\n\n if (route.path == null && !route.index) {\n return;\n }\n\n branches.push({\n path,\n score: computeScore(path, route.index),\n routesMeta\n });\n });\n return branches;\n}\n\nfunction rankRouteBranches(branches) {\n branches.sort((a, b) => a.score !== b.score ? b.score - a.score // Higher score first\n : compareIndexes(a.routesMeta.map(meta => meta.childrenIndex), b.routesMeta.map(meta => meta.childrenIndex)));\n}\n\nconst paramRe = /^:\\w+$/;\nconst dynamicSegmentValue = 3;\nconst indexRouteValue = 2;\nconst emptySegmentValue = 1;\nconst staticSegmentValue = 10;\nconst splatPenalty = -2;\n\nconst isSplat = s => s === \"*\";\n\nfunction computeScore(path, index) {\n let segments = path.split(\"/\");\n let initialScore = segments.length;\n\n if (segments.some(isSplat)) {\n initialScore += splatPenalty;\n }\n\n if (index) {\n initialScore += indexRouteValue;\n }\n\n return segments.filter(s => !isSplat(s)).reduce((score, segment) => score + (paramRe.test(segment) ? dynamicSegmentValue : segment === \"\" ? emptySegmentValue : staticSegmentValue), initialScore);\n}\n\nfunction compareIndexes(a, b) {\n let siblings = a.length === b.length && a.slice(0, -1).every((n, i) => n === b[i]);\n return siblings ? // If two routes are siblings, we should try to match the earlier sibling\n // first. This allows people to have fine-grained control over the matching\n // behavior by simply putting routes with identical paths in the order they\n // want them tried.\n a[a.length - 1] - b[b.length - 1] : // Otherwise, it doesn't really make sense to rank non-siblings by index,\n // so they sort equally.\n 0;\n}\n\nfunction matchRouteBranch(branch, pathname) {\n let {\n routesMeta\n } = branch;\n let matchedParams = {};\n let matchedPathname = \"/\";\n let matches = [];\n\n for (let i = 0; i < routesMeta.length; ++i) {\n let meta = routesMeta[i];\n let end = i === routesMeta.length - 1;\n let remainingPathname = matchedPathname === \"/\" ? pathname : pathname.slice(matchedPathname.length) || \"/\";\n let match = matchPath({\n path: meta.relativePath,\n caseSensitive: meta.caseSensitive,\n end\n }, remainingPathname);\n if (!match) return null;\n Object.assign(matchedParams, match.params);\n let route = meta.route;\n matches.push({\n params: matchedParams,\n pathname: joinPaths([matchedPathname, match.pathname]),\n pathnameBase: normalizePathname(joinPaths([matchedPathname, match.pathnameBase])),\n route\n });\n\n if (match.pathnameBase !== \"/\") {\n matchedPathname = joinPaths([matchedPathname, match.pathnameBase]);\n }\n }\n\n return matches;\n}\n/**\n * A PathPattern is used to match on some portion of a URL pathname.\n */\n\n/**\n * Performs pattern matching on a URL pathname and returns information about\n * the match.\n *\n * @see https://reactrouter.com/docs/en/v6/api#matchpath\n */\n\n\nfunction matchPath(pattern, pathname) {\n if (typeof pattern === \"string\") {\n pattern = {\n path: pattern,\n caseSensitive: false,\n end: true\n };\n }\n\n let [matcher, paramNames] = compilePath(pattern.path, pattern.caseSensitive, pattern.end);\n let match = pathname.match(matcher);\n if (!match) return null;\n let matchedPathname = match[0];\n let pathnameBase = matchedPathname.replace(/(.)\\/+$/, \"$1\");\n let captureGroups = match.slice(1);\n let params = paramNames.reduce((memo, paramName, index) => {\n // We need to compute the pathnameBase here using the raw splat value\n // instead of using params[\"*\"] later because it will be decoded then\n if (paramName === \"*\") {\n let splatValue = captureGroups[index] || \"\";\n pathnameBase = matchedPathname.slice(0, matchedPathname.length - splatValue.length).replace(/(.)\\/+$/, \"$1\");\n }\n\n memo[paramName] = safelyDecodeURIComponent(captureGroups[index] || \"\", paramName);\n return memo;\n }, {});\n return {\n params,\n pathname: matchedPathname,\n pathnameBase,\n pattern\n };\n}\n\nfunction compilePath(path, caseSensitive, end) {\n if (caseSensitive === void 0) {\n caseSensitive = false;\n }\n\n if (end === void 0) {\n end = true;\n }\n\n process.env.NODE_ENV !== \"production\" ? warning(path === \"*\" || !path.endsWith(\"*\") || path.endsWith(\"/*\"), \"Route path \\\"\" + path + \"\\\" will be treated as if it were \" + (\"\\\"\" + path.replace(/\\*$/, \"/*\") + \"\\\" because the `*` character must \") + \"always follow a `/` in the pattern. To get rid of this warning, \" + (\"please change the route path to \\\"\" + path.replace(/\\*$/, \"/*\") + \"\\\".\")) : void 0;\n let paramNames = [];\n let regexpSource = \"^\" + path.replace(/\\/*\\*?$/, \"\") // Ignore trailing / and /*, we'll handle it below\n .replace(/^\\/*/, \"/\") // Make sure it has a leading /\n .replace(/[\\\\.*+^$?{}|()[\\]]/g, \"\\\\$&\") // Escape special regex chars\n .replace(/:(\\w+)/g, (_, paramName) => {\n paramNames.push(paramName);\n return \"([^\\\\/]+)\";\n });\n\n if (path.endsWith(\"*\")) {\n paramNames.push(\"*\");\n regexpSource += path === \"*\" || path === \"/*\" ? \"(.*)$\" // Already matched the initial /, just match the rest\n : \"(?:\\\\/(.+)|\\\\/*)$\"; // Don't include the / in params[\"*\"]\n } else {\n regexpSource += end ? \"\\\\/*$\" // When matching to the end, ignore trailing slashes\n : // Otherwise, match a word boundary or a proceeding /. The word boundary restricts\n // parent routes to matching only their own words and nothing more, e.g. parent\n // route \"/home\" should not match \"/home2\".\n // Additionally, allow paths starting with `.`, `-`, `~`, and url-encoded entities,\n // but do not consume the character in the matched path so they can match against\n // nested paths.\n \"(?:(?=[.~-]|%[0-9A-F]{2})|\\\\b|\\\\/|$)\";\n }\n\n let matcher = new RegExp(regexpSource, caseSensitive ? undefined : \"i\");\n return [matcher, paramNames];\n}\n\nfunction safelyDecodeURIComponent(value, paramName) {\n try {\n return decodeURIComponent(value);\n } catch (error) {\n process.env.NODE_ENV !== \"production\" ? warning(false, \"The value for the URL param \\\"\" + paramName + \"\\\" will not be decoded because\" + (\" the string \\\"\" + value + \"\\\" is a malformed URL segment. This is probably\") + (\" due to a bad percent encoding (\" + error + \").\")) : void 0;\n return value;\n }\n}\n/**\n * Returns a resolved path object relative to the given pathname.\n *\n * @see https://reactrouter.com/docs/en/v6/api#resolvepath\n */\n\n\nfunction resolvePath(to, fromPathname) {\n if (fromPathname === void 0) {\n fromPathname = \"/\";\n }\n\n let {\n pathname: toPathname,\n search = \"\",\n hash = \"\"\n } = typeof to === \"string\" ? parsePath(to) : to;\n let pathname = toPathname ? toPathname.startsWith(\"/\") ? toPathname : resolvePathname(toPathname, fromPathname) : fromPathname;\n return {\n pathname,\n search: normalizeSearch(search),\n hash: normalizeHash(hash)\n };\n}\n\nfunction resolvePathname(relativePath, fromPathname) {\n let segments = fromPathname.replace(/\\/+$/, \"\").split(\"/\");\n let relativeSegments = relativePath.split(\"/\");\n relativeSegments.forEach(segment => {\n if (segment === \"..\") {\n // Keep the root \"\" segment so the pathname starts at /\n if (segments.length > 1) segments.pop();\n } else if (segment !== \".\") {\n segments.push(segment);\n }\n });\n return segments.length > 1 ? segments.join(\"/\") : \"/\";\n}\n\nfunction resolveTo(toArg, routePathnames, locationPathname) {\n let to = typeof toArg === \"string\" ? parsePath(toArg) : toArg;\n let toPathname = toArg === \"\" || to.pathname === \"\" ? \"/\" : to.pathname; // If a pathname is explicitly provided in `to`, it should be relative to the\n // route context. This is explained in `Note on `` values` in our\n // migration guide from v5 as a means of disambiguation between `to` values\n // that begin with `/` and those that do not. However, this is problematic for\n // `to` values that do not provide a pathname. `to` can simply be a search or\n // hash string, in which case we should assume that the navigation is relative\n // to the current location's pathname and *not* the route pathname.\n\n let from;\n\n if (toPathname == null) {\n from = locationPathname;\n } else {\n let routePathnameIndex = routePathnames.length - 1;\n\n if (toPathname.startsWith(\"..\")) {\n let toSegments = toPathname.split(\"/\"); // Each leading .. segment means \"go up one route\" instead of \"go up one\n // URL segment\". This is a key difference from how
works and a\n // major reason we call this a \"to\" value instead of a \"href\".\n\n while (toSegments[0] === \"..\") {\n toSegments.shift();\n routePathnameIndex -= 1;\n }\n\n to.pathname = toSegments.join(\"/\");\n } // If there are more \"..\" segments than parent routes, resolve relative to\n // the root / URL.\n\n\n from = routePathnameIndex >= 0 ? routePathnames[routePathnameIndex] : \"/\";\n }\n\n let path = resolvePath(to, from); // Ensure the pathname has a trailing slash if the original to value had one.\n\n if (toPathname && toPathname !== \"/\" && toPathname.endsWith(\"/\") && !path.pathname.endsWith(\"/\")) {\n path.pathname += \"/\";\n }\n\n return path;\n}\n\nfunction getToPathname(to) {\n // Empty strings should be treated the same as / paths\n return to === \"\" || to.pathname === \"\" ? \"/\" : typeof to === \"string\" ? parsePath(to).pathname : to.pathname;\n}\n\nfunction stripBasename(pathname, basename) {\n if (basename === \"/\") return pathname;\n\n if (!pathname.toLowerCase().startsWith(basename.toLowerCase())) {\n return null;\n }\n\n let nextChar = pathname.charAt(basename.length);\n\n if (nextChar && nextChar !== \"/\") {\n // pathname does not start with basename/\n return null;\n }\n\n return pathname.slice(basename.length) || \"/\";\n}\n\nconst joinPaths = paths => paths.join(\"/\").replace(/\\/\\/+/g, \"/\");\n\nconst normalizePathname = pathname => pathname.replace(/\\/+$/, \"\").replace(/^\\/*/, \"/\");\n\nconst normalizeSearch = search => !search || search === \"?\" ? \"\" : search.startsWith(\"?\") ? search : \"?\" + search;\n\nconst normalizeHash = hash => !hash || hash === \"#\" ? \"\" : hash.startsWith(\"#\") ? hash : \"#\" + hash;\n/**\n * Returns the full href for the given \"to\" value. This is useful for building\n * custom links that are also accessible and preserve right-click behavior.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usehref\n */\n\n\nfunction useHref(to) {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useHref() may be used only in the context of a component.\") : invariant(false) : void 0;\n let {\n basename,\n navigator\n } = useContext(NavigationContext);\n let {\n hash,\n pathname,\n search\n } = useResolvedPath(to);\n let joinedPathname = pathname;\n\n if (basename !== \"/\") {\n let toPathname = getToPathname(to);\n let endsWithSlash = toPathname != null && toPathname.endsWith(\"/\");\n joinedPathname = pathname === \"/\" ? basename + (endsWithSlash ? \"/\" : \"\") : joinPaths([basename, pathname]);\n }\n\n return navigator.createHref({\n pathname: joinedPathname,\n search,\n hash\n });\n}\n/**\n * Returns true if this component is a descendant of a .\n *\n * @see https://reactrouter.com/docs/en/v6/api#useinroutercontext\n */\n\n\nfunction useInRouterContext() {\n return useContext(LocationContext) != null;\n}\n/**\n * Returns the current location object, which represents the current URL in web\n * browsers.\n *\n * Note: If you're using this it may mean you're doing some of your own\n * \"routing\" in your app, and we'd like to know what your use case is. We may\n * be able to provide something higher-level to better suit your needs.\n *\n * @see https://reactrouter.com/docs/en/v6/api#uselocation\n */\n\n\nfunction useLocation() {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useLocation() may be used only in the context of a component.\") : invariant(false) : void 0;\n return useContext(LocationContext).location;\n}\n/**\n * Returns the current navigation action which describes how the router came to\n * the current location, either by a pop, push, or replace on the history stack.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usenavigationtype\n */\n\n\nfunction useNavigationType() {\n return useContext(LocationContext).navigationType;\n}\n/**\n * Returns true if the URL for the given \"to\" value matches the current URL.\n * This is useful for components that need to know \"active\" state, e.g.\n * .\n *\n * @see https://reactrouter.com/docs/en/v6/api#usematch\n */\n\n\nfunction useMatch(pattern) {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useMatch() may be used only in the context of a component.\") : invariant(false) : void 0;\n let {\n pathname\n } = useLocation();\n return useMemo(() => matchPath(pattern, pathname), [pathname, pattern]);\n}\n/**\n * The interface for the navigate() function returned from useNavigate().\n */\n\n/**\n * Returns an imperative method for changing the location. Used by s, but\n * may also be used by other elements to change the location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usenavigate\n */\n\n\nfunction useNavigate() {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useNavigate() may be used only in the context of a component.\") : invariant(false) : void 0;\n let {\n basename,\n navigator\n } = useContext(NavigationContext);\n let {\n matches\n } = useContext(RouteContext);\n let {\n pathname: locationPathname\n } = useLocation();\n let routePathnamesJson = JSON.stringify(matches.map(match => match.pathnameBase));\n let activeRef = useRef(false);\n useEffect(() => {\n activeRef.current = true;\n });\n let navigate = useCallback(function (to, options) {\n if (options === void 0) {\n options = {};\n }\n\n process.env.NODE_ENV !== \"production\" ? warning(activeRef.current, \"You should call navigate() in a React.useEffect(), not when \" + \"your component is first rendered.\") : void 0;\n if (!activeRef.current) return;\n\n if (typeof to === \"number\") {\n navigator.go(to);\n return;\n }\n\n let path = resolveTo(to, JSON.parse(routePathnamesJson), locationPathname);\n\n if (basename !== \"/\") {\n path.pathname = joinPaths([basename, path.pathname]);\n }\n\n (!!options.replace ? navigator.replace : navigator.push)(path, options.state);\n }, [basename, navigator, routePathnamesJson, locationPathname]);\n return navigate;\n}\n\nconst OutletContext = /*#__PURE__*/createContext(null);\n/**\n * Returns the context (if provided) for the child route at this level of the route\n * hierarchy.\n * @see https://reactrouter.com/docs/en/v6/api#useoutletcontext\n */\n\nfunction useOutletContext() {\n return useContext(OutletContext);\n}\n/**\n * Returns the element for the child route at this level of the route\n * hierarchy. Used internally by to render child routes.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useoutlet\n */\n\n\nfunction useOutlet(context) {\n let outlet = useContext(RouteContext).outlet;\n\n if (outlet) {\n return /*#__PURE__*/createElement(OutletContext.Provider, {\n value: context\n }, outlet);\n }\n\n return outlet;\n}\n/**\n * Returns an object of key/value pairs of the dynamic params from the current\n * URL that were matched by the route path.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useparams\n */\n\n\nfunction useParams() {\n let {\n matches\n } = useContext(RouteContext);\n let routeMatch = matches[matches.length - 1];\n return routeMatch ? routeMatch.params : {};\n}\n/**\n * Resolves the pathname of the given `to` value against the current location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useresolvedpath\n */\n\n\nfunction useResolvedPath(to) {\n let {\n matches\n } = useContext(RouteContext);\n let {\n pathname: locationPathname\n } = useLocation();\n let routePathnamesJson = JSON.stringify(matches.map(match => match.pathnameBase));\n return useMemo(() => resolveTo(to, JSON.parse(routePathnamesJson), locationPathname), [to, routePathnamesJson, locationPathname]);\n}\n/**\n * Returns the element of the route that matched the current location, prepared\n * with the correct context to render the remainder of the route tree. Route\n * elements in the tree must render an to render their child route's\n * element.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useroutes\n */\n\n\nfunction useRoutes(routes, locationArg) {\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n \"useRoutes() may be used only in the context of a component.\") : invariant(false) : void 0;\n let {\n matches: parentMatches\n } = useContext(RouteContext);\n let routeMatch = parentMatches[parentMatches.length - 1];\n let parentParams = routeMatch ? routeMatch.params : {};\n let parentPathname = routeMatch ? routeMatch.pathname : \"/\";\n let parentPathnameBase = routeMatch ? routeMatch.pathnameBase : \"/\";\n let parentRoute = routeMatch && routeMatch.route;\n\n if (process.env.NODE_ENV !== \"production\") {\n // You won't get a warning about 2 different under a \n // without a trailing *, but this is a best-effort warning anyway since we\n // cannot even give the warning unless they land at the parent route.\n //\n // Example:\n //\n // \n // {/* This route path MUST end with /* because otherwise\n // it will never match /blog/post/123 */}\n // } />\n // } />\n // \n //\n // function Blog() {\n // return (\n // \n // } />\n // \n // );\n // }\n let parentPath = parentRoute && parentRoute.path || \"\";\n warningOnce(parentPathname, !parentRoute || parentPath.endsWith(\"*\"), \"You rendered descendant (or called `useRoutes()`) at \" + (\"\\\"\" + parentPathname + \"\\\" (under ) but the \") + \"parent route path has no trailing \\\"*\\\". This means if you navigate \" + \"deeper, the parent won't match anymore and therefore the child \" + \"routes will never render.\\n\\n\" + (\"Please change the parent to .\"));\n }\n\n let locationFromContext = useLocation();\n let location;\n\n if (locationArg) {\n var _parsedLocationArg$pa;\n\n let parsedLocationArg = typeof locationArg === \"string\" ? parsePath(locationArg) : locationArg;\n !(parentPathnameBase === \"/\" || ((_parsedLocationArg$pa = parsedLocationArg.pathname) == null ? void 0 : _parsedLocationArg$pa.startsWith(parentPathnameBase))) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"When overriding the location using `` or `useRoutes(routes, location)`, \" + \"the location pathname must begin with the portion of the URL pathname that was \" + (\"matched by all parent routes. The current pathname base is \\\"\" + parentPathnameBase + \"\\\" \") + (\"but pathname \\\"\" + parsedLocationArg.pathname + \"\\\" was given in the `location` prop.\")) : invariant(false) : void 0;\n location = parsedLocationArg;\n } else {\n location = locationFromContext;\n }\n\n let pathname = location.pathname || \"/\";\n let remainingPathname = parentPathnameBase === \"/\" ? pathname : pathname.slice(parentPathnameBase.length) || \"/\";\n let matches = matchRoutes(routes, {\n pathname: remainingPathname\n });\n\n if (process.env.NODE_ENV !== \"production\") {\n process.env.NODE_ENV !== \"production\" ? warning(parentRoute || matches != null, \"No routes matched location \\\"\" + location.pathname + location.search + location.hash + \"\\\" \") : void 0;\n process.env.NODE_ENV !== \"production\" ? warning(matches == null || matches[matches.length - 1].route.element !== undefined, \"Matched leaf route at location \\\"\" + location.pathname + location.search + location.hash + \"\\\" does not have an element. \" + \"This means it will render an with a null value by default resulting in an \\\"empty\\\" page.\") : void 0;\n }\n\n return _renderMatches(matches && matches.map(match => Object.assign({}, match, {\n params: Object.assign({}, parentParams, match.params),\n pathname: joinPaths([parentPathnameBase, match.pathname]),\n pathnameBase: match.pathnameBase === \"/\" ? parentPathnameBase : joinPaths([parentPathnameBase, match.pathnameBase])\n })), parentMatches);\n}\n\nfunction _renderMatches(matches, parentMatches) {\n if (parentMatches === void 0) {\n parentMatches = [];\n }\n\n if (matches == null) return null;\n return matches.reduceRight((outlet, match, index) => {\n return /*#__PURE__*/createElement(RouteContext.Provider, {\n children: match.route.element !== undefined ? match.route.element : outlet,\n value: {\n outlet,\n matches: parentMatches.concat(matches.slice(0, index + 1))\n }\n });\n }, null);\n}\n/**\n * A that stores all entries in memory.\n *\n * @see https://reactrouter.com/docs/en/v6/api#memoryrouter\n */\n\n\nfunction MemoryRouter(_ref) {\n let {\n basename,\n children,\n initialEntries,\n initialIndex\n } = _ref;\n let historyRef = useRef();\n\n if (historyRef.current == null) {\n historyRef.current = createMemoryHistory({\n initialEntries,\n initialIndex\n });\n }\n\n let history = historyRef.current;\n let [state, setState] = useState({\n action: history.action,\n location: history.location\n });\n useLayoutEffect(() => history.listen(setState), [history]);\n return /*#__PURE__*/createElement(Router, {\n basename: basename,\n children: children,\n location: state.location,\n navigationType: state.action,\n navigator: history\n });\n}\n/**\n * Changes the current location.\n *\n * Note: This API is mostly useful in React.Component subclasses that are not\n * able to use hooks. In functional components, we recommend you use the\n * `useNavigate` hook instead.\n *\n * @see https://reactrouter.com/docs/en/v6/api#navigate\n */\n\n\nfunction Navigate(_ref2) {\n let {\n to,\n replace,\n state\n } = _ref2;\n !useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, // TODO: This error is probably because they somehow have 2 versions of\n // the router loaded. We can help them understand how to avoid that.\n \" may be used only in the context of a component.\") : invariant(false) : void 0;\n process.env.NODE_ENV !== \"production\" ? warning(!useContext(NavigationContext).static, \" must not be used on the initial render in a . \" + \"This is a no-op, but you should modify your code so the is \" + \"only ever rendered in response to some user interaction or state change.\") : void 0;\n let navigate = useNavigate();\n useEffect(() => {\n navigate(to, {\n replace,\n state\n });\n });\n return null;\n}\n/**\n * Renders the child route's element, if there is one.\n *\n * @see https://reactrouter.com/docs/en/v6/api#outlet\n */\n\n\nfunction Outlet(props) {\n return useOutlet(props.context);\n}\n/**\n * Declares an element that should be rendered at a certain URL path.\n *\n * @see https://reactrouter.com/docs/en/v6/api#route\n */\n\n\nfunction Route(_props) {\n process.env.NODE_ENV !== \"production\" ? invariant(false, \"A is only ever to be used as the child of element, \" + \"never rendered directly. Please wrap your in a .\") : invariant(false);\n}\n/**\n * Provides location context for the rest of the app.\n *\n * Note: You usually won't render a directly. Instead, you'll render a\n * router that is more specific to your environment such as a \n * in web browsers or a for server rendering.\n *\n * @see https://reactrouter.com/docs/en/v6/api#router\n */\n\n\nfunction Router(_ref3) {\n let {\n basename: basenameProp = \"/\",\n children = null,\n location: locationProp,\n navigationType = Action.Pop,\n navigator,\n static: staticProp = false\n } = _ref3;\n !!useInRouterContext() ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"You cannot render a inside another .\" + \" You should never have more than one in your app.\") : invariant(false) : void 0;\n let basename = normalizePathname(basenameProp);\n let navigationContext = useMemo(() => ({\n basename,\n navigator,\n static: staticProp\n }), [basename, navigator, staticProp]);\n\n if (typeof locationProp === \"string\") {\n locationProp = parsePath(locationProp);\n }\n\n let {\n pathname = \"/\",\n search = \"\",\n hash = \"\",\n state = null,\n key = \"default\"\n } = locationProp;\n let location = useMemo(() => {\n let trailingPathname = stripBasename(pathname, basename);\n\n if (trailingPathname == null) {\n return null;\n }\n\n return {\n pathname: trailingPathname,\n search,\n hash,\n state,\n key\n };\n }, [basename, pathname, search, hash, state, key]);\n process.env.NODE_ENV !== \"production\" ? warning(location != null, \" is not able to match the URL \" + (\"\\\"\" + pathname + search + hash + \"\\\" because it does not start with the \") + \"basename, so the won't render anything.\") : void 0;\n\n if (location == null) {\n return null;\n }\n\n return /*#__PURE__*/createElement(NavigationContext.Provider, {\n value: navigationContext\n }, /*#__PURE__*/createElement(LocationContext.Provider, {\n children: children,\n value: {\n location,\n navigationType\n }\n }));\n}\n/**\n * A container for a nested tree of elements that renders the branch\n * that best matches the current location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#routes\n */\n\n\nfunction Routes(_ref4) {\n let {\n children,\n location\n } = _ref4;\n return useRoutes(createRoutesFromChildren(children), location);\n} ///////////////////////////////////////////////////////////////////////////////\n// UTILS\n///////////////////////////////////////////////////////////////////////////////\n\n/**\n * Creates a route config from a React \"children\" object, which is usually\n * either a `` element or an array of them. Used internally by\n * `` to create a route config from its children.\n *\n * @see https://reactrouter.com/docs/en/v6/api#createroutesfromchildren\n */\n\n\nfunction createRoutesFromChildren(children) {\n let routes = [];\n Children.forEach(children, element => {\n if (! /*#__PURE__*/isValidElement(element)) {\n // Ignore non-elements. This allows people to more easily inline\n // conditionals in their route config.\n return;\n }\n\n if (element.type === Fragment) {\n // Transparently support React.Fragment and its children.\n routes.push.apply(routes, createRoutesFromChildren(element.props.children));\n return;\n }\n\n !(element.type === Route) ? process.env.NODE_ENV !== \"production\" ? invariant(false, \"[\" + (typeof element.type === \"string\" ? element.type : element.type.name) + \"] is not a component. All component children of must be a or \") : invariant(false) : void 0;\n let route = {\n caseSensitive: element.props.caseSensitive,\n element: element.props.element,\n index: element.props.index,\n path: element.props.path\n };\n\n if (element.props.children) {\n route.children = createRoutesFromChildren(element.props.children);\n }\n\n routes.push(route);\n });\n return routes;\n}\n/**\n * Renders the result of `matchRoutes()` into a React element.\n */\n\n\nfunction renderMatches(matches) {\n return _renderMatches(matches);\n}\n\nexport { MemoryRouter, Navigate, Outlet, Route, Router, Routes, LocationContext as UNSAFE_LocationContext, NavigationContext as UNSAFE_NavigationContext, RouteContext as UNSAFE_RouteContext, createRoutesFromChildren, generatePath, matchPath, matchRoutes, renderMatches, resolvePath, useHref, useInRouterContext, useLocation, useMatch, useNavigate, useNavigationType, useOutlet, useOutletContext, useParams, useResolvedPath, useRoutes };","map":{"version":3,"mappings":"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","names":["NavigationContext","React","displayName","LocationContext","RouteContext","outlet","matches","invariant","cond","message","Error","warning","console","warn","e","alreadyWarned","warningOnce","key","process","generatePath","path","params","replace","_","matchRoutes","routes","locationArg","basename","location","parsePath","pathname","stripBasename","branches","flattenRoutes","rankRouteBranches","i","length","matchRouteBranch","parentsMeta","parentPath","forEach","route","index","meta","relativePath","caseSensitive","childrenIndex","startsWith","slice","joinPaths","routesMeta","concat","children","push","score","computeScore","sort","a","b","compareIndexes","map","paramRe","dynamicSegmentValue","indexRouteValue","emptySegmentValue","staticSegmentValue","splatPenalty","isSplat","s","segments","split","initialScore","some","filter","reduce","segment","test","siblings","every","n","branch","matchedParams","matchedPathname","end","remainingPathname","match","matchPath","Object","assign","pathnameBase","normalizePathname","pattern","matcher","paramNames","compilePath","captureGroups","memo","paramName","splatValue","safelyDecodeURIComponent","endsWith","regexpSource","RegExp","undefined","value","decodeURIComponent","error","resolvePath","to","fromPathname","toPathname","search","hash","resolvePathname","normalizeSearch","normalizeHash","relativeSegments","pop","join","resolveTo","toArg","routePathnames","locationPathname","from","routePathnameIndex","toSegments","shift","getToPathname","toLowerCase","nextChar","charAt","paths","useHref","useInRouterContext","navigator","useResolvedPath","joinedPathname","endsWithSlash","createHref","useLocation","useNavigationType","navigationType","useMatch","useNavigate","routePathnamesJson","JSON","stringify","activeRef","current","navigate","options","go","parse","state","OutletContext","useOutletContext","useOutlet","context","React.createElement","Provider","useParams","routeMatch","useRoutes","parentMatches","parentParams","parentPathname","parentPathnameBase","parentRoute","locationFromContext","parsedLocationArg","_parsedLocationArg$pa","element","_renderMatches","reduceRight","MemoryRouter","_ref","initialEntries","initialIndex","historyRef","createMemoryHistory","history","setState","action","listen","Router","Navigate","_ref2","static","Outlet","props","Route","_props","_ref3","basenameProp","locationProp","NavigationType","Pop","staticProp","navigationContext","trailingPathname","Routes","_ref4","createRoutesFromChildren","type","apply","name","renderMatches"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/packages/react-router/lib/context.ts","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/packages/react-router/lib/router.ts","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/packages/react-router/lib/hooks.tsx","/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/packages/react-router/lib/components.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { History, Location } from \"history\";\nimport { Action as NavigationType } from \"history\";\n\nimport type { RouteMatch } from \"./router\";\n\n/**\n * A Navigator is a \"location changer\"; it's how you get to different locations.\n *\n * Every history instance conforms to the Navigator interface, but the\n * distinction is useful primarily when it comes to the low-level API\n * where both the location and a navigator must be provided separately in order\n * to avoid \"tearing\" that may occur in a suspense-enabled app if the action\n * and/or location were to be read directly from the history instance.\n */\nexport type Navigator = Pick;\n\ninterface NavigationContextObject {\n basename: string;\n navigator: Navigator;\n static: boolean;\n}\n\nexport const NavigationContext = React.createContext(\n null!\n);\n\nif (__DEV__) {\n NavigationContext.displayName = \"Navigation\";\n}\n\ninterface LocationContextObject {\n location: Location;\n navigationType: NavigationType;\n}\n\nexport const LocationContext = React.createContext(\n null!\n);\n\nif (__DEV__) {\n LocationContext.displayName = \"Location\";\n}\n\ninterface RouteContextObject {\n outlet: React.ReactElement | null;\n matches: RouteMatch[];\n}\n\nexport const RouteContext = React.createContext({\n outlet: null,\n matches: [],\n});\n\nif (__DEV__) {\n RouteContext.displayName = \"Route\";\n}\n","import type { Location, Path, To } from \"history\";\nimport { parsePath } from \"history\";\n\nexport function invariant(cond: any, message: string): asserts cond {\n if (!cond) throw new Error(message);\n}\n\nexport function warning(cond: any, message: string): void {\n if (!cond) {\n // eslint-disable-next-line no-console\n if (typeof console !== \"undefined\") console.warn(message);\n\n try {\n // Welcome to debugging React Router!\n //\n // This error is thrown as a convenience so you can more easily\n // find the source for a warning that appears in the console by\n // enabling \"pause on exceptions\" in your JavaScript debugger.\n throw new Error(message);\n // eslint-disable-next-line no-empty\n } catch (e) {}\n }\n}\n\nconst alreadyWarned: Record = {};\nexport function warningOnce(key: string, cond: boolean, message: string) {\n if (!cond && !alreadyWarned[key]) {\n alreadyWarned[key] = true;\n warning(false, message);\n }\n}\n\ntype ParamParseFailed = { failed: true };\n\ntype ParamParseSegment =\n // Check here if there exists a forward slash in the string.\n Segment extends `${infer LeftSegment}/${infer RightSegment}`\n ? // If there is a forward slash, then attempt to parse each side of the\n // forward slash.\n ParamParseSegment extends infer LeftResult\n ? ParamParseSegment extends infer RightResult\n ? LeftResult extends string\n ? // If the left side is successfully parsed as a param, then check if\n // the right side can be successfully parsed as well. If both sides\n // can be parsed, then the result is a union of the two sides\n // (read: \"foo\" | \"bar\").\n RightResult extends string\n ? LeftResult | RightResult\n : LeftResult\n : // If the left side is not successfully parsed as a param, then check\n // if only the right side can be successfully parse as a param. If it\n // can, then the result is just right, else it's a failure.\n RightResult extends string\n ? RightResult\n : ParamParseFailed\n : ParamParseFailed\n : // If the left side didn't parse into a param, then just check the right\n // side.\n ParamParseSegment extends infer RightResult\n ? RightResult extends string\n ? RightResult\n : ParamParseFailed\n : ParamParseFailed\n : // If there's no forward slash, then check if this segment starts with a\n // colon. If it does, then this is a dynamic segment, so the result is\n // just the remainder of the string. Otherwise, it's a failure.\n Segment extends `:${infer Remaining}`\n ? Remaining\n : ParamParseFailed;\n\n// Attempt to parse the given string segment. If it fails, then just return the\n// plain string type as a default fallback. Otherwise return the union of the\n// parsed string literals that were referenced as dynamic segments in the route.\nexport type ParamParseKey =\n ParamParseSegment extends string\n ? ParamParseSegment\n : string;\n\n/**\n * The parameters that were parsed from the URL path.\n */\nexport type Params = {\n readonly [key in Key]: string | undefined;\n};\n\n/**\n * A route object represents a logical route, with (optionally) its child\n * routes organized in a tree-like structure.\n */\nexport interface RouteObject {\n caseSensitive?: boolean;\n children?: RouteObject[];\n element?: React.ReactNode;\n index?: boolean;\n path?: string;\n}\n\n/**\n * Returns a path with params interpolated.\n *\n * @see https://reactrouter.com/docs/en/v6/api#generatepath\n */\nexport function generatePath(path: string, params: Params = {}): string {\n return path\n .replace(/:(\\w+)/g, (_, key) => {\n invariant(params[key] != null, `Missing \":${key}\" param`);\n return params[key]!;\n })\n .replace(/\\/*\\*$/, (_) =>\n params[\"*\"] == null ? \"\" : params[\"*\"].replace(/^\\/*/, \"/\")\n );\n}\n\n/**\n * A RouteMatch contains info about how a route matched a URL.\n */\nexport interface RouteMatch {\n /**\n * The names and values of dynamic parameters in the URL.\n */\n params: Params;\n /**\n * The portion of the URL pathname that was matched.\n */\n pathname: string;\n /**\n * The portion of the URL pathname that was matched before child routes.\n */\n pathnameBase: string;\n /**\n * The route object that was used to match.\n */\n route: RouteObject;\n}\n\n/**\n * Matches the given routes to a location and returns the match data.\n *\n * @see https://reactrouter.com/docs/en/v6/api#matchroutes\n */\nexport function matchRoutes(\n routes: RouteObject[],\n locationArg: Partial | string,\n basename = \"/\"\n): RouteMatch[] | null {\n let location =\n typeof locationArg === \"string\" ? parsePath(locationArg) : locationArg;\n\n let pathname = stripBasename(location.pathname || \"/\", basename);\n\n if (pathname == null) {\n return null;\n }\n\n let branches = flattenRoutes(routes);\n rankRouteBranches(branches);\n\n let matches = null;\n for (let i = 0; matches == null && i < branches.length; ++i) {\n matches = matchRouteBranch(branches[i], pathname);\n }\n\n return matches;\n}\n\ninterface RouteMeta {\n relativePath: string;\n caseSensitive: boolean;\n childrenIndex: number;\n route: RouteObject;\n}\n\ninterface RouteBranch {\n path: string;\n score: number;\n routesMeta: RouteMeta[];\n}\n\nfunction flattenRoutes(\n routes: RouteObject[],\n branches: RouteBranch[] = [],\n parentsMeta: RouteMeta[] = [],\n parentPath = \"\"\n): RouteBranch[] {\n routes.forEach((route, index) => {\n let meta: RouteMeta = {\n relativePath: route.path || \"\",\n caseSensitive: route.caseSensitive === true,\n childrenIndex: index,\n route,\n };\n\n if (meta.relativePath.startsWith(\"/\")) {\n invariant(\n meta.relativePath.startsWith(parentPath),\n `Absolute route path \"${meta.relativePath}\" nested under path ` +\n `\"${parentPath}\" is not valid. An absolute child route path ` +\n `must start with the combined path of all its parent routes.`\n );\n\n meta.relativePath = meta.relativePath.slice(parentPath.length);\n }\n\n let path = joinPaths([parentPath, meta.relativePath]);\n let routesMeta = parentsMeta.concat(meta);\n\n // Add the children before adding this route to the array so we traverse the\n // route tree depth-first and child routes appear before their parents in\n // the \"flattened\" version.\n if (route.children && route.children.length > 0) {\n invariant(\n route.index !== true,\n `Index routes must not have child routes. Please remove ` +\n `all child routes from route path \"${path}\".`\n );\n\n flattenRoutes(route.children, branches, routesMeta, path);\n }\n\n // Routes without a path shouldn't ever match by themselves unless they are\n // index routes, so don't add them to the list of possible branches.\n if (route.path == null && !route.index) {\n return;\n }\n\n branches.push({ path, score: computeScore(path, route.index), routesMeta });\n });\n\n return branches;\n}\n\nfunction rankRouteBranches(branches: RouteBranch[]): void {\n branches.sort((a, b) =>\n a.score !== b.score\n ? b.score - a.score // Higher score first\n : compareIndexes(\n a.routesMeta.map((meta) => meta.childrenIndex),\n b.routesMeta.map((meta) => meta.childrenIndex)\n )\n );\n}\n\nconst paramRe = /^:\\w+$/;\nconst dynamicSegmentValue = 3;\nconst indexRouteValue = 2;\nconst emptySegmentValue = 1;\nconst staticSegmentValue = 10;\nconst splatPenalty = -2;\nconst isSplat = (s: string) => s === \"*\";\n\nfunction computeScore(path: string, index: boolean | undefined): number {\n let segments = path.split(\"/\");\n let initialScore = segments.length;\n if (segments.some(isSplat)) {\n initialScore += splatPenalty;\n }\n\n if (index) {\n initialScore += indexRouteValue;\n }\n\n return segments\n .filter((s) => !isSplat(s))\n .reduce(\n (score, segment) =>\n score +\n (paramRe.test(segment)\n ? dynamicSegmentValue\n : segment === \"\"\n ? emptySegmentValue\n : staticSegmentValue),\n initialScore\n );\n}\n\nfunction compareIndexes(a: number[], b: number[]): number {\n let siblings =\n a.length === b.length && a.slice(0, -1).every((n, i) => n === b[i]);\n\n return siblings\n ? // If two routes are siblings, we should try to match the earlier sibling\n // first. This allows people to have fine-grained control over the matching\n // behavior by simply putting routes with identical paths in the order they\n // want them tried.\n a[a.length - 1] - b[b.length - 1]\n : // Otherwise, it doesn't really make sense to rank non-siblings by index,\n // so they sort equally.\n 0;\n}\n\nfunction matchRouteBranch(\n branch: RouteBranch,\n pathname: string\n): RouteMatch[] | null {\n let { routesMeta } = branch;\n\n let matchedParams = {};\n let matchedPathname = \"/\";\n let matches: RouteMatch[] = [];\n for (let i = 0; i < routesMeta.length; ++i) {\n let meta = routesMeta[i];\n let end = i === routesMeta.length - 1;\n let remainingPathname =\n matchedPathname === \"/\"\n ? pathname\n : pathname.slice(matchedPathname.length) || \"/\";\n let match = matchPath(\n { path: meta.relativePath, caseSensitive: meta.caseSensitive, end },\n remainingPathname\n );\n\n if (!match) return null;\n\n Object.assign(matchedParams, match.params);\n\n let route = meta.route;\n\n matches.push({\n params: matchedParams,\n pathname: joinPaths([matchedPathname, match.pathname]),\n pathnameBase: normalizePathname(\n joinPaths([matchedPathname, match.pathnameBase])\n ),\n route,\n });\n\n if (match.pathnameBase !== \"/\") {\n matchedPathname = joinPaths([matchedPathname, match.pathnameBase]);\n }\n }\n\n return matches;\n}\n\n/**\n * A PathPattern is used to match on some portion of a URL pathname.\n */\nexport interface PathPattern {\n /**\n * A string to match against a URL pathname. May contain `:id`-style segments\n * to indicate placeholders for dynamic parameters. May also end with `/*` to\n * indicate matching the rest of the URL pathname.\n */\n path: Path;\n /**\n * Should be `true` if the static portions of the `path` should be matched in\n * the same case.\n */\n caseSensitive?: boolean;\n /**\n * Should be `true` if this pattern should match the entire URL pathname.\n */\n end?: boolean;\n}\n\n/**\n * A PathMatch contains info about how a PathPattern matched on a URL pathname.\n */\nexport interface PathMatch {\n /**\n * The names and values of dynamic parameters in the URL.\n */\n params: Params;\n /**\n * The portion of the URL pathname that was matched.\n */\n pathname: string;\n /**\n * The portion of the URL pathname that was matched before child routes.\n */\n pathnameBase: string;\n /**\n * The pattern that was used to match.\n */\n pattern: PathPattern;\n}\n\ntype Mutable = {\n -readonly [P in keyof T]: T[P];\n};\n\n/**\n * Performs pattern matching on a URL pathname and returns information about\n * the match.\n *\n * @see https://reactrouter.com/docs/en/v6/api#matchpath\n */\nexport function matchPath<\n ParamKey extends ParamParseKey,\n Path extends string\n>(\n pattern: PathPattern | Path,\n pathname: string\n): PathMatch | null {\n if (typeof pattern === \"string\") {\n pattern = { path: pattern, caseSensitive: false, end: true };\n }\n\n let [matcher, paramNames] = compilePath(\n pattern.path,\n pattern.caseSensitive,\n pattern.end\n );\n\n let match = pathname.match(matcher);\n if (!match) return null;\n\n let matchedPathname = match[0];\n let pathnameBase = matchedPathname.replace(/(.)\\/+$/, \"$1\");\n let captureGroups = match.slice(1);\n let params: Params = paramNames.reduce>(\n (memo, paramName, index) => {\n // We need to compute the pathnameBase here using the raw splat value\n // instead of using params[\"*\"] later because it will be decoded then\n if (paramName === \"*\") {\n let splatValue = captureGroups[index] || \"\";\n pathnameBase = matchedPathname\n .slice(0, matchedPathname.length - splatValue.length)\n .replace(/(.)\\/+$/, \"$1\");\n }\n\n memo[paramName] = safelyDecodeURIComponent(\n captureGroups[index] || \"\",\n paramName\n );\n return memo;\n },\n {}\n );\n\n return {\n params,\n pathname: matchedPathname,\n pathnameBase,\n pattern,\n };\n}\n\nfunction compilePath(\n path: string,\n caseSensitive = false,\n end = true\n): [RegExp, string[]] {\n warning(\n path === \"*\" || !path.endsWith(\"*\") || path.endsWith(\"/*\"),\n `Route path \"${path}\" will be treated as if it were ` +\n `\"${path.replace(/\\*$/, \"/*\")}\" because the \\`*\\` character must ` +\n `always follow a \\`/\\` in the pattern. To get rid of this warning, ` +\n `please change the route path to \"${path.replace(/\\*$/, \"/*\")}\".`\n );\n\n let paramNames: string[] = [];\n let regexpSource =\n \"^\" +\n path\n .replace(/\\/*\\*?$/, \"\") // Ignore trailing / and /*, we'll handle it below\n .replace(/^\\/*/, \"/\") // Make sure it has a leading /\n .replace(/[\\\\.*+^$?{}|()[\\]]/g, \"\\\\$&\") // Escape special regex chars\n .replace(/:(\\w+)/g, (_: string, paramName: string) => {\n paramNames.push(paramName);\n return \"([^\\\\/]+)\";\n });\n\n if (path.endsWith(\"*\")) {\n paramNames.push(\"*\");\n regexpSource +=\n path === \"*\" || path === \"/*\"\n ? \"(.*)$\" // Already matched the initial /, just match the rest\n : \"(?:\\\\/(.+)|\\\\/*)$\"; // Don't include the / in params[\"*\"]\n } else {\n regexpSource += end\n ? \"\\\\/*$\" // When matching to the end, ignore trailing slashes\n : // Otherwise, match a word boundary or a proceeding /. The word boundary restricts\n // parent routes to matching only their own words and nothing more, e.g. parent\n // route \"/home\" should not match \"/home2\".\n // Additionally, allow paths starting with `.`, `-`, `~`, and url-encoded entities,\n // but do not consume the character in the matched path so they can match against\n // nested paths.\n \"(?:(?=[.~-]|%[0-9A-F]{2})|\\\\b|\\\\/|$)\";\n }\n\n let matcher = new RegExp(regexpSource, caseSensitive ? undefined : \"i\");\n\n return [matcher, paramNames];\n}\n\nfunction safelyDecodeURIComponent(value: string, paramName: string) {\n try {\n return decodeURIComponent(value);\n } catch (error) {\n warning(\n false,\n `The value for the URL param \"${paramName}\" will not be decoded because` +\n ` the string \"${value}\" is a malformed URL segment. This is probably` +\n ` due to a bad percent encoding (${error}).`\n );\n\n return value;\n }\n}\n\n/**\n * Returns a resolved path object relative to the given pathname.\n *\n * @see https://reactrouter.com/docs/en/v6/api#resolvepath\n */\nexport function resolvePath(to: To, fromPathname = \"/\"): Path {\n let {\n pathname: toPathname,\n search = \"\",\n hash = \"\",\n } = typeof to === \"string\" ? parsePath(to) : to;\n\n let pathname = toPathname\n ? toPathname.startsWith(\"/\")\n ? toPathname\n : resolvePathname(toPathname, fromPathname)\n : fromPathname;\n\n return {\n pathname,\n search: normalizeSearch(search),\n hash: normalizeHash(hash),\n };\n}\n\nfunction resolvePathname(relativePath: string, fromPathname: string): string {\n let segments = fromPathname.replace(/\\/+$/, \"\").split(\"/\");\n let relativeSegments = relativePath.split(\"/\");\n\n relativeSegments.forEach((segment) => {\n if (segment === \"..\") {\n // Keep the root \"\" segment so the pathname starts at /\n if (segments.length > 1) segments.pop();\n } else if (segment !== \".\") {\n segments.push(segment);\n }\n });\n\n return segments.length > 1 ? segments.join(\"/\") : \"/\";\n}\n\nexport function resolveTo(\n toArg: To,\n routePathnames: string[],\n locationPathname: string\n): Path {\n let to = typeof toArg === \"string\" ? parsePath(toArg) : toArg;\n let toPathname = toArg === \"\" || to.pathname === \"\" ? \"/\" : to.pathname;\n\n // If a pathname is explicitly provided in `to`, it should be relative to the\n // route context. This is explained in `Note on `` values` in our\n // migration guide from v5 as a means of disambiguation between `to` values\n // that begin with `/` and those that do not. However, this is problematic for\n // `to` values that do not provide a pathname. `to` can simply be a search or\n // hash string, in which case we should assume that the navigation is relative\n // to the current location's pathname and *not* the route pathname.\n let from: string;\n if (toPathname == null) {\n from = locationPathname;\n } else {\n let routePathnameIndex = routePathnames.length - 1;\n\n if (toPathname.startsWith(\"..\")) {\n let toSegments = toPathname.split(\"/\");\n\n // Each leading .. segment means \"go up one route\" instead of \"go up one\n // URL segment\". This is a key difference from how works and a\n // major reason we call this a \"to\" value instead of a \"href\".\n while (toSegments[0] === \"..\") {\n toSegments.shift();\n routePathnameIndex -= 1;\n }\n\n to.pathname = toSegments.join(\"/\");\n }\n\n // If there are more \"..\" segments than parent routes, resolve relative to\n // the root / URL.\n from = routePathnameIndex >= 0 ? routePathnames[routePathnameIndex] : \"/\";\n }\n\n let path = resolvePath(to, from);\n\n // Ensure the pathname has a trailing slash if the original to value had one.\n if (\n toPathname &&\n toPathname !== \"/\" &&\n toPathname.endsWith(\"/\") &&\n !path.pathname.endsWith(\"/\")\n ) {\n path.pathname += \"/\";\n }\n\n return path;\n}\n\nexport function getToPathname(to: To): string | undefined {\n // Empty strings should be treated the same as / paths\n return to === \"\" || (to as Path).pathname === \"\"\n ? \"/\"\n : typeof to === \"string\"\n ? parsePath(to).pathname\n : to.pathname;\n}\n\nexport function stripBasename(\n pathname: string,\n basename: string\n): string | null {\n if (basename === \"/\") return pathname;\n\n if (!pathname.toLowerCase().startsWith(basename.toLowerCase())) {\n return null;\n }\n\n let nextChar = pathname.charAt(basename.length);\n if (nextChar && nextChar !== \"/\") {\n // pathname does not start with basename/\n return null;\n }\n\n return pathname.slice(basename.length) || \"/\";\n}\n\nexport const joinPaths = (paths: string[]): string =>\n paths.join(\"/\").replace(/\\/\\/+/g, \"/\");\n\nexport const normalizePathname = (pathname: string): string =>\n pathname.replace(/\\/+$/, \"\").replace(/^\\/*/, \"/\");\n\nconst normalizeSearch = (search: string): string =>\n !search || search === \"?\"\n ? \"\"\n : search.startsWith(\"?\")\n ? search\n : \"?\" + search;\n\nconst normalizeHash = (hash: string): string =>\n !hash || hash === \"#\" ? \"\" : hash.startsWith(\"#\") ? hash : \"#\" + hash;\n","import * as React from \"react\";\nimport type { Location, Path, To } from \"history\";\nimport { Action as NavigationType, parsePath } from \"history\";\n\nimport { LocationContext, NavigationContext, RouteContext } from \"./context\";\nimport type {\n ParamParseKey,\n Params,\n PathMatch,\n PathPattern,\n RouteMatch,\n RouteObject,\n} from \"./router\";\nimport {\n getToPathname,\n invariant,\n joinPaths,\n matchPath,\n matchRoutes,\n resolveTo,\n warning,\n warningOnce,\n} from \"./router\";\n\n/**\n * Returns the full href for the given \"to\" value. This is useful for building\n * custom links that are also accessible and preserve right-click behavior.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usehref\n */\nexport function useHref(to: To): string {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useHref() may be used only in the context of a component.`\n );\n\n let { basename, navigator } = React.useContext(NavigationContext);\n let { hash, pathname, search } = useResolvedPath(to);\n\n let joinedPathname = pathname;\n if (basename !== \"/\") {\n let toPathname = getToPathname(to);\n let endsWithSlash = toPathname != null && toPathname.endsWith(\"/\");\n joinedPathname =\n pathname === \"/\"\n ? basename + (endsWithSlash ? \"/\" : \"\")\n : joinPaths([basename, pathname]);\n }\n\n return navigator.createHref({ pathname: joinedPathname, search, hash });\n}\n\n/**\n * Returns true if this component is a descendant of a .\n *\n * @see https://reactrouter.com/docs/en/v6/api#useinroutercontext\n */\nexport function useInRouterContext(): boolean {\n return React.useContext(LocationContext) != null;\n}\n\n/**\n * Returns the current location object, which represents the current URL in web\n * browsers.\n *\n * Note: If you're using this it may mean you're doing some of your own\n * \"routing\" in your app, and we'd like to know what your use case is. We may\n * be able to provide something higher-level to better suit your needs.\n *\n * @see https://reactrouter.com/docs/en/v6/api#uselocation\n */\nexport function useLocation(): Location {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useLocation() may be used only in the context of a component.`\n );\n\n return React.useContext(LocationContext).location;\n}\n\n/**\n * Returns the current navigation action which describes how the router came to\n * the current location, either by a pop, push, or replace on the history stack.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usenavigationtype\n */\nexport function useNavigationType(): NavigationType {\n return React.useContext(LocationContext).navigationType;\n}\n\n/**\n * Returns true if the URL for the given \"to\" value matches the current URL.\n * This is useful for components that need to know \"active\" state, e.g.\n * .\n *\n * @see https://reactrouter.com/docs/en/v6/api#usematch\n */\nexport function useMatch<\n ParamKey extends ParamParseKey,\n Path extends string\n>(pattern: PathPattern | Path): PathMatch | null {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useMatch() may be used only in the context of a component.`\n );\n\n let { pathname } = useLocation();\n return React.useMemo(\n () => matchPath(pattern, pathname),\n [pathname, pattern]\n );\n}\n\n/**\n * The interface for the navigate() function returned from useNavigate().\n */\nexport interface NavigateFunction {\n (to: To, options?: NavigateOptions): void;\n (delta: number): void;\n}\n\nexport interface NavigateOptions {\n replace?: boolean;\n state?: any;\n}\n\n/**\n * Returns an imperative method for changing the location. Used by s, but\n * may also be used by other elements to change the location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#usenavigate\n */\nexport function useNavigate(): NavigateFunction {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useNavigate() may be used only in the context of a component.`\n );\n\n let { basename, navigator } = React.useContext(NavigationContext);\n let { matches } = React.useContext(RouteContext);\n let { pathname: locationPathname } = useLocation();\n\n let routePathnamesJson = JSON.stringify(\n matches.map((match) => match.pathnameBase)\n );\n\n let activeRef = React.useRef(false);\n React.useEffect(() => {\n activeRef.current = true;\n });\n\n let navigate: NavigateFunction = React.useCallback(\n (to: To | number, options: NavigateOptions = {}) => {\n warning(\n activeRef.current,\n `You should call navigate() in a React.useEffect(), not when ` +\n `your component is first rendered.`\n );\n\n if (!activeRef.current) return;\n\n if (typeof to === \"number\") {\n navigator.go(to);\n return;\n }\n\n let path = resolveTo(\n to,\n JSON.parse(routePathnamesJson),\n locationPathname\n );\n\n if (basename !== \"/\") {\n path.pathname = joinPaths([basename, path.pathname]);\n }\n\n (!!options.replace ? navigator.replace : navigator.push)(\n path,\n options.state\n );\n },\n [basename, navigator, routePathnamesJson, locationPathname]\n );\n\n return navigate;\n}\n\nconst OutletContext = React.createContext(null);\n\n/**\n * Returns the context (if provided) for the child route at this level of the route\n * hierarchy.\n * @see https://reactrouter.com/docs/en/v6/api#useoutletcontext\n */\nexport function useOutletContext(): Context {\n return React.useContext(OutletContext) as Context;\n}\n\n/**\n * Returns the element for the child route at this level of the route\n * hierarchy. Used internally by to render child routes.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useoutlet\n */\nexport function useOutlet(context?: unknown): React.ReactElement | null {\n let outlet = React.useContext(RouteContext).outlet;\n if (outlet) {\n return (\n {outlet}\n );\n }\n return outlet;\n}\n\n/**\n * Returns an object of key/value pairs of the dynamic params from the current\n * URL that were matched by the route path.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useparams\n */\nexport function useParams<\n ParamsOrKey extends string | Record = string\n>(): Readonly<\n [ParamsOrKey] extends [string] ? Params : Partial\n> {\n let { matches } = React.useContext(RouteContext);\n let routeMatch = matches[matches.length - 1];\n return routeMatch ? (routeMatch.params as any) : {};\n}\n\n/**\n * Resolves the pathname of the given `to` value against the current location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useresolvedpath\n */\nexport function useResolvedPath(to: To): Path {\n let { matches } = React.useContext(RouteContext);\n let { pathname: locationPathname } = useLocation();\n\n let routePathnamesJson = JSON.stringify(\n matches.map((match) => match.pathnameBase)\n );\n\n return React.useMemo(\n () => resolveTo(to, JSON.parse(routePathnamesJson), locationPathname),\n [to, routePathnamesJson, locationPathname]\n );\n}\n\n/**\n * Returns the element of the route that matched the current location, prepared\n * with the correct context to render the remainder of the route tree. Route\n * elements in the tree must render an to render their child route's\n * element.\n *\n * @see https://reactrouter.com/docs/en/v6/api#useroutes\n */\nexport function useRoutes(\n routes: RouteObject[],\n locationArg?: Partial | string\n): React.ReactElement | null {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useRoutes() may be used only in the context of a component.`\n );\n\n let { matches: parentMatches } = React.useContext(RouteContext);\n let routeMatch = parentMatches[parentMatches.length - 1];\n let parentParams = routeMatch ? routeMatch.params : {};\n let parentPathname = routeMatch ? routeMatch.pathname : \"/\";\n let parentPathnameBase = routeMatch ? routeMatch.pathnameBase : \"/\";\n let parentRoute = routeMatch && routeMatch.route;\n\n if (__DEV__) {\n // You won't get a warning about 2 different under a \n // without a trailing *, but this is a best-effort warning anyway since we\n // cannot even give the warning unless they land at the parent route.\n //\n // Example:\n //\n // \n // {/* This route path MUST end with /* because otherwise\n // it will never match /blog/post/123 */}\n // } />\n // } />\n // \n //\n // function Blog() {\n // return (\n // \n // } />\n // \n // );\n // }\n let parentPath = (parentRoute && parentRoute.path) || \"\";\n warningOnce(\n parentPathname,\n !parentRoute || parentPath.endsWith(\"*\"),\n `You rendered descendant (or called \\`useRoutes()\\`) at ` +\n `\"${parentPathname}\" (under ) but the ` +\n `parent route path has no trailing \"*\". This means if you navigate ` +\n `deeper, the parent won't match anymore and therefore the child ` +\n `routes will never render.\\n\\n` +\n `Please change the parent to .`\n );\n }\n\n let locationFromContext = useLocation();\n\n let location;\n if (locationArg) {\n let parsedLocationArg =\n typeof locationArg === \"string\" ? parsePath(locationArg) : locationArg;\n\n invariant(\n parentPathnameBase === \"/\" ||\n parsedLocationArg.pathname?.startsWith(parentPathnameBase),\n `When overriding the location using \\`\\` or \\`useRoutes(routes, location)\\`, ` +\n `the location pathname must begin with the portion of the URL pathname that was ` +\n `matched by all parent routes. The current pathname base is \"${parentPathnameBase}\" ` +\n `but pathname \"${parsedLocationArg.pathname}\" was given in the \\`location\\` prop.`\n );\n\n location = parsedLocationArg;\n } else {\n location = locationFromContext;\n }\n\n let pathname = location.pathname || \"/\";\n let remainingPathname =\n parentPathnameBase === \"/\"\n ? pathname\n : pathname.slice(parentPathnameBase.length) || \"/\";\n let matches = matchRoutes(routes, { pathname: remainingPathname });\n\n if (__DEV__) {\n warning(\n parentRoute || matches != null,\n `No routes matched location \"${location.pathname}${location.search}${location.hash}\" `\n );\n\n warning(\n matches == null ||\n matches[matches.length - 1].route.element !== undefined,\n `Matched leaf route at location \"${location.pathname}${location.search}${location.hash}\" does not have an element. ` +\n `This means it will render an with a null value by default resulting in an \"empty\" page.`\n );\n }\n\n return _renderMatches(\n matches &&\n matches.map((match) =>\n Object.assign({}, match, {\n params: Object.assign({}, parentParams, match.params),\n pathname: joinPaths([parentPathnameBase, match.pathname]),\n pathnameBase:\n match.pathnameBase === \"/\"\n ? parentPathnameBase\n : joinPaths([parentPathnameBase, match.pathnameBase]),\n })\n ),\n parentMatches\n );\n}\n\nexport function _renderMatches(\n matches: RouteMatch[] | null,\n parentMatches: RouteMatch[] = []\n): React.ReactElement | null {\n if (matches == null) return null;\n\n return matches.reduceRight((outlet, match, index) => {\n return (\n \n );\n }, null as React.ReactElement | null);\n}\n","import * as React from \"react\";\nimport type { InitialEntry, Location, MemoryHistory, To } from \"history\";\nimport {\n Action as NavigationType,\n createMemoryHistory,\n parsePath,\n} from \"history\";\n\nimport { LocationContext, NavigationContext, Navigator } from \"./context\";\nimport {\n useInRouterContext,\n useNavigate,\n useOutlet,\n useRoutes,\n _renderMatches,\n} from \"./hooks\";\nimport type { RouteMatch, RouteObject } from \"./router\";\nimport { invariant, normalizePathname, stripBasename, warning } from \"./router\";\n\nexport interface MemoryRouterProps {\n basename?: string;\n children?: React.ReactNode;\n initialEntries?: InitialEntry[];\n initialIndex?: number;\n}\n\n/**\n * A that stores all entries in memory.\n *\n * @see https://reactrouter.com/docs/en/v6/api#memoryrouter\n */\nexport function MemoryRouter({\n basename,\n children,\n initialEntries,\n initialIndex,\n}: MemoryRouterProps): React.ReactElement {\n let historyRef = React.useRef();\n if (historyRef.current == null) {\n historyRef.current = createMemoryHistory({ initialEntries, initialIndex });\n }\n\n let history = historyRef.current;\n let [state, setState] = React.useState({\n action: history.action,\n location: history.location,\n });\n\n React.useLayoutEffect(() => history.listen(setState), [history]);\n\n return (\n \n );\n}\n\nexport interface NavigateProps {\n to: To;\n replace?: boolean;\n state?: any;\n}\n\n/**\n * Changes the current location.\n *\n * Note: This API is mostly useful in React.Component subclasses that are not\n * able to use hooks. In functional components, we recommend you use the\n * `useNavigate` hook instead.\n *\n * @see https://reactrouter.com/docs/en/v6/api#navigate\n */\nexport function Navigate({ to, replace, state }: NavigateProps): null {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of\n // the router loaded. We can help them understand how to avoid that.\n ` may be used only in the context of a component.`\n );\n\n warning(\n !React.useContext(NavigationContext).static,\n ` must not be used on the initial render in a . ` +\n `This is a no-op, but you should modify your code so the is ` +\n `only ever rendered in response to some user interaction or state change.`\n );\n\n let navigate = useNavigate();\n React.useEffect(() => {\n navigate(to, { replace, state });\n });\n\n return null;\n}\n\nexport interface OutletProps {\n context?: unknown;\n}\n\n/**\n * Renders the child route's element, if there is one.\n *\n * @see https://reactrouter.com/docs/en/v6/api#outlet\n */\nexport function Outlet(props: OutletProps): React.ReactElement | null {\n return useOutlet(props.context);\n}\n\nexport interface RouteProps {\n caseSensitive?: boolean;\n children?: React.ReactNode;\n element?: React.ReactNode | null;\n index?: boolean;\n path?: string;\n}\n\nexport interface PathRouteProps {\n caseSensitive?: boolean;\n children?: React.ReactNode;\n element?: React.ReactNode | null;\n index?: false;\n path: string;\n}\n\nexport interface LayoutRouteProps {\n children?: React.ReactNode;\n element?: React.ReactNode | null;\n}\n\nexport interface IndexRouteProps {\n element?: React.ReactNode | null;\n index: true;\n}\n\n/**\n * Declares an element that should be rendered at a certain URL path.\n *\n * @see https://reactrouter.com/docs/en/v6/api#route\n */\nexport function Route(\n _props: PathRouteProps | LayoutRouteProps | IndexRouteProps\n): React.ReactElement | null {\n invariant(\n false,\n `A is only ever to be used as the child of element, ` +\n `never rendered directly. Please wrap your in a .`\n );\n}\n\nexport interface RouterProps {\n basename?: string;\n children?: React.ReactNode;\n location: Partial | string;\n navigationType?: NavigationType;\n navigator: Navigator;\n static?: boolean;\n}\n\n/**\n * Provides location context for the rest of the app.\n *\n * Note: You usually won't render a directly. Instead, you'll render a\n * router that is more specific to your environment such as a \n * in web browsers or a for server rendering.\n *\n * @see https://reactrouter.com/docs/en/v6/api#router\n */\nexport function Router({\n basename: basenameProp = \"/\",\n children = null,\n location: locationProp,\n navigationType = NavigationType.Pop,\n navigator,\n static: staticProp = false,\n}: RouterProps): React.ReactElement | null {\n invariant(\n !useInRouterContext(),\n `You cannot render a inside another .` +\n ` You should never have more than one in your app.`\n );\n\n let basename = normalizePathname(basenameProp);\n let navigationContext = React.useMemo(\n () => ({ basename, navigator, static: staticProp }),\n [basename, navigator, staticProp]\n );\n\n if (typeof locationProp === \"string\") {\n locationProp = parsePath(locationProp);\n }\n\n let {\n pathname = \"/\",\n search = \"\",\n hash = \"\",\n state = null,\n key = \"default\",\n } = locationProp;\n\n let location = React.useMemo(() => {\n let trailingPathname = stripBasename(pathname, basename);\n\n if (trailingPathname == null) {\n return null;\n }\n\n return {\n pathname: trailingPathname,\n search,\n hash,\n state,\n key,\n };\n }, [basename, pathname, search, hash, state, key]);\n\n warning(\n location != null,\n ` is not able to match the URL ` +\n `\"${pathname}${search}${hash}\" because it does not start with the ` +\n `basename, so the won't render anything.`\n );\n\n if (location == null) {\n return null;\n }\n\n return (\n \n \n \n );\n}\n\nexport interface RoutesProps {\n children?: React.ReactNode;\n location?: Partial | string;\n}\n\n/**\n * A container for a nested tree of elements that renders the branch\n * that best matches the current location.\n *\n * @see https://reactrouter.com/docs/en/v6/api#routes\n */\nexport function Routes({\n children,\n location,\n}: RoutesProps): React.ReactElement | null {\n return useRoutes(createRoutesFromChildren(children), location);\n}\n\n///////////////////////////////////////////////////////////////////////////////\n// UTILS\n///////////////////////////////////////////////////////////////////////////////\n\n/**\n * Creates a route config from a React \"children\" object, which is usually\n * either a `` element or an array of them. Used internally by\n * `` to create a route config from its children.\n *\n * @see https://reactrouter.com/docs/en/v6/api#createroutesfromchildren\n */\nexport function createRoutesFromChildren(\n children: React.ReactNode\n): RouteObject[] {\n let routes: RouteObject[] = [];\n\n React.Children.forEach(children, (element) => {\n if (!React.isValidElement(element)) {\n // Ignore non-elements. This allows people to more easily inline\n // conditionals in their route config.\n return;\n }\n\n if (element.type === React.Fragment) {\n // Transparently support React.Fragment and its children.\n routes.push.apply(\n routes,\n createRoutesFromChildren(element.props.children)\n );\n return;\n }\n\n invariant(\n element.type === Route,\n `[${\n typeof element.type === \"string\" ? element.type : element.type.name\n }] is not a component. All component children of must be a or `\n );\n\n let route: RouteObject = {\n caseSensitive: element.props.caseSensitive,\n element: element.props.element,\n index: element.props.index,\n path: element.props.path,\n };\n\n if (element.props.children) {\n route.children = createRoutesFromChildren(element.props.children);\n }\n\n routes.push(route);\n });\n\n return routes;\n}\n\n/**\n * Renders the result of `matchRoutes()` into a React element.\n */\nexport function renderMatches(\n matches: RouteMatch[] | null\n): React.ReactElement | null {\n return _renderMatches(matches);\n}\n"]},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0907cbb44b8a42022adec63b4530c524.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0907cbb44b8a42022adec63b4530c524.json deleted file mode 100644 index f1155fc1..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0907cbb44b8a42022adec63b4530c524.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nfunction componentWillMount() {\n // Call this.constructor.gDSFP to support sub-classes.\n var state = this.constructor.getDerivedStateFromProps(this.props, this.state);\n\n if (state !== null && state !== undefined) {\n this.setState(state);\n }\n}\n\nfunction componentWillReceiveProps(nextProps) {\n // Call this.constructor.gDSFP to support sub-classes.\n // Use the setState() updater to ensure state isn't stale in certain edge cases.\n function updater(prevState) {\n var state = this.constructor.getDerivedStateFromProps(nextProps, prevState);\n return state !== null && state !== undefined ? state : null;\n } // Binding \"this\" is important for shallow renderer support.\n\n\n this.setState(updater.bind(this));\n}\n\nfunction componentWillUpdate(nextProps, nextState) {\n try {\n var prevProps = this.props;\n var prevState = this.state;\n this.props = nextProps;\n this.state = nextState;\n this.__reactInternalSnapshotFlag = true;\n this.__reactInternalSnapshot = this.getSnapshotBeforeUpdate(prevProps, prevState);\n } finally {\n this.props = prevProps;\n this.state = prevState;\n }\n} // React may warn about cWM/cWRP/cWU methods being deprecated.\n// Add a flag to suppress these warnings for this special case.\n\n\ncomponentWillMount.__suppressDeprecationWarning = true;\ncomponentWillReceiveProps.__suppressDeprecationWarning = true;\ncomponentWillUpdate.__suppressDeprecationWarning = true;\n\nfunction polyfill(Component) {\n var prototype = Component.prototype;\n\n if (!prototype || !prototype.isReactComponent) {\n throw new Error('Can only polyfill class components');\n }\n\n if (typeof Component.getDerivedStateFromProps !== 'function' && typeof prototype.getSnapshotBeforeUpdate !== 'function') {\n return Component;\n } // If new component APIs are defined, \"unsafe\" lifecycles won't be called.\n // Error if any of these lifecycles are present,\n // Because they would work differently between older and newer (16.3+) versions of React.\n\n\n var foundWillMountName = null;\n var foundWillReceivePropsName = null;\n var foundWillUpdateName = null;\n\n if (typeof prototype.componentWillMount === 'function') {\n foundWillMountName = 'componentWillMount';\n } else if (typeof prototype.UNSAFE_componentWillMount === 'function') {\n foundWillMountName = 'UNSAFE_componentWillMount';\n }\n\n if (typeof prototype.componentWillReceiveProps === 'function') {\n foundWillReceivePropsName = 'componentWillReceiveProps';\n } else if (typeof prototype.UNSAFE_componentWillReceiveProps === 'function') {\n foundWillReceivePropsName = 'UNSAFE_componentWillReceiveProps';\n }\n\n if (typeof prototype.componentWillUpdate === 'function') {\n foundWillUpdateName = 'componentWillUpdate';\n } else if (typeof prototype.UNSAFE_componentWillUpdate === 'function') {\n foundWillUpdateName = 'UNSAFE_componentWillUpdate';\n }\n\n if (foundWillMountName !== null || foundWillReceivePropsName !== null || foundWillUpdateName !== null) {\n var componentName = Component.displayName || Component.name;\n var newApiName = typeof Component.getDerivedStateFromProps === 'function' ? 'getDerivedStateFromProps()' : 'getSnapshotBeforeUpdate()';\n throw Error('Unsafe legacy lifecycles will not be called for components using new component APIs.\\n\\n' + componentName + ' uses ' + newApiName + ' but also contains the following legacy lifecycles:' + (foundWillMountName !== null ? '\\n ' + foundWillMountName : '') + (foundWillReceivePropsName !== null ? '\\n ' + foundWillReceivePropsName : '') + (foundWillUpdateName !== null ? '\\n ' + foundWillUpdateName : '') + '\\n\\nThe above lifecycles should be removed. Learn more about this warning here:\\n' + 'https://fb.me/react-async-component-lifecycle-hooks');\n } // React <= 16.2 does not support static getDerivedStateFromProps.\n // As a workaround, use cWM and cWRP to invoke the new static lifecycle.\n // Newer versions of React will ignore these lifecycles if gDSFP exists.\n\n\n if (typeof Component.getDerivedStateFromProps === 'function') {\n prototype.componentWillMount = componentWillMount;\n prototype.componentWillReceiveProps = componentWillReceiveProps;\n } // React <= 16.2 does not support getSnapshotBeforeUpdate.\n // As a workaround, use cWU to invoke the new lifecycle.\n // Newer versions of React will ignore that lifecycle if gSBU exists.\n\n\n if (typeof prototype.getSnapshotBeforeUpdate === 'function') {\n if (typeof prototype.componentDidUpdate !== 'function') {\n throw new Error('Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype');\n }\n\n prototype.componentWillUpdate = componentWillUpdate;\n var componentDidUpdate = prototype.componentDidUpdate;\n\n prototype.componentDidUpdate = function componentDidUpdatePolyfill(prevProps, prevState, maybeSnapshot) {\n // 16.3+ will not execute our will-update method;\n // It will pass a snapshot value to did-update though.\n // Older versions will require our polyfilled will-update value.\n // We need to handle both cases, but can't just check for the presence of \"maybeSnapshot\",\n // Because for <= 15.x versions this might be a \"prevContext\" object.\n // We also can't just check \"__reactInternalSnapshot\",\n // Because get-snapshot might return a falsy value.\n // So check for the explicit __reactInternalSnapshotFlag flag to determine behavior.\n var snapshot = this.__reactInternalSnapshotFlag ? this.__reactInternalSnapshot : maybeSnapshot;\n componentDidUpdate.call(this, prevProps, prevState, snapshot);\n };\n }\n\n return Component;\n}\n\nexport { polyfill };","map":{"version":3,"names":["componentWillMount","state","constructor","getDerivedStateFromProps","props","undefined","setState","componentWillReceiveProps","nextProps","updater","prevState","bind","componentWillUpdate","nextState","prevProps","__reactInternalSnapshotFlag","__reactInternalSnapshot","getSnapshotBeforeUpdate","__suppressDeprecationWarning","polyfill","Component","prototype","isReactComponent","Error","foundWillMountName","foundWillReceivePropsName","foundWillUpdateName","UNSAFE_componentWillMount","UNSAFE_componentWillReceiveProps","UNSAFE_componentWillUpdate","componentName","displayName","name","newApiName","componentDidUpdate","componentDidUpdatePolyfill","maybeSnapshot","snapshot","call"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js"],"sourcesContent":["/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nfunction componentWillMount() {\n // Call this.constructor.gDSFP to support sub-classes.\n var state = this.constructor.getDerivedStateFromProps(this.props, this.state);\n if (state !== null && state !== undefined) {\n this.setState(state);\n }\n}\n\nfunction componentWillReceiveProps(nextProps) {\n // Call this.constructor.gDSFP to support sub-classes.\n // Use the setState() updater to ensure state isn't stale in certain edge cases.\n function updater(prevState) {\n var state = this.constructor.getDerivedStateFromProps(nextProps, prevState);\n return state !== null && state !== undefined ? state : null;\n }\n // Binding \"this\" is important for shallow renderer support.\n this.setState(updater.bind(this));\n}\n\nfunction componentWillUpdate(nextProps, nextState) {\n try {\n var prevProps = this.props;\n var prevState = this.state;\n this.props = nextProps;\n this.state = nextState;\n this.__reactInternalSnapshotFlag = true;\n this.__reactInternalSnapshot = this.getSnapshotBeforeUpdate(\n prevProps,\n prevState\n );\n } finally {\n this.props = prevProps;\n this.state = prevState;\n }\n}\n\n// React may warn about cWM/cWRP/cWU methods being deprecated.\n// Add a flag to suppress these warnings for this special case.\ncomponentWillMount.__suppressDeprecationWarning = true;\ncomponentWillReceiveProps.__suppressDeprecationWarning = true;\ncomponentWillUpdate.__suppressDeprecationWarning = true;\n\nfunction polyfill(Component) {\n var prototype = Component.prototype;\n\n if (!prototype || !prototype.isReactComponent) {\n throw new Error('Can only polyfill class components');\n }\n\n if (\n typeof Component.getDerivedStateFromProps !== 'function' &&\n typeof prototype.getSnapshotBeforeUpdate !== 'function'\n ) {\n return Component;\n }\n\n // If new component APIs are defined, \"unsafe\" lifecycles won't be called.\n // Error if any of these lifecycles are present,\n // Because they would work differently between older and newer (16.3+) versions of React.\n var foundWillMountName = null;\n var foundWillReceivePropsName = null;\n var foundWillUpdateName = null;\n if (typeof prototype.componentWillMount === 'function') {\n foundWillMountName = 'componentWillMount';\n } else if (typeof prototype.UNSAFE_componentWillMount === 'function') {\n foundWillMountName = 'UNSAFE_componentWillMount';\n }\n if (typeof prototype.componentWillReceiveProps === 'function') {\n foundWillReceivePropsName = 'componentWillReceiveProps';\n } else if (typeof prototype.UNSAFE_componentWillReceiveProps === 'function') {\n foundWillReceivePropsName = 'UNSAFE_componentWillReceiveProps';\n }\n if (typeof prototype.componentWillUpdate === 'function') {\n foundWillUpdateName = 'componentWillUpdate';\n } else if (typeof prototype.UNSAFE_componentWillUpdate === 'function') {\n foundWillUpdateName = 'UNSAFE_componentWillUpdate';\n }\n if (\n foundWillMountName !== null ||\n foundWillReceivePropsName !== null ||\n foundWillUpdateName !== null\n ) {\n var componentName = Component.displayName || Component.name;\n var newApiName =\n typeof Component.getDerivedStateFromProps === 'function'\n ? 'getDerivedStateFromProps()'\n : 'getSnapshotBeforeUpdate()';\n\n throw Error(\n 'Unsafe legacy lifecycles will not be called for components using new component APIs.\\n\\n' +\n componentName +\n ' uses ' +\n newApiName +\n ' but also contains the following legacy lifecycles:' +\n (foundWillMountName !== null ? '\\n ' + foundWillMountName : '') +\n (foundWillReceivePropsName !== null\n ? '\\n ' + foundWillReceivePropsName\n : '') +\n (foundWillUpdateName !== null ? '\\n ' + foundWillUpdateName : '') +\n '\\n\\nThe above lifecycles should be removed. Learn more about this warning here:\\n' +\n 'https://fb.me/react-async-component-lifecycle-hooks'\n );\n }\n\n // React <= 16.2 does not support static getDerivedStateFromProps.\n // As a workaround, use cWM and cWRP to invoke the new static lifecycle.\n // Newer versions of React will ignore these lifecycles if gDSFP exists.\n if (typeof Component.getDerivedStateFromProps === 'function') {\n prototype.componentWillMount = componentWillMount;\n prototype.componentWillReceiveProps = componentWillReceiveProps;\n }\n\n // React <= 16.2 does not support getSnapshotBeforeUpdate.\n // As a workaround, use cWU to invoke the new lifecycle.\n // Newer versions of React will ignore that lifecycle if gSBU exists.\n if (typeof prototype.getSnapshotBeforeUpdate === 'function') {\n if (typeof prototype.componentDidUpdate !== 'function') {\n throw new Error(\n 'Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype'\n );\n }\n\n prototype.componentWillUpdate = componentWillUpdate;\n\n var componentDidUpdate = prototype.componentDidUpdate;\n\n prototype.componentDidUpdate = function componentDidUpdatePolyfill(\n prevProps,\n prevState,\n maybeSnapshot\n ) {\n // 16.3+ will not execute our will-update method;\n // It will pass a snapshot value to did-update though.\n // Older versions will require our polyfilled will-update value.\n // We need to handle both cases, but can't just check for the presence of \"maybeSnapshot\",\n // Because for <= 15.x versions this might be a \"prevContext\" object.\n // We also can't just check \"__reactInternalSnapshot\",\n // Because get-snapshot might return a falsy value.\n // So check for the explicit __reactInternalSnapshotFlag flag to determine behavior.\n var snapshot = this.__reactInternalSnapshotFlag\n ? this.__reactInternalSnapshot\n : maybeSnapshot;\n\n componentDidUpdate.call(this, prevProps, prevState, snapshot);\n };\n }\n\n return Component;\n}\n\nexport { polyfill };\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AAEA,SAASA,kBAAT,GAA8B;EAC5B;EACA,IAAIC,KAAK,GAAG,KAAKC,WAAL,CAAiBC,wBAAjB,CAA0C,KAAKC,KAA/C,EAAsD,KAAKH,KAA3D,CAAZ;;EACA,IAAIA,KAAK,KAAK,IAAV,IAAkBA,KAAK,KAAKI,SAAhC,EAA2C;IACzC,KAAKC,QAAL,CAAcL,KAAd;EACD;AACF;;AAED,SAASM,yBAAT,CAAmCC,SAAnC,EAA8C;EAC5C;EACA;EACA,SAASC,OAAT,CAAiBC,SAAjB,EAA4B;IAC1B,IAAIT,KAAK,GAAG,KAAKC,WAAL,CAAiBC,wBAAjB,CAA0CK,SAA1C,EAAqDE,SAArD,CAAZ;IACA,OAAOT,KAAK,KAAK,IAAV,IAAkBA,KAAK,KAAKI,SAA5B,GAAwCJ,KAAxC,GAAgD,IAAvD;EACD,CAN2C,CAO5C;;;EACA,KAAKK,QAAL,CAAcG,OAAO,CAACE,IAAR,CAAa,IAAb,CAAd;AACD;;AAED,SAASC,mBAAT,CAA6BJ,SAA7B,EAAwCK,SAAxC,EAAmD;EACjD,IAAI;IACF,IAAIC,SAAS,GAAG,KAAKV,KAArB;IACA,IAAIM,SAAS,GAAG,KAAKT,KAArB;IACA,KAAKG,KAAL,GAAaI,SAAb;IACA,KAAKP,KAAL,GAAaY,SAAb;IACA,KAAKE,2BAAL,GAAmC,IAAnC;IACA,KAAKC,uBAAL,GAA+B,KAAKC,uBAAL,CAC7BH,SAD6B,EAE7BJ,SAF6B,CAA/B;EAID,CAVD,SAUU;IACR,KAAKN,KAAL,GAAaU,SAAb;IACA,KAAKb,KAAL,GAAaS,SAAb;EACD;AACF,C,CAED;AACA;;;AACAV,kBAAkB,CAACkB,4BAAnB,GAAkD,IAAlD;AACAX,yBAAyB,CAACW,4BAA1B,GAAyD,IAAzD;AACAN,mBAAmB,CAACM,4BAApB,GAAmD,IAAnD;;AAEA,SAASC,QAAT,CAAkBC,SAAlB,EAA6B;EAC3B,IAAIC,SAAS,GAAGD,SAAS,CAACC,SAA1B;;EAEA,IAAI,CAACA,SAAD,IAAc,CAACA,SAAS,CAACC,gBAA7B,EAA+C;IAC7C,MAAM,IAAIC,KAAJ,CAAU,oCAAV,CAAN;EACD;;EAED,IACE,OAAOH,SAAS,CAACjB,wBAAjB,KAA8C,UAA9C,IACA,OAAOkB,SAAS,CAACJ,uBAAjB,KAA6C,UAF/C,EAGE;IACA,OAAOG,SAAP;EACD,CAZ0B,CAc3B;EACA;EACA;;;EACA,IAAII,kBAAkB,GAAG,IAAzB;EACA,IAAIC,yBAAyB,GAAG,IAAhC;EACA,IAAIC,mBAAmB,GAAG,IAA1B;;EACA,IAAI,OAAOL,SAAS,CAACrB,kBAAjB,KAAwC,UAA5C,EAAwD;IACtDwB,kBAAkB,GAAG,oBAArB;EACD,CAFD,MAEO,IAAI,OAAOH,SAAS,CAACM,yBAAjB,KAA+C,UAAnD,EAA+D;IACpEH,kBAAkB,GAAG,2BAArB;EACD;;EACD,IAAI,OAAOH,SAAS,CAACd,yBAAjB,KAA+C,UAAnD,EAA+D;IAC7DkB,yBAAyB,GAAG,2BAA5B;EACD,CAFD,MAEO,IAAI,OAAOJ,SAAS,CAACO,gCAAjB,KAAsD,UAA1D,EAAsE;IAC3EH,yBAAyB,GAAG,kCAA5B;EACD;;EACD,IAAI,OAAOJ,SAAS,CAACT,mBAAjB,KAAyC,UAA7C,EAAyD;IACvDc,mBAAmB,GAAG,qBAAtB;EACD,CAFD,MAEO,IAAI,OAAOL,SAAS,CAACQ,0BAAjB,KAAgD,UAApD,EAAgE;IACrEH,mBAAmB,GAAG,4BAAtB;EACD;;EACD,IACEF,kBAAkB,KAAK,IAAvB,IACAC,yBAAyB,KAAK,IAD9B,IAEAC,mBAAmB,KAAK,IAH1B,EAIE;IACA,IAAII,aAAa,GAAGV,SAAS,CAACW,WAAV,IAAyBX,SAAS,CAACY,IAAvD;IACA,IAAIC,UAAU,GACZ,OAAOb,SAAS,CAACjB,wBAAjB,KAA8C,UAA9C,GACI,4BADJ,GAEI,2BAHN;IAKA,MAAMoB,KAAK,CACT,6FACEO,aADF,GAEE,QAFF,GAGEG,UAHF,GAIE,qDAJF,IAKGT,kBAAkB,KAAK,IAAvB,GAA8B,SAASA,kBAAvC,GAA4D,EAL/D,KAMGC,yBAAyB,KAAK,IAA9B,GACG,SAASA,yBADZ,GAEG,EARN,KASGC,mBAAmB,KAAK,IAAxB,GAA+B,SAASA,mBAAxC,GAA8D,EATjE,IAUE,mFAVF,GAWE,qDAZO,CAAX;EAcD,CA5D0B,CA8D3B;EACA;EACA;;;EACA,IAAI,OAAON,SAAS,CAACjB,wBAAjB,KAA8C,UAAlD,EAA8D;IAC5DkB,SAAS,CAACrB,kBAAV,GAA+BA,kBAA/B;IACAqB,SAAS,CAACd,yBAAV,GAAsCA,yBAAtC;EACD,CApE0B,CAsE3B;EACA;EACA;;;EACA,IAAI,OAAOc,SAAS,CAACJ,uBAAjB,KAA6C,UAAjD,EAA6D;IAC3D,IAAI,OAAOI,SAAS,CAACa,kBAAjB,KAAwC,UAA5C,EAAwD;MACtD,MAAM,IAAIX,KAAJ,CACJ,mHADI,CAAN;IAGD;;IAEDF,SAAS,CAACT,mBAAV,GAAgCA,mBAAhC;IAEA,IAAIsB,kBAAkB,GAAGb,SAAS,CAACa,kBAAnC;;IAEAb,SAAS,CAACa,kBAAV,GAA+B,SAASC,0BAAT,CAC7BrB,SAD6B,EAE7BJ,SAF6B,EAG7B0B,aAH6B,EAI7B;MACA;MACA;MACA;MACA;MACA;MACA;MACA;MACA;MACA,IAAIC,QAAQ,GAAG,KAAKtB,2BAAL,GACX,KAAKC,uBADM,GAEXoB,aAFJ;MAIAF,kBAAkB,CAACI,IAAnB,CAAwB,IAAxB,EAA8BxB,SAA9B,EAAyCJ,SAAzC,EAAoD2B,QAApD;IACD,CAlBD;EAmBD;;EAED,OAAOjB,SAAP;AACD;;AAED,SAASD,QAAT"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0909afaee2a01cd1beb6cfe09d161f5c.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0909afaee2a01cd1beb6cfe09d161f5c.json deleted file mode 100644 index 1dc13932..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0909afaee2a01cd1beb6cfe09d161f5c.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import React from 'react';\nexport default React.createContext(null);","map":{"version":3,"names":["React","createContext"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-transition-group/esm/TransitionGroupContext.js"],"sourcesContent":["import React from 'react';\nexport default React.createContext(null);"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,eAAeA,KAAK,CAACC,aAAN,CAAoB,IAApB,CAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0921a3a506334934fb9d9458708a3b4d.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0921a3a506334934fb9d9458708a3b4d.json new file mode 100644 index 00000000..9c2e384e --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0921a3a506334934fb9d9458708a3b4d.json @@ -0,0 +1 @@ +{"ast":null,"code":"'use strict';\n\nvar $propertyIsEnumerable = {}.propertyIsEnumerable; // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\n\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // Nashorn ~ JDK8 bug\n\nvar NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({\n 1: 2\n}, 1); // `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\n\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : $propertyIsEnumerable;","map":{"version":3,"names":["$propertyIsEnumerable","propertyIsEnumerable","getOwnPropertyDescriptor","Object","NASHORN_BUG","call","exports","f","V","descriptor","enumerable"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/internals/object-property-is-enumerable.js"],"sourcesContent":["'use strict';\nvar $propertyIsEnumerable = {}.propertyIsEnumerable;\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : $propertyIsEnumerable;\n"],"mappings":"AAAA;;AACA,IAAIA,qBAAqB,GAAG,GAAGC,oBAA/B,C,CACA;;AACA,IAAIC,wBAAwB,GAAGC,MAAM,CAACD,wBAAtC,C,CAEA;;AACA,IAAIE,WAAW,GAAGF,wBAAwB,IAAI,CAACF,qBAAqB,CAACK,IAAtB,CAA2B;EAAE,GAAG;AAAL,CAA3B,EAAqC,CAArC,CAA/C,C,CAEA;AACA;;AACAC,OAAO,CAACC,CAAR,GAAYH,WAAW,GAAG,SAASH,oBAAT,CAA8BO,CAA9B,EAAiC;EACzD,IAAIC,UAAU,GAAGP,wBAAwB,CAAC,IAAD,EAAOM,CAAP,CAAzC;EACA,OAAO,CAAC,CAACC,UAAF,IAAgBA,UAAU,CAACC,UAAlC;AACD,CAHsB,GAGnBV,qBAHJ"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0a31c63dc936e0726a240867452d193c.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0a31c63dc936e0726a240867452d193c.json deleted file mode 100644 index d6401d7a..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0a31c63dc936e0726a240867452d193c.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center\",\n children: \"Author: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center\",\n children: \"Author: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center\",\n children: \"Special title treatment\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n class: \"text-center\",\n children: \"With supporting text below as a natural lead-in to additional content.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: \n Author: \n \n Special title treatment\n \n With supporting text below as a natural lead-in to additional content.\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,aAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,aAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF,eAGE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,aAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAW,KAAK,EAAC,aAAjB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAHF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAcH;KAfuBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0a7f7bad0f487dedb51b139a2416037c.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0a7f7bad0f487dedb51b139a2416037c.json deleted file mode 100644 index fb6affae..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0a7f7bad0f487dedb51b139a2416037c.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import getClippingRect from \"../dom-utils/getClippingRect.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getBoundingClientRect from \"../dom-utils/getBoundingClientRect.js\";\nimport computeOffsets from \"./computeOffsets.js\";\nimport rectToClientRect from \"./rectToClientRect.js\";\nimport { clippingParents, reference, popper, bottom, top, right, basePlacements, viewport } from \"../enums.js\";\nimport { isElement } from \"../dom-utils/instanceOf.js\";\nimport mergePaddingObject from \"./mergePaddingObject.js\";\nimport expandToHashMap from \"./expandToHashMap.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport default function detectOverflow(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n _options$placement = _options.placement,\n placement = _options$placement === void 0 ? state.placement : _options$placement,\n _options$boundary = _options.boundary,\n boundary = _options$boundary === void 0 ? clippingParents : _options$boundary,\n _options$rootBoundary = _options.rootBoundary,\n rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary,\n _options$elementConte = _options.elementContext,\n elementContext = _options$elementConte === void 0 ? popper : _options$elementConte,\n _options$altBoundary = _options.altBoundary,\n altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary,\n _options$padding = _options.padding,\n padding = _options$padding === void 0 ? 0 : _options$padding;\n var paddingObject = mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n var altContext = elementContext === popper ? reference : popper;\n var popperRect = state.rects.popper;\n var element = state.elements[altBoundary ? altContext : elementContext];\n var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary);\n var referenceClientRect = getBoundingClientRect(state.elements.reference);\n var popperOffsets = computeOffsets({\n reference: referenceClientRect,\n element: popperRect,\n strategy: 'absolute',\n placement: placement\n });\n var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets));\n var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect\n // 0 or negative = within the clipping rect\n\n var overflowOffsets = {\n top: clippingClientRect.top - elementClientRect.top + paddingObject.top,\n bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom,\n left: clippingClientRect.left - elementClientRect.left + paddingObject.left,\n right: elementClientRect.right - clippingClientRect.right + paddingObject.right\n };\n var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element\n\n if (elementContext === popper && offsetData) {\n var offset = offsetData[placement];\n Object.keys(overflowOffsets).forEach(function (key) {\n var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1;\n var axis = [top, bottom].indexOf(key) >= 0 ? 'y' : 'x';\n overflowOffsets[key] += offset[axis] * multiply;\n });\n }\n\n return overflowOffsets;\n}","map":{"version":3,"names":["getClippingRect","getDocumentElement","getBoundingClientRect","computeOffsets","rectToClientRect","clippingParents","reference","popper","bottom","top","right","basePlacements","viewport","isElement","mergePaddingObject","expandToHashMap","detectOverflow","state","options","_options","_options$placement","placement","_options$boundary","boundary","_options$rootBoundary","rootBoundary","_options$elementConte","elementContext","_options$altBoundary","altBoundary","_options$padding","padding","paddingObject","altContext","popperRect","rects","element","elements","clippingClientRect","contextElement","referenceClientRect","popperOffsets","strategy","popperClientRect","Object","assign","elementClientRect","overflowOffsets","left","offsetData","modifiersData","offset","keys","forEach","key","multiply","indexOf","axis"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/utils/detectOverflow.js"],"sourcesContent":["import getClippingRect from \"../dom-utils/getClippingRect.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getBoundingClientRect from \"../dom-utils/getBoundingClientRect.js\";\nimport computeOffsets from \"./computeOffsets.js\";\nimport rectToClientRect from \"./rectToClientRect.js\";\nimport { clippingParents, reference, popper, bottom, top, right, basePlacements, viewport } from \"../enums.js\";\nimport { isElement } from \"../dom-utils/instanceOf.js\";\nimport mergePaddingObject from \"./mergePaddingObject.js\";\nimport expandToHashMap from \"./expandToHashMap.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport default function detectOverflow(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n _options$placement = _options.placement,\n placement = _options$placement === void 0 ? state.placement : _options$placement,\n _options$boundary = _options.boundary,\n boundary = _options$boundary === void 0 ? clippingParents : _options$boundary,\n _options$rootBoundary = _options.rootBoundary,\n rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary,\n _options$elementConte = _options.elementContext,\n elementContext = _options$elementConte === void 0 ? popper : _options$elementConte,\n _options$altBoundary = _options.altBoundary,\n altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary,\n _options$padding = _options.padding,\n padding = _options$padding === void 0 ? 0 : _options$padding;\n var paddingObject = mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n var altContext = elementContext === popper ? reference : popper;\n var popperRect = state.rects.popper;\n var element = state.elements[altBoundary ? altContext : elementContext];\n var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary);\n var referenceClientRect = getBoundingClientRect(state.elements.reference);\n var popperOffsets = computeOffsets({\n reference: referenceClientRect,\n element: popperRect,\n strategy: 'absolute',\n placement: placement\n });\n var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets));\n var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect\n // 0 or negative = within the clipping rect\n\n var overflowOffsets = {\n top: clippingClientRect.top - elementClientRect.top + paddingObject.top,\n bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom,\n left: clippingClientRect.left - elementClientRect.left + paddingObject.left,\n right: elementClientRect.right - clippingClientRect.right + paddingObject.right\n };\n var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element\n\n if (elementContext === popper && offsetData) {\n var offset = offsetData[placement];\n Object.keys(overflowOffsets).forEach(function (key) {\n var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1;\n var axis = [top, bottom].indexOf(key) >= 0 ? 'y' : 'x';\n overflowOffsets[key] += offset[axis] * multiply;\n });\n }\n\n return overflowOffsets;\n}"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0a9dc47f72ec19d4617a2298d1847d63.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0a9dc47f72ec19d4617a2298d1847d63.json deleted file mode 100644 index f2620335..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0a9dc47f72ec19d4617a2298d1847d63.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"// eslint-disable-next-line strict\nmodule.exports = null;","map":{"version":3,"names":["module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/axios/lib/helpers/null.js"],"sourcesContent":["// eslint-disable-next-line strict\nmodule.exports = null;\n"],"mappings":"AAAA;AACAA,MAAM,CAACC,OAAP,GAAiB,IAAjB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0b78445f2414928fc53005a18a41b5bd.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0b78445f2414928fc53005a18a41b5bd.json deleted file mode 100644 index 89ae8cea..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0b78445f2414928fc53005a18a41b5bd.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n children: \"Featured\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n children: \"Special title treatment\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"With supporting text below as a natural lead-in to additional content.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Go somewhere\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Featured\n \n Special title treatment\n \n With supporting text below as a natural lead-in to additional content.\n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAYH;KAbuBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0b90b69d7075013bfe6cc4ca4fb0eef2.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0b90b69d7075013bfe6cc4ca4fb0eef2.json deleted file mode 100644 index 80343719..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0b90b69d7075013bfe6cc4ca4fb0eef2.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n\nvar utils = require('./../utils');\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\n\n\nmodule.exports = function isAxiosError(payload) {\n return utils.isObject(payload) && payload.isAxiosError === true;\n};","map":{"version":3,"names":["utils","require","module","exports","isAxiosError","payload","isObject"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/axios/lib/helpers/isAxiosError.js"],"sourcesContent":["'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nmodule.exports = function isAxiosError(payload) {\n return utils.isObject(payload) && (payload.isAxiosError === true);\n};\n"],"mappings":"AAAA;;AAEA,IAAIA,KAAK,GAAGC,OAAO,CAAC,YAAD,CAAnB;AAEA;AACA;AACA;AACA;AACA;AACA;;;AACAC,MAAM,CAACC,OAAP,GAAiB,SAASC,YAAT,CAAsBC,OAAtB,EAA+B;EAC9C,OAAOL,KAAK,CAACM,QAAN,CAAeD,OAAf,KAA4BA,OAAO,CAACD,YAAR,KAAyB,IAA5D;AACD,CAFD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0c37da5f4222328a057e9528d2c06b4a.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0c37da5f4222328a057e9528d2c06b4a.json deleted file mode 100644 index f24ad0f1..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0c37da5f4222328a057e9528d2c06b4a.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Form from 'react-bootstrap/Form';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function CreateEntry() {\n return /*#__PURE__*/_jsxDEV(Form, {\n children: [/*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formText\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"text\",\n placeholder: \"Enter Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBasicPassword\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"password\",\n placeholder: \"Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n type: \"submit\",\n children: \"Submit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 9\n }, this);\n}\n_c = CreateEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"CreateEntry\");","map":{"version":3,"names":["Button","Form","React","CreateEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Form from 'react-bootstrap/Form'\nimport React from \"react\";\n\nexport default function CreateEntry() {\n return (\n
\n \n Blog Title\n \n \n\n \n Password\n \n \n\n \n
\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,WAAT,GAAuB;EAClC,oBACI,QAAC,IAAD;IAAA,wBACA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,UAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,MAAnB;QAA0B,WAAW,EAAC;MAAtC;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QADA,eAMA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,mBAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,UAAnB;QAA8B,WAAW,EAAC;MAA1C;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QANA,eAWA,QAAC,MAAD;MAAQ,OAAO,EAAC,SAAhB;MAA0B,IAAI,EAAC,QAA/B;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAXA;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAiBH;KAlBuBA,W"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0c63e316e747aa2f050a01caae368a13.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0c63e316e747aa2f050a01caae368a13.json deleted file mode 100644 index 5120e5e7..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0c63e316e747aa2f050a01caae368a13.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';","map":{"version":3,"names":["getBuiltIn","require","module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/engine-user-agent.js"],"sourcesContent":["var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n"],"mappings":"AAAA,IAAIA,UAAU,GAAGC,OAAO,CAAC,2BAAD,CAAxB;;AAEAC,MAAM,CAACC,OAAP,GAAiBH,UAAU,CAAC,WAAD,EAAc,WAAd,CAAV,IAAwC,EAAzD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0c7eb4393df2349b2a6d50389fd58a22.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0c7eb4393df2349b2a6d50389fd58a22.json new file mode 100644 index 00000000..a39f103e --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0c7eb4393df2349b2a6d50389fd58a22.json @@ -0,0 +1 @@ +{"ast":null,"code":"'use strict';\n\nfunction checkDCE() {\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\n if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' || typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function') {\n return;\n }\n\n if (process.env.NODE_ENV !== 'production') {\n // This branch is unreachable because this function is only called\n // in production, but the condition is true only in development.\n // Therefore if the branch is still here, dead code elimination wasn't\n // properly applied.\n // Don't change the message. React DevTools relies on it. Also make sure\n // this message doesn't occur elsewhere in this function, or it will cause\n // a false positive.\n throw new Error('^_^');\n }\n\n try {\n // Verify that the code above has been dead code eliminated (DCE'd).\n __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);\n } catch (err) {\n // DevTools shouldn't crash React, no matter what.\n // We should still report in case we break this code.\n console.error(err);\n }\n}\n\nif (process.env.NODE_ENV === 'production') {\n // DCE check should happen before ReactDOM bundle executes so that\n // DevTools can report bad minification during injection.\n checkDCE();\n module.exports = require('./cjs/react-dom.production.min.js');\n} else {\n module.exports = require('./cjs/react-dom.development.js');\n}","map":{"version":3,"names":["checkDCE","__REACT_DEVTOOLS_GLOBAL_HOOK__","process","env","NODE_ENV","Error","err","console","error","module","exports","require"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-dom/index.js"],"sourcesContent":["'use strict';\n\nfunction checkDCE() {\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\n if (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'\n ) {\n return;\n }\n if (process.env.NODE_ENV !== 'production') {\n // This branch is unreachable because this function is only called\n // in production, but the condition is true only in development.\n // Therefore if the branch is still here, dead code elimination wasn't\n // properly applied.\n // Don't change the message. React DevTools relies on it. Also make sure\n // this message doesn't occur elsewhere in this function, or it will cause\n // a false positive.\n throw new Error('^_^');\n }\n try {\n // Verify that the code above has been dead code eliminated (DCE'd).\n __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);\n } catch (err) {\n // DevTools shouldn't crash React, no matter what.\n // We should still report in case we break this code.\n console.error(err);\n }\n}\n\nif (process.env.NODE_ENV === 'production') {\n // DCE check should happen before ReactDOM bundle executes so that\n // DevTools can report bad minification during injection.\n checkDCE();\n module.exports = require('./cjs/react-dom.production.min.js');\n} else {\n module.exports = require('./cjs/react-dom.development.js');\n}\n"],"mappings":"AAAA;;AAEA,SAASA,QAAT,GAAoB;EAClB;EACA,IACE,OAAOC,8BAAP,KAA0C,WAA1C,IACA,OAAOA,8BAA8B,CAACD,QAAtC,KAAmD,UAFrD,EAGE;IACA;EACD;;EACD,IAAIE,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;IACzC;IACA;IACA;IACA;IACA;IACA;IACA;IACA,MAAM,IAAIC,KAAJ,CAAU,KAAV,CAAN;EACD;;EACD,IAAI;IACF;IACAJ,8BAA8B,CAACD,QAA/B,CAAwCA,QAAxC;EACD,CAHD,CAGE,OAAOM,GAAP,EAAY;IACZ;IACA;IACAC,OAAO,CAACC,KAAR,CAAcF,GAAd;EACD;AACF;;AAED,IAAIJ,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;EACzC;EACA;EACAJ,QAAQ;EACRS,MAAM,CAACC,OAAP,GAAiBC,OAAO,CAAC,mCAAD,CAAxB;AACD,CALD,MAKO;EACLF,MAAM,CAACC,OAAP,GAAiBC,OAAO,CAAC,gCAAD,CAAxB;AACD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0c82dead91b41f6f2e130157e0a38b1e.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0c82dead91b41f6f2e130157e0a38b1e.json deleted file mode 100644 index be268920..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0c82dead91b41f6f2e130157e0a38b1e.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Form from 'react-bootstrap/Form';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function CreateEntry() {\n return /*#__PURE__*/_jsxDEV(Form, {\n children: [/*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formText\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Entry Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"text\",\n placeholder: \"Enter Entry Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formText\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Entry Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"text\",\n placeholder: \"Enter Entry Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n type: \"submit\",\n children: \"Submit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 9\n }, this);\n}\n_c = CreateEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"CreateEntry\");","map":{"version":3,"names":["Button","Form","React","CreateEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Form from 'react-bootstrap/Form'\nimport React from \"react\";\n\nexport default function CreateEntry() {\n return (\n
\n \n Entry Title\n \n \n\n \n Entry Title\n \n \n\n \n
\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,WAAT,GAAuB;EAClC,oBACI,QAAC,IAAD;IAAA,wBACA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,UAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,MAAnB;QAA0B,WAAW,EAAC;MAAtC;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QADA,eAMA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,UAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,MAAnB;QAA0B,WAAW,EAAC;MAAtC;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QANA,eAWA,QAAC,MAAD;MAAQ,OAAO,EAAC,SAAhB;MAA0B,IAAI,EAAC,QAA/B;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAXA;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAiBH;KAlBuBA,W"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0c9f7b1b4fd97d8dfcff333d3e0c1b71.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0c9f7b1b4fd97d8dfcff333d3e0c1b71.json deleted file mode 100644 index 679c0ccd..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0c9f7b1b4fd97d8dfcff333d3e0c1b71.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport logo from './logo.svg';\nimport './App.css';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n className: \"App\",\n children: /*#__PURE__*/_jsxDEV(\"header\", {\n className: \"App-header\",\n children: [/*#__PURE__*/_jsxDEV(\"img\", {\n src: logo,\n className: \"App-logo\",\n alt: \"logo\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(\"p\", {\n children: [\"Edit \", /*#__PURE__*/_jsxDEV(\"code\", {\n children: \"src/App.js\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 16\n }, this), \" and save to reload.\"]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(\"a\", {\n className: \"App-link\",\n href: \"https://reactjs.org\",\n target: \"_blank\",\n rel: \"noopener noreferrer\",\n children: \"Learn React\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 6,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["logo","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import logo from './logo.svg';\nimport './App.css';\n\nfunction App() {\n return (\n
\n
\n \"logo\"\n

\n Edit src/App.js and save to reload.\n

\n \n Learn React\n
\n
\n
\n );\n}\n\nexport default App;\n"],"mappings":";AAAA,OAAOA,IAAP,MAAiB,YAAjB;AACA,OAAO,WAAP;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE;IAAK,SAAS,EAAC,KAAf;IAAA,uBACE;MAAQ,SAAS,EAAC,YAAlB;MAAA,wBACE;QAAK,GAAG,EAAED,IAAV;QAAgB,SAAS,EAAC,UAA1B;QAAqC,GAAG,EAAC;MAAzC;QAAA;QAAA;QAAA;MAAA,QADF,eAEE;QAAA,iCACO;UAAA;QAAA;UAAA;UAAA;UAAA;QAAA,QADP;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE;QACE,SAAS,EAAC,UADZ;QAEE,IAAI,EAAC,qBAFP;QAGE,MAAM,EAAC,QAHT;QAIE,GAAG,EAAC,qBAJN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF;IAAA;MAAA;MAAA;MAAA;IAAA;EADF;IAAA;IAAA;IAAA;EAAA,QADF;AAkBD;;KAnBQC,G;AAqBT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0ca4c56b01804942c8735f933d9f6fb5.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0ca4c56b01804942c8735f933d9f6fb5.json new file mode 100644 index 00000000..b4e2fd91 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0ca4c56b01804942c8735f933d9f6fb5.json @@ -0,0 +1 @@ +{"ast":null,"code":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.bodyRegExps = {\n xml: /&(?:#\\d+|#[xX][\\da-fA-F]+|[0-9a-zA-Z]+);?/g,\n html4: /&(?:nbsp|iexcl|cent|pound|curren|yen|brvbar|sect|uml|copy|ordf|laquo|not|shy|reg|macr|deg|plusmn|sup2|sup3|acute|micro|para|middot|cedil|sup1|ordm|raquo|frac14|frac12|frac34|iquest|Agrave|Aacute|Acirc|Atilde|Auml|Aring|AElig|Ccedil|Egrave|Eacute|Ecirc|Euml|Igrave|Iacute|Icirc|Iuml|ETH|Ntilde|Ograve|Oacute|Ocirc|Otilde|Ouml|times|Oslash|Ugrave|Uacute|Ucirc|Uuml|Yacute|THORN|szlig|agrave|aacute|acirc|atilde|auml|aring|aelig|ccedil|egrave|eacute|ecirc|euml|igrave|iacute|icirc|iuml|eth|ntilde|ograve|oacute|ocirc|otilde|ouml|divide|oslash|ugrave|uacute|ucirc|uuml|yacute|thorn|yuml|quot|amp|lt|gt|#\\d+|#[xX][\\da-fA-F]+|[0-9a-zA-Z]+);?/g,\n html5: /&(?:AElig|AMP|Aacute|Acirc|Agrave|Aring|Atilde|Auml|COPY|Ccedil|ETH|Eacute|Ecirc|Egrave|Euml|GT|Iacute|Icirc|Igrave|Iuml|LT|Ntilde|Oacute|Ocirc|Ograve|Oslash|Otilde|Ouml|QUOT|REG|THORN|Uacute|Ucirc|Ugrave|Uuml|Yacute|aacute|acirc|acute|aelig|agrave|amp|aring|atilde|auml|brvbar|ccedil|cedil|cent|copy|curren|deg|divide|eacute|ecirc|egrave|eth|euml|frac12|frac14|frac34|gt|iacute|icirc|iexcl|igrave|iquest|iuml|laquo|lt|macr|micro|middot|nbsp|not|ntilde|oacute|ocirc|ograve|ordf|ordm|oslash|otilde|ouml|para|plusmn|pound|quot|raquo|reg|sect|shy|sup1|sup2|sup3|szlig|thorn|times|uacute|ucirc|ugrave|uml|uuml|yacute|yen|yuml|#\\d+|#[xX][\\da-fA-F]+|[0-9a-zA-Z]+);?/g\n};\nexports.namedReferences = {\n xml: {\n entities: {\n \"<\": \"<\",\n \">\": \">\",\n \""\": '\"',\n \"'\": \"'\",\n \"&\": \"&\"\n },\n characters: {\n \"<\": \"<\",\n \">\": \">\",\n '\"': \""\",\n \"'\": \"'\",\n \"&\": \"&\"\n }\n },\n html4: {\n entities: {\n \"'\": \"'\",\n \" \": \" \",\n \" \": \" \",\n \"¡\": \"¡\",\n \"¡\": \"¡\",\n \"¢\": \"¢\",\n \"¢\": \"¢\",\n \"£\": \"£\",\n \"£\": \"£\",\n \"¤\": \"¤\",\n \"¤\": \"¤\",\n \"¥\": \"¥\",\n \"¥\": \"¥\",\n \"¦\": \"¦\",\n \"¦\": \"¦\",\n \"§\": \"§\",\n \"§\": \"§\",\n \"¨\": \"¨\",\n \"¨\": \"¨\",\n \"©\": \"©\",\n \"©\": \"©\",\n \"ª\": \"ª\",\n \"ª\": \"ª\",\n \"«\": \"«\",\n \"«\": \"«\",\n \"¬\": \"¬\",\n \"¬\": \"¬\",\n \"­\": \"­\",\n \"­\": \"­\",\n \"®\": \"®\",\n \"®\": \"®\",\n \"¯\": \"¯\",\n \"¯\": \"¯\",\n \"°\": \"°\",\n \"°\": \"°\",\n \"±\": \"±\",\n \"±\": \"±\",\n \"²\": \"²\",\n \"²\": \"²\",\n \"³\": \"³\",\n \"³\": \"³\",\n \"´\": \"´\",\n \"´\": \"´\",\n \"µ\": \"µ\",\n \"µ\": \"µ\",\n \"¶\": \"¶\",\n \"¶\": \"¶\",\n \"·\": \"·\",\n \"·\": \"·\",\n \"¸\": \"¸\",\n \"¸\": \"¸\",\n \"¹\": \"¹\",\n \"¹\": \"¹\",\n \"º\": \"º\",\n \"º\": \"º\",\n \"»\": \"»\",\n \"»\": \"»\",\n \"¼\": \"¼\",\n \"¼\": \"¼\",\n \"½\": \"½\",\n \"½\": \"½\",\n \"¾\": \"¾\",\n \"¾\": \"¾\",\n \"¿\": \"¿\",\n \"¿\": \"¿\",\n \"À\": \"À\",\n \"À\": \"À\",\n \"Á\": \"Á\",\n \"Á\": \"Á\",\n \"Â\": \"Â\",\n \"Â\": \"Â\",\n \"Ã\": \"Ã\",\n \"Ã\": \"Ã\",\n \"Ä\": \"Ä\",\n \"Ä\": \"Ä\",\n \"Å\": \"Å\",\n \"Å\": \"Å\",\n \"Æ\": \"Æ\",\n \"Æ\": \"Æ\",\n \"Ç\": \"Ç\",\n \"Ç\": \"Ç\",\n \"È\": \"È\",\n \"È\": \"È\",\n \"É\": \"É\",\n \"É\": \"É\",\n \"Ê\": \"Ê\",\n \"Ê\": \"Ê\",\n \"Ë\": \"Ë\",\n \"Ë\": \"Ë\",\n \"Ì\": \"Ì\",\n \"Ì\": \"Ì\",\n \"Í\": \"Í\",\n \"Í\": \"Í\",\n \"Î\": \"Î\",\n \"Î\": \"Î\",\n \"Ï\": \"Ï\",\n \"Ï\": \"Ï\",\n \"Ð\": \"Ð\",\n \"Ð\": \"Ð\",\n \"Ñ\": \"Ñ\",\n \"Ñ\": \"Ñ\",\n \"Ò\": \"Ò\",\n \"Ò\": \"Ò\",\n \"Ó\": \"Ó\",\n \"Ó\": \"Ó\",\n \"Ô\": \"Ô\",\n \"Ô\": \"Ô\",\n \"Õ\": \"Õ\",\n \"Õ\": \"Õ\",\n \"Ö\": \"Ö\",\n \"Ö\": \"Ö\",\n \"×\": \"×\",\n \"×\": \"×\",\n \"Ø\": \"Ø\",\n \"Ø\": \"Ø\",\n \"Ù\": \"Ù\",\n \"Ù\": \"Ù\",\n \"Ú\": \"Ú\",\n \"Ú\": \"Ú\",\n \"Û\": \"Û\",\n \"Û\": \"Û\",\n \"Ü\": \"Ü\",\n \"Ü\": \"Ü\",\n \"Ý\": \"Ý\",\n \"Ý\": \"Ý\",\n \"Þ\": \"Þ\",\n \"Þ\": \"Þ\",\n \"ß\": \"ß\",\n \"ß\": \"ß\",\n \"à\": \"à\",\n \"à\": \"à\",\n \"á\": \"á\",\n \"á\": \"á\",\n \"â\": \"â\",\n \"â\": \"â\",\n \"ã\": \"ã\",\n \"ã\": \"ã\",\n \"ä\": \"ä\",\n \"ä\": \"ä\",\n \"å\": \"å\",\n \"å\": \"å\",\n \"æ\": \"æ\",\n \"æ\": \"æ\",\n \"ç\": \"ç\",\n \"ç\": \"ç\",\n \"è\": \"è\",\n \"è\": \"è\",\n \"é\": \"é\",\n \"é\": \"é\",\n \"ê\": \"ê\",\n \"ê\": \"ê\",\n \"ë\": \"ë\",\n \"ë\": \"ë\",\n \"ì\": \"ì\",\n \"ì\": \"ì\",\n \"í\": \"í\",\n \"í\": \"í\",\n \"î\": \"î\",\n \"î\": \"î\",\n \"ï\": \"ï\",\n \"ï\": \"ï\",\n \"ð\": \"ð\",\n \"ð\": \"ð\",\n \"ñ\": \"ñ\",\n \"ñ\": \"ñ\",\n \"ò\": \"ò\",\n \"ò\": \"ò\",\n \"ó\": \"ó\",\n \"ó\": \"ó\",\n \"ô\": \"ô\",\n \"ô\": \"ô\",\n \"õ\": \"õ\",\n \"õ\": \"õ\",\n \"ö\": \"ö\",\n \"ö\": \"ö\",\n \"÷\": \"÷\",\n \"÷\": \"÷\",\n \"ø\": \"ø\",\n \"ø\": \"ø\",\n \"ù\": \"ù\",\n \"ù\": \"ù\",\n \"ú\": \"ú\",\n \"ú\": \"ú\",\n \"û\": \"û\",\n \"û\": \"û\",\n \"ü\": \"ü\",\n \"ü\": \"ü\",\n \"ý\": \"ý\",\n \"ý\": \"ý\",\n \"þ\": \"þ\",\n \"þ\": \"þ\",\n \"ÿ\": \"ÿ\",\n \"ÿ\": \"ÿ\",\n \""\": '\"',\n \""\": '\"',\n \"&\": \"&\",\n \"&\": \"&\",\n \"<\": \"<\",\n \"<\": \"<\",\n \">\": \">\",\n \">\": \">\",\n \"Œ\": \"Œ\",\n \"œ\": \"œ\",\n \"Š\": \"Š\",\n \"š\": \"š\",\n \"Ÿ\": \"Ÿ\",\n \"ˆ\": \"ˆ\",\n \"˜\": \"˜\",\n \" \": \" \",\n \" \": \" \",\n \" \": \" \",\n \"‌\": \"‌\",\n \"‍\": \"‍\",\n \"‎\": \"‎\",\n \"‏\": \"‏\",\n \"–\": \"–\",\n \"—\": \"—\",\n \"‘\": \"‘\",\n \"’\": \"’\",\n \"‚\": \"‚\",\n \"“\": \"“\",\n \"”\": \"”\",\n \"„\": \"„\",\n \"†\": \"†\",\n \"‡\": \"‡\",\n \"‰\": \"‰\",\n \"‹\": \"‹\",\n \"›\": \"›\",\n \"€\": \"€\",\n \"ƒ\": \"ƒ\",\n \"Α\": \"Α\",\n \"Β\": \"Β\",\n \"Γ\": \"Γ\",\n \"Δ\": \"Δ\",\n \"Ε\": \"Ε\",\n \"Ζ\": \"Ζ\",\n \"Η\": \"Η\",\n \"Θ\": \"Θ\",\n \"Ι\": \"Ι\",\n \"Κ\": \"Κ\",\n \"Λ\": \"Λ\",\n \"Μ\": \"Μ\",\n \"Ν\": \"Ν\",\n \"Ξ\": \"Ξ\",\n \"Ο\": \"Ο\",\n \"Π\": \"Π\",\n \"Ρ\": \"Ρ\",\n \"Σ\": \"Σ\",\n \"Τ\": \"Τ\",\n \"Υ\": \"Υ\",\n \"Φ\": \"Φ\",\n \"Χ\": \"Χ\",\n \"Ψ\": \"Ψ\",\n \"Ω\": \"Ω\",\n \"α\": \"α\",\n \"β\": \"β\",\n \"γ\": \"γ\",\n \"δ\": \"δ\",\n \"ε\": \"ε\",\n \"ζ\": \"ζ\",\n \"η\": \"η\",\n \"θ\": \"θ\",\n \"ι\": \"ι\",\n \"κ\": \"κ\",\n \"λ\": \"λ\",\n \"μ\": \"μ\",\n \"ν\": \"ν\",\n \"ξ\": \"ξ\",\n \"ο\": \"ο\",\n \"π\": \"π\",\n \"ρ\": \"ρ\",\n \"ς\": \"ς\",\n \"σ\": \"σ\",\n \"τ\": \"τ\",\n \"υ\": \"υ\",\n \"φ\": \"φ\",\n \"χ\": \"χ\",\n \"ψ\": \"ψ\",\n \"ω\": \"ω\",\n \"ϑ\": \"ϑ\",\n \"ϒ\": \"ϒ\",\n \"ϖ\": \"ϖ\",\n \"•\": \"•\",\n \"…\": \"…\",\n \"′\": \"′\",\n \"″\": \"″\",\n \"‾\": \"‾\",\n \"⁄\": \"⁄\",\n \"℘\": \"℘\",\n \"ℑ\": \"ℑ\",\n \"ℜ\": \"ℜ\",\n \"™\": \"™\",\n \"ℵ\": \"ℵ\",\n \"←\": \"←\",\n \"↑\": \"↑\",\n \"→\": \"→\",\n \"↓\": \"↓\",\n \"↔\": \"↔\",\n \"↵\": \"↵\",\n \"⇐\": \"⇐\",\n \"⇑\": \"⇑\",\n \"⇒\": \"⇒\",\n \"⇓\": \"⇓\",\n \"⇔\": \"⇔\",\n \"∀\": \"∀\",\n \"∂\": \"∂\",\n \"∃\": \"∃\",\n \"∅\": \"∅\",\n \"∇\": \"∇\",\n \"∈\": \"∈\",\n \"∉\": \"∉\",\n \"∋\": \"∋\",\n \"∏\": \"∏\",\n \"∑\": \"∑\",\n \"−\": \"−\",\n \"∗\": \"∗\",\n \"√\": \"√\",\n \"∝\": \"∝\",\n \"∞\": \"∞\",\n \"∠\": \"∠\",\n \"∧\": \"∧\",\n \"∨\": \"∨\",\n \"∩\": \"∩\",\n \"∪\": \"∪\",\n \"∫\": \"∫\",\n \"∴\": \"∴\",\n \"∼\": \"∼\",\n \"≅\": \"≅\",\n \"≈\": \"≈\",\n \"≠\": \"≠\",\n \"≡\": \"≡\",\n \"≤\": \"≤\",\n \"≥\": \"≥\",\n \"⊂\": \"⊂\",\n \"⊃\": \"⊃\",\n \"⊄\": \"⊄\",\n \"⊆\": \"⊆\",\n \"⊇\": \"⊇\",\n \"⊕\": \"⊕\",\n \"⊗\": \"⊗\",\n \"⊥\": \"⊥\",\n \"⋅\": \"⋅\",\n \"⌈\": \"⌈\",\n \"⌉\": \"⌉\",\n \"⌊\": \"⌊\",\n \"⌋\": \"⌋\",\n \"⟨\": \"〈\",\n \"⟩\": \"〉\",\n \"◊\": \"◊\",\n \"♠\": \"♠\",\n \"♣\": \"♣\",\n \"♥\": \"♥\",\n \"♦\": \"♦\"\n },\n characters: {\n \"'\": \"'\",\n \" \": \" \",\n \"¡\": \"¡\",\n \"¢\": \"¢\",\n \"£\": \"£\",\n \"¤\": \"¤\",\n \"¥\": \"¥\",\n \"¦\": \"¦\",\n \"§\": \"§\",\n \"¨\": \"¨\",\n \"©\": \"©\",\n \"ª\": \"ª\",\n \"«\": \"«\",\n \"¬\": \"¬\",\n \"­\": \"­\",\n \"®\": \"®\",\n \"¯\": \"¯\",\n \"°\": \"°\",\n \"±\": \"±\",\n \"²\": \"²\",\n \"³\": \"³\",\n \"´\": \"´\",\n \"µ\": \"µ\",\n \"¶\": \"¶\",\n \"·\": \"·\",\n \"¸\": \"¸\",\n \"¹\": \"¹\",\n \"º\": \"º\",\n \"»\": \"»\",\n \"¼\": \"¼\",\n \"½\": \"½\",\n \"¾\": \"¾\",\n \"¿\": \"¿\",\n \"À\": \"À\",\n \"Á\": \"Á\",\n \"Â\": \"Â\",\n \"Ã\": \"Ã\",\n \"Ä\": \"Ä\",\n \"Å\": \"Å\",\n \"Æ\": \"Æ\",\n \"Ç\": \"Ç\",\n \"È\": \"È\",\n \"É\": \"É\",\n \"Ê\": \"Ê\",\n \"Ë\": \"Ë\",\n \"Ì\": \"Ì\",\n \"Í\": \"Í\",\n \"Î\": \"Î\",\n \"Ï\": \"Ï\",\n \"Ð\": \"Ð\",\n \"Ñ\": \"Ñ\",\n \"Ò\": \"Ò\",\n \"Ó\": \"Ó\",\n \"Ô\": \"Ô\",\n \"Õ\": \"Õ\",\n \"Ö\": \"Ö\",\n \"×\": \"×\",\n \"Ø\": \"Ø\",\n \"Ù\": \"Ù\",\n \"Ú\": \"Ú\",\n \"Û\": \"Û\",\n \"Ü\": \"Ü\",\n \"Ý\": \"Ý\",\n \"Þ\": \"Þ\",\n \"ß\": \"ß\",\n \"à\": \"à\",\n \"á\": \"á\",\n \"â\": \"â\",\n \"ã\": \"ã\",\n \"ä\": \"ä\",\n \"å\": \"å\",\n \"æ\": \"æ\",\n \"ç\": \"ç\",\n \"è\": \"è\",\n \"é\": \"é\",\n \"ê\": \"ê\",\n \"ë\": \"ë\",\n \"ì\": \"ì\",\n \"í\": \"í\",\n \"î\": \"î\",\n \"ï\": \"ï\",\n \"ð\": \"ð\",\n \"ñ\": \"ñ\",\n \"ò\": \"ò\",\n \"ó\": \"ó\",\n \"ô\": \"ô\",\n \"õ\": \"õ\",\n \"ö\": \"ö\",\n \"÷\": \"÷\",\n \"ø\": \"ø\",\n \"ù\": \"ù\",\n \"ú\": \"ú\",\n \"û\": \"û\",\n \"ü\": \"ü\",\n \"ý\": \"ý\",\n \"þ\": \"þ\",\n \"ÿ\": \"ÿ\",\n '\"': \""\",\n \"&\": \"&\",\n \"<\": \"<\",\n \">\": \">\",\n \"Œ\": \"Œ\",\n \"œ\": \"œ\",\n \"Š\": \"Š\",\n \"š\": \"š\",\n \"Ÿ\": \"Ÿ\",\n \"ˆ\": \"ˆ\",\n \"˜\": \"˜\",\n \" \": \" \",\n \" \": \" \",\n \" \": \" \",\n \"‌\": \"‌\",\n \"‍\": \"‍\",\n \"‎\": \"‎\",\n \"‏\": \"‏\",\n \"–\": \"–\",\n \"—\": \"—\",\n \"‘\": \"‘\",\n \"’\": \"’\",\n \"‚\": \"‚\",\n \"“\": \"“\",\n \"”\": \"”\",\n \"„\": \"„\",\n \"†\": \"†\",\n \"‡\": \"‡\",\n \"‰\": \"‰\",\n \"‹\": \"‹\",\n \"›\": \"›\",\n \"€\": \"€\",\n \"ƒ\": \"ƒ\",\n \"Α\": \"Α\",\n \"Β\": \"Β\",\n \"Γ\": \"Γ\",\n \"Δ\": \"Δ\",\n \"Ε\": \"Ε\",\n \"Ζ\": \"Ζ\",\n \"Η\": \"Η\",\n \"Θ\": \"Θ\",\n \"Ι\": \"Ι\",\n \"Κ\": \"Κ\",\n \"Λ\": \"Λ\",\n \"Μ\": \"Μ\",\n \"Ν\": \"Ν\",\n \"Ξ\": \"Ξ\",\n \"Ο\": \"Ο\",\n \"Π\": \"Π\",\n \"Ρ\": \"Ρ\",\n \"Σ\": \"Σ\",\n \"Τ\": \"Τ\",\n \"Υ\": \"Υ\",\n \"Φ\": \"Φ\",\n \"Χ\": \"Χ\",\n \"Ψ\": \"Ψ\",\n \"Ω\": \"Ω\",\n \"α\": \"α\",\n \"β\": \"β\",\n \"γ\": \"γ\",\n \"δ\": \"δ\",\n \"ε\": \"ε\",\n \"ζ\": \"ζ\",\n \"η\": \"η\",\n \"θ\": \"θ\",\n \"ι\": \"ι\",\n \"κ\": \"κ\",\n \"λ\": \"λ\",\n \"μ\": \"μ\",\n \"ν\": \"ν\",\n \"ξ\": \"ξ\",\n \"ο\": \"ο\",\n \"π\": \"π\",\n \"ρ\": \"ρ\",\n \"ς\": \"ς\",\n \"σ\": \"σ\",\n \"τ\": \"τ\",\n \"υ\": \"υ\",\n \"φ\": \"φ\",\n \"χ\": \"χ\",\n \"ψ\": \"ψ\",\n \"ω\": \"ω\",\n \"ϑ\": \"ϑ\",\n \"ϒ\": \"ϒ\",\n \"ϖ\": \"ϖ\",\n \"•\": \"•\",\n \"…\": \"…\",\n \"′\": \"′\",\n \"″\": \"″\",\n \"‾\": \"‾\",\n \"⁄\": \"⁄\",\n \"℘\": \"℘\",\n \"ℑ\": \"ℑ\",\n \"ℜ\": \"ℜ\",\n \"™\": \"™\",\n \"ℵ\": \"ℵ\",\n \"←\": \"←\",\n \"↑\": \"↑\",\n \"→\": \"→\",\n \"↓\": \"↓\",\n \"↔\": \"↔\",\n \"↵\": \"↵\",\n \"⇐\": \"⇐\",\n \"⇑\": \"⇑\",\n \"⇒\": \"⇒\",\n \"⇓\": \"⇓\",\n \"⇔\": \"⇔\",\n \"∀\": \"∀\",\n \"∂\": \"∂\",\n \"∃\": \"∃\",\n \"∅\": \"∅\",\n \"∇\": \"∇\",\n \"∈\": \"∈\",\n \"∉\": \"∉\",\n \"∋\": \"∋\",\n \"∏\": \"∏\",\n \"∑\": \"∑\",\n \"−\": \"−\",\n \"∗\": \"∗\",\n \"√\": \"√\",\n \"∝\": \"∝\",\n \"∞\": \"∞\",\n \"∠\": \"∠\",\n \"∧\": \"∧\",\n \"∨\": \"∨\",\n \"∩\": \"∩\",\n \"∪\": \"∪\",\n \"∫\": \"∫\",\n \"∴\": \"∴\",\n \"∼\": \"∼\",\n \"≅\": \"≅\",\n \"≈\": \"≈\",\n \"≠\": \"≠\",\n \"≡\": \"≡\",\n \"≤\": \"≤\",\n \"≥\": \"≥\",\n \"⊂\": \"⊂\",\n \"⊃\": \"⊃\",\n \"⊄\": \"⊄\",\n \"⊆\": \"⊆\",\n \"⊇\": \"⊇\",\n \"⊕\": \"⊕\",\n \"⊗\": \"⊗\",\n \"⊥\": \"⊥\",\n \"⋅\": \"⋅\",\n \"⌈\": \"⌈\",\n \"⌉\": \"⌉\",\n \"⌊\": \"⌊\",\n \"⌋\": \"⌋\",\n \"〈\": \"⟨\",\n \"〉\": \"⟩\",\n \"◊\": \"◊\",\n \"♠\": \"♠\",\n \"♣\": \"♣\",\n \"♥\": \"♥\",\n \"♦\": \"♦\"\n }\n },\n html5: {\n entities: {\n \"Æ\": \"Æ\",\n \"Æ\": \"Æ\",\n \"&\": \"&\",\n \"&\": \"&\",\n \"Á\": \"Á\",\n \"Á\": \"Á\",\n \"Ă\": \"Ă\",\n \"Â\": \"Â\",\n \"Â\": \"Â\",\n \"А\": \"А\",\n \"𝔄\": \"𝔄\",\n \"À\": \"À\",\n \"À\": \"À\",\n \"Α\": \"Α\",\n \"Ā\": \"Ā\",\n \"⩓\": \"⩓\",\n \"Ą\": \"Ą\",\n \"𝔸\": \"𝔸\",\n \"⁡\": \"⁡\",\n \"Å\": \"Å\",\n \"Å\": \"Å\",\n \"𝒜\": \"𝒜\",\n \"≔\": \"≔\",\n \"Ã\": \"Ã\",\n \"Ã\": \"Ã\",\n \"Ä\": \"Ä\",\n \"Ä\": \"Ä\",\n \"∖\": \"∖\",\n \"⫧\": \"⫧\",\n \"⌆\": \"⌆\",\n \"Б\": \"Б\",\n \"∵\": \"∵\",\n \"ℬ\": \"ℬ\",\n \"Β\": \"Β\",\n \"𝔅\": \"𝔅\",\n \"𝔹\": \"𝔹\",\n \"˘\": \"˘\",\n \"ℬ\": \"ℬ\",\n \"≎\": \"≎\",\n \"Ч\": \"Ч\",\n \"©\": \"©\",\n \"©\": \"©\",\n \"Ć\": \"Ć\",\n \"⋒\": \"⋒\",\n \"ⅅ\": \"ⅅ\",\n \"ℭ\": \"ℭ\",\n \"Č\": \"Č\",\n \"Ç\": \"Ç\",\n \"Ç\": \"Ç\",\n \"Ĉ\": \"Ĉ\",\n \"∰\": \"∰\",\n \"Ċ\": \"Ċ\",\n \"¸\": \"¸\",\n \"·\": \"·\",\n \"ℭ\": \"ℭ\",\n \"Χ\": \"Χ\",\n \"⊙\": \"⊙\",\n \"⊖\": \"⊖\",\n \"⊕\": \"⊕\",\n \"⊗\": \"⊗\",\n \"∲\": \"∲\",\n \"”\": \"”\",\n \"’\": \"’\",\n \"∷\": \"∷\",\n \"⩴\": \"⩴\",\n \"≡\": \"≡\",\n \"∯\": \"∯\",\n \"∮\": \"∮\",\n \"ℂ\": \"ℂ\",\n \"∐\": \"∐\",\n \"∳\": \"∳\",\n \"⨯\": \"⨯\",\n \"𝒞\": \"𝒞\",\n \"⋓\": \"⋓\",\n \"≍\": \"≍\",\n \"ⅅ\": \"ⅅ\",\n \"⤑\": \"⤑\",\n \"Ђ\": \"Ђ\",\n \"Ѕ\": \"Ѕ\",\n \"Џ\": \"Џ\",\n \"‡\": \"‡\",\n \"↡\": \"↡\",\n \"⫤\": \"⫤\",\n \"Ď\": \"Ď\",\n \"Д\": \"Д\",\n \"∇\": \"∇\",\n \"Δ\": \"Δ\",\n \"𝔇\": \"𝔇\",\n \"´\": \"´\",\n \"˙\": \"˙\",\n \"˝\": \"˝\",\n \"`\": \"`\",\n \"˜\": \"˜\",\n \"⋄\": \"⋄\",\n \"ⅆ\": \"ⅆ\",\n \"𝔻\": \"𝔻\",\n \"¨\": \"¨\",\n \"⃜\": \"⃜\",\n \"≐\": \"≐\",\n \"∯\": \"∯\",\n \"¨\": \"¨\",\n \"⇓\": \"⇓\",\n \"⇐\": \"⇐\",\n \"⇔\": \"⇔\",\n \"⫤\": \"⫤\",\n \"⟸\": \"⟸\",\n \"⟺\": \"⟺\",\n \"⟹\": \"⟹\",\n \"⇒\": \"⇒\",\n \"⊨\": \"⊨\",\n \"⇑\": \"⇑\",\n \"⇕\": \"⇕\",\n \"∥\": \"∥\",\n \"↓\": \"↓\",\n \"⤓\": \"⤓\",\n \"⇵\": \"⇵\",\n \"̑\": \"̑\",\n \"⥐\": \"⥐\",\n \"⥞\": \"⥞\",\n \"↽\": \"↽\",\n \"⥖\": \"⥖\",\n \"⥟\": \"⥟\",\n \"⇁\": \"⇁\",\n \"⥗\": \"⥗\",\n \"⊤\": \"⊤\",\n \"↧\": \"↧\",\n \"⇓\": \"⇓\",\n \"𝒟\": \"𝒟\",\n \"Đ\": \"Đ\",\n \"Ŋ\": \"Ŋ\",\n \"Ð\": \"Ð\",\n \"Ð\": \"Ð\",\n \"É\": \"É\",\n \"É\": \"É\",\n \"Ě\": \"Ě\",\n \"Ê\": \"Ê\",\n \"Ê\": \"Ê\",\n \"Э\": \"Э\",\n \"Ė\": \"Ė\",\n \"𝔈\": \"𝔈\",\n \"È\": \"È\",\n \"È\": \"È\",\n \"∈\": \"∈\",\n \"Ē\": \"Ē\",\n \"◻\": \"◻\",\n \"▫\": \"▫\",\n \"Ę\": \"Ę\",\n \"𝔼\": \"𝔼\",\n \"Ε\": \"Ε\",\n \"⩵\": \"⩵\",\n \"≂\": \"≂\",\n \"⇌\": \"⇌\",\n \"ℰ\": \"ℰ\",\n \"⩳\": \"⩳\",\n \"Η\": \"Η\",\n \"Ë\": \"Ë\",\n \"Ë\": \"Ë\",\n \"∃\": \"∃\",\n \"ⅇ\": \"ⅇ\",\n \"Ф\": \"Ф\",\n \"𝔉\": \"𝔉\",\n \"◼\": \"◼\",\n \"▪\": \"▪\",\n \"𝔽\": \"𝔽\",\n \"∀\": \"∀\",\n \"ℱ\": \"ℱ\",\n \"ℱ\": \"ℱ\",\n \"Ѓ\": \"Ѓ\",\n \">\": \">\",\n \">\": \">\",\n \"Γ\": \"Γ\",\n \"Ϝ\": \"Ϝ\",\n \"Ğ\": \"Ğ\",\n \"Ģ\": \"Ģ\",\n \"Ĝ\": \"Ĝ\",\n \"Г\": \"Г\",\n \"Ġ\": \"Ġ\",\n \"𝔊\": \"𝔊\",\n \"⋙\": \"⋙\",\n \"𝔾\": \"𝔾\",\n \"≥\": \"≥\",\n \"⋛\": \"⋛\",\n \"≧\": \"≧\",\n \"⪢\": \"⪢\",\n \"≷\": \"≷\",\n \"⩾\": \"⩾\",\n \"≳\": \"≳\",\n \"𝒢\": \"𝒢\",\n \"≫\": \"≫\",\n \"Ъ\": \"Ъ\",\n \"ˇ\": \"ˇ\",\n \"^\": \"^\",\n \"Ĥ\": \"Ĥ\",\n \"ℌ\": \"ℌ\",\n \"ℋ\": \"ℋ\",\n \"ℍ\": \"ℍ\",\n \"─\": \"─\",\n \"ℋ\": \"ℋ\",\n \"Ħ\": \"Ħ\",\n \"≎\": \"≎\",\n \"≏\": \"≏\",\n \"Е\": \"Е\",\n \"IJ\": \"IJ\",\n \"Ё\": \"Ё\",\n \"Í\": \"Í\",\n \"Í\": \"Í\",\n \"Î\": \"Î\",\n \"Î\": \"Î\",\n \"И\": \"И\",\n \"İ\": \"İ\",\n \"ℑ\": \"ℑ\",\n \"Ì\": \"Ì\",\n \"Ì\": \"Ì\",\n \"ℑ\": \"ℑ\",\n \"Ī\": \"Ī\",\n \"ⅈ\": \"ⅈ\",\n \"⇒\": \"⇒\",\n \"∬\": \"∬\",\n \"∫\": \"∫\",\n \"⋂\": \"⋂\",\n \"⁣\": \"⁣\",\n \"⁢\": \"⁢\",\n \"Į\": \"Į\",\n \"𝕀\": \"𝕀\",\n \"Ι\": \"Ι\",\n \"ℐ\": \"ℐ\",\n \"Ĩ\": \"Ĩ\",\n \"І\": \"І\",\n \"Ï\": \"Ï\",\n \"Ï\": \"Ï\",\n \"Ĵ\": \"Ĵ\",\n \"Й\": \"Й\",\n \"𝔍\": \"𝔍\",\n \"𝕁\": \"𝕁\",\n \"𝒥\": \"𝒥\",\n \"Ј\": \"Ј\",\n \"Є\": \"Є\",\n \"Х\": \"Х\",\n \"Ќ\": \"Ќ\",\n \"Κ\": \"Κ\",\n \"Ķ\": \"Ķ\",\n \"К\": \"К\",\n \"𝔎\": \"𝔎\",\n \"𝕂\": \"𝕂\",\n \"𝒦\": \"𝒦\",\n \"Љ\": \"Љ\",\n \"<\": \"<\",\n \"<\": \"<\",\n \"Ĺ\": \"Ĺ\",\n \"Λ\": \"Λ\",\n \"⟪\": \"⟪\",\n \"ℒ\": \"ℒ\",\n \"↞\": \"↞\",\n \"Ľ\": \"Ľ\",\n \"Ļ\": \"Ļ\",\n \"Л\": \"Л\",\n \"⟨\": \"⟨\",\n \"←\": \"←\",\n \"⇤\": \"⇤\",\n \"⇆\": \"⇆\",\n \"⌈\": \"⌈\",\n \"⟦\": \"⟦\",\n \"⥡\": \"⥡\",\n \"⇃\": \"⇃\",\n \"⥙\": \"⥙\",\n \"⌊\": \"⌊\",\n \"↔\": \"↔\",\n \"⥎\": \"⥎\",\n \"⊣\": \"⊣\",\n \"↤\": \"↤\",\n \"⥚\": \"⥚\",\n \"⊲\": \"⊲\",\n \"⧏\": \"⧏\",\n \"⊴\": \"⊴\",\n \"⥑\": \"⥑\",\n \"⥠\": \"⥠\",\n \"↿\": \"↿\",\n \"⥘\": \"⥘\",\n \"↼\": \"↼\",\n \"⥒\": \"⥒\",\n \"⇐\": \"⇐\",\n \"⇔\": \"⇔\",\n \"⋚\": \"⋚\",\n \"≦\": \"≦\",\n \"≶\": \"≶\",\n \"⪡\": \"⪡\",\n \"⩽\": \"⩽\",\n \"≲\": \"≲\",\n \"𝔏\": \"𝔏\",\n \"⋘\": \"⋘\",\n \"⇚\": \"⇚\",\n \"Ŀ\": \"Ŀ\",\n \"⟵\": \"⟵\",\n \"⟷\": \"⟷\",\n \"⟶\": \"⟶\",\n \"⟸\": \"⟸\",\n \"⟺\": \"⟺\",\n \"⟹\": \"⟹\",\n \"𝕃\": \"𝕃\",\n \"↙\": \"↙\",\n \"↘\": \"↘\",\n \"ℒ\": \"ℒ\",\n \"↰\": \"↰\",\n \"Ł\": \"Ł\",\n \"≪\": \"≪\",\n \"⤅\": \"⤅\",\n \"М\": \"М\",\n \" \": \" \",\n \"ℳ\": \"ℳ\",\n \"𝔐\": \"𝔐\",\n \"∓\": \"∓\",\n \"𝕄\": \"𝕄\",\n \"ℳ\": \"ℳ\",\n \"Μ\": \"Μ\",\n \"Њ\": \"Њ\",\n \"Ń\": \"Ń\",\n \"Ň\": \"Ň\",\n \"Ņ\": \"Ņ\",\n \"Н\": \"Н\",\n \"​\": \"​\",\n \"​\": \"​\",\n \"​\": \"​\",\n \"​\": \"​\",\n \"≫\": \"≫\",\n \"≪\": \"≪\",\n \" \": \"\\n\",\n \"𝔑\": \"𝔑\",\n \"⁠\": \"⁠\",\n \" \": \" \",\n \"ℕ\": \"ℕ\",\n \"⫬\": \"⫬\",\n \"≢\": \"≢\",\n \"≭\": \"≭\",\n \"∦\": \"∦\",\n \"∉\": \"∉\",\n \"≠\": \"≠\",\n \"≂̸\": \"≂̸\",\n \"∄\": \"∄\",\n \"≯\": \"≯\",\n \"≱\": \"≱\",\n \"≧̸\": \"≧̸\",\n \"≫̸\": \"≫̸\",\n \"≹\": \"≹\",\n \"⩾̸\": \"⩾̸\",\n \"≵\": \"≵\",\n \"≎̸\": \"≎̸\",\n \"≏̸\": \"≏̸\",\n \"⋪\": \"⋪\",\n \"⧏̸\": \"⧏̸\",\n \"⋬\": \"⋬\",\n \"≮\": \"≮\",\n \"≰\": \"≰\",\n \"≸\": \"≸\",\n \"≪̸\": \"≪̸\",\n \"⩽̸\": \"⩽̸\",\n \"≴\": \"≴\",\n \"⪢̸\": \"⪢̸\",\n \"⪡̸\": \"⪡̸\",\n \"⊀\": \"⊀\",\n \"⪯̸\": \"⪯̸\",\n \"⋠\": \"⋠\",\n \"∌\": \"∌\",\n \"⋫\": \"⋫\",\n \"⧐̸\": \"⧐̸\",\n \"⋭\": \"⋭\",\n \"⊏̸\": \"⊏̸\",\n \"⋢\": \"⋢\",\n \"⊐̸\": \"⊐̸\",\n \"⋣\": \"⋣\",\n \"⊂⃒\": \"⊂⃒\",\n \"⊈\": \"⊈\",\n \"⊁\": \"⊁\",\n \"⪰̸\": \"⪰̸\",\n \"⋡\": \"⋡\",\n \"≿̸\": \"≿̸\",\n \"⊃⃒\": \"⊃⃒\",\n \"⊉\": \"⊉\",\n \"≁\": \"≁\",\n \"≄\": \"≄\",\n \"≇\": \"≇\",\n \"≉\": \"≉\",\n \"∤\": \"∤\",\n \"𝒩\": \"𝒩\",\n \"Ñ\": \"Ñ\",\n \"Ñ\": \"Ñ\",\n \"Ν\": \"Ν\",\n \"Œ\": \"Œ\",\n \"Ó\": \"Ó\",\n \"Ó\": \"Ó\",\n \"Ô\": \"Ô\",\n \"Ô\": \"Ô\",\n \"О\": \"О\",\n \"Ő\": \"Ő\",\n \"𝔒\": \"𝔒\",\n \"Ò\": \"Ò\",\n \"Ò\": \"Ò\",\n \"Ō\": \"Ō\",\n \"Ω\": \"Ω\",\n \"Ο\": \"Ο\",\n \"𝕆\": \"𝕆\",\n \"“\": \"“\",\n \"‘\": \"‘\",\n \"⩔\": \"⩔\",\n \"𝒪\": \"𝒪\",\n \"Ø\": \"Ø\",\n \"Ø\": \"Ø\",\n \"Õ\": \"Õ\",\n \"Õ\": \"Õ\",\n \"⨷\": \"⨷\",\n \"Ö\": \"Ö\",\n \"Ö\": \"Ö\",\n \"‾\": \"‾\",\n \"⏞\": \"⏞\",\n \"⎴\": \"⎴\",\n \"⏜\": \"⏜\",\n \"∂\": \"∂\",\n \"П\": \"П\",\n \"𝔓\": \"𝔓\",\n \"Φ\": \"Φ\",\n \"Π\": \"Π\",\n \"±\": \"±\",\n \"ℌ\": \"ℌ\",\n \"ℙ\": \"ℙ\",\n \"⪻\": \"⪻\",\n \"≺\": \"≺\",\n \"⪯\": \"⪯\",\n \"≼\": \"≼\",\n \"≾\": \"≾\",\n \"″\": \"″\",\n \"∏\": \"∏\",\n \"∷\": \"∷\",\n \"∝\": \"∝\",\n \"𝒫\": \"𝒫\",\n \"Ψ\": \"Ψ\",\n \""\": '\"',\n \""\": '\"',\n \"𝔔\": \"𝔔\",\n \"ℚ\": \"ℚ\",\n \"𝒬\": \"𝒬\",\n \"⤐\": \"⤐\",\n \"®\": \"®\",\n \"®\": \"®\",\n \"Ŕ\": \"Ŕ\",\n \"⟫\": \"⟫\",\n \"↠\": \"↠\",\n \"⤖\": \"⤖\",\n \"Ř\": \"Ř\",\n \"Ŗ\": \"Ŗ\",\n \"Р\": \"Р\",\n \"ℜ\": \"ℜ\",\n \"∋\": \"∋\",\n \"⇋\": \"⇋\",\n \"⥯\": \"⥯\",\n \"ℜ\": \"ℜ\",\n \"Ρ\": \"Ρ\",\n \"⟩\": \"⟩\",\n \"→\": \"→\",\n \"⇥\": \"⇥\",\n \"⇄\": \"⇄\",\n \"⌉\": \"⌉\",\n \"⟧\": \"⟧\",\n \"⥝\": \"⥝\",\n \"⇂\": \"⇂\",\n \"⥕\": \"⥕\",\n \"⌋\": \"⌋\",\n \"⊢\": \"⊢\",\n \"↦\": \"↦\",\n \"⥛\": \"⥛\",\n \"⊳\": \"⊳\",\n \"⧐\": \"⧐\",\n \"⊵\": \"⊵\",\n \"⥏\": \"⥏\",\n \"⥜\": \"⥜\",\n \"↾\": \"↾\",\n \"⥔\": \"⥔\",\n \"⇀\": \"⇀\",\n \"⥓\": \"⥓\",\n \"⇒\": \"⇒\",\n \"ℝ\": \"ℝ\",\n \"⥰\": \"⥰\",\n \"⇛\": \"⇛\",\n \"ℛ\": \"ℛ\",\n \"↱\": \"↱\",\n \"⧴\": \"⧴\",\n \"Щ\": \"Щ\",\n \"Ш\": \"Ш\",\n \"Ь\": \"Ь\",\n \"Ś\": \"Ś\",\n \"⪼\": \"⪼\",\n \"Š\": \"Š\",\n \"Ş\": \"Ş\",\n \"Ŝ\": \"Ŝ\",\n \"С\": \"С\",\n \"𝔖\": \"𝔖\",\n \"↓\": \"↓\",\n \"←\": \"←\",\n \"→\": \"→\",\n \"↑\": \"↑\",\n \"Σ\": \"Σ\",\n \"∘\": \"∘\",\n \"𝕊\": \"𝕊\",\n \"√\": \"√\",\n \"□\": \"□\",\n \"⊓\": \"⊓\",\n \"⊏\": \"⊏\",\n \"⊑\": \"⊑\",\n \"⊐\": \"⊐\",\n \"⊒\": \"⊒\",\n \"⊔\": \"⊔\",\n \"𝒮\": \"𝒮\",\n \"⋆\": \"⋆\",\n \"⋐\": \"⋐\",\n \"⋐\": \"⋐\",\n \"⊆\": \"⊆\",\n \"≻\": \"≻\",\n \"⪰\": \"⪰\",\n \"≽\": \"≽\",\n \"≿\": \"≿\",\n \"∋\": \"∋\",\n \"∑\": \"∑\",\n \"⋑\": \"⋑\",\n \"⊃\": \"⊃\",\n \"⊇\": \"⊇\",\n \"⋑\": \"⋑\",\n \"Þ\": \"Þ\",\n \"Þ\": \"Þ\",\n \"™\": \"™\",\n \"Ћ\": \"Ћ\",\n \"Ц\": \"Ц\",\n \" \": \"\\t\",\n \"Τ\": \"Τ\",\n \"Ť\": \"Ť\",\n \"Ţ\": \"Ţ\",\n \"Т\": \"Т\",\n \"𝔗\": \"𝔗\",\n \"∴\": \"∴\",\n \"Θ\": \"Θ\",\n \"  \": \"  \",\n \" \": \" \",\n \"∼\": \"∼\",\n \"≃\": \"≃\",\n \"≅\": \"≅\",\n \"≈\": \"≈\",\n \"𝕋\": \"𝕋\",\n \"⃛\": \"⃛\",\n \"𝒯\": \"𝒯\",\n \"Ŧ\": \"Ŧ\",\n \"Ú\": \"Ú\",\n \"Ú\": \"Ú\",\n \"↟\": \"↟\",\n \"⥉\": \"⥉\",\n \"Ў\": \"Ў\",\n \"Ŭ\": \"Ŭ\",\n \"Û\": \"Û\",\n \"Û\": \"Û\",\n \"У\": \"У\",\n \"Ű\": \"Ű\",\n \"𝔘\": \"𝔘\",\n \"Ù\": \"Ù\",\n \"Ù\": \"Ù\",\n \"Ū\": \"Ū\",\n \"_\": \"_\",\n \"⏟\": \"⏟\",\n \"⎵\": \"⎵\",\n \"⏝\": \"⏝\",\n \"⋃\": \"⋃\",\n \"⊎\": \"⊎\",\n \"Ų\": \"Ų\",\n \"𝕌\": \"𝕌\",\n \"↑\": \"↑\",\n \"⤒\": \"⤒\",\n \"⇅\": \"⇅\",\n \"↕\": \"↕\",\n \"⥮\": \"⥮\",\n \"⊥\": \"⊥\",\n \"↥\": \"↥\",\n \"⇑\": \"⇑\",\n \"⇕\": \"⇕\",\n \"↖\": \"↖\",\n \"↗\": \"↗\",\n \"ϒ\": \"ϒ\",\n \"Υ\": \"Υ\",\n \"Ů\": \"Ů\",\n \"𝒰\": \"𝒰\",\n \"Ũ\": \"Ũ\",\n \"Ü\": \"Ü\",\n \"Ü\": \"Ü\",\n \"⊫\": \"⊫\",\n \"⫫\": \"⫫\",\n \"В\": \"В\",\n \"⊩\": \"⊩\",\n \"⫦\": \"⫦\",\n \"⋁\": \"⋁\",\n \"‖\": \"‖\",\n \"‖\": \"‖\",\n \"∣\": \"∣\",\n \"|\": \"|\",\n \"❘\": \"❘\",\n \"≀\": \"≀\",\n \" \": \" \",\n \"𝔙\": \"𝔙\",\n \"𝕍\": \"𝕍\",\n \"𝒱\": \"𝒱\",\n \"⊪\": \"⊪\",\n \"Ŵ\": \"Ŵ\",\n \"⋀\": \"⋀\",\n \"𝔚\": \"𝔚\",\n \"𝕎\": \"𝕎\",\n \"𝒲\": \"𝒲\",\n \"𝔛\": \"𝔛\",\n \"Ξ\": \"Ξ\",\n \"𝕏\": \"𝕏\",\n \"𝒳\": \"𝒳\",\n \"Я\": \"Я\",\n \"Ї\": \"Ї\",\n \"Ю\": \"Ю\",\n \"Ý\": \"Ý\",\n \"Ý\": \"Ý\",\n \"Ŷ\": \"Ŷ\",\n \"Ы\": \"Ы\",\n \"𝔜\": \"𝔜\",\n \"𝕐\": \"𝕐\",\n \"𝒴\": \"𝒴\",\n \"Ÿ\": \"Ÿ\",\n \"Ж\": \"Ж\",\n \"Ź\": \"Ź\",\n \"Ž\": \"Ž\",\n \"З\": \"З\",\n \"Ż\": \"Ż\",\n \"​\": \"​\",\n \"Ζ\": \"Ζ\",\n \"ℨ\": \"ℨ\",\n \"ℤ\": \"ℤ\",\n \"𝒵\": \"𝒵\",\n \"á\": \"á\",\n \"á\": \"á\",\n \"ă\": \"ă\",\n \"∾\": \"∾\",\n \"∾̳\": \"∾̳\",\n \"∿\": \"∿\",\n \"â\": \"â\",\n \"â\": \"â\",\n \"´\": \"´\",\n \"´\": \"´\",\n \"а\": \"а\",\n \"æ\": \"æ\",\n \"æ\": \"æ\",\n \"⁡\": \"⁡\",\n \"𝔞\": \"𝔞\",\n \"à\": \"à\",\n \"à\": \"à\",\n \"ℵ\": \"ℵ\",\n \"ℵ\": \"ℵ\",\n \"α\": \"α\",\n \"ā\": \"ā\",\n \"⨿\": \"⨿\",\n \"&\": \"&\",\n \"&\": \"&\",\n \"∧\": \"∧\",\n \"⩕\": \"⩕\",\n \"⩜\": \"⩜\",\n \"⩘\": \"⩘\",\n \"⩚\": \"⩚\",\n \"∠\": \"∠\",\n \"⦤\": \"⦤\",\n \"∠\": \"∠\",\n \"∡\": \"∡\",\n \"⦨\": \"⦨\",\n \"⦩\": \"⦩\",\n \"⦪\": \"⦪\",\n \"⦫\": \"⦫\",\n \"⦬\": \"⦬\",\n \"⦭\": \"⦭\",\n \"⦮\": \"⦮\",\n \"⦯\": \"⦯\",\n \"∟\": \"∟\",\n \"⊾\": \"⊾\",\n \"⦝\": \"⦝\",\n \"∢\": \"∢\",\n \"Å\": \"Å\",\n \"⍼\": \"⍼\",\n \"ą\": \"ą\",\n \"𝕒\": \"𝕒\",\n \"≈\": \"≈\",\n \"⩰\": \"⩰\",\n \"⩯\": \"⩯\",\n \"≊\": \"≊\",\n \"≋\": \"≋\",\n \"'\": \"'\",\n \"≈\": \"≈\",\n \"≊\": \"≊\",\n \"å\": \"å\",\n \"å\": \"å\",\n \"𝒶\": \"𝒶\",\n \"*\": \"*\",\n \"≈\": \"≈\",\n \"≍\": \"≍\",\n \"ã\": \"ã\",\n \"ã\": \"ã\",\n \"ä\": \"ä\",\n \"ä\": \"ä\",\n \"∳\": \"∳\",\n \"⨑\": \"⨑\",\n \"⫭\": \"⫭\",\n \"≌\": \"≌\",\n \"϶\": \"϶\",\n \"‵\": \"‵\",\n \"∽\": \"∽\",\n \"⋍\": \"⋍\",\n \"⊽\": \"⊽\",\n \"⌅\": \"⌅\",\n \"⌅\": \"⌅\",\n \"⎵\": \"⎵\",\n \"⎶\": \"⎶\",\n \"≌\": \"≌\",\n \"б\": \"б\",\n \"„\": \"„\",\n \"∵\": \"∵\",\n \"∵\": \"∵\",\n \"⦰\": \"⦰\",\n \"϶\": \"϶\",\n \"ℬ\": \"ℬ\",\n \"β\": \"β\",\n \"ℶ\": \"ℶ\",\n \"≬\": \"≬\",\n \"𝔟\": \"𝔟\",\n \"⋂\": \"⋂\",\n \"◯\": \"◯\",\n \"⋃\": \"⋃\",\n \"⨀\": \"⨀\",\n \"⨁\": \"⨁\",\n \"⨂\": \"⨂\",\n \"⨆\": \"⨆\",\n \"★\": \"★\",\n \"▽\": \"▽\",\n \"△\": \"△\",\n \"⨄\": \"⨄\",\n \"⋁\": \"⋁\",\n \"⋀\": \"⋀\",\n \"⤍\": \"⤍\",\n \"⧫\": \"⧫\",\n \"▪\": \"▪\",\n \"▴\": \"▴\",\n \"▾\": \"▾\",\n \"◂\": \"◂\",\n \"▸\": \"▸\",\n \"␣\": \"␣\",\n \"▒\": \"▒\",\n \"░\": \"░\",\n \"▓\": \"▓\",\n \"█\": \"█\",\n \"=⃥\": \"=⃥\",\n \"≡⃥\": \"≡⃥\",\n \"⌐\": \"⌐\",\n \"𝕓\": \"𝕓\",\n \"⊥\": \"⊥\",\n \"⊥\": \"⊥\",\n \"⋈\": \"⋈\",\n \"╗\": \"╗\",\n \"╔\": \"╔\",\n \"╖\": \"╖\",\n \"╓\": \"╓\",\n \"═\": \"═\",\n \"╦\": \"╦\",\n \"╩\": \"╩\",\n \"╤\": \"╤\",\n \"╧\": \"╧\",\n \"╝\": \"╝\",\n \"╚\": \"╚\",\n \"╜\": \"╜\",\n \"╙\": \"╙\",\n \"║\": \"║\",\n \"╬\": \"╬\",\n \"╣\": \"╣\",\n \"╠\": \"╠\",\n \"╫\": \"╫\",\n \"╢\": \"╢\",\n \"╟\": \"╟\",\n \"⧉\": \"⧉\",\n \"╕\": \"╕\",\n \"╒\": \"╒\",\n \"┐\": \"┐\",\n \"┌\": \"┌\",\n \"─\": \"─\",\n \"╥\": \"╥\",\n \"╨\": \"╨\",\n \"┬\": \"┬\",\n \"┴\": \"┴\",\n \"⊟\": \"⊟\",\n \"⊞\": \"⊞\",\n \"⊠\": \"⊠\",\n \"╛\": \"╛\",\n \"╘\": \"╘\",\n \"┘\": \"┘\",\n \"└\": \"└\",\n \"│\": \"│\",\n \"╪\": \"╪\",\n \"╡\": \"╡\",\n \"╞\": \"╞\",\n \"┼\": \"┼\",\n \"┤\": \"┤\",\n \"├\": \"├\",\n \"‵\": \"‵\",\n \"˘\": \"˘\",\n \"¦\": \"¦\",\n \"¦\": \"¦\",\n \"𝒷\": \"𝒷\",\n \"⁏\": \"⁏\",\n \"∽\": \"∽\",\n \"⋍\": \"⋍\",\n \"\\": \"\\\\\",\n \"⧅\": \"⧅\",\n \"⟈\": \"⟈\",\n \"•\": \"•\",\n \"•\": \"•\",\n \"≎\": \"≎\",\n \"⪮\": \"⪮\",\n \"≏\": \"≏\",\n \"≏\": \"≏\",\n \"ć\": \"ć\",\n \"∩\": \"∩\",\n \"⩄\": \"⩄\",\n \"⩉\": \"⩉\",\n \"⩋\": \"⩋\",\n \"⩇\": \"⩇\",\n \"⩀\": \"⩀\",\n \"∩︀\": \"∩︀\",\n \"⁁\": \"⁁\",\n \"ˇ\": \"ˇ\",\n \"⩍\": \"⩍\",\n \"č\": \"č\",\n \"ç\": \"ç\",\n \"ç\": \"ç\",\n \"ĉ\": \"ĉ\",\n \"⩌\": \"⩌\",\n \"⩐\": \"⩐\",\n \"ċ\": \"ċ\",\n \"¸\": \"¸\",\n \"¸\": \"¸\",\n \"⦲\": \"⦲\",\n \"¢\": \"¢\",\n \"¢\": \"¢\",\n \"·\": \"·\",\n \"𝔠\": \"𝔠\",\n \"ч\": \"ч\",\n \"✓\": \"✓\",\n \"✓\": \"✓\",\n \"χ\": \"χ\",\n \"○\": \"○\",\n \"⧃\": \"⧃\",\n \"ˆ\": \"ˆ\",\n \"≗\": \"≗\",\n \"↺\": \"↺\",\n \"↻\": \"↻\",\n \"®\": \"®\",\n \"Ⓢ\": \"Ⓢ\",\n \"⊛\": \"⊛\",\n \"⊚\": \"⊚\",\n \"⊝\": \"⊝\",\n \"≗\": \"≗\",\n \"⨐\": \"⨐\",\n \"⫯\": \"⫯\",\n \"⧂\": \"⧂\",\n \"♣\": \"♣\",\n \"♣\": \"♣\",\n \":\": \":\",\n \"≔\": \"≔\",\n \"≔\": \"≔\",\n \",\": \",\",\n \"@\": \"@\",\n \"∁\": \"∁\",\n \"∘\": \"∘\",\n \"∁\": \"∁\",\n \"ℂ\": \"ℂ\",\n \"≅\": \"≅\",\n \"⩭\": \"⩭\",\n \"∮\": \"∮\",\n \"𝕔\": \"𝕔\",\n \"∐\": \"∐\",\n \"©\": \"©\",\n \"©\": \"©\",\n \"℗\": \"℗\",\n \"↵\": \"↵\",\n \"✗\": \"✗\",\n \"𝒸\": \"𝒸\",\n \"⫏\": \"⫏\",\n \"⫑\": \"⫑\",\n \"⫐\": \"⫐\",\n \"⫒\": \"⫒\",\n \"⋯\": \"⋯\",\n \"⤸\": \"⤸\",\n \"⤵\": \"⤵\",\n \"⋞\": \"⋞\",\n \"⋟\": \"⋟\",\n \"↶\": \"↶\",\n \"⤽\": \"⤽\",\n \"∪\": \"∪\",\n \"⩈\": \"⩈\",\n \"⩆\": \"⩆\",\n \"⩊\": \"⩊\",\n \"⊍\": \"⊍\",\n \"⩅\": \"⩅\",\n \"∪︀\": \"∪︀\",\n \"↷\": \"↷\",\n \"⤼\": \"⤼\",\n \"⋞\": \"⋞\",\n \"⋟\": \"⋟\",\n \"⋎\": \"⋎\",\n \"⋏\": \"⋏\",\n \"¤\": \"¤\",\n \"¤\": \"¤\",\n \"↶\": \"↶\",\n \"↷\": \"↷\",\n \"⋎\": \"⋎\",\n \"⋏\": \"⋏\",\n \"∲\": \"∲\",\n \"∱\": \"∱\",\n \"⌭\": \"⌭\",\n \"⇓\": \"⇓\",\n \"⥥\": \"⥥\",\n \"†\": \"†\",\n \"ℸ\": \"ℸ\",\n \"↓\": \"↓\",\n \"‐\": \"‐\",\n \"⊣\": \"⊣\",\n \"⤏\": \"⤏\",\n \"˝\": \"˝\",\n \"ď\": \"ď\",\n \"д\": \"д\",\n \"ⅆ\": \"ⅆ\",\n \"‡\": \"‡\",\n \"⇊\": \"⇊\",\n \"⩷\": \"⩷\",\n \"°\": \"°\",\n \"°\": \"°\",\n \"δ\": \"δ\",\n \"⦱\": \"⦱\",\n \"⥿\": \"⥿\",\n \"𝔡\": \"𝔡\",\n \"⇃\": \"⇃\",\n \"⇂\": \"⇂\",\n \"⋄\": \"⋄\",\n \"⋄\": \"⋄\",\n \"♦\": \"♦\",\n \"♦\": \"♦\",\n \"¨\": \"¨\",\n \"ϝ\": \"ϝ\",\n \"⋲\": \"⋲\",\n \"÷\": \"÷\",\n \"÷\": \"÷\",\n \"÷\": \"÷\",\n \"⋇\": \"⋇\",\n \"⋇\": \"⋇\",\n \"ђ\": \"ђ\",\n \"⌞\": \"⌞\",\n \"⌍\": \"⌍\",\n \"$\": \"$\",\n \"𝕕\": \"𝕕\",\n \"˙\": \"˙\",\n \"≐\": \"≐\",\n \"≑\": \"≑\",\n \"∸\": \"∸\",\n \"∔\": \"∔\",\n \"⊡\": \"⊡\",\n \"⌆\": \"⌆\",\n \"↓\": \"↓\",\n \"⇊\": \"⇊\",\n \"⇃\": \"⇃\",\n \"⇂\": \"⇂\",\n \"⤐\": \"⤐\",\n \"⌟\": \"⌟\",\n \"⌌\": \"⌌\",\n \"𝒹\": \"𝒹\",\n \"ѕ\": \"ѕ\",\n \"⧶\": \"⧶\",\n \"đ\": \"đ\",\n \"⋱\": \"⋱\",\n \"▿\": \"▿\",\n \"▾\": \"▾\",\n \"⇵\": \"⇵\",\n \"⥯\": \"⥯\",\n \"⦦\": \"⦦\",\n \"џ\": \"џ\",\n \"⟿\": \"⟿\",\n \"⩷\": \"⩷\",\n \"≑\": \"≑\",\n \"é\": \"é\",\n \"é\": \"é\",\n \"⩮\": \"⩮\",\n \"ě\": \"ě\",\n \"≖\": \"≖\",\n \"ê\": \"ê\",\n \"ê\": \"ê\",\n \"≕\": \"≕\",\n \"э\": \"э\",\n \"ė\": \"ė\",\n \"ⅇ\": \"ⅇ\",\n \"≒\": \"≒\",\n \"𝔢\": \"𝔢\",\n \"⪚\": \"⪚\",\n \"è\": \"è\",\n \"è\": \"è\",\n \"⪖\": \"⪖\",\n \"⪘\": \"⪘\",\n \"⪙\": \"⪙\",\n \"⏧\": \"⏧\",\n \"ℓ\": \"ℓ\",\n \"⪕\": \"⪕\",\n \"⪗\": \"⪗\",\n \"ē\": \"ē\",\n \"∅\": \"∅\",\n \"∅\": \"∅\",\n \"∅\": \"∅\",\n \" \": \" \",\n \" \": \" \",\n \" \": \" \",\n \"ŋ\": \"ŋ\",\n \" \": \" \",\n \"ę\": \"ę\",\n \"𝕖\": \"𝕖\",\n \"⋕\": \"⋕\",\n \"⧣\": \"⧣\",\n \"⩱\": \"⩱\",\n \"ε\": \"ε\",\n \"ε\": \"ε\",\n \"ϵ\": \"ϵ\",\n \"≖\": \"≖\",\n \"≕\": \"≕\",\n \"≂\": \"≂\",\n \"⪖\": \"⪖\",\n \"⪕\": \"⪕\",\n \"=\": \"=\",\n \"≟\": \"≟\",\n \"≡\": \"≡\",\n \"⩸\": \"⩸\",\n \"⧥\": \"⧥\",\n \"≓\": \"≓\",\n \"⥱\": \"⥱\",\n \"ℯ\": \"ℯ\",\n \"≐\": \"≐\",\n \"≂\": \"≂\",\n \"η\": \"η\",\n \"ð\": \"ð\",\n \"ð\": \"ð\",\n \"ë\": \"ë\",\n \"ë\": \"ë\",\n \"€\": \"€\",\n \"!\": \"!\",\n \"∃\": \"∃\",\n \"ℰ\": \"ℰ\",\n \"ⅇ\": \"ⅇ\",\n \"≒\": \"≒\",\n \"ф\": \"ф\",\n \"♀\": \"♀\",\n \"ffi\": \"ffi\",\n \"ff\": \"ff\",\n \"ffl\": \"ffl\",\n \"𝔣\": \"𝔣\",\n \"fi\": \"fi\",\n \"fj\": \"fj\",\n \"♭\": \"♭\",\n \"fl\": \"fl\",\n \"▱\": \"▱\",\n \"ƒ\": \"ƒ\",\n \"𝕗\": \"𝕗\",\n \"∀\": \"∀\",\n \"⋔\": \"⋔\",\n \"⫙\": \"⫙\",\n \"⨍\": \"⨍\",\n \"½\": \"½\",\n \"½\": \"½\",\n \"⅓\": \"⅓\",\n \"¼\": \"¼\",\n \"¼\": \"¼\",\n \"⅕\": \"⅕\",\n \"⅙\": \"⅙\",\n \"⅛\": \"⅛\",\n \"⅔\": \"⅔\",\n \"⅖\": \"⅖\",\n \"¾\": \"¾\",\n \"¾\": \"¾\",\n \"⅗\": \"⅗\",\n \"⅜\": \"⅜\",\n \"⅘\": \"⅘\",\n \"⅚\": \"⅚\",\n \"⅝\": \"⅝\",\n \"⅞\": \"⅞\",\n \"⁄\": \"⁄\",\n \"⌢\": \"⌢\",\n \"𝒻\": \"𝒻\",\n \"≧\": \"≧\",\n \"⪌\": \"⪌\",\n \"ǵ\": \"ǵ\",\n \"γ\": \"γ\",\n \"ϝ\": \"ϝ\",\n \"⪆\": \"⪆\",\n \"ğ\": \"ğ\",\n \"ĝ\": \"ĝ\",\n \"г\": \"г\",\n \"ġ\": \"ġ\",\n \"≥\": \"≥\",\n \"⋛\": \"⋛\",\n \"≥\": \"≥\",\n \"≧\": \"≧\",\n \"⩾\": \"⩾\",\n \"⩾\": \"⩾\",\n \"⪩\": \"⪩\",\n \"⪀\": \"⪀\",\n \"⪂\": \"⪂\",\n \"⪄\": \"⪄\",\n \"⋛︀\": \"⋛︀\",\n \"⪔\": \"⪔\",\n \"𝔤\": \"𝔤\",\n \"≫\": \"≫\",\n \"⋙\": \"⋙\",\n \"ℷ\": \"ℷ\",\n \"ѓ\": \"ѓ\",\n \"≷\": \"≷\",\n \"⪒\": \"⪒\",\n \"⪥\": \"⪥\",\n \"⪤\": \"⪤\",\n \"≩\": \"≩\",\n \"⪊\": \"⪊\",\n \"⪊\": \"⪊\",\n \"⪈\": \"⪈\",\n \"⪈\": \"⪈\",\n \"≩\": \"≩\",\n \"⋧\": \"⋧\",\n \"𝕘\": \"𝕘\",\n \"`\": \"`\",\n \"ℊ\": \"ℊ\",\n \"≳\": \"≳\",\n \"⪎\": \"⪎\",\n \"⪐\": \"⪐\",\n \">\": \">\",\n \">\": \">\",\n \"⪧\": \"⪧\",\n \"⩺\": \"⩺\",\n \"⋗\": \"⋗\",\n \"⦕\": \"⦕\",\n \"⩼\": \"⩼\",\n \"⪆\": \"⪆\",\n \"⥸\": \"⥸\",\n \"⋗\": \"⋗\",\n \"⋛\": \"⋛\",\n \"⪌\": \"⪌\",\n \"≷\": \"≷\",\n \"≳\": \"≳\",\n \"≩︀\": \"≩︀\",\n \"≩︀\": \"≩︀\",\n \"⇔\": \"⇔\",\n \" \": \" \",\n \"½\": \"½\",\n \"ℋ\": \"ℋ\",\n \"ъ\": \"ъ\",\n \"↔\": \"↔\",\n \"⥈\": \"⥈\",\n \"↭\": \"↭\",\n \"ℏ\": \"ℏ\",\n \"ĥ\": \"ĥ\",\n \"♥\": \"♥\",\n \"♥\": \"♥\",\n \"…\": \"…\",\n \"⊹\": \"⊹\",\n \"𝔥\": \"𝔥\",\n \"⤥\": \"⤥\",\n \"⤦\": \"⤦\",\n \"⇿\": \"⇿\",\n \"∻\": \"∻\",\n \"↩\": \"↩\",\n \"↪\": \"↪\",\n \"𝕙\": \"𝕙\",\n \"―\": \"―\",\n \"𝒽\": \"𝒽\",\n \"ℏ\": \"ℏ\",\n \"ħ\": \"ħ\",\n \"⁃\": \"⁃\",\n \"‐\": \"‐\",\n \"í\": \"í\",\n \"í\": \"í\",\n \"⁣\": \"⁣\",\n \"î\": \"î\",\n \"î\": \"î\",\n \"и\": \"и\",\n \"е\": \"е\",\n \"¡\": \"¡\",\n \"¡\": \"¡\",\n \"⇔\": \"⇔\",\n \"𝔦\": \"𝔦\",\n \"ì\": \"ì\",\n \"ì\": \"ì\",\n \"ⅈ\": \"ⅈ\",\n \"⨌\": \"⨌\",\n \"∭\": \"∭\",\n \"⧜\": \"⧜\",\n \"℩\": \"℩\",\n \"ij\": \"ij\",\n \"ī\": \"ī\",\n \"ℑ\": \"ℑ\",\n \"ℐ\": \"ℐ\",\n \"ℑ\": \"ℑ\",\n \"ı\": \"ı\",\n \"⊷\": \"⊷\",\n \"Ƶ\": \"Ƶ\",\n \"∈\": \"∈\",\n \"℅\": \"℅\",\n \"∞\": \"∞\",\n \"⧝\": \"⧝\",\n \"ı\": \"ı\",\n \"∫\": \"∫\",\n \"⊺\": \"⊺\",\n \"ℤ\": \"ℤ\",\n \"⊺\": \"⊺\",\n \"⨗\": \"⨗\",\n \"⨼\": \"⨼\",\n \"ё\": \"ё\",\n \"į\": \"į\",\n \"𝕚\": \"𝕚\",\n \"ι\": \"ι\",\n \"⨼\": \"⨼\",\n \"¿\": \"¿\",\n \"¿\": \"¿\",\n \"𝒾\": \"𝒾\",\n \"∈\": \"∈\",\n \"⋹\": \"⋹\",\n \"⋵\": \"⋵\",\n \"⋴\": \"⋴\",\n \"⋳\": \"⋳\",\n \"∈\": \"∈\",\n \"⁢\": \"⁢\",\n \"ĩ\": \"ĩ\",\n \"і\": \"і\",\n \"ï\": \"ï\",\n \"ï\": \"ï\",\n \"ĵ\": \"ĵ\",\n \"й\": \"й\",\n \"𝔧\": \"𝔧\",\n \"ȷ\": \"ȷ\",\n \"𝕛\": \"𝕛\",\n \"𝒿\": \"𝒿\",\n \"ј\": \"ј\",\n \"є\": \"є\",\n \"κ\": \"κ\",\n \"ϰ\": \"ϰ\",\n \"ķ\": \"ķ\",\n \"к\": \"к\",\n \"𝔨\": \"𝔨\",\n \"ĸ\": \"ĸ\",\n \"х\": \"х\",\n \"ќ\": \"ќ\",\n \"𝕜\": \"𝕜\",\n \"𝓀\": \"𝓀\",\n \"⇚\": \"⇚\",\n \"⇐\": \"⇐\",\n \"⤛\": \"⤛\",\n \"⤎\": \"⤎\",\n \"≦\": \"≦\",\n \"⪋\": \"⪋\",\n \"⥢\": \"⥢\",\n \"ĺ\": \"ĺ\",\n \"⦴\": \"⦴\",\n \"ℒ\": \"ℒ\",\n \"λ\": \"λ\",\n \"⟨\": \"⟨\",\n \"⦑\": \"⦑\",\n \"⟨\": \"⟨\",\n \"⪅\": \"⪅\",\n \"«\": \"«\",\n \"«\": \"«\",\n \"←\": \"←\",\n \"⇤\": \"⇤\",\n \"⤟\": \"⤟\",\n \"⤝\": \"⤝\",\n \"↩\": \"↩\",\n \"↫\": \"↫\",\n \"⤹\": \"⤹\",\n \"⥳\": \"⥳\",\n \"↢\": \"↢\",\n \"⪫\": \"⪫\",\n \"⤙\": \"⤙\",\n \"⪭\": \"⪭\",\n \"⪭︀\": \"⪭︀\",\n \"⤌\": \"⤌\",\n \"❲\": \"❲\",\n \"{\": \"{\",\n \"[\": \"[\",\n \"⦋\": \"⦋\",\n \"⦏\": \"⦏\",\n \"⦍\": \"⦍\",\n \"ľ\": \"ľ\",\n \"ļ\": \"ļ\",\n \"⌈\": \"⌈\",\n \"{\": \"{\",\n \"л\": \"л\",\n \"⤶\": \"⤶\",\n \"“\": \"“\",\n \"„\": \"„\",\n \"⥧\": \"⥧\",\n \"⥋\": \"⥋\",\n \"↲\": \"↲\",\n \"≤\": \"≤\",\n \"←\": \"←\",\n \"↢\": \"↢\",\n \"↽\": \"↽\",\n \"↼\": \"↼\",\n \"⇇\": \"⇇\",\n \"↔\": \"↔\",\n \"⇆\": \"⇆\",\n \"⇋\": \"⇋\",\n \"↭\": \"↭\",\n \"⋋\": \"⋋\",\n \"⋚\": \"⋚\",\n \"≤\": \"≤\",\n \"≦\": \"≦\",\n \"⩽\": \"⩽\",\n \"⩽\": \"⩽\",\n \"⪨\": \"⪨\",\n \"⩿\": \"⩿\",\n \"⪁\": \"⪁\",\n \"⪃\": \"⪃\",\n \"⋚︀\": \"⋚︀\",\n \"⪓\": \"⪓\",\n \"⪅\": \"⪅\",\n \"⋖\": \"⋖\",\n \"⋚\": \"⋚\",\n \"⪋\": \"⪋\",\n \"≶\": \"≶\",\n \"≲\": \"≲\",\n \"⥼\": \"⥼\",\n \"⌊\": \"⌊\",\n \"𝔩\": \"𝔩\",\n \"≶\": \"≶\",\n \"⪑\": \"⪑\",\n \"↽\": \"↽\",\n \"↼\": \"↼\",\n \"⥪\": \"⥪\",\n \"▄\": \"▄\",\n \"љ\": \"љ\",\n \"≪\": \"≪\",\n \"⇇\": \"⇇\",\n \"⌞\": \"⌞\",\n \"⥫\": \"⥫\",\n \"◺\": \"◺\",\n \"ŀ\": \"ŀ\",\n \"⎰\": \"⎰\",\n \"⎰\": \"⎰\",\n \"≨\": \"≨\",\n \"⪉\": \"⪉\",\n \"⪉\": \"⪉\",\n \"⪇\": \"⪇\",\n \"⪇\": \"⪇\",\n \"≨\": \"≨\",\n \"⋦\": \"⋦\",\n \"⟬\": \"⟬\",\n \"⇽\": \"⇽\",\n \"⟦\": \"⟦\",\n \"⟵\": \"⟵\",\n \"⟷\": \"⟷\",\n \"⟼\": \"⟼\",\n \"⟶\": \"⟶\",\n \"↫\": \"↫\",\n \"↬\": \"↬\",\n \"⦅\": \"⦅\",\n \"𝕝\": \"𝕝\",\n \"⨭\": \"⨭\",\n \"⨴\": \"⨴\",\n \"∗\": \"∗\",\n \"_\": \"_\",\n \"◊\": \"◊\",\n \"◊\": \"◊\",\n \"⧫\": \"⧫\",\n \"(\": \"(\",\n \"⦓\": \"⦓\",\n \"⇆\": \"⇆\",\n \"⌟\": \"⌟\",\n \"⇋\": \"⇋\",\n \"⥭\": \"⥭\",\n \"‎\": \"‎\",\n \"⊿\": \"⊿\",\n \"‹\": \"‹\",\n \"𝓁\": \"𝓁\",\n \"↰\": \"↰\",\n \"≲\": \"≲\",\n \"⪍\": \"⪍\",\n \"⪏\": \"⪏\",\n \"[\": \"[\",\n \"‘\": \"‘\",\n \"‚\": \"‚\",\n \"ł\": \"ł\",\n \"<\": \"<\",\n \"<\": \"<\",\n \"⪦\": \"⪦\",\n \"⩹\": \"⩹\",\n \"⋖\": \"⋖\",\n \"⋋\": \"⋋\",\n \"⋉\": \"⋉\",\n \"⥶\": \"⥶\",\n \"⩻\": \"⩻\",\n \"⦖\": \"⦖\",\n \"◃\": \"◃\",\n \"⊴\": \"⊴\",\n \"◂\": \"◂\",\n \"⥊\": \"⥊\",\n \"⥦\": \"⥦\",\n \"≨︀\": \"≨︀\",\n \"≨︀\": \"≨︀\",\n \"∺\": \"∺\",\n \"¯\": \"¯\",\n \"¯\": \"¯\",\n \"♂\": \"♂\",\n \"✠\": \"✠\",\n \"✠\": \"✠\",\n \"↦\": \"↦\",\n \"↦\": \"↦\",\n \"↧\": \"↧\",\n \"↤\": \"↤\",\n \"↥\": \"↥\",\n \"▮\": \"▮\",\n \"⨩\": \"⨩\",\n \"м\": \"м\",\n \"—\": \"—\",\n \"∡\": \"∡\",\n \"𝔪\": \"𝔪\",\n \"℧\": \"℧\",\n \"µ\": \"µ\",\n \"µ\": \"µ\",\n \"∣\": \"∣\",\n \"*\": \"*\",\n \"⫰\": \"⫰\",\n \"·\": \"·\",\n \"·\": \"·\",\n \"−\": \"−\",\n \"⊟\": \"⊟\",\n \"∸\": \"∸\",\n \"⨪\": \"⨪\",\n \"⫛\": \"⫛\",\n \"…\": \"…\",\n \"∓\": \"∓\",\n \"⊧\": \"⊧\",\n \"𝕞\": \"𝕞\",\n \"∓\": \"∓\",\n \"𝓂\": \"𝓂\",\n \"∾\": \"∾\",\n \"μ\": \"μ\",\n \"⊸\": \"⊸\",\n \"⊸\": \"⊸\",\n \"⋙̸\": \"⋙̸\",\n \"≫⃒\": \"≫⃒\",\n \"≫̸\": \"≫̸\",\n \"⇍\": \"⇍\",\n \"⇎\": \"⇎\",\n \"⋘̸\": \"⋘̸\",\n \"≪⃒\": \"≪⃒\",\n \"≪̸\": \"≪̸\",\n \"⇏\": \"⇏\",\n \"⊯\": \"⊯\",\n \"⊮\": \"⊮\",\n \"∇\": \"∇\",\n \"ń\": \"ń\",\n \"∠⃒\": \"∠⃒\",\n \"≉\": \"≉\",\n \"⩰̸\": \"⩰̸\",\n \"≋̸\": \"≋̸\",\n \"ʼn\": \"ʼn\",\n \"≉\": \"≉\",\n \"♮\": \"♮\",\n \"♮\": \"♮\",\n \"ℕ\": \"ℕ\",\n \" \": \" \",\n \" \": \" \",\n \"≎̸\": \"≎̸\",\n \"≏̸\": \"≏̸\",\n \"⩃\": \"⩃\",\n \"ň\": \"ň\",\n \"ņ\": \"ņ\",\n \"≇\": \"≇\",\n \"⩭̸\": \"⩭̸\",\n \"⩂\": \"⩂\",\n \"н\": \"н\",\n \"–\": \"–\",\n \"≠\": \"≠\",\n \"⇗\": \"⇗\",\n \"⤤\": \"⤤\",\n \"↗\": \"↗\",\n \"↗\": \"↗\",\n \"≐̸\": \"≐̸\",\n \"≢\": \"≢\",\n \"⤨\": \"⤨\",\n \"≂̸\": \"≂̸\",\n \"∄\": \"∄\",\n \"∄\": \"∄\",\n \"𝔫\": \"𝔫\",\n \"≧̸\": \"≧̸\",\n \"≱\": \"≱\",\n \"≱\": \"≱\",\n \"≧̸\": \"≧̸\",\n \"⩾̸\": \"⩾̸\",\n \"⩾̸\": \"⩾̸\",\n \"≵\": \"≵\",\n \"≯\": \"≯\",\n \"≯\": \"≯\",\n \"⇎\": \"⇎\",\n \"↮\": \"↮\",\n \"⫲\": \"⫲\",\n \"∋\": \"∋\",\n \"⋼\": \"⋼\",\n \"⋺\": \"⋺\",\n \"∋\": \"∋\",\n \"њ\": \"њ\",\n \"⇍\": \"⇍\",\n \"≦̸\": \"≦̸\",\n \"↚\": \"↚\",\n \"‥\": \"‥\",\n \"≰\": \"≰\",\n \"↚\": \"↚\",\n \"↮\": \"↮\",\n \"≰\": \"≰\",\n \"≦̸\": \"≦̸\",\n \"⩽̸\": \"⩽̸\",\n \"⩽̸\": \"⩽̸\",\n \"≮\": \"≮\",\n \"≴\": \"≴\",\n \"≮\": \"≮\",\n \"⋪\": \"⋪\",\n \"⋬\": \"⋬\",\n \"∤\": \"∤\",\n \"𝕟\": \"𝕟\",\n \"¬\": \"¬\",\n \"¬\": \"¬\",\n \"∉\": \"∉\",\n \"⋹̸\": \"⋹̸\",\n \"⋵̸\": \"⋵̸\",\n \"∉\": \"∉\",\n \"⋷\": \"⋷\",\n \"⋶\": \"⋶\",\n \"∌\": \"∌\",\n \"∌\": \"∌\",\n \"⋾\": \"⋾\",\n \"⋽\": \"⋽\",\n \"∦\": \"∦\",\n \"∦\": \"∦\",\n \"⫽⃥\": \"⫽⃥\",\n \"∂̸\": \"∂̸\",\n \"⨔\": \"⨔\",\n \"⊀\": \"⊀\",\n \"⋠\": \"⋠\",\n \"⪯̸\": \"⪯̸\",\n \"⊀\": \"⊀\",\n \"⪯̸\": \"⪯̸\",\n \"⇏\": \"⇏\",\n \"↛\": \"↛\",\n \"⤳̸\": \"⤳̸\",\n \"↝̸\": \"↝̸\",\n \"↛\": \"↛\",\n \"⋫\": \"⋫\",\n \"⋭\": \"⋭\",\n \"⊁\": \"⊁\",\n \"⋡\": \"⋡\",\n \"⪰̸\": \"⪰̸\",\n \"𝓃\": \"𝓃\",\n \"∤\": \"∤\",\n \"∦\": \"∦\",\n \"≁\": \"≁\",\n \"≄\": \"≄\",\n \"≄\": \"≄\",\n \"∤\": \"∤\",\n \"∦\": \"∦\",\n \"⋢\": \"⋢\",\n \"⋣\": \"⋣\",\n \"⊄\": \"⊄\",\n \"⫅̸\": \"⫅̸\",\n \"⊈\": \"⊈\",\n \"⊂⃒\": \"⊂⃒\",\n \"⊈\": \"⊈\",\n \"⫅̸\": \"⫅̸\",\n \"⊁\": \"⊁\",\n \"⪰̸\": \"⪰̸\",\n \"⊅\": \"⊅\",\n \"⫆̸\": \"⫆̸\",\n \"⊉\": \"⊉\",\n \"⊃⃒\": \"⊃⃒\",\n \"⊉\": \"⊉\",\n \"⫆̸\": \"⫆̸\",\n \"≹\": \"≹\",\n \"ñ\": \"ñ\",\n \"ñ\": \"ñ\",\n \"≸\": \"≸\",\n \"⋪\": \"⋪\",\n \"⋬\": \"⋬\",\n \"⋫\": \"⋫\",\n \"⋭\": \"⋭\",\n \"ν\": \"ν\",\n \"#\": \"#\",\n \"№\": \"№\",\n \" \": \" \",\n \"⊭\": \"⊭\",\n \"⤄\": \"⤄\",\n \"≍⃒\": \"≍⃒\",\n \"⊬\": \"⊬\",\n \"≥⃒\": \"≥⃒\",\n \">⃒\": \">⃒\",\n \"⧞\": \"⧞\",\n \"⤂\": \"⤂\",\n \"≤⃒\": \"≤⃒\",\n \"<⃒\": \"<⃒\",\n \"⊴⃒\": \"⊴⃒\",\n \"⤃\": \"⤃\",\n \"⊵⃒\": \"⊵⃒\",\n \"∼⃒\": \"∼⃒\",\n \"⇖\": \"⇖\",\n \"⤣\": \"⤣\",\n \"↖\": \"↖\",\n \"↖\": \"↖\",\n \"⤧\": \"⤧\",\n \"Ⓢ\": \"Ⓢ\",\n \"ó\": \"ó\",\n \"ó\": \"ó\",\n \"⊛\": \"⊛\",\n \"⊚\": \"⊚\",\n \"ô\": \"ô\",\n \"ô\": \"ô\",\n \"о\": \"о\",\n \"⊝\": \"⊝\",\n \"ő\": \"ő\",\n \"⨸\": \"⨸\",\n \"⊙\": \"⊙\",\n \"⦼\": \"⦼\",\n \"œ\": \"œ\",\n \"⦿\": \"⦿\",\n \"𝔬\": \"𝔬\",\n \"˛\": \"˛\",\n \"ò\": \"ò\",\n \"ò\": \"ò\",\n \"⧁\": \"⧁\",\n \"⦵\": \"⦵\",\n \"Ω\": \"Ω\",\n \"∮\": \"∮\",\n \"↺\": \"↺\",\n \"⦾\": \"⦾\",\n \"⦻\": \"⦻\",\n \"‾\": \"‾\",\n \"⧀\": \"⧀\",\n \"ō\": \"ō\",\n \"ω\": \"ω\",\n \"ο\": \"ο\",\n \"⦶\": \"⦶\",\n \"⊖\": \"⊖\",\n \"𝕠\": \"𝕠\",\n \"⦷\": \"⦷\",\n \"⦹\": \"⦹\",\n \"⊕\": \"⊕\",\n \"∨\": \"∨\",\n \"↻\": \"↻\",\n \"⩝\": \"⩝\",\n \"ℴ\": \"ℴ\",\n \"ℴ\": \"ℴ\",\n \"ª\": \"ª\",\n \"ª\": \"ª\",\n \"º\": \"º\",\n \"º\": \"º\",\n \"⊶\": \"⊶\",\n \"⩖\": \"⩖\",\n \"⩗\": \"⩗\",\n \"⩛\": \"⩛\",\n \"ℴ\": \"ℴ\",\n \"ø\": \"ø\",\n \"ø\": \"ø\",\n \"⊘\": \"⊘\",\n \"õ\": \"õ\",\n \"õ\": \"õ\",\n \"⊗\": \"⊗\",\n \"⨶\": \"⨶\",\n \"ö\": \"ö\",\n \"ö\": \"ö\",\n \"⌽\": \"⌽\",\n \"∥\": \"∥\",\n \"¶\": \"¶\",\n \"¶\": \"¶\",\n \"∥\": \"∥\",\n \"⫳\": \"⫳\",\n \"⫽\": \"⫽\",\n \"∂\": \"∂\",\n \"п\": \"п\",\n \"%\": \"%\",\n \".\": \".\",\n \"‰\": \"‰\",\n \"⊥\": \"⊥\",\n \"‱\": \"‱\",\n \"𝔭\": \"𝔭\",\n \"φ\": \"φ\",\n \"ϕ\": \"ϕ\",\n \"ℳ\": \"ℳ\",\n \"☎\": \"☎\",\n \"π\": \"π\",\n \"⋔\": \"⋔\",\n \"ϖ\": \"ϖ\",\n \"ℏ\": \"ℏ\",\n \"ℎ\": \"ℎ\",\n \"ℏ\": \"ℏ\",\n \"+\": \"+\",\n \"⨣\": \"⨣\",\n \"⊞\": \"⊞\",\n \"⨢\": \"⨢\",\n \"∔\": \"∔\",\n \"⨥\": \"⨥\",\n \"⩲\": \"⩲\",\n \"±\": \"±\",\n \"±\": \"±\",\n \"⨦\": \"⨦\",\n \"⨧\": \"⨧\",\n \"±\": \"±\",\n \"⨕\": \"⨕\",\n \"𝕡\": \"𝕡\",\n \"£\": \"£\",\n \"£\": \"£\",\n \"≺\": \"≺\",\n \"⪳\": \"⪳\",\n \"⪷\": \"⪷\",\n \"≼\": \"≼\",\n \"⪯\": \"⪯\",\n \"≺\": \"≺\",\n \"⪷\": \"⪷\",\n \"≼\": \"≼\",\n \"⪯\": \"⪯\",\n \"⪹\": \"⪹\",\n \"⪵\": \"⪵\",\n \"⋨\": \"⋨\",\n \"≾\": \"≾\",\n \"′\": \"′\",\n \"ℙ\": \"ℙ\",\n \"⪵\": \"⪵\",\n \"⪹\": \"⪹\",\n \"⋨\": \"⋨\",\n \"∏\": \"∏\",\n \"⌮\": \"⌮\",\n \"⌒\": \"⌒\",\n \"⌓\": \"⌓\",\n \"∝\": \"∝\",\n \"∝\": \"∝\",\n \"≾\": \"≾\",\n \"⊰\": \"⊰\",\n \"𝓅\": \"𝓅\",\n \"ψ\": \"ψ\",\n \" \": \" \",\n \"𝔮\": \"𝔮\",\n \"⨌\": \"⨌\",\n \"𝕢\": \"𝕢\",\n \"⁗\": \"⁗\",\n \"𝓆\": \"𝓆\",\n \"ℍ\": \"ℍ\",\n \"⨖\": \"⨖\",\n \"?\": \"?\",\n \"≟\": \"≟\",\n \""\": '\"',\n \""\": '\"',\n \"⇛\": \"⇛\",\n \"⇒\": \"⇒\",\n \"⤜\": \"⤜\",\n \"⤏\": \"⤏\",\n \"⥤\": \"⥤\",\n \"∽̱\": \"∽̱\",\n \"ŕ\": \"ŕ\",\n \"√\": \"√\",\n \"⦳\": \"⦳\",\n \"⟩\": \"⟩\",\n \"⦒\": \"⦒\",\n \"⦥\": \"⦥\",\n \"⟩\": \"⟩\",\n \"»\": \"»\",\n \"»\": \"»\",\n \"→\": \"→\",\n \"⥵\": \"⥵\",\n \"⇥\": \"⇥\",\n \"⤠\": \"⤠\",\n \"⤳\": \"⤳\",\n \"⤞\": \"⤞\",\n \"↪\": \"↪\",\n \"↬\": \"↬\",\n \"⥅\": \"⥅\",\n \"⥴\": \"⥴\",\n \"↣\": \"↣\",\n \"↝\": \"↝\",\n \"⤚\": \"⤚\",\n \"∶\": \"∶\",\n \"ℚ\": \"ℚ\",\n \"⤍\": \"⤍\",\n \"❳\": \"❳\",\n \"}\": \"}\",\n \"]\": \"]\",\n \"⦌\": \"⦌\",\n \"⦎\": \"⦎\",\n \"⦐\": \"⦐\",\n \"ř\": \"ř\",\n \"ŗ\": \"ŗ\",\n \"⌉\": \"⌉\",\n \"}\": \"}\",\n \"р\": \"р\",\n \"⤷\": \"⤷\",\n \"⥩\": \"⥩\",\n \"”\": \"”\",\n \"”\": \"”\",\n \"↳\": \"↳\",\n \"ℜ\": \"ℜ\",\n \"ℛ\": \"ℛ\",\n \"ℜ\": \"ℜ\",\n \"ℝ\": \"ℝ\",\n \"▭\": \"▭\",\n \"®\": \"®\",\n \"®\": \"®\",\n \"⥽\": \"⥽\",\n \"⌋\": \"⌋\",\n \"𝔯\": \"𝔯\",\n \"⇁\": \"⇁\",\n \"⇀\": \"⇀\",\n \"⥬\": \"⥬\",\n \"ρ\": \"ρ\",\n \"ϱ\": \"ϱ\",\n \"→\": \"→\",\n \"↣\": \"↣\",\n \"⇁\": \"⇁\",\n \"⇀\": \"⇀\",\n \"⇄\": \"⇄\",\n \"⇌\": \"⇌\",\n \"⇉\": \"⇉\",\n \"↝\": \"↝\",\n \"⋌\": \"⋌\",\n \"˚\": \"˚\",\n \"≓\": \"≓\",\n \"⇄\": \"⇄\",\n \"⇌\": \"⇌\",\n \"‏\": \"‏\",\n \"⎱\": \"⎱\",\n \"⎱\": \"⎱\",\n \"⫮\": \"⫮\",\n \"⟭\": \"⟭\",\n \"⇾\": \"⇾\",\n \"⟧\": \"⟧\",\n \"⦆\": \"⦆\",\n \"𝕣\": \"𝕣\",\n \"⨮\": \"⨮\",\n \"⨵\": \"⨵\",\n \")\": \")\",\n \"⦔\": \"⦔\",\n \"⨒\": \"⨒\",\n \"⇉\": \"⇉\",\n \"›\": \"›\",\n \"𝓇\": \"𝓇\",\n \"↱\": \"↱\",\n \"]\": \"]\",\n \"’\": \"’\",\n \"’\": \"’\",\n \"⋌\": \"⋌\",\n \"⋊\": \"⋊\",\n \"▹\": \"▹\",\n \"⊵\": \"⊵\",\n \"▸\": \"▸\",\n \"⧎\": \"⧎\",\n \"⥨\": \"⥨\",\n \"℞\": \"℞\",\n \"ś\": \"ś\",\n \"‚\": \"‚\",\n \"≻\": \"≻\",\n \"⪴\": \"⪴\",\n \"⪸\": \"⪸\",\n \"š\": \"š\",\n \"≽\": \"≽\",\n \"⪰\": \"⪰\",\n \"ş\": \"ş\",\n \"ŝ\": \"ŝ\",\n \"⪶\": \"⪶\",\n \"⪺\": \"⪺\",\n \"⋩\": \"⋩\",\n \"⨓\": \"⨓\",\n \"≿\": \"≿\",\n \"с\": \"с\",\n \"⋅\": \"⋅\",\n \"⊡\": \"⊡\",\n \"⩦\": \"⩦\",\n \"⇘\": \"⇘\",\n \"⤥\": \"⤥\",\n \"↘\": \"↘\",\n \"↘\": \"↘\",\n \"§\": \"§\",\n \"§\": \"§\",\n \";\": \";\",\n \"⤩\": \"⤩\",\n \"∖\": \"∖\",\n \"∖\": \"∖\",\n \"✶\": \"✶\",\n \"𝔰\": \"𝔰\",\n \"⌢\": \"⌢\",\n \"♯\": \"♯\",\n \"щ\": \"щ\",\n \"ш\": \"ш\",\n \"∣\": \"∣\",\n \"∥\": \"∥\",\n \"­\": \"­\",\n \"­\": \"­\",\n \"σ\": \"σ\",\n \"ς\": \"ς\",\n \"ς\": \"ς\",\n \"∼\": \"∼\",\n \"⩪\": \"⩪\",\n \"≃\": \"≃\",\n \"≃\": \"≃\",\n \"⪞\": \"⪞\",\n \"⪠\": \"⪠\",\n \"⪝\": \"⪝\",\n \"⪟\": \"⪟\",\n \"≆\": \"≆\",\n \"⨤\": \"⨤\",\n \"⥲\": \"⥲\",\n \"←\": \"←\",\n \"∖\": \"∖\",\n \"⨳\": \"⨳\",\n \"⧤\": \"⧤\",\n \"∣\": \"∣\",\n \"⌣\": \"⌣\",\n \"⪪\": \"⪪\",\n \"⪬\": \"⪬\",\n \"⪬︀\": \"⪬︀\",\n \"ь\": \"ь\",\n \"/\": \"/\",\n \"⧄\": \"⧄\",\n \"⌿\": \"⌿\",\n \"𝕤\": \"𝕤\",\n \"♠\": \"♠\",\n \"♠\": \"♠\",\n \"∥\": \"∥\",\n \"⊓\": \"⊓\",\n \"⊓︀\": \"⊓︀\",\n \"⊔\": \"⊔\",\n \"⊔︀\": \"⊔︀\",\n \"⊏\": \"⊏\",\n \"⊑\": \"⊑\",\n \"⊏\": \"⊏\",\n \"⊑\": \"⊑\",\n \"⊐\": \"⊐\",\n \"⊒\": \"⊒\",\n \"⊐\": \"⊐\",\n \"⊒\": \"⊒\",\n \"□\": \"□\",\n \"□\": \"□\",\n \"▪\": \"▪\",\n \"▪\": \"▪\",\n \"→\": \"→\",\n \"𝓈\": \"𝓈\",\n \"∖\": \"∖\",\n \"⌣\": \"⌣\",\n \"⋆\": \"⋆\",\n \"☆\": \"☆\",\n \"★\": \"★\",\n \"ϵ\": \"ϵ\",\n \"ϕ\": \"ϕ\",\n \"¯\": \"¯\",\n \"⊂\": \"⊂\",\n \"⫅\": \"⫅\",\n \"⪽\": \"⪽\",\n \"⊆\": \"⊆\",\n \"⫃\": \"⫃\",\n \"⫁\": \"⫁\",\n \"⫋\": \"⫋\",\n \"⊊\": \"⊊\",\n \"⪿\": \"⪿\",\n \"⥹\": \"⥹\",\n \"⊂\": \"⊂\",\n \"⊆\": \"⊆\",\n \"⫅\": \"⫅\",\n \"⊊\": \"⊊\",\n \"⫋\": \"⫋\",\n \"⫇\": \"⫇\",\n \"⫕\": \"⫕\",\n \"⫓\": \"⫓\",\n \"≻\": \"≻\",\n \"⪸\": \"⪸\",\n \"≽\": \"≽\",\n \"⪰\": \"⪰\",\n \"⪺\": \"⪺\",\n \"⪶\": \"⪶\",\n \"⋩\": \"⋩\",\n \"≿\": \"≿\",\n \"∑\": \"∑\",\n \"♪\": \"♪\",\n \"¹\": \"¹\",\n \"¹\": \"¹\",\n \"²\": \"²\",\n \"²\": \"²\",\n \"³\": \"³\",\n \"³\": \"³\",\n \"⊃\": \"⊃\",\n \"⫆\": \"⫆\",\n \"⪾\": \"⪾\",\n \"⫘\": \"⫘\",\n \"⊇\": \"⊇\",\n \"⫄\": \"⫄\",\n \"⟉\": \"⟉\",\n \"⫗\": \"⫗\",\n \"⥻\": \"⥻\",\n \"⫂\": \"⫂\",\n \"⫌\": \"⫌\",\n \"⊋\": \"⊋\",\n \"⫀\": \"⫀\",\n \"⊃\": \"⊃\",\n \"⊇\": \"⊇\",\n \"⫆\": \"⫆\",\n \"⊋\": \"⊋\",\n \"⫌\": \"⫌\",\n \"⫈\": \"⫈\",\n \"⫔\": \"⫔\",\n \"⫖\": \"⫖\",\n \"⇙\": \"⇙\",\n \"⤦\": \"⤦\",\n \"↙\": \"↙\",\n \"↙\": \"↙\",\n \"⤪\": \"⤪\",\n \"ß\": \"ß\",\n \"ß\": \"ß\",\n \"⌖\": \"⌖\",\n \"τ\": \"τ\",\n \"⎴\": \"⎴\",\n \"ť\": \"ť\",\n \"ţ\": \"ţ\",\n \"т\": \"т\",\n \"⃛\": \"⃛\",\n \"⌕\": \"⌕\",\n \"𝔱\": \"𝔱\",\n \"∴\": \"∴\",\n \"∴\": \"∴\",\n \"θ\": \"θ\",\n \"ϑ\": \"ϑ\",\n \"ϑ\": \"ϑ\",\n \"≈\": \"≈\",\n \"∼\": \"∼\",\n \" \": \" \",\n \"≈\": \"≈\",\n \"∼\": \"∼\",\n \"þ\": \"þ\",\n \"þ\": \"þ\",\n \"˜\": \"˜\",\n \"×\": \"×\",\n \"×\": \"×\",\n \"⊠\": \"⊠\",\n \"⨱\": \"⨱\",\n \"⨰\": \"⨰\",\n \"∭\": \"∭\",\n \"⤨\": \"⤨\",\n \"⊤\": \"⊤\",\n \"⌶\": \"⌶\",\n \"⫱\": \"⫱\",\n \"𝕥\": \"𝕥\",\n \"⫚\": \"⫚\",\n \"⤩\": \"⤩\",\n \"‴\": \"‴\",\n \"™\": \"™\",\n \"▵\": \"▵\",\n \"▿\": \"▿\",\n \"◃\": \"◃\",\n \"⊴\": \"⊴\",\n \"≜\": \"≜\",\n \"▹\": \"▹\",\n \"⊵\": \"⊵\",\n \"◬\": \"◬\",\n \"≜\": \"≜\",\n \"⨺\": \"⨺\",\n \"⨹\": \"⨹\",\n \"⧍\": \"⧍\",\n \"⨻\": \"⨻\",\n \"⏢\": \"⏢\",\n \"𝓉\": \"𝓉\",\n \"ц\": \"ц\",\n \"ћ\": \"ћ\",\n \"ŧ\": \"ŧ\",\n \"≬\": \"≬\",\n \"↞\": \"↞\",\n \"↠\": \"↠\",\n \"⇑\": \"⇑\",\n \"⥣\": \"⥣\",\n \"ú\": \"ú\",\n \"ú\": \"ú\",\n \"↑\": \"↑\",\n \"ў\": \"ў\",\n \"ŭ\": \"ŭ\",\n \"û\": \"û\",\n \"û\": \"û\",\n \"у\": \"у\",\n \"⇅\": \"⇅\",\n \"ű\": \"ű\",\n \"⥮\": \"⥮\",\n \"⥾\": \"⥾\",\n \"𝔲\": \"𝔲\",\n \"ù\": \"ù\",\n \"ù\": \"ù\",\n \"↿\": \"↿\",\n \"↾\": \"↾\",\n \"▀\": \"▀\",\n \"⌜\": \"⌜\",\n \"⌜\": \"⌜\",\n \"⌏\": \"⌏\",\n \"◸\": \"◸\",\n \"ū\": \"ū\",\n \"¨\": \"¨\",\n \"¨\": \"¨\",\n \"ų\": \"ų\",\n \"𝕦\": \"𝕦\",\n \"↑\": \"↑\",\n \"↕\": \"↕\",\n \"↿\": \"↿\",\n \"↾\": \"↾\",\n \"⊎\": \"⊎\",\n \"υ\": \"υ\",\n \"ϒ\": \"ϒ\",\n \"υ\": \"υ\",\n \"⇈\": \"⇈\",\n \"⌝\": \"⌝\",\n \"⌝\": \"⌝\",\n \"⌎\": \"⌎\",\n \"ů\": \"ů\",\n \"◹\": \"◹\",\n \"𝓊\": \"𝓊\",\n \"⋰\": \"⋰\",\n \"ũ\": \"ũ\",\n \"▵\": \"▵\",\n \"▴\": \"▴\",\n \"⇈\": \"⇈\",\n \"ü\": \"ü\",\n \"ü\": \"ü\",\n \"⦧\": \"⦧\",\n \"⇕\": \"⇕\",\n \"⫨\": \"⫨\",\n \"⫩\": \"⫩\",\n \"⊨\": \"⊨\",\n \"⦜\": \"⦜\",\n \"ϵ\": \"ϵ\",\n \"ϰ\": \"ϰ\",\n \"∅\": \"∅\",\n \"ϕ\": \"ϕ\",\n \"ϖ\": \"ϖ\",\n \"∝\": \"∝\",\n \"↕\": \"↕\",\n \"ϱ\": \"ϱ\",\n \"ς\": \"ς\",\n \"⊊︀\": \"⊊︀\",\n \"⫋︀\": \"⫋︀\",\n \"⊋︀\": \"⊋︀\",\n \"⫌︀\": \"⫌︀\",\n \"ϑ\": \"ϑ\",\n \"⊲\": \"⊲\",\n \"⊳\": \"⊳\",\n \"в\": \"в\",\n \"⊢\": \"⊢\",\n \"∨\": \"∨\",\n \"⊻\": \"⊻\",\n \"≚\": \"≚\",\n \"⋮\": \"⋮\",\n \"|\": \"|\",\n \"|\": \"|\",\n \"𝔳\": \"𝔳\",\n \"⊲\": \"⊲\",\n \"⊂⃒\": \"⊂⃒\",\n \"⊃⃒\": \"⊃⃒\",\n \"𝕧\": \"𝕧\",\n \"∝\": \"∝\",\n \"⊳\": \"⊳\",\n \"𝓋\": \"𝓋\",\n \"⫋︀\": \"⫋︀\",\n \"⊊︀\": \"⊊︀\",\n \"⫌︀\": \"⫌︀\",\n \"⊋︀\": \"⊋︀\",\n \"⦚\": \"⦚\",\n \"ŵ\": \"ŵ\",\n \"⩟\": \"⩟\",\n \"∧\": \"∧\",\n \"≙\": \"≙\",\n \"℘\": \"℘\",\n \"𝔴\": \"𝔴\",\n \"𝕨\": \"𝕨\",\n \"℘\": \"℘\",\n \"≀\": \"≀\",\n \"≀\": \"≀\",\n \"𝓌\": \"𝓌\",\n \"⋂\": \"⋂\",\n \"◯\": \"◯\",\n \"⋃\": \"⋃\",\n \"▽\": \"▽\",\n \"𝔵\": \"𝔵\",\n \"⟺\": \"⟺\",\n \"⟷\": \"⟷\",\n \"ξ\": \"ξ\",\n \"⟸\": \"⟸\",\n \"⟵\": \"⟵\",\n \"⟼\": \"⟼\",\n \"⋻\": \"⋻\",\n \"⨀\": \"⨀\",\n \"𝕩\": \"𝕩\",\n \"⨁\": \"⨁\",\n \"⨂\": \"⨂\",\n \"⟹\": \"⟹\",\n \"⟶\": \"⟶\",\n \"𝓍\": \"𝓍\",\n \"⨆\": \"⨆\",\n \"⨄\": \"⨄\",\n \"△\": \"△\",\n \"⋁\": \"⋁\",\n \"⋀\": \"⋀\",\n \"ý\": \"ý\",\n \"ý\": \"ý\",\n \"я\": \"я\",\n \"ŷ\": \"ŷ\",\n \"ы\": \"ы\",\n \"¥\": \"¥\",\n \"¥\": \"¥\",\n \"𝔶\": \"𝔶\",\n \"ї\": \"ї\",\n \"𝕪\": \"𝕪\",\n \"𝓎\": \"𝓎\",\n \"ю\": \"ю\",\n \"ÿ\": \"ÿ\",\n \"ÿ\": \"ÿ\",\n \"ź\": \"ź\",\n \"ž\": \"ž\",\n \"з\": \"з\",\n \"ż\": \"ż\",\n \"ℨ\": \"ℨ\",\n \"ζ\": \"ζ\",\n \"𝔷\": \"𝔷\",\n \"ж\": \"ж\",\n \"⇝\": \"⇝\",\n \"𝕫\": \"𝕫\",\n \"𝓏\": \"𝓏\",\n \"‍\": \"‍\",\n \"‌\": \"‌\"\n },\n characters: {\n \"Æ\": \"Æ\",\n \"&\": \"&\",\n \"Á\": \"Á\",\n \"Ă\": \"Ă\",\n \"Â\": \"Â\",\n \"А\": \"А\",\n \"𝔄\": \"𝔄\",\n \"À\": \"À\",\n \"Α\": \"Α\",\n \"Ā\": \"Ā\",\n \"⩓\": \"⩓\",\n \"Ą\": \"Ą\",\n \"𝔸\": \"𝔸\",\n \"⁡\": \"⁡\",\n \"Å\": \"Å\",\n \"𝒜\": \"𝒜\",\n \"≔\": \"≔\",\n \"Ã\": \"Ã\",\n \"Ä\": \"Ä\",\n \"∖\": \"∖\",\n \"⫧\": \"⫧\",\n \"⌆\": \"⌆\",\n \"Б\": \"Б\",\n \"∵\": \"∵\",\n \"ℬ\": \"ℬ\",\n \"Β\": \"Β\",\n \"𝔅\": \"𝔅\",\n \"𝔹\": \"𝔹\",\n \"˘\": \"˘\",\n \"≎\": \"≎\",\n \"Ч\": \"Ч\",\n \"©\": \"©\",\n \"Ć\": \"Ć\",\n \"⋒\": \"⋒\",\n \"ⅅ\": \"ⅅ\",\n \"ℭ\": \"ℭ\",\n \"Č\": \"Č\",\n \"Ç\": \"Ç\",\n \"Ĉ\": \"Ĉ\",\n \"∰\": \"∰\",\n \"Ċ\": \"Ċ\",\n \"¸\": \"¸\",\n \"·\": \"·\",\n \"Χ\": \"Χ\",\n \"⊙\": \"⊙\",\n \"⊖\": \"⊖\",\n \"⊕\": \"⊕\",\n \"⊗\": \"⊗\",\n \"∲\": \"∲\",\n \"”\": \"”\",\n \"’\": \"’\",\n \"∷\": \"∷\",\n \"⩴\": \"⩴\",\n \"≡\": \"≡\",\n \"∯\": \"∯\",\n \"∮\": \"∮\",\n \"ℂ\": \"ℂ\",\n \"∐\": \"∐\",\n \"∳\": \"∳\",\n \"⨯\": \"⨯\",\n \"𝒞\": \"𝒞\",\n \"⋓\": \"⋓\",\n \"≍\": \"≍\",\n \"⤑\": \"⤑\",\n \"Ђ\": \"Ђ\",\n \"Ѕ\": \"Ѕ\",\n \"Џ\": \"Џ\",\n \"‡\": \"‡\",\n \"↡\": \"↡\",\n \"⫤\": \"⫤\",\n \"Ď\": \"Ď\",\n \"Д\": \"Д\",\n \"∇\": \"∇\",\n \"Δ\": \"Δ\",\n \"𝔇\": \"𝔇\",\n \"´\": \"´\",\n \"˙\": \"˙\",\n \"˝\": \"˝\",\n \"`\": \"`\",\n \"˜\": \"˜\",\n \"⋄\": \"⋄\",\n \"ⅆ\": \"ⅆ\",\n \"𝔻\": \"𝔻\",\n \"¨\": \"¨\",\n \"⃜\": \"⃜\",\n \"≐\": \"≐\",\n \"⇓\": \"⇓\",\n \"⇐\": \"⇐\",\n \"⇔\": \"⇔\",\n \"⟸\": \"⟸\",\n \"⟺\": \"⟺\",\n \"⟹\": \"⟹\",\n \"⇒\": \"⇒\",\n \"⊨\": \"⊨\",\n \"⇑\": \"⇑\",\n \"⇕\": \"⇕\",\n \"∥\": \"∥\",\n \"↓\": \"↓\",\n \"⤓\": \"⤓\",\n \"⇵\": \"⇵\",\n \"̑\": \"̑\",\n \"⥐\": \"⥐\",\n \"⥞\": \"⥞\",\n \"↽\": \"↽\",\n \"⥖\": \"⥖\",\n \"⥟\": \"⥟\",\n \"⇁\": \"⇁\",\n \"⥗\": \"⥗\",\n \"⊤\": \"⊤\",\n \"↧\": \"↧\",\n \"𝒟\": \"𝒟\",\n \"Đ\": \"Đ\",\n \"Ŋ\": \"Ŋ\",\n \"Ð\": \"Ð\",\n \"É\": \"É\",\n \"Ě\": \"Ě\",\n \"Ê\": \"Ê\",\n \"Э\": \"Э\",\n \"Ė\": \"Ė\",\n \"𝔈\": \"𝔈\",\n \"È\": \"È\",\n \"∈\": \"∈\",\n \"Ē\": \"Ē\",\n \"◻\": \"◻\",\n \"▫\": \"▫\",\n \"Ę\": \"Ę\",\n \"𝔼\": \"𝔼\",\n \"Ε\": \"Ε\",\n \"⩵\": \"⩵\",\n \"≂\": \"≂\",\n \"⇌\": \"⇌\",\n \"ℰ\": \"ℰ\",\n \"⩳\": \"⩳\",\n \"Η\": \"Η\",\n \"Ë\": \"Ë\",\n \"∃\": \"∃\",\n \"ⅇ\": \"ⅇ\",\n \"Ф\": \"Ф\",\n \"𝔉\": \"𝔉\",\n \"◼\": \"◼\",\n \"▪\": \"▪\",\n \"𝔽\": \"𝔽\",\n \"∀\": \"∀\",\n \"ℱ\": \"ℱ\",\n \"Ѓ\": \"Ѓ\",\n \">\": \">\",\n \"Γ\": \"Γ\",\n \"Ϝ\": \"Ϝ\",\n \"Ğ\": \"Ğ\",\n \"Ģ\": \"Ģ\",\n \"Ĝ\": \"Ĝ\",\n \"Г\": \"Г\",\n \"Ġ\": \"Ġ\",\n \"𝔊\": \"𝔊\",\n \"⋙\": \"⋙\",\n \"𝔾\": \"𝔾\",\n \"≥\": \"≥\",\n \"⋛\": \"⋛\",\n \"≧\": \"≧\",\n \"⪢\": \"⪢\",\n \"≷\": \"≷\",\n \"⩾\": \"⩾\",\n \"≳\": \"≳\",\n \"𝒢\": \"𝒢\",\n \"≫\": \"≫\",\n \"Ъ\": \"Ъ\",\n \"ˇ\": \"ˇ\",\n \"^\": \"^\",\n \"Ĥ\": \"Ĥ\",\n \"ℌ\": \"ℌ\",\n \"ℋ\": \"ℋ\",\n \"ℍ\": \"ℍ\",\n \"─\": \"─\",\n \"Ħ\": \"Ħ\",\n \"≏\": \"≏\",\n \"Е\": \"Е\",\n \"IJ\": \"IJ\",\n \"Ё\": \"Ё\",\n \"Í\": \"Í\",\n \"Î\": \"Î\",\n \"И\": \"И\",\n \"İ\": \"İ\",\n \"ℑ\": \"ℑ\",\n \"Ì\": \"Ì\",\n \"Ī\": \"Ī\",\n \"ⅈ\": \"ⅈ\",\n \"∬\": \"∬\",\n \"∫\": \"∫\",\n \"⋂\": \"⋂\",\n \"⁣\": \"⁣\",\n \"⁢\": \"⁢\",\n \"Į\": \"Į\",\n \"𝕀\": \"𝕀\",\n \"Ι\": \"Ι\",\n \"ℐ\": \"ℐ\",\n \"Ĩ\": \"Ĩ\",\n \"І\": \"І\",\n \"Ï\": \"Ï\",\n \"Ĵ\": \"Ĵ\",\n \"Й\": \"Й\",\n \"𝔍\": \"𝔍\",\n \"𝕁\": \"𝕁\",\n \"𝒥\": \"𝒥\",\n \"Ј\": \"Ј\",\n \"Є\": \"Є\",\n \"Х\": \"Х\",\n \"Ќ\": \"Ќ\",\n \"Κ\": \"Κ\",\n \"Ķ\": \"Ķ\",\n \"К\": \"К\",\n \"𝔎\": \"𝔎\",\n \"𝕂\": \"𝕂\",\n \"𝒦\": \"𝒦\",\n \"Љ\": \"Љ\",\n \"<\": \"<\",\n \"Ĺ\": \"Ĺ\",\n \"Λ\": \"Λ\",\n \"⟪\": \"⟪\",\n \"ℒ\": \"ℒ\",\n \"↞\": \"↞\",\n \"Ľ\": \"Ľ\",\n \"Ļ\": \"Ļ\",\n \"Л\": \"Л\",\n \"⟨\": \"⟨\",\n \"←\": \"←\",\n \"⇤\": \"⇤\",\n \"⇆\": \"⇆\",\n \"⌈\": \"⌈\",\n \"⟦\": \"⟦\",\n \"⥡\": \"⥡\",\n \"⇃\": \"⇃\",\n \"⥙\": \"⥙\",\n \"⌊\": \"⌊\",\n \"↔\": \"↔\",\n \"⥎\": \"⥎\",\n \"⊣\": \"⊣\",\n \"↤\": \"↤\",\n \"⥚\": \"⥚\",\n \"⊲\": \"⊲\",\n \"⧏\": \"⧏\",\n \"⊴\": \"⊴\",\n \"⥑\": \"⥑\",\n \"⥠\": \"⥠\",\n \"↿\": \"↿\",\n \"⥘\": \"⥘\",\n \"↼\": \"↼\",\n \"⥒\": \"⥒\",\n \"⋚\": \"⋚\",\n \"≦\": \"≦\",\n \"≶\": \"≶\",\n \"⪡\": \"⪡\",\n \"⩽\": \"⩽\",\n \"≲\": \"≲\",\n \"𝔏\": \"𝔏\",\n \"⋘\": \"⋘\",\n \"⇚\": \"⇚\",\n \"Ŀ\": \"Ŀ\",\n \"⟵\": \"⟵\",\n \"⟷\": \"⟷\",\n \"⟶\": \"⟶\",\n \"𝕃\": \"𝕃\",\n \"↙\": \"↙\",\n \"↘\": \"↘\",\n \"↰\": \"↰\",\n \"Ł\": \"Ł\",\n \"≪\": \"≪\",\n \"⤅\": \"⤅\",\n \"М\": \"М\",\n \" \": \" \",\n \"ℳ\": \"ℳ\",\n \"𝔐\": \"𝔐\",\n \"∓\": \"∓\",\n \"𝕄\": \"𝕄\",\n \"Μ\": \"Μ\",\n \"Њ\": \"Њ\",\n \"Ń\": \"Ń\",\n \"Ň\": \"Ň\",\n \"Ņ\": \"Ņ\",\n \"Н\": \"Н\",\n \"​\": \"​\",\n \"\\n\": \" \",\n \"𝔑\": \"𝔑\",\n \"⁠\": \"⁠\",\n \" \": \" \",\n \"ℕ\": \"ℕ\",\n \"⫬\": \"⫬\",\n \"≢\": \"≢\",\n \"≭\": \"≭\",\n \"∦\": \"∦\",\n \"∉\": \"∉\",\n \"≠\": \"≠\",\n \"≂̸\": \"≂̸\",\n \"∄\": \"∄\",\n \"≯\": \"≯\",\n \"≱\": \"≱\",\n \"≧̸\": \"≧̸\",\n \"≫̸\": \"≫̸\",\n \"≹\": \"≹\",\n \"⩾̸\": \"⩾̸\",\n \"≵\": \"≵\",\n \"≎̸\": \"≎̸\",\n \"≏̸\": \"≏̸\",\n \"⋪\": \"⋪\",\n \"⧏̸\": \"⧏̸\",\n \"⋬\": \"⋬\",\n \"≮\": \"≮\",\n \"≰\": \"≰\",\n \"≸\": \"≸\",\n \"≪̸\": \"≪̸\",\n \"⩽̸\": \"⩽̸\",\n \"≴\": \"≴\",\n \"⪢̸\": \"⪢̸\",\n \"⪡̸\": \"⪡̸\",\n \"⊀\": \"⊀\",\n \"⪯̸\": \"⪯̸\",\n \"⋠\": \"⋠\",\n \"∌\": \"∌\",\n \"⋫\": \"⋫\",\n \"⧐̸\": \"⧐̸\",\n \"⋭\": \"⋭\",\n \"⊏̸\": \"⊏̸\",\n \"⋢\": \"⋢\",\n \"⊐̸\": \"⊐̸\",\n \"⋣\": \"⋣\",\n \"⊂⃒\": \"⊂⃒\",\n \"⊈\": \"⊈\",\n \"⊁\": \"⊁\",\n \"⪰̸\": \"⪰̸\",\n \"⋡\": \"⋡\",\n \"≿̸\": \"≿̸\",\n \"⊃⃒\": \"⊃⃒\",\n \"⊉\": \"⊉\",\n \"≁\": \"≁\",\n \"≄\": \"≄\",\n \"≇\": \"≇\",\n \"≉\": \"≉\",\n \"∤\": \"∤\",\n \"𝒩\": \"𝒩\",\n \"Ñ\": \"Ñ\",\n \"Ν\": \"Ν\",\n \"Œ\": \"Œ\",\n \"Ó\": \"Ó\",\n \"Ô\": \"Ô\",\n \"О\": \"О\",\n \"Ő\": \"Ő\",\n \"𝔒\": \"𝔒\",\n \"Ò\": \"Ò\",\n \"Ō\": \"Ō\",\n \"Ω\": \"Ω\",\n \"Ο\": \"Ο\",\n \"𝕆\": \"𝕆\",\n \"“\": \"“\",\n \"‘\": \"‘\",\n \"⩔\": \"⩔\",\n \"𝒪\": \"𝒪\",\n \"Ø\": \"Ø\",\n \"Õ\": \"Õ\",\n \"⨷\": \"⨷\",\n \"Ö\": \"Ö\",\n \"‾\": \"‾\",\n \"⏞\": \"⏞\",\n \"⎴\": \"⎴\",\n \"⏜\": \"⏜\",\n \"∂\": \"∂\",\n \"П\": \"П\",\n \"𝔓\": \"𝔓\",\n \"Φ\": \"Φ\",\n \"Π\": \"Π\",\n \"±\": \"±\",\n \"ℙ\": \"ℙ\",\n \"⪻\": \"⪻\",\n \"≺\": \"≺\",\n \"⪯\": \"⪯\",\n \"≼\": \"≼\",\n \"≾\": \"≾\",\n \"″\": \"″\",\n \"∏\": \"∏\",\n \"∝\": \"∝\",\n \"𝒫\": \"𝒫\",\n \"Ψ\": \"Ψ\",\n '\"': \""\",\n \"𝔔\": \"𝔔\",\n \"ℚ\": \"ℚ\",\n \"𝒬\": \"𝒬\",\n \"⤐\": \"⤐\",\n \"®\": \"®\",\n \"Ŕ\": \"Ŕ\",\n \"⟫\": \"⟫\",\n \"↠\": \"↠\",\n \"⤖\": \"⤖\",\n \"Ř\": \"Ř\",\n \"Ŗ\": \"Ŗ\",\n \"Р\": \"Р\",\n \"ℜ\": \"ℜ\",\n \"∋\": \"∋\",\n \"⇋\": \"⇋\",\n \"⥯\": \"⥯\",\n \"Ρ\": \"Ρ\",\n \"⟩\": \"⟩\",\n \"→\": \"→\",\n \"⇥\": \"⇥\",\n \"⇄\": \"⇄\",\n \"⌉\": \"⌉\",\n \"⟧\": \"⟧\",\n \"⥝\": \"⥝\",\n \"⇂\": \"⇂\",\n \"⥕\": \"⥕\",\n \"⌋\": \"⌋\",\n \"⊢\": \"⊢\",\n \"↦\": \"↦\",\n \"⥛\": \"⥛\",\n \"⊳\": \"⊳\",\n \"⧐\": \"⧐\",\n \"⊵\": \"⊵\",\n \"⥏\": \"⥏\",\n \"⥜\": \"⥜\",\n \"↾\": \"↾\",\n \"⥔\": \"⥔\",\n \"⇀\": \"⇀\",\n \"⥓\": \"⥓\",\n \"ℝ\": \"ℝ\",\n \"⥰\": \"⥰\",\n \"⇛\": \"⇛\",\n \"ℛ\": \"ℛ\",\n \"↱\": \"↱\",\n \"⧴\": \"⧴\",\n \"Щ\": \"Щ\",\n \"Ш\": \"Ш\",\n \"Ь\": \"Ь\",\n \"Ś\": \"Ś\",\n \"⪼\": \"⪼\",\n \"Š\": \"Š\",\n \"Ş\": \"Ş\",\n \"Ŝ\": \"Ŝ\",\n \"С\": \"С\",\n \"𝔖\": \"𝔖\",\n \"↑\": \"↑\",\n \"Σ\": \"Σ\",\n \"∘\": \"∘\",\n \"𝕊\": \"𝕊\",\n \"√\": \"√\",\n \"□\": \"□\",\n \"⊓\": \"⊓\",\n \"⊏\": \"⊏\",\n \"⊑\": \"⊑\",\n \"⊐\": \"⊐\",\n \"⊒\": \"⊒\",\n \"⊔\": \"⊔\",\n \"𝒮\": \"𝒮\",\n \"⋆\": \"⋆\",\n \"⋐\": \"⋐\",\n \"⊆\": \"⊆\",\n \"≻\": \"≻\",\n \"⪰\": \"⪰\",\n \"≽\": \"≽\",\n \"≿\": \"≿\",\n \"∑\": \"∑\",\n \"⋑\": \"⋑\",\n \"⊃\": \"⊃\",\n \"⊇\": \"⊇\",\n \"Þ\": \"Þ\",\n \"™\": \"™\",\n \"Ћ\": \"Ћ\",\n \"Ц\": \"Ц\",\n \"\\t\": \" \",\n \"Τ\": \"Τ\",\n \"Ť\": \"Ť\",\n \"Ţ\": \"Ţ\",\n \"Т\": \"Т\",\n \"𝔗\": \"𝔗\",\n \"∴\": \"∴\",\n \"Θ\": \"Θ\",\n \"  \": \"  \",\n \" \": \" \",\n \"∼\": \"∼\",\n \"≃\": \"≃\",\n \"≅\": \"≅\",\n \"≈\": \"≈\",\n \"𝕋\": \"𝕋\",\n \"⃛\": \"⃛\",\n \"𝒯\": \"𝒯\",\n \"Ŧ\": \"Ŧ\",\n \"Ú\": \"Ú\",\n \"↟\": \"↟\",\n \"⥉\": \"⥉\",\n \"Ў\": \"Ў\",\n \"Ŭ\": \"Ŭ\",\n \"Û\": \"Û\",\n \"У\": \"У\",\n \"Ű\": \"Ű\",\n \"𝔘\": \"𝔘\",\n \"Ù\": \"Ù\",\n \"Ū\": \"Ū\",\n _: \"_\",\n \"⏟\": \"⏟\",\n \"⎵\": \"⎵\",\n \"⏝\": \"⏝\",\n \"⋃\": \"⋃\",\n \"⊎\": \"⊎\",\n \"Ų\": \"Ų\",\n \"𝕌\": \"𝕌\",\n \"⤒\": \"⤒\",\n \"⇅\": \"⇅\",\n \"↕\": \"↕\",\n \"⥮\": \"⥮\",\n \"⊥\": \"⊥\",\n \"↥\": \"↥\",\n \"↖\": \"↖\",\n \"↗\": \"↗\",\n \"ϒ\": \"ϒ\",\n \"Υ\": \"Υ\",\n \"Ů\": \"Ů\",\n \"𝒰\": \"𝒰\",\n \"Ũ\": \"Ũ\",\n \"Ü\": \"Ü\",\n \"⊫\": \"⊫\",\n \"⫫\": \"⫫\",\n \"В\": \"В\",\n \"⊩\": \"⊩\",\n \"⫦\": \"⫦\",\n \"⋁\": \"⋁\",\n \"‖\": \"‖\",\n \"∣\": \"∣\",\n \"|\": \"|\",\n \"❘\": \"❘\",\n \"≀\": \"≀\",\n \" \": \" \",\n \"𝔙\": \"𝔙\",\n \"𝕍\": \"𝕍\",\n \"𝒱\": \"𝒱\",\n \"⊪\": \"⊪\",\n \"Ŵ\": \"Ŵ\",\n \"⋀\": \"⋀\",\n \"𝔚\": \"𝔚\",\n \"𝕎\": \"𝕎\",\n \"𝒲\": \"𝒲\",\n \"𝔛\": \"𝔛\",\n \"Ξ\": \"Ξ\",\n \"𝕏\": \"𝕏\",\n \"𝒳\": \"𝒳\",\n \"Я\": \"Я\",\n \"Ї\": \"Ї\",\n \"Ю\": \"Ю\",\n \"Ý\": \"Ý\",\n \"Ŷ\": \"Ŷ\",\n \"Ы\": \"Ы\",\n \"𝔜\": \"𝔜\",\n \"𝕐\": \"𝕐\",\n \"𝒴\": \"𝒴\",\n \"Ÿ\": \"Ÿ\",\n \"Ж\": \"Ж\",\n \"Ź\": \"Ź\",\n \"Ž\": \"Ž\",\n \"З\": \"З\",\n \"Ż\": \"Ż\",\n \"Ζ\": \"Ζ\",\n \"ℨ\": \"ℨ\",\n \"ℤ\": \"ℤ\",\n \"𝒵\": \"𝒵\",\n \"á\": \"á\",\n \"ă\": \"ă\",\n \"∾\": \"∾\",\n \"∾̳\": \"∾̳\",\n \"∿\": \"∿\",\n \"â\": \"â\",\n \"а\": \"а\",\n \"æ\": \"æ\",\n \"𝔞\": \"𝔞\",\n \"à\": \"à\",\n \"ℵ\": \"ℵ\",\n \"α\": \"α\",\n \"ā\": \"ā\",\n \"⨿\": \"⨿\",\n \"∧\": \"∧\",\n \"⩕\": \"⩕\",\n \"⩜\": \"⩜\",\n \"⩘\": \"⩘\",\n \"⩚\": \"⩚\",\n \"∠\": \"∠\",\n \"⦤\": \"⦤\",\n \"∡\": \"∡\",\n \"⦨\": \"⦨\",\n \"⦩\": \"⦩\",\n \"⦪\": \"⦪\",\n \"⦫\": \"⦫\",\n \"⦬\": \"⦬\",\n \"⦭\": \"⦭\",\n \"⦮\": \"⦮\",\n \"⦯\": \"⦯\",\n \"∟\": \"∟\",\n \"⊾\": \"⊾\",\n \"⦝\": \"⦝\",\n \"∢\": \"∢\",\n \"⍼\": \"⍼\",\n \"ą\": \"ą\",\n \"𝕒\": \"𝕒\",\n \"⩰\": \"⩰\",\n \"⩯\": \"⩯\",\n \"≊\": \"≊\",\n \"≋\": \"≋\",\n \"'\": \"'\",\n \"å\": \"å\",\n \"𝒶\": \"𝒶\",\n \"*\": \"*\",\n \"ã\": \"ã\",\n \"ä\": \"ä\",\n \"⨑\": \"⨑\",\n \"⫭\": \"⫭\",\n \"≌\": \"≌\",\n \"϶\": \"϶\",\n \"‵\": \"‵\",\n \"∽\": \"∽\",\n \"⋍\": \"⋍\",\n \"⊽\": \"⊽\",\n \"⌅\": \"⌅\",\n \"⎶\": \"⎶\",\n \"б\": \"б\",\n \"„\": \"„\",\n \"⦰\": \"⦰\",\n \"β\": \"β\",\n \"ℶ\": \"ℶ\",\n \"≬\": \"≬\",\n \"𝔟\": \"𝔟\",\n \"◯\": \"◯\",\n \"⨀\": \"⨀\",\n \"⨁\": \"⨁\",\n \"⨂\": \"⨂\",\n \"⨆\": \"⨆\",\n \"★\": \"★\",\n \"▽\": \"▽\",\n \"△\": \"△\",\n \"⨄\": \"⨄\",\n \"⤍\": \"⤍\",\n \"⧫\": \"⧫\",\n \"▴\": \"▴\",\n \"▾\": \"▾\",\n \"◂\": \"◂\",\n \"▸\": \"▸\",\n \"␣\": \"␣\",\n \"▒\": \"▒\",\n \"░\": \"░\",\n \"▓\": \"▓\",\n \"█\": \"█\",\n \"=⃥\": \"=⃥\",\n \"≡⃥\": \"≡⃥\",\n \"⌐\": \"⌐\",\n \"𝕓\": \"𝕓\",\n \"⋈\": \"⋈\",\n \"╗\": \"╗\",\n \"╔\": \"╔\",\n \"╖\": \"╖\",\n \"╓\": \"╓\",\n \"═\": \"═\",\n \"╦\": \"╦\",\n \"╩\": \"╩\",\n \"╤\": \"╤\",\n \"╧\": \"╧\",\n \"╝\": \"╝\",\n \"╚\": \"╚\",\n \"╜\": \"╜\",\n \"╙\": \"╙\",\n \"║\": \"║\",\n \"╬\": \"╬\",\n \"╣\": \"╣\",\n \"╠\": \"╠\",\n \"╫\": \"╫\",\n \"╢\": \"╢\",\n \"╟\": \"╟\",\n \"⧉\": \"⧉\",\n \"╕\": \"╕\",\n \"╒\": \"╒\",\n \"┐\": \"┐\",\n \"┌\": \"┌\",\n \"╥\": \"╥\",\n \"╨\": \"╨\",\n \"┬\": \"┬\",\n \"┴\": \"┴\",\n \"⊟\": \"⊟\",\n \"⊞\": \"⊞\",\n \"⊠\": \"⊠\",\n \"╛\": \"╛\",\n \"╘\": \"╘\",\n \"┘\": \"┘\",\n \"└\": \"└\",\n \"│\": \"│\",\n \"╪\": \"╪\",\n \"╡\": \"╡\",\n \"╞\": \"╞\",\n \"┼\": \"┼\",\n \"┤\": \"┤\",\n \"├\": \"├\",\n \"¦\": \"¦\",\n \"𝒷\": \"𝒷\",\n \"⁏\": \"⁏\",\n \"\\\\\": \"\\",\n \"⧅\": \"⧅\",\n \"⟈\": \"⟈\",\n \"•\": \"•\",\n \"⪮\": \"⪮\",\n \"ć\": \"ć\",\n \"∩\": \"∩\",\n \"⩄\": \"⩄\",\n \"⩉\": \"⩉\",\n \"⩋\": \"⩋\",\n \"⩇\": \"⩇\",\n \"⩀\": \"⩀\",\n \"∩︀\": \"∩︀\",\n \"⁁\": \"⁁\",\n \"⩍\": \"⩍\",\n \"č\": \"č\",\n \"ç\": \"ç\",\n \"ĉ\": \"ĉ\",\n \"⩌\": \"⩌\",\n \"⩐\": \"⩐\",\n \"ċ\": \"ċ\",\n \"⦲\": \"⦲\",\n \"¢\": \"¢\",\n \"𝔠\": \"𝔠\",\n \"ч\": \"ч\",\n \"✓\": \"✓\",\n \"χ\": \"χ\",\n \"○\": \"○\",\n \"⧃\": \"⧃\",\n \"ˆ\": \"ˆ\",\n \"≗\": \"≗\",\n \"↺\": \"↺\",\n \"↻\": \"↻\",\n \"Ⓢ\": \"Ⓢ\",\n \"⊛\": \"⊛\",\n \"⊚\": \"⊚\",\n \"⊝\": \"⊝\",\n \"⨐\": \"⨐\",\n \"⫯\": \"⫯\",\n \"⧂\": \"⧂\",\n \"♣\": \"♣\",\n \":\": \":\",\n \",\": \",\",\n \"@\": \"@\",\n \"∁\": \"∁\",\n \"⩭\": \"⩭\",\n \"𝕔\": \"𝕔\",\n \"℗\": \"℗\",\n \"↵\": \"↵\",\n \"✗\": \"✗\",\n \"𝒸\": \"𝒸\",\n \"⫏\": \"⫏\",\n \"⫑\": \"⫑\",\n \"⫐\": \"⫐\",\n \"⫒\": \"⫒\",\n \"⋯\": \"⋯\",\n \"⤸\": \"⤸\",\n \"⤵\": \"⤵\",\n \"⋞\": \"⋞\",\n \"⋟\": \"⋟\",\n \"↶\": \"↶\",\n \"⤽\": \"⤽\",\n \"∪\": \"∪\",\n \"⩈\": \"⩈\",\n \"⩆\": \"⩆\",\n \"⩊\": \"⩊\",\n \"⊍\": \"⊍\",\n \"⩅\": \"⩅\",\n \"∪︀\": \"∪︀\",\n \"↷\": \"↷\",\n \"⤼\": \"⤼\",\n \"⋎\": \"⋎\",\n \"⋏\": \"⋏\",\n \"¤\": \"¤\",\n \"∱\": \"∱\",\n \"⌭\": \"⌭\",\n \"⥥\": \"⥥\",\n \"†\": \"†\",\n \"ℸ\": \"ℸ\",\n \"‐\": \"‐\",\n \"⤏\": \"⤏\",\n \"ď\": \"ď\",\n \"д\": \"д\",\n \"⇊\": \"⇊\",\n \"⩷\": \"⩷\",\n \"°\": \"°\",\n \"δ\": \"δ\",\n \"⦱\": \"⦱\",\n \"⥿\": \"⥿\",\n \"𝔡\": \"𝔡\",\n \"♦\": \"♦\",\n \"ϝ\": \"ϝ\",\n \"⋲\": \"⋲\",\n \"÷\": \"÷\",\n \"⋇\": \"⋇\",\n \"ђ\": \"ђ\",\n \"⌞\": \"⌞\",\n \"⌍\": \"⌍\",\n $: \"$\",\n \"𝕕\": \"𝕕\",\n \"≑\": \"≑\",\n \"∸\": \"∸\",\n \"∔\": \"∔\",\n \"⊡\": \"⊡\",\n \"⌟\": \"⌟\",\n \"⌌\": \"⌌\",\n \"𝒹\": \"𝒹\",\n \"ѕ\": \"ѕ\",\n \"⧶\": \"⧶\",\n \"đ\": \"đ\",\n \"⋱\": \"⋱\",\n \"▿\": \"▿\",\n \"⦦\": \"⦦\",\n \"џ\": \"џ\",\n \"⟿\": \"⟿\",\n \"é\": \"é\",\n \"⩮\": \"⩮\",\n \"ě\": \"ě\",\n \"≖\": \"≖\",\n \"ê\": \"ê\",\n \"≕\": \"≕\",\n \"э\": \"э\",\n \"ė\": \"ė\",\n \"≒\": \"≒\",\n \"𝔢\": \"𝔢\",\n \"⪚\": \"⪚\",\n \"è\": \"è\",\n \"⪖\": \"⪖\",\n \"⪘\": \"⪘\",\n \"⪙\": \"⪙\",\n \"⏧\": \"⏧\",\n \"ℓ\": \"ℓ\",\n \"⪕\": \"⪕\",\n \"⪗\": \"⪗\",\n \"ē\": \"ē\",\n \"∅\": \"∅\",\n \" \": \" \",\n \" \": \" \",\n \" \": \" \",\n \"ŋ\": \"ŋ\",\n \" \": \" \",\n \"ę\": \"ę\",\n \"𝕖\": \"𝕖\",\n \"⋕\": \"⋕\",\n \"⧣\": \"⧣\",\n \"⩱\": \"⩱\",\n \"ε\": \"ε\",\n \"ϵ\": \"ϵ\",\n \"=\": \"=\",\n \"≟\": \"≟\",\n \"⩸\": \"⩸\",\n \"⧥\": \"⧥\",\n \"≓\": \"≓\",\n \"⥱\": \"⥱\",\n \"ℯ\": \"ℯ\",\n \"η\": \"η\",\n \"ð\": \"ð\",\n \"ë\": \"ë\",\n \"€\": \"€\",\n \"!\": \"!\",\n \"ф\": \"ф\",\n \"♀\": \"♀\",\n \"ffi\": \"ffi\",\n \"ff\": \"ff\",\n \"ffl\": \"ffl\",\n \"𝔣\": \"𝔣\",\n \"fi\": \"fi\",\n fj: \"fj\",\n \"♭\": \"♭\",\n \"fl\": \"fl\",\n \"▱\": \"▱\",\n \"ƒ\": \"ƒ\",\n \"𝕗\": \"𝕗\",\n \"⋔\": \"⋔\",\n \"⫙\": \"⫙\",\n \"⨍\": \"⨍\",\n \"½\": \"½\",\n \"⅓\": \"⅓\",\n \"¼\": \"¼\",\n \"⅕\": \"⅕\",\n \"⅙\": \"⅙\",\n \"⅛\": \"⅛\",\n \"⅔\": \"⅔\",\n \"⅖\": \"⅖\",\n \"¾\": \"¾\",\n \"⅗\": \"⅗\",\n \"⅜\": \"⅜\",\n \"⅘\": \"⅘\",\n \"⅚\": \"⅚\",\n \"⅝\": \"⅝\",\n \"⅞\": \"⅞\",\n \"⁄\": \"⁄\",\n \"⌢\": \"⌢\",\n \"𝒻\": \"𝒻\",\n \"⪌\": \"⪌\",\n \"ǵ\": \"ǵ\",\n \"γ\": \"γ\",\n \"⪆\": \"⪆\",\n \"ğ\": \"ğ\",\n \"ĝ\": \"ĝ\",\n \"г\": \"г\",\n \"ġ\": \"ġ\",\n \"⪩\": \"⪩\",\n \"⪀\": \"⪀\",\n \"⪂\": \"⪂\",\n \"⪄\": \"⪄\",\n \"⋛︀\": \"⋛︀\",\n \"⪔\": \"⪔\",\n \"𝔤\": \"𝔤\",\n \"ℷ\": \"ℷ\",\n \"ѓ\": \"ѓ\",\n \"⪒\": \"⪒\",\n \"⪥\": \"⪥\",\n \"⪤\": \"⪤\",\n \"≩\": \"≩\",\n \"⪊\": \"⪊\",\n \"⪈\": \"⪈\",\n \"⋧\": \"⋧\",\n \"𝕘\": \"𝕘\",\n \"ℊ\": \"ℊ\",\n \"⪎\": \"⪎\",\n \"⪐\": \"⪐\",\n \"⪧\": \"⪧\",\n \"⩺\": \"⩺\",\n \"⋗\": \"⋗\",\n \"⦕\": \"⦕\",\n \"⩼\": \"⩼\",\n \"⥸\": \"⥸\",\n \"≩︀\": \"≩︀\",\n \"ъ\": \"ъ\",\n \"⥈\": \"⥈\",\n \"↭\": \"↭\",\n \"ℏ\": \"ℏ\",\n \"ĥ\": \"ĥ\",\n \"♥\": \"♥\",\n \"…\": \"…\",\n \"⊹\": \"⊹\",\n \"𝔥\": \"𝔥\",\n \"⤥\": \"⤥\",\n \"⤦\": \"⤦\",\n \"⇿\": \"⇿\",\n \"∻\": \"∻\",\n \"↩\": \"↩\",\n \"↪\": \"↪\",\n \"𝕙\": \"𝕙\",\n \"―\": \"―\",\n \"𝒽\": \"𝒽\",\n \"ħ\": \"ħ\",\n \"⁃\": \"⁃\",\n \"í\": \"í\",\n \"î\": \"î\",\n \"и\": \"и\",\n \"е\": \"е\",\n \"¡\": \"¡\",\n \"𝔦\": \"𝔦\",\n \"ì\": \"ì\",\n \"⨌\": \"⨌\",\n \"∭\": \"∭\",\n \"⧜\": \"⧜\",\n \"℩\": \"℩\",\n \"ij\": \"ij\",\n \"ī\": \"ī\",\n \"ı\": \"ı\",\n \"⊷\": \"⊷\",\n \"Ƶ\": \"Ƶ\",\n \"℅\": \"℅\",\n \"∞\": \"∞\",\n \"⧝\": \"⧝\",\n \"⊺\": \"⊺\",\n \"⨗\": \"⨗\",\n \"⨼\": \"⨼\",\n \"ё\": \"ё\",\n \"į\": \"į\",\n \"𝕚\": \"𝕚\",\n \"ι\": \"ι\",\n \"¿\": \"¿\",\n \"𝒾\": \"𝒾\",\n \"⋹\": \"⋹\",\n \"⋵\": \"⋵\",\n \"⋴\": \"⋴\",\n \"⋳\": \"⋳\",\n \"ĩ\": \"ĩ\",\n \"і\": \"і\",\n \"ï\": \"ï\",\n \"ĵ\": \"ĵ\",\n \"й\": \"й\",\n \"𝔧\": \"𝔧\",\n \"ȷ\": \"ȷ\",\n \"𝕛\": \"𝕛\",\n \"𝒿\": \"𝒿\",\n \"ј\": \"ј\",\n \"є\": \"є\",\n \"κ\": \"κ\",\n \"ϰ\": \"ϰ\",\n \"ķ\": \"ķ\",\n \"к\": \"к\",\n \"𝔨\": \"𝔨\",\n \"ĸ\": \"ĸ\",\n \"х\": \"х\",\n \"ќ\": \"ќ\",\n \"𝕜\": \"𝕜\",\n \"𝓀\": \"𝓀\",\n \"⤛\": \"⤛\",\n \"⤎\": \"⤎\",\n \"⪋\": \"⪋\",\n \"⥢\": \"⥢\",\n \"ĺ\": \"ĺ\",\n \"⦴\": \"⦴\",\n \"λ\": \"λ\",\n \"⦑\": \"⦑\",\n \"⪅\": \"⪅\",\n \"«\": \"«\",\n \"⤟\": \"⤟\",\n \"⤝\": \"⤝\",\n \"↫\": \"↫\",\n \"⤹\": \"⤹\",\n \"⥳\": \"⥳\",\n \"↢\": \"↢\",\n \"⪫\": \"⪫\",\n \"⤙\": \"⤙\",\n \"⪭\": \"⪭\",\n \"⪭︀\": \"⪭︀\",\n \"⤌\": \"⤌\",\n \"❲\": \"❲\",\n \"{\": \"{\",\n \"[\": \"[\",\n \"⦋\": \"⦋\",\n \"⦏\": \"⦏\",\n \"⦍\": \"⦍\",\n \"ľ\": \"ľ\",\n \"ļ\": \"ļ\",\n \"л\": \"л\",\n \"⤶\": \"⤶\",\n \"⥧\": \"⥧\",\n \"⥋\": \"⥋\",\n \"↲\": \"↲\",\n \"≤\": \"≤\",\n \"⇇\": \"⇇\",\n \"⋋\": \"⋋\",\n \"⪨\": \"⪨\",\n \"⩿\": \"⩿\",\n \"⪁\": \"⪁\",\n \"⪃\": \"⪃\",\n \"⋚︀\": \"⋚︀\",\n \"⪓\": \"⪓\",\n \"⋖\": \"⋖\",\n \"⥼\": \"⥼\",\n \"𝔩\": \"𝔩\",\n \"⪑\": \"⪑\",\n \"⥪\": \"⥪\",\n \"▄\": \"▄\",\n \"љ\": \"љ\",\n \"⥫\": \"⥫\",\n \"◺\": \"◺\",\n \"ŀ\": \"ŀ\",\n \"⎰\": \"⎰\",\n \"≨\": \"≨\",\n \"⪉\": \"⪉\",\n \"⪇\": \"⪇\",\n \"⋦\": \"⋦\",\n \"⟬\": \"⟬\",\n \"⇽\": \"⇽\",\n \"⟼\": \"⟼\",\n \"↬\": \"↬\",\n \"⦅\": \"⦅\",\n \"𝕝\": \"𝕝\",\n \"⨭\": \"⨭\",\n \"⨴\": \"⨴\",\n \"∗\": \"∗\",\n \"◊\": \"◊\",\n \"(\": \"(\",\n \"⦓\": \"⦓\",\n \"⥭\": \"⥭\",\n \"‎\": \"‎\",\n \"⊿\": \"⊿\",\n \"‹\": \"‹\",\n \"𝓁\": \"𝓁\",\n \"⪍\": \"⪍\",\n \"⪏\": \"⪏\",\n \"‚\": \"‚\",\n \"ł\": \"ł\",\n \"⪦\": \"⪦\",\n \"⩹\": \"⩹\",\n \"⋉\": \"⋉\",\n \"⥶\": \"⥶\",\n \"⩻\": \"⩻\",\n \"⦖\": \"⦖\",\n \"◃\": \"◃\",\n \"⥊\": \"⥊\",\n \"⥦\": \"⥦\",\n \"≨︀\": \"≨︀\",\n \"∺\": \"∺\",\n \"¯\": \"¯\",\n \"♂\": \"♂\",\n \"✠\": \"✠\",\n \"▮\": \"▮\",\n \"⨩\": \"⨩\",\n \"м\": \"м\",\n \"—\": \"—\",\n \"𝔪\": \"𝔪\",\n \"℧\": \"℧\",\n \"µ\": \"µ\",\n \"⫰\": \"⫰\",\n \"−\": \"−\",\n \"⨪\": \"⨪\",\n \"⫛\": \"⫛\",\n \"⊧\": \"⊧\",\n \"𝕞\": \"𝕞\",\n \"𝓂\": \"𝓂\",\n \"μ\": \"μ\",\n \"⊸\": \"⊸\",\n \"⋙̸\": \"⋙̸\",\n \"≫⃒\": \"≫⃒\",\n \"⇍\": \"⇍\",\n \"⇎\": \"⇎\",\n \"⋘̸\": \"⋘̸\",\n \"≪⃒\": \"≪⃒\",\n \"⇏\": \"⇏\",\n \"⊯\": \"⊯\",\n \"⊮\": \"⊮\",\n \"ń\": \"ń\",\n \"∠⃒\": \"∠⃒\",\n \"⩰̸\": \"⩰̸\",\n \"≋̸\": \"≋̸\",\n \"ʼn\": \"ʼn\",\n \"♮\": \"♮\",\n \"⩃\": \"⩃\",\n \"ň\": \"ň\",\n \"ņ\": \"ņ\",\n \"⩭̸\": \"⩭̸\",\n \"⩂\": \"⩂\",\n \"н\": \"н\",\n \"–\": \"–\",\n \"⇗\": \"⇗\",\n \"⤤\": \"⤤\",\n \"≐̸\": \"≐̸\",\n \"⤨\": \"⤨\",\n \"𝔫\": \"𝔫\",\n \"↮\": \"↮\",\n \"⫲\": \"⫲\",\n \"⋼\": \"⋼\",\n \"⋺\": \"⋺\",\n \"њ\": \"њ\",\n \"≦̸\": \"≦̸\",\n \"↚\": \"↚\",\n \"‥\": \"‥\",\n \"𝕟\": \"𝕟\",\n \"¬\": \"¬\",\n \"⋹̸\": \"⋹̸\",\n \"⋵̸\": \"⋵̸\",\n \"⋷\": \"⋷\",\n \"⋶\": \"⋶\",\n \"⋾\": \"⋾\",\n \"⋽\": \"⋽\",\n \"⫽⃥\": \"⫽⃥\",\n \"∂̸\": \"∂̸\",\n \"⨔\": \"⨔\",\n \"↛\": \"↛\",\n \"⤳̸\": \"⤳̸\",\n \"↝̸\": \"↝̸\",\n \"𝓃\": \"𝓃\",\n \"⊄\": \"⊄\",\n \"⫅̸\": \"⫅̸\",\n \"⊅\": \"⊅\",\n \"⫆̸\": \"⫆̸\",\n \"ñ\": \"ñ\",\n \"ν\": \"ν\",\n \"#\": \"#\",\n \"№\": \"№\",\n \" \": \" \",\n \"⊭\": \"⊭\",\n \"⤄\": \"⤄\",\n \"≍⃒\": \"≍⃒\",\n \"⊬\": \"⊬\",\n \"≥⃒\": \"≥⃒\",\n \">⃒\": \">⃒\",\n \"⧞\": \"⧞\",\n \"⤂\": \"⤂\",\n \"≤⃒\": \"≤⃒\",\n \"<⃒\": \"<⃒\",\n \"⊴⃒\": \"⊴⃒\",\n \"⤃\": \"⤃\",\n \"⊵⃒\": \"⊵⃒\",\n \"∼⃒\": \"∼⃒\",\n \"⇖\": \"⇖\",\n \"⤣\": \"⤣\",\n \"⤧\": \"⤧\",\n \"ó\": \"ó\",\n \"ô\": \"ô\",\n \"о\": \"о\",\n \"ő\": \"ő\",\n \"⨸\": \"⨸\",\n \"⦼\": \"⦼\",\n \"œ\": \"œ\",\n \"⦿\": \"⦿\",\n \"𝔬\": \"𝔬\",\n \"˛\": \"˛\",\n \"ò\": \"ò\",\n \"⧁\": \"⧁\",\n \"⦵\": \"⦵\",\n \"⦾\": \"⦾\",\n \"⦻\": \"⦻\",\n \"⧀\": \"⧀\",\n \"ō\": \"ō\",\n \"ω\": \"ω\",\n \"ο\": \"ο\",\n \"⦶\": \"⦶\",\n \"𝕠\": \"𝕠\",\n \"⦷\": \"⦷\",\n \"⦹\": \"⦹\",\n \"∨\": \"∨\",\n \"⩝\": \"⩝\",\n \"ℴ\": \"ℴ\",\n \"ª\": \"ª\",\n \"º\": \"º\",\n \"⊶\": \"⊶\",\n \"⩖\": \"⩖\",\n \"⩗\": \"⩗\",\n \"⩛\": \"⩛\",\n \"ø\": \"ø\",\n \"⊘\": \"⊘\",\n \"õ\": \"õ\",\n \"⨶\": \"⨶\",\n \"ö\": \"ö\",\n \"⌽\": \"⌽\",\n \"¶\": \"¶\",\n \"⫳\": \"⫳\",\n \"⫽\": \"⫽\",\n \"п\": \"п\",\n \"%\": \"%\",\n \".\": \".\",\n \"‰\": \"‰\",\n \"‱\": \"‱\",\n \"𝔭\": \"𝔭\",\n \"φ\": \"φ\",\n \"ϕ\": \"ϕ\",\n \"☎\": \"☎\",\n \"π\": \"π\",\n \"ϖ\": \"ϖ\",\n \"ℎ\": \"ℎ\",\n \"+\": \"+\",\n \"⨣\": \"⨣\",\n \"⨢\": \"⨢\",\n \"⨥\": \"⨥\",\n \"⩲\": \"⩲\",\n \"⨦\": \"⨦\",\n \"⨧\": \"⨧\",\n \"⨕\": \"⨕\",\n \"𝕡\": \"𝕡\",\n \"£\": \"£\",\n \"⪳\": \"⪳\",\n \"⪷\": \"⪷\",\n \"⪹\": \"⪹\",\n \"⪵\": \"⪵\",\n \"⋨\": \"⋨\",\n \"′\": \"′\",\n \"⌮\": \"⌮\",\n \"⌒\": \"⌒\",\n \"⌓\": \"⌓\",\n \"⊰\": \"⊰\",\n \"𝓅\": \"𝓅\",\n \"ψ\": \"ψ\",\n \" \": \" \",\n \"𝔮\": \"𝔮\",\n \"𝕢\": \"𝕢\",\n \"⁗\": \"⁗\",\n \"𝓆\": \"𝓆\",\n \"⨖\": \"⨖\",\n \"?\": \"?\",\n \"⤜\": \"⤜\",\n \"⥤\": \"⥤\",\n \"∽̱\": \"∽̱\",\n \"ŕ\": \"ŕ\",\n \"⦳\": \"⦳\",\n \"⦒\": \"⦒\",\n \"⦥\": \"⦥\",\n \"»\": \"»\",\n \"⥵\": \"⥵\",\n \"⤠\": \"⤠\",\n \"⤳\": \"⤳\",\n \"⤞\": \"⤞\",\n \"⥅\": \"⥅\",\n \"⥴\": \"⥴\",\n \"↣\": \"↣\",\n \"↝\": \"↝\",\n \"⤚\": \"⤚\",\n \"∶\": \"∶\",\n \"❳\": \"❳\",\n \"}\": \"}\",\n \"]\": \"]\",\n \"⦌\": \"⦌\",\n \"⦎\": \"⦎\",\n \"⦐\": \"⦐\",\n \"ř\": \"ř\",\n \"ŗ\": \"ŗ\",\n \"р\": \"р\",\n \"⤷\": \"⤷\",\n \"⥩\": \"⥩\",\n \"↳\": \"↳\",\n \"▭\": \"▭\",\n \"⥽\": \"⥽\",\n \"𝔯\": \"𝔯\",\n \"⥬\": \"⥬\",\n \"ρ\": \"ρ\",\n \"ϱ\": \"ϱ\",\n \"⇉\": \"⇉\",\n \"⋌\": \"⋌\",\n \"˚\": \"˚\",\n \"‏\": \"‏\",\n \"⎱\": \"⎱\",\n \"⫮\": \"⫮\",\n \"⟭\": \"⟭\",\n \"⇾\": \"⇾\",\n \"⦆\": \"⦆\",\n \"𝕣\": \"𝕣\",\n \"⨮\": \"⨮\",\n \"⨵\": \"⨵\",\n \")\": \")\",\n \"⦔\": \"⦔\",\n \"⨒\": \"⨒\",\n \"›\": \"›\",\n \"𝓇\": \"𝓇\",\n \"⋊\": \"⋊\",\n \"▹\": \"▹\",\n \"⧎\": \"⧎\",\n \"⥨\": \"⥨\",\n \"℞\": \"℞\",\n \"ś\": \"ś\",\n \"⪴\": \"⪴\",\n \"⪸\": \"⪸\",\n \"š\": \"š\",\n \"ş\": \"ş\",\n \"ŝ\": \"ŝ\",\n \"⪶\": \"⪶\",\n \"⪺\": \"⪺\",\n \"⋩\": \"⋩\",\n \"⨓\": \"⨓\",\n \"с\": \"с\",\n \"⋅\": \"⋅\",\n \"⩦\": \"⩦\",\n \"⇘\": \"⇘\",\n \"§\": \"§\",\n \";\": \";\",\n \"⤩\": \"⤩\",\n \"✶\": \"✶\",\n \"𝔰\": \"𝔰\",\n \"♯\": \"♯\",\n \"щ\": \"щ\",\n \"ш\": \"ш\",\n \"­\": \"­\",\n \"σ\": \"σ\",\n \"ς\": \"ς\",\n \"⩪\": \"⩪\",\n \"⪞\": \"⪞\",\n \"⪠\": \"⪠\",\n \"⪝\": \"⪝\",\n \"⪟\": \"⪟\",\n \"≆\": \"≆\",\n \"⨤\": \"⨤\",\n \"⥲\": \"⥲\",\n \"⨳\": \"⨳\",\n \"⧤\": \"⧤\",\n \"⌣\": \"⌣\",\n \"⪪\": \"⪪\",\n \"⪬\": \"⪬\",\n \"⪬︀\": \"⪬︀\",\n \"ь\": \"ь\",\n \"/\": \"/\",\n \"⧄\": \"⧄\",\n \"⌿\": \"⌿\",\n \"𝕤\": \"𝕤\",\n \"♠\": \"♠\",\n \"⊓︀\": \"⊓︀\",\n \"⊔︀\": \"⊔︀\",\n \"𝓈\": \"𝓈\",\n \"☆\": \"☆\",\n \"⊂\": \"⊂\",\n \"⫅\": \"⫅\",\n \"⪽\": \"⪽\",\n \"⫃\": \"⫃\",\n \"⫁\": \"⫁\",\n \"⫋\": \"⫋\",\n \"⊊\": \"⊊\",\n \"⪿\": \"⪿\",\n \"⥹\": \"⥹\",\n \"⫇\": \"⫇\",\n \"⫕\": \"⫕\",\n \"⫓\": \"⫓\",\n \"♪\": \"♪\",\n \"¹\": \"¹\",\n \"²\": \"²\",\n \"³\": \"³\",\n \"⫆\": \"⫆\",\n \"⪾\": \"⪾\",\n \"⫘\": \"⫘\",\n \"⫄\": \"⫄\",\n \"⟉\": \"⟉\",\n \"⫗\": \"⫗\",\n \"⥻\": \"⥻\",\n \"⫂\": \"⫂\",\n \"⫌\": \"⫌\",\n \"⊋\": \"⊋\",\n \"⫀\": \"⫀\",\n \"⫈\": \"⫈\",\n \"⫔\": \"⫔\",\n \"⫖\": \"⫖\",\n \"⇙\": \"⇙\",\n \"⤪\": \"⤪\",\n \"ß\": \"ß\",\n \"⌖\": \"⌖\",\n \"τ\": \"τ\",\n \"ť\": \"ť\",\n \"ţ\": \"ţ\",\n \"т\": \"т\",\n \"⌕\": \"⌕\",\n \"𝔱\": \"𝔱\",\n \"θ\": \"θ\",\n \"ϑ\": \"ϑ\",\n \"þ\": \"þ\",\n \"×\": \"×\",\n \"⨱\": \"⨱\",\n \"⨰\": \"⨰\",\n \"⌶\": \"⌶\",\n \"⫱\": \"⫱\",\n \"𝕥\": \"𝕥\",\n \"⫚\": \"⫚\",\n \"‴\": \"‴\",\n \"▵\": \"▵\",\n \"≜\": \"≜\",\n \"◬\": \"◬\",\n \"⨺\": \"⨺\",\n \"⨹\": \"⨹\",\n \"⧍\": \"⧍\",\n \"⨻\": \"⨻\",\n \"⏢\": \"⏢\",\n \"𝓉\": \"𝓉\",\n \"ц\": \"ц\",\n \"ћ\": \"ћ\",\n \"ŧ\": \"ŧ\",\n \"⥣\": \"⥣\",\n \"ú\": \"ú\",\n \"ў\": \"ў\",\n \"ŭ\": \"ŭ\",\n \"û\": \"û\",\n \"у\": \"у\",\n \"ű\": \"ű\",\n \"⥾\": \"⥾\",\n \"𝔲\": \"𝔲\",\n \"ù\": \"ù\",\n \"▀\": \"▀\",\n \"⌜\": \"⌜\",\n \"⌏\": \"⌏\",\n \"◸\": \"◸\",\n \"ū\": \"ū\",\n \"ų\": \"ų\",\n \"𝕦\": \"𝕦\",\n \"υ\": \"υ\",\n \"⇈\": \"⇈\",\n \"⌝\": \"⌝\",\n \"⌎\": \"⌎\",\n \"ů\": \"ů\",\n \"◹\": \"◹\",\n \"𝓊\": \"𝓊\",\n \"⋰\": \"⋰\",\n \"ũ\": \"ũ\",\n \"ü\": \"ü\",\n \"⦧\": \"⦧\",\n \"⫨\": \"⫨\",\n \"⫩\": \"⫩\",\n \"⦜\": \"⦜\",\n \"⊊︀\": \"⊊︀\",\n \"⫋︀\": \"⫋︀\",\n \"⊋︀\": \"⊋︀\",\n \"⫌︀\": \"⫌︀\",\n \"в\": \"в\",\n \"⊻\": \"⊻\",\n \"≚\": \"≚\",\n \"⋮\": \"⋮\",\n \"𝔳\": \"𝔳\",\n \"𝕧\": \"𝕧\",\n \"𝓋\": \"𝓋\",\n \"⦚\": \"⦚\",\n \"ŵ\": \"ŵ\",\n \"⩟\": \"⩟\",\n \"≙\": \"≙\",\n \"℘\": \"℘\",\n \"𝔴\": \"𝔴\",\n \"𝕨\": \"𝕨\",\n \"𝓌\": \"𝓌\",\n \"𝔵\": \"𝔵\",\n \"ξ\": \"ξ\",\n \"⋻\": \"⋻\",\n \"𝕩\": \"𝕩\",\n \"𝓍\": \"𝓍\",\n \"ý\": \"ý\",\n \"я\": \"я\",\n \"ŷ\": \"ŷ\",\n \"ы\": \"ы\",\n \"¥\": \"¥\",\n \"𝔶\": \"𝔶\",\n \"ї\": \"ї\",\n \"𝕪\": \"𝕪\",\n \"𝓎\": \"𝓎\",\n \"ю\": \"ю\",\n \"ÿ\": \"ÿ\",\n \"ź\": \"ź\",\n \"ž\": \"ž\",\n \"з\": \"з\",\n \"ż\": \"ż\",\n \"ζ\": \"ζ\",\n \"𝔷\": \"𝔷\",\n \"ж\": \"ж\",\n \"⇝\": \"⇝\",\n \"𝕫\": \"𝕫\",\n \"𝓏\": \"𝓏\",\n \"‍\": \"‍\",\n \"‌\": \"‌\"\n }\n }\n};","map":{"version":3,"names":["Object","defineProperty","exports","value","bodyRegExps","xml","html4","html5","namedReferences","entities","characters","_","$","fj"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/html-entities/lib/named-references.js"],"sourcesContent":["\"use strict\";Object.defineProperty(exports,\"__esModule\",{value:true});exports.bodyRegExps={xml:/&(?:#\\d+|#[xX][\\da-fA-F]+|[0-9a-zA-Z]+);?/g,html4:/&(?:nbsp|iexcl|cent|pound|curren|yen|brvbar|sect|uml|copy|ordf|laquo|not|shy|reg|macr|deg|plusmn|sup2|sup3|acute|micro|para|middot|cedil|sup1|ordm|raquo|frac14|frac12|frac34|iquest|Agrave|Aacute|Acirc|Atilde|Auml|Aring|AElig|Ccedil|Egrave|Eacute|Ecirc|Euml|Igrave|Iacute|Icirc|Iuml|ETH|Ntilde|Ograve|Oacute|Ocirc|Otilde|Ouml|times|Oslash|Ugrave|Uacute|Ucirc|Uuml|Yacute|THORN|szlig|agrave|aacute|acirc|atilde|auml|aring|aelig|ccedil|egrave|eacute|ecirc|euml|igrave|iacute|icirc|iuml|eth|ntilde|ograve|oacute|ocirc|otilde|ouml|divide|oslash|ugrave|uacute|ucirc|uuml|yacute|thorn|yuml|quot|amp|lt|gt|#\\d+|#[xX][\\da-fA-F]+|[0-9a-zA-Z]+);?/g,html5:/&(?:AElig|AMP|Aacute|Acirc|Agrave|Aring|Atilde|Auml|COPY|Ccedil|ETH|Eacute|Ecirc|Egrave|Euml|GT|Iacute|Icirc|Igrave|Iuml|LT|Ntilde|Oacute|Ocirc|Ograve|Oslash|Otilde|Ouml|QUOT|REG|THORN|Uacute|Ucirc|Ugrave|Uuml|Yacute|aacute|acirc|acute|aelig|agrave|amp|aring|atilde|auml|brvbar|ccedil|cedil|cent|copy|curren|deg|divide|eacute|ecirc|egrave|eth|euml|frac12|frac14|frac34|gt|iacute|icirc|iexcl|igrave|iquest|iuml|laquo|lt|macr|micro|middot|nbsp|not|ntilde|oacute|ocirc|ograve|ordf|ordm|oslash|otilde|ouml|para|plusmn|pound|quot|raquo|reg|sect|shy|sup1|sup2|sup3|szlig|thorn|times|uacute|ucirc|ugrave|uml|uuml|yacute|yen|yuml|#\\d+|#[xX][\\da-fA-F]+|[0-9a-zA-Z]+);?/g};exports.namedReferences={xml:{entities:{\"<\":\"<\",\">\":\">\",\""\":'\"',\"'\":\"'\",\"&\":\"&\"},characters:{\"<\":\"<\",\">\":\">\",'\"':\""\",\"'\":\"'\",\"&\":\"&\"}},html4:{entities:{\"'\":\"'\",\" \":\" \",\" \":\" \",\"¡\":\"¡\",\"¡\":\"¡\",\"¢\":\"¢\",\"¢\":\"¢\",\"£\":\"£\",\"£\":\"£\",\"¤\":\"¤\",\"¤\":\"¤\",\"¥\":\"¥\",\"¥\":\"¥\",\"¦\":\"¦\",\"¦\":\"¦\",\"§\":\"§\",\"§\":\"§\",\"¨\":\"¨\",\"¨\":\"¨\",\"©\":\"©\",\"©\":\"©\",\"ª\":\"ª\",\"ª\":\"ª\",\"«\":\"«\",\"«\":\"«\",\"¬\":\"¬\",\"¬\":\"¬\",\"­\":\"­\",\"­\":\"­\",\"®\":\"®\",\"®\":\"®\",\"¯\":\"¯\",\"¯\":\"¯\",\"°\":\"°\",\"°\":\"°\",\"±\":\"±\",\"±\":\"±\",\"²\":\"²\",\"²\":\"²\",\"³\":\"³\",\"³\":\"³\",\"´\":\"´\",\"´\":\"´\",\"µ\":\"µ\",\"µ\":\"µ\",\"¶\":\"¶\",\"¶\":\"¶\",\"·\":\"·\",\"·\":\"·\",\"¸\":\"¸\",\"¸\":\"¸\",\"¹\":\"¹\",\"¹\":\"¹\",\"º\":\"º\",\"º\":\"º\",\"»\":\"»\",\"»\":\"»\",\"¼\":\"¼\",\"¼\":\"¼\",\"½\":\"½\",\"½\":\"½\",\"¾\":\"¾\",\"¾\":\"¾\",\"¿\":\"¿\",\"¿\":\"¿\",\"À\":\"À\",\"À\":\"À\",\"Á\":\"Á\",\"Á\":\"Á\",\"Â\":\"Â\",\"Â\":\"Â\",\"Ã\":\"Ã\",\"Ã\":\"Ã\",\"Ä\":\"Ä\",\"Ä\":\"Ä\",\"Å\":\"Å\",\"Å\":\"Å\",\"Æ\":\"Æ\",\"Æ\":\"Æ\",\"Ç\":\"Ç\",\"Ç\":\"Ç\",\"È\":\"È\",\"È\":\"È\",\"É\":\"É\",\"É\":\"É\",\"Ê\":\"Ê\",\"Ê\":\"Ê\",\"Ë\":\"Ë\",\"Ë\":\"Ë\",\"Ì\":\"Ì\",\"Ì\":\"Ì\",\"Í\":\"Í\",\"Í\":\"Í\",\"Î\":\"Î\",\"Î\":\"Î\",\"Ï\":\"Ï\",\"Ï\":\"Ï\",\"Ð\":\"Ð\",\"Ð\":\"Ð\",\"Ñ\":\"Ñ\",\"Ñ\":\"Ñ\",\"Ò\":\"Ò\",\"Ò\":\"Ò\",\"Ó\":\"Ó\",\"Ó\":\"Ó\",\"Ô\":\"Ô\",\"Ô\":\"Ô\",\"Õ\":\"Õ\",\"Õ\":\"Õ\",\"Ö\":\"Ö\",\"Ö\":\"Ö\",\"×\":\"×\",\"×\":\"×\",\"Ø\":\"Ø\",\"Ø\":\"Ø\",\"Ù\":\"Ù\",\"Ù\":\"Ù\",\"Ú\":\"Ú\",\"Ú\":\"Ú\",\"Û\":\"Û\",\"Û\":\"Û\",\"Ü\":\"Ü\",\"Ü\":\"Ü\",\"Ý\":\"Ý\",\"Ý\":\"Ý\",\"Þ\":\"Þ\",\"Þ\":\"Þ\",\"ß\":\"ß\",\"ß\":\"ß\",\"à\":\"à\",\"à\":\"à\",\"á\":\"á\",\"á\":\"á\",\"â\":\"â\",\"â\":\"â\",\"ã\":\"ã\",\"ã\":\"ã\",\"ä\":\"ä\",\"ä\":\"ä\",\"å\":\"å\",\"å\":\"å\",\"æ\":\"æ\",\"æ\":\"æ\",\"ç\":\"ç\",\"ç\":\"ç\",\"è\":\"è\",\"è\":\"è\",\"é\":\"é\",\"é\":\"é\",\"ê\":\"ê\",\"ê\":\"ê\",\"ë\":\"ë\",\"ë\":\"ë\",\"ì\":\"ì\",\"ì\":\"ì\",\"í\":\"í\",\"í\":\"í\",\"î\":\"î\",\"î\":\"î\",\"ï\":\"ï\",\"ï\":\"ï\",\"ð\":\"ð\",\"ð\":\"ð\",\"ñ\":\"ñ\",\"ñ\":\"ñ\",\"ò\":\"ò\",\"ò\":\"ò\",\"ó\":\"ó\",\"ó\":\"ó\",\"ô\":\"ô\",\"ô\":\"ô\",\"õ\":\"õ\",\"õ\":\"õ\",\"ö\":\"ö\",\"ö\":\"ö\",\"÷\":\"÷\",\"÷\":\"÷\",\"ø\":\"ø\",\"ø\":\"ø\",\"ù\":\"ù\",\"ù\":\"ù\",\"ú\":\"ú\",\"ú\":\"ú\",\"û\":\"û\",\"û\":\"û\",\"ü\":\"ü\",\"ü\":\"ü\",\"ý\":\"ý\",\"ý\":\"ý\",\"þ\":\"þ\",\"þ\":\"þ\",\"ÿ\":\"ÿ\",\"ÿ\":\"ÿ\",\""\":'\"',\""\":'\"',\"&\":\"&\",\"&\":\"&\",\"<\":\"<\",\"<\":\"<\",\">\":\">\",\">\":\">\",\"Œ\":\"Œ\",\"œ\":\"œ\",\"Š\":\"Š\",\"š\":\"š\",\"Ÿ\":\"Ÿ\",\"ˆ\":\"ˆ\",\"˜\":\"˜\",\" \":\" \",\" \":\" \",\" \":\" \",\"‌\":\"‌\",\"‍\":\"‍\",\"‎\":\"‎\",\"‏\":\"‏\",\"–\":\"–\",\"—\":\"—\",\"‘\":\"‘\",\"’\":\"’\",\"‚\":\"‚\",\"“\":\"“\",\"”\":\"”\",\"„\":\"„\",\"†\":\"†\",\"‡\":\"‡\",\"‰\":\"‰\",\"‹\":\"‹\",\"›\":\"›\",\"€\":\"€\",\"ƒ\":\"ƒ\",\"Α\":\"Α\",\"Β\":\"Β\",\"Γ\":\"Γ\",\"Δ\":\"Δ\",\"Ε\":\"Ε\",\"Ζ\":\"Ζ\",\"Η\":\"Η\",\"Θ\":\"Θ\",\"Ι\":\"Ι\",\"Κ\":\"Κ\",\"Λ\":\"Λ\",\"Μ\":\"Μ\",\"Ν\":\"Ν\",\"Ξ\":\"Ξ\",\"Ο\":\"Ο\",\"Π\":\"Π\",\"Ρ\":\"Ρ\",\"Σ\":\"Σ\",\"Τ\":\"Τ\",\"Υ\":\"Υ\",\"Φ\":\"Φ\",\"Χ\":\"Χ\",\"Ψ\":\"Ψ\",\"Ω\":\"Ω\",\"α\":\"α\",\"β\":\"β\",\"γ\":\"γ\",\"δ\":\"δ\",\"ε\":\"ε\",\"ζ\":\"ζ\",\"η\":\"η\",\"θ\":\"θ\",\"ι\":\"ι\",\"κ\":\"κ\",\"λ\":\"λ\",\"μ\":\"μ\",\"ν\":\"ν\",\"ξ\":\"ξ\",\"ο\":\"ο\",\"π\":\"π\",\"ρ\":\"ρ\",\"ς\":\"ς\",\"σ\":\"σ\",\"τ\":\"τ\",\"υ\":\"υ\",\"φ\":\"φ\",\"χ\":\"χ\",\"ψ\":\"ψ\",\"ω\":\"ω\",\"ϑ\":\"ϑ\",\"ϒ\":\"ϒ\",\"ϖ\":\"ϖ\",\"•\":\"•\",\"…\":\"…\",\"′\":\"′\",\"″\":\"″\",\"‾\":\"‾\",\"⁄\":\"⁄\",\"℘\":\"℘\",\"ℑ\":\"ℑ\",\"ℜ\":\"ℜ\",\"™\":\"™\",\"ℵ\":\"ℵ\",\"←\":\"←\",\"↑\":\"↑\",\"→\":\"→\",\"↓\":\"↓\",\"↔\":\"↔\",\"↵\":\"↵\",\"⇐\":\"⇐\",\"⇑\":\"⇑\",\"⇒\":\"⇒\",\"⇓\":\"⇓\",\"⇔\":\"⇔\",\"∀\":\"∀\",\"∂\":\"∂\",\"∃\":\"∃\",\"∅\":\"∅\",\"∇\":\"∇\",\"∈\":\"∈\",\"∉\":\"∉\",\"∋\":\"∋\",\"∏\":\"∏\",\"∑\":\"∑\",\"−\":\"−\",\"∗\":\"∗\",\"√\":\"√\",\"∝\":\"∝\",\"∞\":\"∞\",\"∠\":\"∠\",\"∧\":\"∧\",\"∨\":\"∨\",\"∩\":\"∩\",\"∪\":\"∪\",\"∫\":\"∫\",\"∴\":\"∴\",\"∼\":\"∼\",\"≅\":\"≅\",\"≈\":\"≈\",\"≠\":\"≠\",\"≡\":\"≡\",\"≤\":\"≤\",\"≥\":\"≥\",\"⊂\":\"⊂\",\"⊃\":\"⊃\",\"⊄\":\"⊄\",\"⊆\":\"⊆\",\"⊇\":\"⊇\",\"⊕\":\"⊕\",\"⊗\":\"⊗\",\"⊥\":\"⊥\",\"⋅\":\"⋅\",\"⌈\":\"⌈\",\"⌉\":\"⌉\",\"⌊\":\"⌊\",\"⌋\":\"⌋\",\"⟨\":\"〈\",\"⟩\":\"〉\",\"◊\":\"◊\",\"♠\":\"♠\",\"♣\":\"♣\",\"♥\":\"♥\",\"♦\":\"♦\"},characters:{\"'\":\"'\",\" \":\" \",\"¡\":\"¡\",\"¢\":\"¢\",\"£\":\"£\",\"¤\":\"¤\",\"¥\":\"¥\",\"¦\":\"¦\",\"§\":\"§\",\"¨\":\"¨\",\"©\":\"©\",\"ª\":\"ª\",\"«\":\"«\",\"¬\":\"¬\",\"­\":\"­\",\"®\":\"®\",\"¯\":\"¯\",\"°\":\"°\",\"±\":\"±\",\"²\":\"²\",\"³\":\"³\",\"´\":\"´\",\"µ\":\"µ\",\"¶\":\"¶\",\"·\":\"·\",\"¸\":\"¸\",\"¹\":\"¹\",\"º\":\"º\",\"»\":\"»\",\"¼\":\"¼\",\"½\":\"½\",\"¾\":\"¾\",\"¿\":\"¿\",\"À\":\"À\",\"Á\":\"Á\",\"Â\":\"Â\",\"Ã\":\"Ã\",\"Ä\":\"Ä\",\"Å\":\"Å\",\"Æ\":\"Æ\",\"Ç\":\"Ç\",\"È\":\"È\",\"É\":\"É\",\"Ê\":\"Ê\",\"Ë\":\"Ë\",\"Ì\":\"Ì\",\"Í\":\"Í\",\"Î\":\"Î\",\"Ï\":\"Ï\",\"Ð\":\"Ð\",\"Ñ\":\"Ñ\",\"Ò\":\"Ò\",\"Ó\":\"Ó\",\"Ô\":\"Ô\",\"Õ\":\"Õ\",\"Ö\":\"Ö\",\"×\":\"×\",\"Ø\":\"Ø\",\"Ù\":\"Ù\",\"Ú\":\"Ú\",\"Û\":\"Û\",\"Ü\":\"Ü\",\"Ý\":\"Ý\",\"Þ\":\"Þ\",\"ß\":\"ß\",\"à\":\"à\",\"á\":\"á\",\"â\":\"â\",\"ã\":\"ã\",\"ä\":\"ä\",\"å\":\"å\",\"æ\":\"æ\",\"ç\":\"ç\",\"è\":\"è\",\"é\":\"é\",\"ê\":\"ê\",\"ë\":\"ë\",\"ì\":\"ì\",\"í\":\"í\",\"î\":\"î\",\"ï\":\"ï\",\"ð\":\"ð\",\"ñ\":\"ñ\",\"ò\":\"ò\",\"ó\":\"ó\",\"ô\":\"ô\",\"õ\":\"õ\",\"ö\":\"ö\",\"÷\":\"÷\",\"ø\":\"ø\",\"ù\":\"ù\",\"ú\":\"ú\",\"û\":\"û\",\"ü\":\"ü\",\"ý\":\"ý\",\"þ\":\"þ\",\"ÿ\":\"ÿ\",'\"':\""\",\"&\":\"&\",\"<\":\"<\",\">\":\">\",\"Œ\":\"Œ\",\"œ\":\"œ\",\"Š\":\"Š\",\"š\":\"š\",\"Ÿ\":\"Ÿ\",\"ˆ\":\"ˆ\",\"˜\":\"˜\",\" \":\" \",\" \":\" \",\" \":\" \",\"‌\":\"‌\",\"‍\":\"‍\",\"‎\":\"‎\",\"‏\":\"‏\",\"–\":\"–\",\"—\":\"—\",\"‘\":\"‘\",\"’\":\"’\",\"‚\":\"‚\",\"“\":\"“\",\"”\":\"”\",\"„\":\"„\",\"†\":\"†\",\"‡\":\"‡\",\"‰\":\"‰\",\"‹\":\"‹\",\"›\":\"›\",\"€\":\"€\",\"ƒ\":\"ƒ\",\"Α\":\"Α\",\"Β\":\"Β\",\"Γ\":\"Γ\",\"Δ\":\"Δ\",\"Ε\":\"Ε\",\"Ζ\":\"Ζ\",\"Η\":\"Η\",\"Θ\":\"Θ\",\"Ι\":\"Ι\",\"Κ\":\"Κ\",\"Λ\":\"Λ\",\"Μ\":\"Μ\",\"Ν\":\"Ν\",\"Ξ\":\"Ξ\",\"Ο\":\"Ο\",\"Π\":\"Π\",\"Ρ\":\"Ρ\",\"Σ\":\"Σ\",\"Τ\":\"Τ\",\"Υ\":\"Υ\",\"Φ\":\"Φ\",\"Χ\":\"Χ\",\"Ψ\":\"Ψ\",\"Ω\":\"Ω\",\"α\":\"α\",\"β\":\"β\",\"γ\":\"γ\",\"δ\":\"δ\",\"ε\":\"ε\",\"ζ\":\"ζ\",\"η\":\"η\",\"θ\":\"θ\",\"ι\":\"ι\",\"κ\":\"κ\",\"λ\":\"λ\",\"μ\":\"μ\",\"ν\":\"ν\",\"ξ\":\"ξ\",\"ο\":\"ο\",\"π\":\"π\",\"ρ\":\"ρ\",\"ς\":\"ς\",\"σ\":\"σ\",\"τ\":\"τ\",\"υ\":\"υ\",\"φ\":\"φ\",\"χ\":\"χ\",\"ψ\":\"ψ\",\"ω\":\"ω\",\"ϑ\":\"ϑ\",\"ϒ\":\"ϒ\",\"ϖ\":\"ϖ\",\"•\":\"•\",\"…\":\"…\",\"′\":\"′\",\"″\":\"″\",\"‾\":\"‾\",\"⁄\":\"⁄\",\"℘\":\"℘\",\"ℑ\":\"ℑ\",\"ℜ\":\"ℜ\",\"™\":\"™\",\"ℵ\":\"ℵ\",\"←\":\"←\",\"↑\":\"↑\",\"→\":\"→\",\"↓\":\"↓\",\"↔\":\"↔\",\"↵\":\"↵\",\"⇐\":\"⇐\",\"⇑\":\"⇑\",\"⇒\":\"⇒\",\"⇓\":\"⇓\",\"⇔\":\"⇔\",\"∀\":\"∀\",\"∂\":\"∂\",\"∃\":\"∃\",\"∅\":\"∅\",\"∇\":\"∇\",\"∈\":\"∈\",\"∉\":\"∉\",\"∋\":\"∋\",\"∏\":\"∏\",\"∑\":\"∑\",\"−\":\"−\",\"∗\":\"∗\",\"√\":\"√\",\"∝\":\"∝\",\"∞\":\"∞\",\"∠\":\"∠\",\"∧\":\"∧\",\"∨\":\"∨\",\"∩\":\"∩\",\"∪\":\"∪\",\"∫\":\"∫\",\"∴\":\"∴\",\"∼\":\"∼\",\"≅\":\"≅\",\"≈\":\"≈\",\"≠\":\"≠\",\"≡\":\"≡\",\"≤\":\"≤\",\"≥\":\"≥\",\"⊂\":\"⊂\",\"⊃\":\"⊃\",\"⊄\":\"⊄\",\"⊆\":\"⊆\",\"⊇\":\"⊇\",\"⊕\":\"⊕\",\"⊗\":\"⊗\",\"⊥\":\"⊥\",\"⋅\":\"⋅\",\"⌈\":\"⌈\",\"⌉\":\"⌉\",\"⌊\":\"⌊\",\"⌋\":\"⌋\",\"〈\":\"⟨\",\"〉\":\"⟩\",\"◊\":\"◊\",\"♠\":\"♠\",\"♣\":\"♣\",\"♥\":\"♥\",\"♦\":\"♦\"}},html5:{entities:{\"Æ\":\"Æ\",\"Æ\":\"Æ\",\"&\":\"&\",\"&\":\"&\",\"Á\":\"Á\",\"Á\":\"Á\",\"Ă\":\"Ă\",\"Â\":\"Â\",\"Â\":\"Â\",\"А\":\"А\",\"𝔄\":\"𝔄\",\"À\":\"À\",\"À\":\"À\",\"Α\":\"Α\",\"Ā\":\"Ā\",\"⩓\":\"⩓\",\"Ą\":\"Ą\",\"𝔸\":\"𝔸\",\"⁡\":\"⁡\",\"Å\":\"Å\",\"Å\":\"Å\",\"𝒜\":\"𝒜\",\"≔\":\"≔\",\"Ã\":\"Ã\",\"Ã\":\"Ã\",\"Ä\":\"Ä\",\"Ä\":\"Ä\",\"∖\":\"∖\",\"⫧\":\"⫧\",\"⌆\":\"⌆\",\"Б\":\"Б\",\"∵\":\"∵\",\"ℬ\":\"ℬ\",\"Β\":\"Β\",\"𝔅\":\"𝔅\",\"𝔹\":\"𝔹\",\"˘\":\"˘\",\"ℬ\":\"ℬ\",\"≎\":\"≎\",\"Ч\":\"Ч\",\"©\":\"©\",\"©\":\"©\",\"Ć\":\"Ć\",\"⋒\":\"⋒\",\"ⅅ\":\"ⅅ\",\"ℭ\":\"ℭ\",\"Č\":\"Č\",\"Ç\":\"Ç\",\"Ç\":\"Ç\",\"Ĉ\":\"Ĉ\",\"∰\":\"∰\",\"Ċ\":\"Ċ\",\"¸\":\"¸\",\"·\":\"·\",\"ℭ\":\"ℭ\",\"Χ\":\"Χ\",\"⊙\":\"⊙\",\"⊖\":\"⊖\",\"⊕\":\"⊕\",\"⊗\":\"⊗\",\"∲\":\"∲\",\"”\":\"”\",\"’\":\"’\",\"∷\":\"∷\",\"⩴\":\"⩴\",\"≡\":\"≡\",\"∯\":\"∯\",\"∮\":\"∮\",\"ℂ\":\"ℂ\",\"∐\":\"∐\",\"∳\":\"∳\",\"⨯\":\"⨯\",\"𝒞\":\"𝒞\",\"⋓\":\"⋓\",\"≍\":\"≍\",\"ⅅ\":\"ⅅ\",\"⤑\":\"⤑\",\"Ђ\":\"Ђ\",\"Ѕ\":\"Ѕ\",\"Џ\":\"Џ\",\"‡\":\"‡\",\"↡\":\"↡\",\"⫤\":\"⫤\",\"Ď\":\"Ď\",\"Д\":\"Д\",\"∇\":\"∇\",\"Δ\":\"Δ\",\"𝔇\":\"𝔇\",\"´\":\"´\",\"˙\":\"˙\",\"˝\":\"˝\",\"`\":\"`\",\"˜\":\"˜\",\"⋄\":\"⋄\",\"ⅆ\":\"ⅆ\",\"𝔻\":\"𝔻\",\"¨\":\"¨\",\"⃜\":\"⃜\",\"≐\":\"≐\",\"∯\":\"∯\",\"¨\":\"¨\",\"⇓\":\"⇓\",\"⇐\":\"⇐\",\"⇔\":\"⇔\",\"⫤\":\"⫤\",\"⟸\":\"⟸\",\"⟺\":\"⟺\",\"⟹\":\"⟹\",\"⇒\":\"⇒\",\"⊨\":\"⊨\",\"⇑\":\"⇑\",\"⇕\":\"⇕\",\"∥\":\"∥\",\"↓\":\"↓\",\"⤓\":\"⤓\",\"⇵\":\"⇵\",\"̑\":\"̑\",\"⥐\":\"⥐\",\"⥞\":\"⥞\",\"↽\":\"↽\",\"⥖\":\"⥖\",\"⥟\":\"⥟\",\"⇁\":\"⇁\",\"⥗\":\"⥗\",\"⊤\":\"⊤\",\"↧\":\"↧\",\"⇓\":\"⇓\",\"𝒟\":\"𝒟\",\"Đ\":\"Đ\",\"Ŋ\":\"Ŋ\",\"Ð\":\"Ð\",\"Ð\":\"Ð\",\"É\":\"É\",\"É\":\"É\",\"Ě\":\"Ě\",\"Ê\":\"Ê\",\"Ê\":\"Ê\",\"Э\":\"Э\",\"Ė\":\"Ė\",\"𝔈\":\"𝔈\",\"È\":\"È\",\"È\":\"È\",\"∈\":\"∈\",\"Ē\":\"Ē\",\"◻\":\"◻\",\"▫\":\"▫\",\"Ę\":\"Ę\",\"𝔼\":\"𝔼\",\"Ε\":\"Ε\",\"⩵\":\"⩵\",\"≂\":\"≂\",\"⇌\":\"⇌\",\"ℰ\":\"ℰ\",\"⩳\":\"⩳\",\"Η\":\"Η\",\"Ë\":\"Ë\",\"Ë\":\"Ë\",\"∃\":\"∃\",\"ⅇ\":\"ⅇ\",\"Ф\":\"Ф\",\"𝔉\":\"𝔉\",\"◼\":\"◼\",\"▪\":\"▪\",\"𝔽\":\"𝔽\",\"∀\":\"∀\",\"ℱ\":\"ℱ\",\"ℱ\":\"ℱ\",\"Ѓ\":\"Ѓ\",\">\":\">\",\">\":\">\",\"Γ\":\"Γ\",\"Ϝ\":\"Ϝ\",\"Ğ\":\"Ğ\",\"Ģ\":\"Ģ\",\"Ĝ\":\"Ĝ\",\"Г\":\"Г\",\"Ġ\":\"Ġ\",\"𝔊\":\"𝔊\",\"⋙\":\"⋙\",\"𝔾\":\"𝔾\",\"≥\":\"≥\",\"⋛\":\"⋛\",\"≧\":\"≧\",\"⪢\":\"⪢\",\"≷\":\"≷\",\"⩾\":\"⩾\",\"≳\":\"≳\",\"𝒢\":\"𝒢\",\"≫\":\"≫\",\"Ъ\":\"Ъ\",\"ˇ\":\"ˇ\",\"^\":\"^\",\"Ĥ\":\"Ĥ\",\"ℌ\":\"ℌ\",\"ℋ\":\"ℋ\",\"ℍ\":\"ℍ\",\"─\":\"─\",\"ℋ\":\"ℋ\",\"Ħ\":\"Ħ\",\"≎\":\"≎\",\"≏\":\"≏\",\"Е\":\"Е\",\"IJ\":\"IJ\",\"Ё\":\"Ё\",\"Í\":\"Í\",\"Í\":\"Í\",\"Î\":\"Î\",\"Î\":\"Î\",\"И\":\"И\",\"İ\":\"İ\",\"ℑ\":\"ℑ\",\"Ì\":\"Ì\",\"Ì\":\"Ì\",\"ℑ\":\"ℑ\",\"Ī\":\"Ī\",\"ⅈ\":\"ⅈ\",\"⇒\":\"⇒\",\"∬\":\"∬\",\"∫\":\"∫\",\"⋂\":\"⋂\",\"⁣\":\"⁣\",\"⁢\":\"⁢\",\"Į\":\"Į\",\"𝕀\":\"𝕀\",\"Ι\":\"Ι\",\"ℐ\":\"ℐ\",\"Ĩ\":\"Ĩ\",\"І\":\"І\",\"Ï\":\"Ï\",\"Ï\":\"Ï\",\"Ĵ\":\"Ĵ\",\"Й\":\"Й\",\"𝔍\":\"𝔍\",\"𝕁\":\"𝕁\",\"𝒥\":\"𝒥\",\"Ј\":\"Ј\",\"Є\":\"Є\",\"Х\":\"Х\",\"Ќ\":\"Ќ\",\"Κ\":\"Κ\",\"Ķ\":\"Ķ\",\"К\":\"К\",\"𝔎\":\"𝔎\",\"𝕂\":\"𝕂\",\"𝒦\":\"𝒦\",\"Љ\":\"Љ\",\"<\":\"<\",\"<\":\"<\",\"Ĺ\":\"Ĺ\",\"Λ\":\"Λ\",\"⟪\":\"⟪\",\"ℒ\":\"ℒ\",\"↞\":\"↞\",\"Ľ\":\"Ľ\",\"Ļ\":\"Ļ\",\"Л\":\"Л\",\"⟨\":\"⟨\",\"←\":\"←\",\"⇤\":\"⇤\",\"⇆\":\"⇆\",\"⌈\":\"⌈\",\"⟦\":\"⟦\",\"⥡\":\"⥡\",\"⇃\":\"⇃\",\"⥙\":\"⥙\",\"⌊\":\"⌊\",\"↔\":\"↔\",\"⥎\":\"⥎\",\"⊣\":\"⊣\",\"↤\":\"↤\",\"⥚\":\"⥚\",\"⊲\":\"⊲\",\"⧏\":\"⧏\",\"⊴\":\"⊴\",\"⥑\":\"⥑\",\"⥠\":\"⥠\",\"↿\":\"↿\",\"⥘\":\"⥘\",\"↼\":\"↼\",\"⥒\":\"⥒\",\"⇐\":\"⇐\",\"⇔\":\"⇔\",\"⋚\":\"⋚\",\"≦\":\"≦\",\"≶\":\"≶\",\"⪡\":\"⪡\",\"⩽\":\"⩽\",\"≲\":\"≲\",\"𝔏\":\"𝔏\",\"⋘\":\"⋘\",\"⇚\":\"⇚\",\"Ŀ\":\"Ŀ\",\"⟵\":\"⟵\",\"⟷\":\"⟷\",\"⟶\":\"⟶\",\"⟸\":\"⟸\",\"⟺\":\"⟺\",\"⟹\":\"⟹\",\"𝕃\":\"𝕃\",\"↙\":\"↙\",\"↘\":\"↘\",\"ℒ\":\"ℒ\",\"↰\":\"↰\",\"Ł\":\"Ł\",\"≪\":\"≪\",\"⤅\":\"⤅\",\"М\":\"М\",\" \":\" \",\"ℳ\":\"ℳ\",\"𝔐\":\"𝔐\",\"∓\":\"∓\",\"𝕄\":\"𝕄\",\"ℳ\":\"ℳ\",\"Μ\":\"Μ\",\"Њ\":\"Њ\",\"Ń\":\"Ń\",\"Ň\":\"Ň\",\"Ņ\":\"Ņ\",\"Н\":\"Н\",\"​\":\"​\",\"​\":\"​\",\"​\":\"​\",\"​\":\"​\",\"≫\":\"≫\",\"≪\":\"≪\",\" \":\"\\n\",\"𝔑\":\"𝔑\",\"⁠\":\"⁠\",\" \":\" \",\"ℕ\":\"ℕ\",\"⫬\":\"⫬\",\"≢\":\"≢\",\"≭\":\"≭\",\"∦\":\"∦\",\"∉\":\"∉\",\"≠\":\"≠\",\"≂̸\":\"≂̸\",\"∄\":\"∄\",\"≯\":\"≯\",\"≱\":\"≱\",\"≧̸\":\"≧̸\",\"≫̸\":\"≫̸\",\"≹\":\"≹\",\"⩾̸\":\"⩾̸\",\"≵\":\"≵\",\"≎̸\":\"≎̸\",\"≏̸\":\"≏̸\",\"⋪\":\"⋪\",\"⧏̸\":\"⧏̸\",\"⋬\":\"⋬\",\"≮\":\"≮\",\"≰\":\"≰\",\"≸\":\"≸\",\"≪̸\":\"≪̸\",\"⩽̸\":\"⩽̸\",\"≴\":\"≴\",\"⪢̸\":\"⪢̸\",\"⪡̸\":\"⪡̸\",\"⊀\":\"⊀\",\"⪯̸\":\"⪯̸\",\"⋠\":\"⋠\",\"∌\":\"∌\",\"⋫\":\"⋫\",\"⧐̸\":\"⧐̸\",\"⋭\":\"⋭\",\"⊏̸\":\"⊏̸\",\"⋢\":\"⋢\",\"⊐̸\":\"⊐̸\",\"⋣\":\"⋣\",\"⊂⃒\":\"⊂⃒\",\"⊈\":\"⊈\",\"⊁\":\"⊁\",\"⪰̸\":\"⪰̸\",\"⋡\":\"⋡\",\"≿̸\":\"≿̸\",\"⊃⃒\":\"⊃⃒\",\"⊉\":\"⊉\",\"≁\":\"≁\",\"≄\":\"≄\",\"≇\":\"≇\",\"≉\":\"≉\",\"∤\":\"∤\",\"𝒩\":\"𝒩\",\"Ñ\":\"Ñ\",\"Ñ\":\"Ñ\",\"Ν\":\"Ν\",\"Œ\":\"Œ\",\"Ó\":\"Ó\",\"Ó\":\"Ó\",\"Ô\":\"Ô\",\"Ô\":\"Ô\",\"О\":\"О\",\"Ő\":\"Ő\",\"𝔒\":\"𝔒\",\"Ò\":\"Ò\",\"Ò\":\"Ò\",\"Ō\":\"Ō\",\"Ω\":\"Ω\",\"Ο\":\"Ο\",\"𝕆\":\"𝕆\",\"“\":\"“\",\"‘\":\"‘\",\"⩔\":\"⩔\",\"𝒪\":\"𝒪\",\"Ø\":\"Ø\",\"Ø\":\"Ø\",\"Õ\":\"Õ\",\"Õ\":\"Õ\",\"⨷\":\"⨷\",\"Ö\":\"Ö\",\"Ö\":\"Ö\",\"‾\":\"‾\",\"⏞\":\"⏞\",\"⎴\":\"⎴\",\"⏜\":\"⏜\",\"∂\":\"∂\",\"П\":\"П\",\"𝔓\":\"𝔓\",\"Φ\":\"Φ\",\"Π\":\"Π\",\"±\":\"±\",\"ℌ\":\"ℌ\",\"ℙ\":\"ℙ\",\"⪻\":\"⪻\",\"≺\":\"≺\",\"⪯\":\"⪯\",\"≼\":\"≼\",\"≾\":\"≾\",\"″\":\"″\",\"∏\":\"∏\",\"∷\":\"∷\",\"∝\":\"∝\",\"𝒫\":\"𝒫\",\"Ψ\":\"Ψ\",\""\":'\"',\""\":'\"',\"𝔔\":\"𝔔\",\"ℚ\":\"ℚ\",\"𝒬\":\"𝒬\",\"⤐\":\"⤐\",\"®\":\"®\",\"®\":\"®\",\"Ŕ\":\"Ŕ\",\"⟫\":\"⟫\",\"↠\":\"↠\",\"⤖\":\"⤖\",\"Ř\":\"Ř\",\"Ŗ\":\"Ŗ\",\"Р\":\"Р\",\"ℜ\":\"ℜ\",\"∋\":\"∋\",\"⇋\":\"⇋\",\"⥯\":\"⥯\",\"ℜ\":\"ℜ\",\"Ρ\":\"Ρ\",\"⟩\":\"⟩\",\"→\":\"→\",\"⇥\":\"⇥\",\"⇄\":\"⇄\",\"⌉\":\"⌉\",\"⟧\":\"⟧\",\"⥝\":\"⥝\",\"⇂\":\"⇂\",\"⥕\":\"⥕\",\"⌋\":\"⌋\",\"⊢\":\"⊢\",\"↦\":\"↦\",\"⥛\":\"⥛\",\"⊳\":\"⊳\",\"⧐\":\"⧐\",\"⊵\":\"⊵\",\"⥏\":\"⥏\",\"⥜\":\"⥜\",\"↾\":\"↾\",\"⥔\":\"⥔\",\"⇀\":\"⇀\",\"⥓\":\"⥓\",\"⇒\":\"⇒\",\"ℝ\":\"ℝ\",\"⥰\":\"⥰\",\"⇛\":\"⇛\",\"ℛ\":\"ℛ\",\"↱\":\"↱\",\"⧴\":\"⧴\",\"Щ\":\"Щ\",\"Ш\":\"Ш\",\"Ь\":\"Ь\",\"Ś\":\"Ś\",\"⪼\":\"⪼\",\"Š\":\"Š\",\"Ş\":\"Ş\",\"Ŝ\":\"Ŝ\",\"С\":\"С\",\"𝔖\":\"𝔖\",\"↓\":\"↓\",\"←\":\"←\",\"→\":\"→\",\"↑\":\"↑\",\"Σ\":\"Σ\",\"∘\":\"∘\",\"𝕊\":\"𝕊\",\"√\":\"√\",\"□\":\"□\",\"⊓\":\"⊓\",\"⊏\":\"⊏\",\"⊑\":\"⊑\",\"⊐\":\"⊐\",\"⊒\":\"⊒\",\"⊔\":\"⊔\",\"𝒮\":\"𝒮\",\"⋆\":\"⋆\",\"⋐\":\"⋐\",\"⋐\":\"⋐\",\"⊆\":\"⊆\",\"≻\":\"≻\",\"⪰\":\"⪰\",\"≽\":\"≽\",\"≿\":\"≿\",\"∋\":\"∋\",\"∑\":\"∑\",\"⋑\":\"⋑\",\"⊃\":\"⊃\",\"⊇\":\"⊇\",\"⋑\":\"⋑\",\"Þ\":\"Þ\",\"Þ\":\"Þ\",\"™\":\"™\",\"Ћ\":\"Ћ\",\"Ц\":\"Ц\",\" \":\"\\t\",\"Τ\":\"Τ\",\"Ť\":\"Ť\",\"Ţ\":\"Ţ\",\"Т\":\"Т\",\"𝔗\":\"𝔗\",\"∴\":\"∴\",\"Θ\":\"Θ\",\"  \":\"  \",\" \":\" \",\"∼\":\"∼\",\"≃\":\"≃\",\"≅\":\"≅\",\"≈\":\"≈\",\"𝕋\":\"𝕋\",\"⃛\":\"⃛\",\"𝒯\":\"𝒯\",\"Ŧ\":\"Ŧ\",\"Ú\":\"Ú\",\"Ú\":\"Ú\",\"↟\":\"↟\",\"⥉\":\"⥉\",\"Ў\":\"Ў\",\"Ŭ\":\"Ŭ\",\"Û\":\"Û\",\"Û\":\"Û\",\"У\":\"У\",\"Ű\":\"Ű\",\"𝔘\":\"𝔘\",\"Ù\":\"Ù\",\"Ù\":\"Ù\",\"Ū\":\"Ū\",\"_\":\"_\",\"⏟\":\"⏟\",\"⎵\":\"⎵\",\"⏝\":\"⏝\",\"⋃\":\"⋃\",\"⊎\":\"⊎\",\"Ų\":\"Ų\",\"𝕌\":\"𝕌\",\"↑\":\"↑\",\"⤒\":\"⤒\",\"⇅\":\"⇅\",\"↕\":\"↕\",\"⥮\":\"⥮\",\"⊥\":\"⊥\",\"↥\":\"↥\",\"⇑\":\"⇑\",\"⇕\":\"⇕\",\"↖\":\"↖\",\"↗\":\"↗\",\"ϒ\":\"ϒ\",\"Υ\":\"Υ\",\"Ů\":\"Ů\",\"𝒰\":\"𝒰\",\"Ũ\":\"Ũ\",\"Ü\":\"Ü\",\"Ü\":\"Ü\",\"⊫\":\"⊫\",\"⫫\":\"⫫\",\"В\":\"В\",\"⊩\":\"⊩\",\"⫦\":\"⫦\",\"⋁\":\"⋁\",\"‖\":\"‖\",\"‖\":\"‖\",\"∣\":\"∣\",\"|\":\"|\",\"❘\":\"❘\",\"≀\":\"≀\",\" \":\" \",\"𝔙\":\"𝔙\",\"𝕍\":\"𝕍\",\"𝒱\":\"𝒱\",\"⊪\":\"⊪\",\"Ŵ\":\"Ŵ\",\"⋀\":\"⋀\",\"𝔚\":\"𝔚\",\"𝕎\":\"𝕎\",\"𝒲\":\"𝒲\",\"𝔛\":\"𝔛\",\"Ξ\":\"Ξ\",\"𝕏\":\"𝕏\",\"𝒳\":\"𝒳\",\"Я\":\"Я\",\"Ї\":\"Ї\",\"Ю\":\"Ю\",\"Ý\":\"Ý\",\"Ý\":\"Ý\",\"Ŷ\":\"Ŷ\",\"Ы\":\"Ы\",\"𝔜\":\"𝔜\",\"𝕐\":\"𝕐\",\"𝒴\":\"𝒴\",\"Ÿ\":\"Ÿ\",\"Ж\":\"Ж\",\"Ź\":\"Ź\",\"Ž\":\"Ž\",\"З\":\"З\",\"Ż\":\"Ż\",\"​\":\"​\",\"Ζ\":\"Ζ\",\"ℨ\":\"ℨ\",\"ℤ\":\"ℤ\",\"𝒵\":\"𝒵\",\"á\":\"á\",\"á\":\"á\",\"ă\":\"ă\",\"∾\":\"∾\",\"∾̳\":\"∾̳\",\"∿\":\"∿\",\"â\":\"â\",\"â\":\"â\",\"´\":\"´\",\"´\":\"´\",\"а\":\"а\",\"æ\":\"æ\",\"æ\":\"æ\",\"⁡\":\"⁡\",\"𝔞\":\"𝔞\",\"à\":\"à\",\"à\":\"à\",\"ℵ\":\"ℵ\",\"ℵ\":\"ℵ\",\"α\":\"α\",\"ā\":\"ā\",\"⨿\":\"⨿\",\"&\":\"&\",\"&\":\"&\",\"∧\":\"∧\",\"⩕\":\"⩕\",\"⩜\":\"⩜\",\"⩘\":\"⩘\",\"⩚\":\"⩚\",\"∠\":\"∠\",\"⦤\":\"⦤\",\"∠\":\"∠\",\"∡\":\"∡\",\"⦨\":\"⦨\",\"⦩\":\"⦩\",\"⦪\":\"⦪\",\"⦫\":\"⦫\",\"⦬\":\"⦬\",\"⦭\":\"⦭\",\"⦮\":\"⦮\",\"⦯\":\"⦯\",\"∟\":\"∟\",\"⊾\":\"⊾\",\"⦝\":\"⦝\",\"∢\":\"∢\",\"Å\":\"Å\",\"⍼\":\"⍼\",\"ą\":\"ą\",\"𝕒\":\"𝕒\",\"≈\":\"≈\",\"⩰\":\"⩰\",\"⩯\":\"⩯\",\"≊\":\"≊\",\"≋\":\"≋\",\"'\":\"'\",\"≈\":\"≈\",\"≊\":\"≊\",\"å\":\"å\",\"å\":\"å\",\"𝒶\":\"𝒶\",\"*\":\"*\",\"≈\":\"≈\",\"≍\":\"≍\",\"ã\":\"ã\",\"ã\":\"ã\",\"ä\":\"ä\",\"ä\":\"ä\",\"∳\":\"∳\",\"⨑\":\"⨑\",\"⫭\":\"⫭\",\"≌\":\"≌\",\"϶\":\"϶\",\"‵\":\"‵\",\"∽\":\"∽\",\"⋍\":\"⋍\",\"⊽\":\"⊽\",\"⌅\":\"⌅\",\"⌅\":\"⌅\",\"⎵\":\"⎵\",\"⎶\":\"⎶\",\"≌\":\"≌\",\"б\":\"б\",\"„\":\"„\",\"∵\":\"∵\",\"∵\":\"∵\",\"⦰\":\"⦰\",\"϶\":\"϶\",\"ℬ\":\"ℬ\",\"β\":\"β\",\"ℶ\":\"ℶ\",\"≬\":\"≬\",\"𝔟\":\"𝔟\",\"⋂\":\"⋂\",\"◯\":\"◯\",\"⋃\":\"⋃\",\"⨀\":\"⨀\",\"⨁\":\"⨁\",\"⨂\":\"⨂\",\"⨆\":\"⨆\",\"★\":\"★\",\"▽\":\"▽\",\"△\":\"△\",\"⨄\":\"⨄\",\"⋁\":\"⋁\",\"⋀\":\"⋀\",\"⤍\":\"⤍\",\"⧫\":\"⧫\",\"▪\":\"▪\",\"▴\":\"▴\",\"▾\":\"▾\",\"◂\":\"◂\",\"▸\":\"▸\",\"␣\":\"␣\",\"▒\":\"▒\",\"░\":\"░\",\"▓\":\"▓\",\"█\":\"█\",\"=⃥\":\"=⃥\",\"≡⃥\":\"≡⃥\",\"⌐\":\"⌐\",\"𝕓\":\"𝕓\",\"⊥\":\"⊥\",\"⊥\":\"⊥\",\"⋈\":\"⋈\",\"╗\":\"╗\",\"╔\":\"╔\",\"╖\":\"╖\",\"╓\":\"╓\",\"═\":\"═\",\"╦\":\"╦\",\"╩\":\"╩\",\"╤\":\"╤\",\"╧\":\"╧\",\"╝\":\"╝\",\"╚\":\"╚\",\"╜\":\"╜\",\"╙\":\"╙\",\"║\":\"║\",\"╬\":\"╬\",\"╣\":\"╣\",\"╠\":\"╠\",\"╫\":\"╫\",\"╢\":\"╢\",\"╟\":\"╟\",\"⧉\":\"⧉\",\"╕\":\"╕\",\"╒\":\"╒\",\"┐\":\"┐\",\"┌\":\"┌\",\"─\":\"─\",\"╥\":\"╥\",\"╨\":\"╨\",\"┬\":\"┬\",\"┴\":\"┴\",\"⊟\":\"⊟\",\"⊞\":\"⊞\",\"⊠\":\"⊠\",\"╛\":\"╛\",\"╘\":\"╘\",\"┘\":\"┘\",\"└\":\"└\",\"│\":\"│\",\"╪\":\"╪\",\"╡\":\"╡\",\"╞\":\"╞\",\"┼\":\"┼\",\"┤\":\"┤\",\"├\":\"├\",\"‵\":\"‵\",\"˘\":\"˘\",\"¦\":\"¦\",\"¦\":\"¦\",\"𝒷\":\"𝒷\",\"⁏\":\"⁏\",\"∽\":\"∽\",\"⋍\":\"⋍\",\"\\":\"\\\\\",\"⧅\":\"⧅\",\"⟈\":\"⟈\",\"•\":\"•\",\"•\":\"•\",\"≎\":\"≎\",\"⪮\":\"⪮\",\"≏\":\"≏\",\"≏\":\"≏\",\"ć\":\"ć\",\"∩\":\"∩\",\"⩄\":\"⩄\",\"⩉\":\"⩉\",\"⩋\":\"⩋\",\"⩇\":\"⩇\",\"⩀\":\"⩀\",\"∩︀\":\"∩︀\",\"⁁\":\"⁁\",\"ˇ\":\"ˇ\",\"⩍\":\"⩍\",\"č\":\"č\",\"ç\":\"ç\",\"ç\":\"ç\",\"ĉ\":\"ĉ\",\"⩌\":\"⩌\",\"⩐\":\"⩐\",\"ċ\":\"ċ\",\"¸\":\"¸\",\"¸\":\"¸\",\"⦲\":\"⦲\",\"¢\":\"¢\",\"¢\":\"¢\",\"·\":\"·\",\"𝔠\":\"𝔠\",\"ч\":\"ч\",\"✓\":\"✓\",\"✓\":\"✓\",\"χ\":\"χ\",\"○\":\"○\",\"⧃\":\"⧃\",\"ˆ\":\"ˆ\",\"≗\":\"≗\",\"↺\":\"↺\",\"↻\":\"↻\",\"®\":\"®\",\"Ⓢ\":\"Ⓢ\",\"⊛\":\"⊛\",\"⊚\":\"⊚\",\"⊝\":\"⊝\",\"≗\":\"≗\",\"⨐\":\"⨐\",\"⫯\":\"⫯\",\"⧂\":\"⧂\",\"♣\":\"♣\",\"♣\":\"♣\",\":\":\":\",\"≔\":\"≔\",\"≔\":\"≔\",\",\":\",\",\"@\":\"@\",\"∁\":\"∁\",\"∘\":\"∘\",\"∁\":\"∁\",\"ℂ\":\"ℂ\",\"≅\":\"≅\",\"⩭\":\"⩭\",\"∮\":\"∮\",\"𝕔\":\"𝕔\",\"∐\":\"∐\",\"©\":\"©\",\"©\":\"©\",\"℗\":\"℗\",\"↵\":\"↵\",\"✗\":\"✗\",\"𝒸\":\"𝒸\",\"⫏\":\"⫏\",\"⫑\":\"⫑\",\"⫐\":\"⫐\",\"⫒\":\"⫒\",\"⋯\":\"⋯\",\"⤸\":\"⤸\",\"⤵\":\"⤵\",\"⋞\":\"⋞\",\"⋟\":\"⋟\",\"↶\":\"↶\",\"⤽\":\"⤽\",\"∪\":\"∪\",\"⩈\":\"⩈\",\"⩆\":\"⩆\",\"⩊\":\"⩊\",\"⊍\":\"⊍\",\"⩅\":\"⩅\",\"∪︀\":\"∪︀\",\"↷\":\"↷\",\"⤼\":\"⤼\",\"⋞\":\"⋞\",\"⋟\":\"⋟\",\"⋎\":\"⋎\",\"⋏\":\"⋏\",\"¤\":\"¤\",\"¤\":\"¤\",\"↶\":\"↶\",\"↷\":\"↷\",\"⋎\":\"⋎\",\"⋏\":\"⋏\",\"∲\":\"∲\",\"∱\":\"∱\",\"⌭\":\"⌭\",\"⇓\":\"⇓\",\"⥥\":\"⥥\",\"†\":\"†\",\"ℸ\":\"ℸ\",\"↓\":\"↓\",\"‐\":\"‐\",\"⊣\":\"⊣\",\"⤏\":\"⤏\",\"˝\":\"˝\",\"ď\":\"ď\",\"д\":\"д\",\"ⅆ\":\"ⅆ\",\"‡\":\"‡\",\"⇊\":\"⇊\",\"⩷\":\"⩷\",\"°\":\"°\",\"°\":\"°\",\"δ\":\"δ\",\"⦱\":\"⦱\",\"⥿\":\"⥿\",\"𝔡\":\"𝔡\",\"⇃\":\"⇃\",\"⇂\":\"⇂\",\"⋄\":\"⋄\",\"⋄\":\"⋄\",\"♦\":\"♦\",\"♦\":\"♦\",\"¨\":\"¨\",\"ϝ\":\"ϝ\",\"⋲\":\"⋲\",\"÷\":\"÷\",\"÷\":\"÷\",\"÷\":\"÷\",\"⋇\":\"⋇\",\"⋇\":\"⋇\",\"ђ\":\"ђ\",\"⌞\":\"⌞\",\"⌍\":\"⌍\",\"$\":\"$\",\"𝕕\":\"𝕕\",\"˙\":\"˙\",\"≐\":\"≐\",\"≑\":\"≑\",\"∸\":\"∸\",\"∔\":\"∔\",\"⊡\":\"⊡\",\"⌆\":\"⌆\",\"↓\":\"↓\",\"⇊\":\"⇊\",\"⇃\":\"⇃\",\"⇂\":\"⇂\",\"⤐\":\"⤐\",\"⌟\":\"⌟\",\"⌌\":\"⌌\",\"𝒹\":\"𝒹\",\"ѕ\":\"ѕ\",\"⧶\":\"⧶\",\"đ\":\"đ\",\"⋱\":\"⋱\",\"▿\":\"▿\",\"▾\":\"▾\",\"⇵\":\"⇵\",\"⥯\":\"⥯\",\"⦦\":\"⦦\",\"џ\":\"џ\",\"⟿\":\"⟿\",\"⩷\":\"⩷\",\"≑\":\"≑\",\"é\":\"é\",\"é\":\"é\",\"⩮\":\"⩮\",\"ě\":\"ě\",\"≖\":\"≖\",\"ê\":\"ê\",\"ê\":\"ê\",\"≕\":\"≕\",\"э\":\"э\",\"ė\":\"ė\",\"ⅇ\":\"ⅇ\",\"≒\":\"≒\",\"𝔢\":\"𝔢\",\"⪚\":\"⪚\",\"è\":\"è\",\"è\":\"è\",\"⪖\":\"⪖\",\"⪘\":\"⪘\",\"⪙\":\"⪙\",\"⏧\":\"⏧\",\"ℓ\":\"ℓ\",\"⪕\":\"⪕\",\"⪗\":\"⪗\",\"ē\":\"ē\",\"∅\":\"∅\",\"∅\":\"∅\",\"∅\":\"∅\",\" \":\" \",\" \":\" \",\" \":\" \",\"ŋ\":\"ŋ\",\" \":\" \",\"ę\":\"ę\",\"𝕖\":\"𝕖\",\"⋕\":\"⋕\",\"⧣\":\"⧣\",\"⩱\":\"⩱\",\"ε\":\"ε\",\"ε\":\"ε\",\"ϵ\":\"ϵ\",\"≖\":\"≖\",\"≕\":\"≕\",\"≂\":\"≂\",\"⪖\":\"⪖\",\"⪕\":\"⪕\",\"=\":\"=\",\"≟\":\"≟\",\"≡\":\"≡\",\"⩸\":\"⩸\",\"⧥\":\"⧥\",\"≓\":\"≓\",\"⥱\":\"⥱\",\"ℯ\":\"ℯ\",\"≐\":\"≐\",\"≂\":\"≂\",\"η\":\"η\",\"ð\":\"ð\",\"ð\":\"ð\",\"ë\":\"ë\",\"ë\":\"ë\",\"€\":\"€\",\"!\":\"!\",\"∃\":\"∃\",\"ℰ\":\"ℰ\",\"ⅇ\":\"ⅇ\",\"≒\":\"≒\",\"ф\":\"ф\",\"♀\":\"♀\",\"ffi\":\"ffi\",\"ff\":\"ff\",\"ffl\":\"ffl\",\"𝔣\":\"𝔣\",\"fi\":\"fi\",\"fj\":\"fj\",\"♭\":\"♭\",\"fl\":\"fl\",\"▱\":\"▱\",\"ƒ\":\"ƒ\",\"𝕗\":\"𝕗\",\"∀\":\"∀\",\"⋔\":\"⋔\",\"⫙\":\"⫙\",\"⨍\":\"⨍\",\"½\":\"½\",\"½\":\"½\",\"⅓\":\"⅓\",\"¼\":\"¼\",\"¼\":\"¼\",\"⅕\":\"⅕\",\"⅙\":\"⅙\",\"⅛\":\"⅛\",\"⅔\":\"⅔\",\"⅖\":\"⅖\",\"¾\":\"¾\",\"¾\":\"¾\",\"⅗\":\"⅗\",\"⅜\":\"⅜\",\"⅘\":\"⅘\",\"⅚\":\"⅚\",\"⅝\":\"⅝\",\"⅞\":\"⅞\",\"⁄\":\"⁄\",\"⌢\":\"⌢\",\"𝒻\":\"𝒻\",\"≧\":\"≧\",\"⪌\":\"⪌\",\"ǵ\":\"ǵ\",\"γ\":\"γ\",\"ϝ\":\"ϝ\",\"⪆\":\"⪆\",\"ğ\":\"ğ\",\"ĝ\":\"ĝ\",\"г\":\"г\",\"ġ\":\"ġ\",\"≥\":\"≥\",\"⋛\":\"⋛\",\"≥\":\"≥\",\"≧\":\"≧\",\"⩾\":\"⩾\",\"⩾\":\"⩾\",\"⪩\":\"⪩\",\"⪀\":\"⪀\",\"⪂\":\"⪂\",\"⪄\":\"⪄\",\"⋛︀\":\"⋛︀\",\"⪔\":\"⪔\",\"𝔤\":\"𝔤\",\"≫\":\"≫\",\"⋙\":\"⋙\",\"ℷ\":\"ℷ\",\"ѓ\":\"ѓ\",\"≷\":\"≷\",\"⪒\":\"⪒\",\"⪥\":\"⪥\",\"⪤\":\"⪤\",\"≩\":\"≩\",\"⪊\":\"⪊\",\"⪊\":\"⪊\",\"⪈\":\"⪈\",\"⪈\":\"⪈\",\"≩\":\"≩\",\"⋧\":\"⋧\",\"𝕘\":\"𝕘\",\"`\":\"`\",\"ℊ\":\"ℊ\",\"≳\":\"≳\",\"⪎\":\"⪎\",\"⪐\":\"⪐\",\">\":\">\",\">\":\">\",\"⪧\":\"⪧\",\"⩺\":\"⩺\",\"⋗\":\"⋗\",\"⦕\":\"⦕\",\"⩼\":\"⩼\",\"⪆\":\"⪆\",\"⥸\":\"⥸\",\"⋗\":\"⋗\",\"⋛\":\"⋛\",\"⪌\":\"⪌\",\"≷\":\"≷\",\"≳\":\"≳\",\"≩︀\":\"≩︀\",\"≩︀\":\"≩︀\",\"⇔\":\"⇔\",\" \":\" \",\"½\":\"½\",\"ℋ\":\"ℋ\",\"ъ\":\"ъ\",\"↔\":\"↔\",\"⥈\":\"⥈\",\"↭\":\"↭\",\"ℏ\":\"ℏ\",\"ĥ\":\"ĥ\",\"♥\":\"♥\",\"♥\":\"♥\",\"…\":\"…\",\"⊹\":\"⊹\",\"𝔥\":\"𝔥\",\"⤥\":\"⤥\",\"⤦\":\"⤦\",\"⇿\":\"⇿\",\"∻\":\"∻\",\"↩\":\"↩\",\"↪\":\"↪\",\"𝕙\":\"𝕙\",\"―\":\"―\",\"𝒽\":\"𝒽\",\"ℏ\":\"ℏ\",\"ħ\":\"ħ\",\"⁃\":\"⁃\",\"‐\":\"‐\",\"í\":\"í\",\"í\":\"í\",\"⁣\":\"⁣\",\"î\":\"î\",\"î\":\"î\",\"и\":\"и\",\"е\":\"е\",\"¡\":\"¡\",\"¡\":\"¡\",\"⇔\":\"⇔\",\"𝔦\":\"𝔦\",\"ì\":\"ì\",\"ì\":\"ì\",\"ⅈ\":\"ⅈ\",\"⨌\":\"⨌\",\"∭\":\"∭\",\"⧜\":\"⧜\",\"℩\":\"℩\",\"ij\":\"ij\",\"ī\":\"ī\",\"ℑ\":\"ℑ\",\"ℐ\":\"ℐ\",\"ℑ\":\"ℑ\",\"ı\":\"ı\",\"⊷\":\"⊷\",\"Ƶ\":\"Ƶ\",\"∈\":\"∈\",\"℅\":\"℅\",\"∞\":\"∞\",\"⧝\":\"⧝\",\"ı\":\"ı\",\"∫\":\"∫\",\"⊺\":\"⊺\",\"ℤ\":\"ℤ\",\"⊺\":\"⊺\",\"⨗\":\"⨗\",\"⨼\":\"⨼\",\"ё\":\"ё\",\"į\":\"į\",\"𝕚\":\"𝕚\",\"ι\":\"ι\",\"⨼\":\"⨼\",\"¿\":\"¿\",\"¿\":\"¿\",\"𝒾\":\"𝒾\",\"∈\":\"∈\",\"⋹\":\"⋹\",\"⋵\":\"⋵\",\"⋴\":\"⋴\",\"⋳\":\"⋳\",\"∈\":\"∈\",\"⁢\":\"⁢\",\"ĩ\":\"ĩ\",\"і\":\"і\",\"ï\":\"ï\",\"ï\":\"ï\",\"ĵ\":\"ĵ\",\"й\":\"й\",\"𝔧\":\"𝔧\",\"ȷ\":\"ȷ\",\"𝕛\":\"𝕛\",\"𝒿\":\"𝒿\",\"ј\":\"ј\",\"є\":\"є\",\"κ\":\"κ\",\"ϰ\":\"ϰ\",\"ķ\":\"ķ\",\"к\":\"к\",\"𝔨\":\"𝔨\",\"ĸ\":\"ĸ\",\"х\":\"х\",\"ќ\":\"ќ\",\"𝕜\":\"𝕜\",\"𝓀\":\"𝓀\",\"⇚\":\"⇚\",\"⇐\":\"⇐\",\"⤛\":\"⤛\",\"⤎\":\"⤎\",\"≦\":\"≦\",\"⪋\":\"⪋\",\"⥢\":\"⥢\",\"ĺ\":\"ĺ\",\"⦴\":\"⦴\",\"ℒ\":\"ℒ\",\"λ\":\"λ\",\"⟨\":\"⟨\",\"⦑\":\"⦑\",\"⟨\":\"⟨\",\"⪅\":\"⪅\",\"«\":\"«\",\"«\":\"«\",\"←\":\"←\",\"⇤\":\"⇤\",\"⤟\":\"⤟\",\"⤝\":\"⤝\",\"↩\":\"↩\",\"↫\":\"↫\",\"⤹\":\"⤹\",\"⥳\":\"⥳\",\"↢\":\"↢\",\"⪫\":\"⪫\",\"⤙\":\"⤙\",\"⪭\":\"⪭\",\"⪭︀\":\"⪭︀\",\"⤌\":\"⤌\",\"❲\":\"❲\",\"{\":\"{\",\"[\":\"[\",\"⦋\":\"⦋\",\"⦏\":\"⦏\",\"⦍\":\"⦍\",\"ľ\":\"ľ\",\"ļ\":\"ļ\",\"⌈\":\"⌈\",\"{\":\"{\",\"л\":\"л\",\"⤶\":\"⤶\",\"“\":\"“\",\"„\":\"„\",\"⥧\":\"⥧\",\"⥋\":\"⥋\",\"↲\":\"↲\",\"≤\":\"≤\",\"←\":\"←\",\"↢\":\"↢\",\"↽\":\"↽\",\"↼\":\"↼\",\"⇇\":\"⇇\",\"↔\":\"↔\",\"⇆\":\"⇆\",\"⇋\":\"⇋\",\"↭\":\"↭\",\"⋋\":\"⋋\",\"⋚\":\"⋚\",\"≤\":\"≤\",\"≦\":\"≦\",\"⩽\":\"⩽\",\"⩽\":\"⩽\",\"⪨\":\"⪨\",\"⩿\":\"⩿\",\"⪁\":\"⪁\",\"⪃\":\"⪃\",\"⋚︀\":\"⋚︀\",\"⪓\":\"⪓\",\"⪅\":\"⪅\",\"⋖\":\"⋖\",\"⋚\":\"⋚\",\"⪋\":\"⪋\",\"≶\":\"≶\",\"≲\":\"≲\",\"⥼\":\"⥼\",\"⌊\":\"⌊\",\"𝔩\":\"𝔩\",\"≶\":\"≶\",\"⪑\":\"⪑\",\"↽\":\"↽\",\"↼\":\"↼\",\"⥪\":\"⥪\",\"▄\":\"▄\",\"љ\":\"љ\",\"≪\":\"≪\",\"⇇\":\"⇇\",\"⌞\":\"⌞\",\"⥫\":\"⥫\",\"◺\":\"◺\",\"ŀ\":\"ŀ\",\"⎰\":\"⎰\",\"⎰\":\"⎰\",\"≨\":\"≨\",\"⪉\":\"⪉\",\"⪉\":\"⪉\",\"⪇\":\"⪇\",\"⪇\":\"⪇\",\"≨\":\"≨\",\"⋦\":\"⋦\",\"⟬\":\"⟬\",\"⇽\":\"⇽\",\"⟦\":\"⟦\",\"⟵\":\"⟵\",\"⟷\":\"⟷\",\"⟼\":\"⟼\",\"⟶\":\"⟶\",\"↫\":\"↫\",\"↬\":\"↬\",\"⦅\":\"⦅\",\"𝕝\":\"𝕝\",\"⨭\":\"⨭\",\"⨴\":\"⨴\",\"∗\":\"∗\",\"_\":\"_\",\"◊\":\"◊\",\"◊\":\"◊\",\"⧫\":\"⧫\",\"(\":\"(\",\"⦓\":\"⦓\",\"⇆\":\"⇆\",\"⌟\":\"⌟\",\"⇋\":\"⇋\",\"⥭\":\"⥭\",\"‎\":\"‎\",\"⊿\":\"⊿\",\"‹\":\"‹\",\"𝓁\":\"𝓁\",\"↰\":\"↰\",\"≲\":\"≲\",\"⪍\":\"⪍\",\"⪏\":\"⪏\",\"[\":\"[\",\"‘\":\"‘\",\"‚\":\"‚\",\"ł\":\"ł\",\"<\":\"<\",\"<\":\"<\",\"⪦\":\"⪦\",\"⩹\":\"⩹\",\"⋖\":\"⋖\",\"⋋\":\"⋋\",\"⋉\":\"⋉\",\"⥶\":\"⥶\",\"⩻\":\"⩻\",\"⦖\":\"⦖\",\"◃\":\"◃\",\"⊴\":\"⊴\",\"◂\":\"◂\",\"⥊\":\"⥊\",\"⥦\":\"⥦\",\"≨︀\":\"≨︀\",\"≨︀\":\"≨︀\",\"∺\":\"∺\",\"¯\":\"¯\",\"¯\":\"¯\",\"♂\":\"♂\",\"✠\":\"✠\",\"✠\":\"✠\",\"↦\":\"↦\",\"↦\":\"↦\",\"↧\":\"↧\",\"↤\":\"↤\",\"↥\":\"↥\",\"▮\":\"▮\",\"⨩\":\"⨩\",\"м\":\"м\",\"—\":\"—\",\"∡\":\"∡\",\"𝔪\":\"𝔪\",\"℧\":\"℧\",\"µ\":\"µ\",\"µ\":\"µ\",\"∣\":\"∣\",\"*\":\"*\",\"⫰\":\"⫰\",\"·\":\"·\",\"·\":\"·\",\"−\":\"−\",\"⊟\":\"⊟\",\"∸\":\"∸\",\"⨪\":\"⨪\",\"⫛\":\"⫛\",\"…\":\"…\",\"∓\":\"∓\",\"⊧\":\"⊧\",\"𝕞\":\"𝕞\",\"∓\":\"∓\",\"𝓂\":\"𝓂\",\"∾\":\"∾\",\"μ\":\"μ\",\"⊸\":\"⊸\",\"⊸\":\"⊸\",\"⋙̸\":\"⋙̸\",\"≫⃒\":\"≫⃒\",\"≫̸\":\"≫̸\",\"⇍\":\"⇍\",\"⇎\":\"⇎\",\"⋘̸\":\"⋘̸\",\"≪⃒\":\"≪⃒\",\"≪̸\":\"≪̸\",\"⇏\":\"⇏\",\"⊯\":\"⊯\",\"⊮\":\"⊮\",\"∇\":\"∇\",\"ń\":\"ń\",\"∠⃒\":\"∠⃒\",\"≉\":\"≉\",\"⩰̸\":\"⩰̸\",\"≋̸\":\"≋̸\",\"ʼn\":\"ʼn\",\"≉\":\"≉\",\"♮\":\"♮\",\"♮\":\"♮\",\"ℕ\":\"ℕ\",\" \":\" \",\" \":\" \",\"≎̸\":\"≎̸\",\"≏̸\":\"≏̸\",\"⩃\":\"⩃\",\"ň\":\"ň\",\"ņ\":\"ņ\",\"≇\":\"≇\",\"⩭̸\":\"⩭̸\",\"⩂\":\"⩂\",\"н\":\"н\",\"–\":\"–\",\"≠\":\"≠\",\"⇗\":\"⇗\",\"⤤\":\"⤤\",\"↗\":\"↗\",\"↗\":\"↗\",\"≐̸\":\"≐̸\",\"≢\":\"≢\",\"⤨\":\"⤨\",\"≂̸\":\"≂̸\",\"∄\":\"∄\",\"∄\":\"∄\",\"𝔫\":\"𝔫\",\"≧̸\":\"≧̸\",\"≱\":\"≱\",\"≱\":\"≱\",\"≧̸\":\"≧̸\",\"⩾̸\":\"⩾̸\",\"⩾̸\":\"⩾̸\",\"≵\":\"≵\",\"≯\":\"≯\",\"≯\":\"≯\",\"⇎\":\"⇎\",\"↮\":\"↮\",\"⫲\":\"⫲\",\"∋\":\"∋\",\"⋼\":\"⋼\",\"⋺\":\"⋺\",\"∋\":\"∋\",\"њ\":\"њ\",\"⇍\":\"⇍\",\"≦̸\":\"≦̸\",\"↚\":\"↚\",\"‥\":\"‥\",\"≰\":\"≰\",\"↚\":\"↚\",\"↮\":\"↮\",\"≰\":\"≰\",\"≦̸\":\"≦̸\",\"⩽̸\":\"⩽̸\",\"⩽̸\":\"⩽̸\",\"≮\":\"≮\",\"≴\":\"≴\",\"≮\":\"≮\",\"⋪\":\"⋪\",\"⋬\":\"⋬\",\"∤\":\"∤\",\"𝕟\":\"𝕟\",\"¬\":\"¬\",\"¬\":\"¬\",\"∉\":\"∉\",\"⋹̸\":\"⋹̸\",\"⋵̸\":\"⋵̸\",\"∉\":\"∉\",\"⋷\":\"⋷\",\"⋶\":\"⋶\",\"∌\":\"∌\",\"∌\":\"∌\",\"⋾\":\"⋾\",\"⋽\":\"⋽\",\"∦\":\"∦\",\"∦\":\"∦\",\"⫽⃥\":\"⫽⃥\",\"∂̸\":\"∂̸\",\"⨔\":\"⨔\",\"⊀\":\"⊀\",\"⋠\":\"⋠\",\"⪯̸\":\"⪯̸\",\"⊀\":\"⊀\",\"⪯̸\":\"⪯̸\",\"⇏\":\"⇏\",\"↛\":\"↛\",\"⤳̸\":\"⤳̸\",\"↝̸\":\"↝̸\",\"↛\":\"↛\",\"⋫\":\"⋫\",\"⋭\":\"⋭\",\"⊁\":\"⊁\",\"⋡\":\"⋡\",\"⪰̸\":\"⪰̸\",\"𝓃\":\"𝓃\",\"∤\":\"∤\",\"∦\":\"∦\",\"≁\":\"≁\",\"≄\":\"≄\",\"≄\":\"≄\",\"∤\":\"∤\",\"∦\":\"∦\",\"⋢\":\"⋢\",\"⋣\":\"⋣\",\"⊄\":\"⊄\",\"⫅̸\":\"⫅̸\",\"⊈\":\"⊈\",\"⊂⃒\":\"⊂⃒\",\"⊈\":\"⊈\",\"⫅̸\":\"⫅̸\",\"⊁\":\"⊁\",\"⪰̸\":\"⪰̸\",\"⊅\":\"⊅\",\"⫆̸\":\"⫆̸\",\"⊉\":\"⊉\",\"⊃⃒\":\"⊃⃒\",\"⊉\":\"⊉\",\"⫆̸\":\"⫆̸\",\"≹\":\"≹\",\"ñ\":\"ñ\",\"ñ\":\"ñ\",\"≸\":\"≸\",\"⋪\":\"⋪\",\"⋬\":\"⋬\",\"⋫\":\"⋫\",\"⋭\":\"⋭\",\"ν\":\"ν\",\"#\":\"#\",\"№\":\"№\",\" \":\" \",\"⊭\":\"⊭\",\"⤄\":\"⤄\",\"≍⃒\":\"≍⃒\",\"⊬\":\"⊬\",\"≥⃒\":\"≥⃒\",\">⃒\":\">⃒\",\"⧞\":\"⧞\",\"⤂\":\"⤂\",\"≤⃒\":\"≤⃒\",\"<⃒\":\"<⃒\",\"⊴⃒\":\"⊴⃒\",\"⤃\":\"⤃\",\"⊵⃒\":\"⊵⃒\",\"∼⃒\":\"∼⃒\",\"⇖\":\"⇖\",\"⤣\":\"⤣\",\"↖\":\"↖\",\"↖\":\"↖\",\"⤧\":\"⤧\",\"Ⓢ\":\"Ⓢ\",\"ó\":\"ó\",\"ó\":\"ó\",\"⊛\":\"⊛\",\"⊚\":\"⊚\",\"ô\":\"ô\",\"ô\":\"ô\",\"о\":\"о\",\"⊝\":\"⊝\",\"ő\":\"ő\",\"⨸\":\"⨸\",\"⊙\":\"⊙\",\"⦼\":\"⦼\",\"œ\":\"œ\",\"⦿\":\"⦿\",\"𝔬\":\"𝔬\",\"˛\":\"˛\",\"ò\":\"ò\",\"ò\":\"ò\",\"⧁\":\"⧁\",\"⦵\":\"⦵\",\"Ω\":\"Ω\",\"∮\":\"∮\",\"↺\":\"↺\",\"⦾\":\"⦾\",\"⦻\":\"⦻\",\"‾\":\"‾\",\"⧀\":\"⧀\",\"ō\":\"ō\",\"ω\":\"ω\",\"ο\":\"ο\",\"⦶\":\"⦶\",\"⊖\":\"⊖\",\"𝕠\":\"𝕠\",\"⦷\":\"⦷\",\"⦹\":\"⦹\",\"⊕\":\"⊕\",\"∨\":\"∨\",\"↻\":\"↻\",\"⩝\":\"⩝\",\"ℴ\":\"ℴ\",\"ℴ\":\"ℴ\",\"ª\":\"ª\",\"ª\":\"ª\",\"º\":\"º\",\"º\":\"º\",\"⊶\":\"⊶\",\"⩖\":\"⩖\",\"⩗\":\"⩗\",\"⩛\":\"⩛\",\"ℴ\":\"ℴ\",\"ø\":\"ø\",\"ø\":\"ø\",\"⊘\":\"⊘\",\"õ\":\"õ\",\"õ\":\"õ\",\"⊗\":\"⊗\",\"⨶\":\"⨶\",\"ö\":\"ö\",\"ö\":\"ö\",\"⌽\":\"⌽\",\"∥\":\"∥\",\"¶\":\"¶\",\"¶\":\"¶\",\"∥\":\"∥\",\"⫳\":\"⫳\",\"⫽\":\"⫽\",\"∂\":\"∂\",\"п\":\"п\",\"%\":\"%\",\".\":\".\",\"‰\":\"‰\",\"⊥\":\"⊥\",\"‱\":\"‱\",\"𝔭\":\"𝔭\",\"φ\":\"φ\",\"ϕ\":\"ϕ\",\"ℳ\":\"ℳ\",\"☎\":\"☎\",\"π\":\"π\",\"⋔\":\"⋔\",\"ϖ\":\"ϖ\",\"ℏ\":\"ℏ\",\"ℎ\":\"ℎ\",\"ℏ\":\"ℏ\",\"+\":\"+\",\"⨣\":\"⨣\",\"⊞\":\"⊞\",\"⨢\":\"⨢\",\"∔\":\"∔\",\"⨥\":\"⨥\",\"⩲\":\"⩲\",\"±\":\"±\",\"±\":\"±\",\"⨦\":\"⨦\",\"⨧\":\"⨧\",\"±\":\"±\",\"⨕\":\"⨕\",\"𝕡\":\"𝕡\",\"£\":\"£\",\"£\":\"£\",\"≺\":\"≺\",\"⪳\":\"⪳\",\"⪷\":\"⪷\",\"≼\":\"≼\",\"⪯\":\"⪯\",\"≺\":\"≺\",\"⪷\":\"⪷\",\"≼\":\"≼\",\"⪯\":\"⪯\",\"⪹\":\"⪹\",\"⪵\":\"⪵\",\"⋨\":\"⋨\",\"≾\":\"≾\",\"′\":\"′\",\"ℙ\":\"ℙ\",\"⪵\":\"⪵\",\"⪹\":\"⪹\",\"⋨\":\"⋨\",\"∏\":\"∏\",\"⌮\":\"⌮\",\"⌒\":\"⌒\",\"⌓\":\"⌓\",\"∝\":\"∝\",\"∝\":\"∝\",\"≾\":\"≾\",\"⊰\":\"⊰\",\"𝓅\":\"𝓅\",\"ψ\":\"ψ\",\" \":\" \",\"𝔮\":\"𝔮\",\"⨌\":\"⨌\",\"𝕢\":\"𝕢\",\"⁗\":\"⁗\",\"𝓆\":\"𝓆\",\"ℍ\":\"ℍ\",\"⨖\":\"⨖\",\"?\":\"?\",\"≟\":\"≟\",\""\":'\"',\""\":'\"',\"⇛\":\"⇛\",\"⇒\":\"⇒\",\"⤜\":\"⤜\",\"⤏\":\"⤏\",\"⥤\":\"⥤\",\"∽̱\":\"∽̱\",\"ŕ\":\"ŕ\",\"√\":\"√\",\"⦳\":\"⦳\",\"⟩\":\"⟩\",\"⦒\":\"⦒\",\"⦥\":\"⦥\",\"⟩\":\"⟩\",\"»\":\"»\",\"»\":\"»\",\"→\":\"→\",\"⥵\":\"⥵\",\"⇥\":\"⇥\",\"⤠\":\"⤠\",\"⤳\":\"⤳\",\"⤞\":\"⤞\",\"↪\":\"↪\",\"↬\":\"↬\",\"⥅\":\"⥅\",\"⥴\":\"⥴\",\"↣\":\"↣\",\"↝\":\"↝\",\"⤚\":\"⤚\",\"∶\":\"∶\",\"ℚ\":\"ℚ\",\"⤍\":\"⤍\",\"❳\":\"❳\",\"}\":\"}\",\"]\":\"]\",\"⦌\":\"⦌\",\"⦎\":\"⦎\",\"⦐\":\"⦐\",\"ř\":\"ř\",\"ŗ\":\"ŗ\",\"⌉\":\"⌉\",\"}\":\"}\",\"р\":\"р\",\"⤷\":\"⤷\",\"⥩\":\"⥩\",\"”\":\"”\",\"”\":\"”\",\"↳\":\"↳\",\"ℜ\":\"ℜ\",\"ℛ\":\"ℛ\",\"ℜ\":\"ℜ\",\"ℝ\":\"ℝ\",\"▭\":\"▭\",\"®\":\"®\",\"®\":\"®\",\"⥽\":\"⥽\",\"⌋\":\"⌋\",\"𝔯\":\"𝔯\",\"⇁\":\"⇁\",\"⇀\":\"⇀\",\"⥬\":\"⥬\",\"ρ\":\"ρ\",\"ϱ\":\"ϱ\",\"→\":\"→\",\"↣\":\"↣\",\"⇁\":\"⇁\",\"⇀\":\"⇀\",\"⇄\":\"⇄\",\"⇌\":\"⇌\",\"⇉\":\"⇉\",\"↝\":\"↝\",\"⋌\":\"⋌\",\"˚\":\"˚\",\"≓\":\"≓\",\"⇄\":\"⇄\",\"⇌\":\"⇌\",\"‏\":\"‏\",\"⎱\":\"⎱\",\"⎱\":\"⎱\",\"⫮\":\"⫮\",\"⟭\":\"⟭\",\"⇾\":\"⇾\",\"⟧\":\"⟧\",\"⦆\":\"⦆\",\"𝕣\":\"𝕣\",\"⨮\":\"⨮\",\"⨵\":\"⨵\",\")\":\")\",\"⦔\":\"⦔\",\"⨒\":\"⨒\",\"⇉\":\"⇉\",\"›\":\"›\",\"𝓇\":\"𝓇\",\"↱\":\"↱\",\"]\":\"]\",\"’\":\"’\",\"’\":\"’\",\"⋌\":\"⋌\",\"⋊\":\"⋊\",\"▹\":\"▹\",\"⊵\":\"⊵\",\"▸\":\"▸\",\"⧎\":\"⧎\",\"⥨\":\"⥨\",\"℞\":\"℞\",\"ś\":\"ś\",\"‚\":\"‚\",\"≻\":\"≻\",\"⪴\":\"⪴\",\"⪸\":\"⪸\",\"š\":\"š\",\"≽\":\"≽\",\"⪰\":\"⪰\",\"ş\":\"ş\",\"ŝ\":\"ŝ\",\"⪶\":\"⪶\",\"⪺\":\"⪺\",\"⋩\":\"⋩\",\"⨓\":\"⨓\",\"≿\":\"≿\",\"с\":\"с\",\"⋅\":\"⋅\",\"⊡\":\"⊡\",\"⩦\":\"⩦\",\"⇘\":\"⇘\",\"⤥\":\"⤥\",\"↘\":\"↘\",\"↘\":\"↘\",\"§\":\"§\",\"§\":\"§\",\";\":\";\",\"⤩\":\"⤩\",\"∖\":\"∖\",\"∖\":\"∖\",\"✶\":\"✶\",\"𝔰\":\"𝔰\",\"⌢\":\"⌢\",\"♯\":\"♯\",\"щ\":\"щ\",\"ш\":\"ш\",\"∣\":\"∣\",\"∥\":\"∥\",\"­\":\"­\",\"­\":\"­\",\"σ\":\"σ\",\"ς\":\"ς\",\"ς\":\"ς\",\"∼\":\"∼\",\"⩪\":\"⩪\",\"≃\":\"≃\",\"≃\":\"≃\",\"⪞\":\"⪞\",\"⪠\":\"⪠\",\"⪝\":\"⪝\",\"⪟\":\"⪟\",\"≆\":\"≆\",\"⨤\":\"⨤\",\"⥲\":\"⥲\",\"←\":\"←\",\"∖\":\"∖\",\"⨳\":\"⨳\",\"⧤\":\"⧤\",\"∣\":\"∣\",\"⌣\":\"⌣\",\"⪪\":\"⪪\",\"⪬\":\"⪬\",\"⪬︀\":\"⪬︀\",\"ь\":\"ь\",\"/\":\"/\",\"⧄\":\"⧄\",\"⌿\":\"⌿\",\"𝕤\":\"𝕤\",\"♠\":\"♠\",\"♠\":\"♠\",\"∥\":\"∥\",\"⊓\":\"⊓\",\"⊓︀\":\"⊓︀\",\"⊔\":\"⊔\",\"⊔︀\":\"⊔︀\",\"⊏\":\"⊏\",\"⊑\":\"⊑\",\"⊏\":\"⊏\",\"⊑\":\"⊑\",\"⊐\":\"⊐\",\"⊒\":\"⊒\",\"⊐\":\"⊐\",\"⊒\":\"⊒\",\"□\":\"□\",\"□\":\"□\",\"▪\":\"▪\",\"▪\":\"▪\",\"→\":\"→\",\"𝓈\":\"𝓈\",\"∖\":\"∖\",\"⌣\":\"⌣\",\"⋆\":\"⋆\",\"☆\":\"☆\",\"★\":\"★\",\"ϵ\":\"ϵ\",\"ϕ\":\"ϕ\",\"¯\":\"¯\",\"⊂\":\"⊂\",\"⫅\":\"⫅\",\"⪽\":\"⪽\",\"⊆\":\"⊆\",\"⫃\":\"⫃\",\"⫁\":\"⫁\",\"⫋\":\"⫋\",\"⊊\":\"⊊\",\"⪿\":\"⪿\",\"⥹\":\"⥹\",\"⊂\":\"⊂\",\"⊆\":\"⊆\",\"⫅\":\"⫅\",\"⊊\":\"⊊\",\"⫋\":\"⫋\",\"⫇\":\"⫇\",\"⫕\":\"⫕\",\"⫓\":\"⫓\",\"≻\":\"≻\",\"⪸\":\"⪸\",\"≽\":\"≽\",\"⪰\":\"⪰\",\"⪺\":\"⪺\",\"⪶\":\"⪶\",\"⋩\":\"⋩\",\"≿\":\"≿\",\"∑\":\"∑\",\"♪\":\"♪\",\"¹\":\"¹\",\"¹\":\"¹\",\"²\":\"²\",\"²\":\"²\",\"³\":\"³\",\"³\":\"³\",\"⊃\":\"⊃\",\"⫆\":\"⫆\",\"⪾\":\"⪾\",\"⫘\":\"⫘\",\"⊇\":\"⊇\",\"⫄\":\"⫄\",\"⟉\":\"⟉\",\"⫗\":\"⫗\",\"⥻\":\"⥻\",\"⫂\":\"⫂\",\"⫌\":\"⫌\",\"⊋\":\"⊋\",\"⫀\":\"⫀\",\"⊃\":\"⊃\",\"⊇\":\"⊇\",\"⫆\":\"⫆\",\"⊋\":\"⊋\",\"⫌\":\"⫌\",\"⫈\":\"⫈\",\"⫔\":\"⫔\",\"⫖\":\"⫖\",\"⇙\":\"⇙\",\"⤦\":\"⤦\",\"↙\":\"↙\",\"↙\":\"↙\",\"⤪\":\"⤪\",\"ß\":\"ß\",\"ß\":\"ß\",\"⌖\":\"⌖\",\"τ\":\"τ\",\"⎴\":\"⎴\",\"ť\":\"ť\",\"ţ\":\"ţ\",\"т\":\"т\",\"⃛\":\"⃛\",\"⌕\":\"⌕\",\"𝔱\":\"𝔱\",\"∴\":\"∴\",\"∴\":\"∴\",\"θ\":\"θ\",\"ϑ\":\"ϑ\",\"ϑ\":\"ϑ\",\"≈\":\"≈\",\"∼\":\"∼\",\" \":\" \",\"≈\":\"≈\",\"∼\":\"∼\",\"þ\":\"þ\",\"þ\":\"þ\",\"˜\":\"˜\",\"×\":\"×\",\"×\":\"×\",\"⊠\":\"⊠\",\"⨱\":\"⨱\",\"⨰\":\"⨰\",\"∭\":\"∭\",\"⤨\":\"⤨\",\"⊤\":\"⊤\",\"⌶\":\"⌶\",\"⫱\":\"⫱\",\"𝕥\":\"𝕥\",\"⫚\":\"⫚\",\"⤩\":\"⤩\",\"‴\":\"‴\",\"™\":\"™\",\"▵\":\"▵\",\"▿\":\"▿\",\"◃\":\"◃\",\"⊴\":\"⊴\",\"≜\":\"≜\",\"▹\":\"▹\",\"⊵\":\"⊵\",\"◬\":\"◬\",\"≜\":\"≜\",\"⨺\":\"⨺\",\"⨹\":\"⨹\",\"⧍\":\"⧍\",\"⨻\":\"⨻\",\"⏢\":\"⏢\",\"𝓉\":\"𝓉\",\"ц\":\"ц\",\"ћ\":\"ћ\",\"ŧ\":\"ŧ\",\"≬\":\"≬\",\"↞\":\"↞\",\"↠\":\"↠\",\"⇑\":\"⇑\",\"⥣\":\"⥣\",\"ú\":\"ú\",\"ú\":\"ú\",\"↑\":\"↑\",\"ў\":\"ў\",\"ŭ\":\"ŭ\",\"û\":\"û\",\"û\":\"û\",\"у\":\"у\",\"⇅\":\"⇅\",\"ű\":\"ű\",\"⥮\":\"⥮\",\"⥾\":\"⥾\",\"𝔲\":\"𝔲\",\"ù\":\"ù\",\"ù\":\"ù\",\"↿\":\"↿\",\"↾\":\"↾\",\"▀\":\"▀\",\"⌜\":\"⌜\",\"⌜\":\"⌜\",\"⌏\":\"⌏\",\"◸\":\"◸\",\"ū\":\"ū\",\"¨\":\"¨\",\"¨\":\"¨\",\"ų\":\"ų\",\"𝕦\":\"𝕦\",\"↑\":\"↑\",\"↕\":\"↕\",\"↿\":\"↿\",\"↾\":\"↾\",\"⊎\":\"⊎\",\"υ\":\"υ\",\"ϒ\":\"ϒ\",\"υ\":\"υ\",\"⇈\":\"⇈\",\"⌝\":\"⌝\",\"⌝\":\"⌝\",\"⌎\":\"⌎\",\"ů\":\"ů\",\"◹\":\"◹\",\"𝓊\":\"𝓊\",\"⋰\":\"⋰\",\"ũ\":\"ũ\",\"▵\":\"▵\",\"▴\":\"▴\",\"⇈\":\"⇈\",\"ü\":\"ü\",\"ü\":\"ü\",\"⦧\":\"⦧\",\"⇕\":\"⇕\",\"⫨\":\"⫨\",\"⫩\":\"⫩\",\"⊨\":\"⊨\",\"⦜\":\"⦜\",\"ϵ\":\"ϵ\",\"ϰ\":\"ϰ\",\"∅\":\"∅\",\"ϕ\":\"ϕ\",\"ϖ\":\"ϖ\",\"∝\":\"∝\",\"↕\":\"↕\",\"ϱ\":\"ϱ\",\"ς\":\"ς\",\"⊊︀\":\"⊊︀\",\"⫋︀\":\"⫋︀\",\"⊋︀\":\"⊋︀\",\"⫌︀\":\"⫌︀\",\"ϑ\":\"ϑ\",\"⊲\":\"⊲\",\"⊳\":\"⊳\",\"в\":\"в\",\"⊢\":\"⊢\",\"∨\":\"∨\",\"⊻\":\"⊻\",\"≚\":\"≚\",\"⋮\":\"⋮\",\"|\":\"|\",\"|\":\"|\",\"𝔳\":\"𝔳\",\"⊲\":\"⊲\",\"⊂⃒\":\"⊂⃒\",\"⊃⃒\":\"⊃⃒\",\"𝕧\":\"𝕧\",\"∝\":\"∝\",\"⊳\":\"⊳\",\"𝓋\":\"𝓋\",\"⫋︀\":\"⫋︀\",\"⊊︀\":\"⊊︀\",\"⫌︀\":\"⫌︀\",\"⊋︀\":\"⊋︀\",\"⦚\":\"⦚\",\"ŵ\":\"ŵ\",\"⩟\":\"⩟\",\"∧\":\"∧\",\"≙\":\"≙\",\"℘\":\"℘\",\"𝔴\":\"𝔴\",\"𝕨\":\"𝕨\",\"℘\":\"℘\",\"≀\":\"≀\",\"≀\":\"≀\",\"𝓌\":\"𝓌\",\"⋂\":\"⋂\",\"◯\":\"◯\",\"⋃\":\"⋃\",\"▽\":\"▽\",\"𝔵\":\"𝔵\",\"⟺\":\"⟺\",\"⟷\":\"⟷\",\"ξ\":\"ξ\",\"⟸\":\"⟸\",\"⟵\":\"⟵\",\"⟼\":\"⟼\",\"⋻\":\"⋻\",\"⨀\":\"⨀\",\"𝕩\":\"𝕩\",\"⨁\":\"⨁\",\"⨂\":\"⨂\",\"⟹\":\"⟹\",\"⟶\":\"⟶\",\"𝓍\":\"𝓍\",\"⨆\":\"⨆\",\"⨄\":\"⨄\",\"△\":\"△\",\"⋁\":\"⋁\",\"⋀\":\"⋀\",\"ý\":\"ý\",\"ý\":\"ý\",\"я\":\"я\",\"ŷ\":\"ŷ\",\"ы\":\"ы\",\"¥\":\"¥\",\"¥\":\"¥\",\"𝔶\":\"𝔶\",\"ї\":\"ї\",\"𝕪\":\"𝕪\",\"𝓎\":\"𝓎\",\"ю\":\"ю\",\"ÿ\":\"ÿ\",\"ÿ\":\"ÿ\",\"ź\":\"ź\",\"ž\":\"ž\",\"з\":\"з\",\"ż\":\"ż\",\"ℨ\":\"ℨ\",\"ζ\":\"ζ\",\"𝔷\":\"𝔷\",\"ж\":\"ж\",\"⇝\":\"⇝\",\"𝕫\":\"𝕫\",\"𝓏\":\"𝓏\",\"‍\":\"‍\",\"‌\":\"‌\"},characters:{\"Æ\":\"Æ\",\"&\":\"&\",\"Á\":\"Á\",\"Ă\":\"Ă\",\"Â\":\"Â\",\"А\":\"А\",\"𝔄\":\"𝔄\",\"À\":\"À\",\"Α\":\"Α\",\"Ā\":\"Ā\",\"⩓\":\"⩓\",\"Ą\":\"Ą\",\"𝔸\":\"𝔸\",\"⁡\":\"⁡\",\"Å\":\"Å\",\"𝒜\":\"𝒜\",\"≔\":\"≔\",\"Ã\":\"Ã\",\"Ä\":\"Ä\",\"∖\":\"∖\",\"⫧\":\"⫧\",\"⌆\":\"⌆\",\"Б\":\"Б\",\"∵\":\"∵\",\"ℬ\":\"ℬ\",\"Β\":\"Β\",\"𝔅\":\"𝔅\",\"𝔹\":\"𝔹\",\"˘\":\"˘\",\"≎\":\"≎\",\"Ч\":\"Ч\",\"©\":\"©\",\"Ć\":\"Ć\",\"⋒\":\"⋒\",\"ⅅ\":\"ⅅ\",\"ℭ\":\"ℭ\",\"Č\":\"Č\",\"Ç\":\"Ç\",\"Ĉ\":\"Ĉ\",\"∰\":\"∰\",\"Ċ\":\"Ċ\",\"¸\":\"¸\",\"·\":\"·\",\"Χ\":\"Χ\",\"⊙\":\"⊙\",\"⊖\":\"⊖\",\"⊕\":\"⊕\",\"⊗\":\"⊗\",\"∲\":\"∲\",\"”\":\"”\",\"’\":\"’\",\"∷\":\"∷\",\"⩴\":\"⩴\",\"≡\":\"≡\",\"∯\":\"∯\",\"∮\":\"∮\",\"ℂ\":\"ℂ\",\"∐\":\"∐\",\"∳\":\"∳\",\"⨯\":\"⨯\",\"𝒞\":\"𝒞\",\"⋓\":\"⋓\",\"≍\":\"≍\",\"⤑\":\"⤑\",\"Ђ\":\"Ђ\",\"Ѕ\":\"Ѕ\",\"Џ\":\"Џ\",\"‡\":\"‡\",\"↡\":\"↡\",\"⫤\":\"⫤\",\"Ď\":\"Ď\",\"Д\":\"Д\",\"∇\":\"∇\",\"Δ\":\"Δ\",\"𝔇\":\"𝔇\",\"´\":\"´\",\"˙\":\"˙\",\"˝\":\"˝\",\"`\":\"`\",\"˜\":\"˜\",\"⋄\":\"⋄\",\"ⅆ\":\"ⅆ\",\"𝔻\":\"𝔻\",\"¨\":\"¨\",\"⃜\":\"⃜\",\"≐\":\"≐\",\"⇓\":\"⇓\",\"⇐\":\"⇐\",\"⇔\":\"⇔\",\"⟸\":\"⟸\",\"⟺\":\"⟺\",\"⟹\":\"⟹\",\"⇒\":\"⇒\",\"⊨\":\"⊨\",\"⇑\":\"⇑\",\"⇕\":\"⇕\",\"∥\":\"∥\",\"↓\":\"↓\",\"⤓\":\"⤓\",\"⇵\":\"⇵\",\"̑\":\"̑\",\"⥐\":\"⥐\",\"⥞\":\"⥞\",\"↽\":\"↽\",\"⥖\":\"⥖\",\"⥟\":\"⥟\",\"⇁\":\"⇁\",\"⥗\":\"⥗\",\"⊤\":\"⊤\",\"↧\":\"↧\",\"𝒟\":\"𝒟\",\"Đ\":\"Đ\",\"Ŋ\":\"Ŋ\",\"Ð\":\"Ð\",\"É\":\"É\",\"Ě\":\"Ě\",\"Ê\":\"Ê\",\"Э\":\"Э\",\"Ė\":\"Ė\",\"𝔈\":\"𝔈\",\"È\":\"È\",\"∈\":\"∈\",\"Ē\":\"Ē\",\"◻\":\"◻\",\"▫\":\"▫\",\"Ę\":\"Ę\",\"𝔼\":\"𝔼\",\"Ε\":\"Ε\",\"⩵\":\"⩵\",\"≂\":\"≂\",\"⇌\":\"⇌\",\"ℰ\":\"ℰ\",\"⩳\":\"⩳\",\"Η\":\"Η\",\"Ë\":\"Ë\",\"∃\":\"∃\",\"ⅇ\":\"ⅇ\",\"Ф\":\"Ф\",\"𝔉\":\"𝔉\",\"◼\":\"◼\",\"▪\":\"▪\",\"𝔽\":\"𝔽\",\"∀\":\"∀\",\"ℱ\":\"ℱ\",\"Ѓ\":\"Ѓ\",\">\":\">\",\"Γ\":\"Γ\",\"Ϝ\":\"Ϝ\",\"Ğ\":\"Ğ\",\"Ģ\":\"Ģ\",\"Ĝ\":\"Ĝ\",\"Г\":\"Г\",\"Ġ\":\"Ġ\",\"𝔊\":\"𝔊\",\"⋙\":\"⋙\",\"𝔾\":\"𝔾\",\"≥\":\"≥\",\"⋛\":\"⋛\",\"≧\":\"≧\",\"⪢\":\"⪢\",\"≷\":\"≷\",\"⩾\":\"⩾\",\"≳\":\"≳\",\"𝒢\":\"𝒢\",\"≫\":\"≫\",\"Ъ\":\"Ъ\",\"ˇ\":\"ˇ\",\"^\":\"^\",\"Ĥ\":\"Ĥ\",\"ℌ\":\"ℌ\",\"ℋ\":\"ℋ\",\"ℍ\":\"ℍ\",\"─\":\"─\",\"Ħ\":\"Ħ\",\"≏\":\"≏\",\"Е\":\"Е\",\"IJ\":\"IJ\",\"Ё\":\"Ё\",\"Í\":\"Í\",\"Î\":\"Î\",\"И\":\"И\",\"İ\":\"İ\",\"ℑ\":\"ℑ\",\"Ì\":\"Ì\",\"Ī\":\"Ī\",\"ⅈ\":\"ⅈ\",\"∬\":\"∬\",\"∫\":\"∫\",\"⋂\":\"⋂\",\"⁣\":\"⁣\",\"⁢\":\"⁢\",\"Į\":\"Į\",\"𝕀\":\"𝕀\",\"Ι\":\"Ι\",\"ℐ\":\"ℐ\",\"Ĩ\":\"Ĩ\",\"І\":\"І\",\"Ï\":\"Ï\",\"Ĵ\":\"Ĵ\",\"Й\":\"Й\",\"𝔍\":\"𝔍\",\"𝕁\":\"𝕁\",\"𝒥\":\"𝒥\",\"Ј\":\"Ј\",\"Є\":\"Є\",\"Х\":\"Х\",\"Ќ\":\"Ќ\",\"Κ\":\"Κ\",\"Ķ\":\"Ķ\",\"К\":\"К\",\"𝔎\":\"𝔎\",\"𝕂\":\"𝕂\",\"𝒦\":\"𝒦\",\"Љ\":\"Љ\",\"<\":\"<\",\"Ĺ\":\"Ĺ\",\"Λ\":\"Λ\",\"⟪\":\"⟪\",\"ℒ\":\"ℒ\",\"↞\":\"↞\",\"Ľ\":\"Ľ\",\"Ļ\":\"Ļ\",\"Л\":\"Л\",\"⟨\":\"⟨\",\"←\":\"←\",\"⇤\":\"⇤\",\"⇆\":\"⇆\",\"⌈\":\"⌈\",\"⟦\":\"⟦\",\"⥡\":\"⥡\",\"⇃\":\"⇃\",\"⥙\":\"⥙\",\"⌊\":\"⌊\",\"↔\":\"↔\",\"⥎\":\"⥎\",\"⊣\":\"⊣\",\"↤\":\"↤\",\"⥚\":\"⥚\",\"⊲\":\"⊲\",\"⧏\":\"⧏\",\"⊴\":\"⊴\",\"⥑\":\"⥑\",\"⥠\":\"⥠\",\"↿\":\"↿\",\"⥘\":\"⥘\",\"↼\":\"↼\",\"⥒\":\"⥒\",\"⋚\":\"⋚\",\"≦\":\"≦\",\"≶\":\"≶\",\"⪡\":\"⪡\",\"⩽\":\"⩽\",\"≲\":\"≲\",\"𝔏\":\"𝔏\",\"⋘\":\"⋘\",\"⇚\":\"⇚\",\"Ŀ\":\"Ŀ\",\"⟵\":\"⟵\",\"⟷\":\"⟷\",\"⟶\":\"⟶\",\"𝕃\":\"𝕃\",\"↙\":\"↙\",\"↘\":\"↘\",\"↰\":\"↰\",\"Ł\":\"Ł\",\"≪\":\"≪\",\"⤅\":\"⤅\",\"М\":\"М\",\" \":\" \",\"ℳ\":\"ℳ\",\"𝔐\":\"𝔐\",\"∓\":\"∓\",\"𝕄\":\"𝕄\",\"Μ\":\"Μ\",\"Њ\":\"Њ\",\"Ń\":\"Ń\",\"Ň\":\"Ň\",\"Ņ\":\"Ņ\",\"Н\":\"Н\",\"​\":\"​\",\"\\n\":\" \",\"𝔑\":\"𝔑\",\"⁠\":\"⁠\",\" \":\" \",\"ℕ\":\"ℕ\",\"⫬\":\"⫬\",\"≢\":\"≢\",\"≭\":\"≭\",\"∦\":\"∦\",\"∉\":\"∉\",\"≠\":\"≠\",\"≂̸\":\"≂̸\",\"∄\":\"∄\",\"≯\":\"≯\",\"≱\":\"≱\",\"≧̸\":\"≧̸\",\"≫̸\":\"≫̸\",\"≹\":\"≹\",\"⩾̸\":\"⩾̸\",\"≵\":\"≵\",\"≎̸\":\"≎̸\",\"≏̸\":\"≏̸\",\"⋪\":\"⋪\",\"⧏̸\":\"⧏̸\",\"⋬\":\"⋬\",\"≮\":\"≮\",\"≰\":\"≰\",\"≸\":\"≸\",\"≪̸\":\"≪̸\",\"⩽̸\":\"⩽̸\",\"≴\":\"≴\",\"⪢̸\":\"⪢̸\",\"⪡̸\":\"⪡̸\",\"⊀\":\"⊀\",\"⪯̸\":\"⪯̸\",\"⋠\":\"⋠\",\"∌\":\"∌\",\"⋫\":\"⋫\",\"⧐̸\":\"⧐̸\",\"⋭\":\"⋭\",\"⊏̸\":\"⊏̸\",\"⋢\":\"⋢\",\"⊐̸\":\"⊐̸\",\"⋣\":\"⋣\",\"⊂⃒\":\"⊂⃒\",\"⊈\":\"⊈\",\"⊁\":\"⊁\",\"⪰̸\":\"⪰̸\",\"⋡\":\"⋡\",\"≿̸\":\"≿̸\",\"⊃⃒\":\"⊃⃒\",\"⊉\":\"⊉\",\"≁\":\"≁\",\"≄\":\"≄\",\"≇\":\"≇\",\"≉\":\"≉\",\"∤\":\"∤\",\"𝒩\":\"𝒩\",\"Ñ\":\"Ñ\",\"Ν\":\"Ν\",\"Œ\":\"Œ\",\"Ó\":\"Ó\",\"Ô\":\"Ô\",\"О\":\"О\",\"Ő\":\"Ő\",\"𝔒\":\"𝔒\",\"Ò\":\"Ò\",\"Ō\":\"Ō\",\"Ω\":\"Ω\",\"Ο\":\"Ο\",\"𝕆\":\"𝕆\",\"“\":\"“\",\"‘\":\"‘\",\"⩔\":\"⩔\",\"𝒪\":\"𝒪\",\"Ø\":\"Ø\",\"Õ\":\"Õ\",\"⨷\":\"⨷\",\"Ö\":\"Ö\",\"‾\":\"‾\",\"⏞\":\"⏞\",\"⎴\":\"⎴\",\"⏜\":\"⏜\",\"∂\":\"∂\",\"П\":\"П\",\"𝔓\":\"𝔓\",\"Φ\":\"Φ\",\"Π\":\"Π\",\"±\":\"±\",\"ℙ\":\"ℙ\",\"⪻\":\"⪻\",\"≺\":\"≺\",\"⪯\":\"⪯\",\"≼\":\"≼\",\"≾\":\"≾\",\"″\":\"″\",\"∏\":\"∏\",\"∝\":\"∝\",\"𝒫\":\"𝒫\",\"Ψ\":\"Ψ\",'\"':\""\",\"𝔔\":\"𝔔\",\"ℚ\":\"ℚ\",\"𝒬\":\"𝒬\",\"⤐\":\"⤐\",\"®\":\"®\",\"Ŕ\":\"Ŕ\",\"⟫\":\"⟫\",\"↠\":\"↠\",\"⤖\":\"⤖\",\"Ř\":\"Ř\",\"Ŗ\":\"Ŗ\",\"Р\":\"Р\",\"ℜ\":\"ℜ\",\"∋\":\"∋\",\"⇋\":\"⇋\",\"⥯\":\"⥯\",\"Ρ\":\"Ρ\",\"⟩\":\"⟩\",\"→\":\"→\",\"⇥\":\"⇥\",\"⇄\":\"⇄\",\"⌉\":\"⌉\",\"⟧\":\"⟧\",\"⥝\":\"⥝\",\"⇂\":\"⇂\",\"⥕\":\"⥕\",\"⌋\":\"⌋\",\"⊢\":\"⊢\",\"↦\":\"↦\",\"⥛\":\"⥛\",\"⊳\":\"⊳\",\"⧐\":\"⧐\",\"⊵\":\"⊵\",\"⥏\":\"⥏\",\"⥜\":\"⥜\",\"↾\":\"↾\",\"⥔\":\"⥔\",\"⇀\":\"⇀\",\"⥓\":\"⥓\",\"ℝ\":\"ℝ\",\"⥰\":\"⥰\",\"⇛\":\"⇛\",\"ℛ\":\"ℛ\",\"↱\":\"↱\",\"⧴\":\"⧴\",\"Щ\":\"Щ\",\"Ш\":\"Ш\",\"Ь\":\"Ь\",\"Ś\":\"Ś\",\"⪼\":\"⪼\",\"Š\":\"Š\",\"Ş\":\"Ş\",\"Ŝ\":\"Ŝ\",\"С\":\"С\",\"𝔖\":\"𝔖\",\"↑\":\"↑\",\"Σ\":\"Σ\",\"∘\":\"∘\",\"𝕊\":\"𝕊\",\"√\":\"√\",\"□\":\"□\",\"⊓\":\"⊓\",\"⊏\":\"⊏\",\"⊑\":\"⊑\",\"⊐\":\"⊐\",\"⊒\":\"⊒\",\"⊔\":\"⊔\",\"𝒮\":\"𝒮\",\"⋆\":\"⋆\",\"⋐\":\"⋐\",\"⊆\":\"⊆\",\"≻\":\"≻\",\"⪰\":\"⪰\",\"≽\":\"≽\",\"≿\":\"≿\",\"∑\":\"∑\",\"⋑\":\"⋑\",\"⊃\":\"⊃\",\"⊇\":\"⊇\",\"Þ\":\"Þ\",\"™\":\"™\",\"Ћ\":\"Ћ\",\"Ц\":\"Ц\",\"\\t\":\" \",\"Τ\":\"Τ\",\"Ť\":\"Ť\",\"Ţ\":\"Ţ\",\"Т\":\"Т\",\"𝔗\":\"𝔗\",\"∴\":\"∴\",\"Θ\":\"Θ\",\"  \":\"  \",\" \":\" \",\"∼\":\"∼\",\"≃\":\"≃\",\"≅\":\"≅\",\"≈\":\"≈\",\"𝕋\":\"𝕋\",\"⃛\":\"⃛\",\"𝒯\":\"𝒯\",\"Ŧ\":\"Ŧ\",\"Ú\":\"Ú\",\"↟\":\"↟\",\"⥉\":\"⥉\",\"Ў\":\"Ў\",\"Ŭ\":\"Ŭ\",\"Û\":\"Û\",\"У\":\"У\",\"Ű\":\"Ű\",\"𝔘\":\"𝔘\",\"Ù\":\"Ù\",\"Ū\":\"Ū\",_:\"_\",\"⏟\":\"⏟\",\"⎵\":\"⎵\",\"⏝\":\"⏝\",\"⋃\":\"⋃\",\"⊎\":\"⊎\",\"Ų\":\"Ų\",\"𝕌\":\"𝕌\",\"⤒\":\"⤒\",\"⇅\":\"⇅\",\"↕\":\"↕\",\"⥮\":\"⥮\",\"⊥\":\"⊥\",\"↥\":\"↥\",\"↖\":\"↖\",\"↗\":\"↗\",\"ϒ\":\"ϒ\",\"Υ\":\"Υ\",\"Ů\":\"Ů\",\"𝒰\":\"𝒰\",\"Ũ\":\"Ũ\",\"Ü\":\"Ü\",\"⊫\":\"⊫\",\"⫫\":\"⫫\",\"В\":\"В\",\"⊩\":\"⊩\",\"⫦\":\"⫦\",\"⋁\":\"⋁\",\"‖\":\"‖\",\"∣\":\"∣\",\"|\":\"|\",\"❘\":\"❘\",\"≀\":\"≀\",\" \":\" \",\"𝔙\":\"𝔙\",\"𝕍\":\"𝕍\",\"𝒱\":\"𝒱\",\"⊪\":\"⊪\",\"Ŵ\":\"Ŵ\",\"⋀\":\"⋀\",\"𝔚\":\"𝔚\",\"𝕎\":\"𝕎\",\"𝒲\":\"𝒲\",\"𝔛\":\"𝔛\",\"Ξ\":\"Ξ\",\"𝕏\":\"𝕏\",\"𝒳\":\"𝒳\",\"Я\":\"Я\",\"Ї\":\"Ї\",\"Ю\":\"Ю\",\"Ý\":\"Ý\",\"Ŷ\":\"Ŷ\",\"Ы\":\"Ы\",\"𝔜\":\"𝔜\",\"𝕐\":\"𝕐\",\"𝒴\":\"𝒴\",\"Ÿ\":\"Ÿ\",\"Ж\":\"Ж\",\"Ź\":\"Ź\",\"Ž\":\"Ž\",\"З\":\"З\",\"Ż\":\"Ż\",\"Ζ\":\"Ζ\",\"ℨ\":\"ℨ\",\"ℤ\":\"ℤ\",\"𝒵\":\"𝒵\",\"á\":\"á\",\"ă\":\"ă\",\"∾\":\"∾\",\"∾̳\":\"∾̳\",\"∿\":\"∿\",\"â\":\"â\",\"а\":\"а\",\"æ\":\"æ\",\"𝔞\":\"𝔞\",\"à\":\"à\",\"ℵ\":\"ℵ\",\"α\":\"α\",\"ā\":\"ā\",\"⨿\":\"⨿\",\"∧\":\"∧\",\"⩕\":\"⩕\",\"⩜\":\"⩜\",\"⩘\":\"⩘\",\"⩚\":\"⩚\",\"∠\":\"∠\",\"⦤\":\"⦤\",\"∡\":\"∡\",\"⦨\":\"⦨\",\"⦩\":\"⦩\",\"⦪\":\"⦪\",\"⦫\":\"⦫\",\"⦬\":\"⦬\",\"⦭\":\"⦭\",\"⦮\":\"⦮\",\"⦯\":\"⦯\",\"∟\":\"∟\",\"⊾\":\"⊾\",\"⦝\":\"⦝\",\"∢\":\"∢\",\"⍼\":\"⍼\",\"ą\":\"ą\",\"𝕒\":\"𝕒\",\"⩰\":\"⩰\",\"⩯\":\"⩯\",\"≊\":\"≊\",\"≋\":\"≋\",\"'\":\"'\",\"å\":\"å\",\"𝒶\":\"𝒶\",\"*\":\"*\",\"ã\":\"ã\",\"ä\":\"ä\",\"⨑\":\"⨑\",\"⫭\":\"⫭\",\"≌\":\"≌\",\"϶\":\"϶\",\"‵\":\"‵\",\"∽\":\"∽\",\"⋍\":\"⋍\",\"⊽\":\"⊽\",\"⌅\":\"⌅\",\"⎶\":\"⎶\",\"б\":\"б\",\"„\":\"„\",\"⦰\":\"⦰\",\"β\":\"β\",\"ℶ\":\"ℶ\",\"≬\":\"≬\",\"𝔟\":\"𝔟\",\"◯\":\"◯\",\"⨀\":\"⨀\",\"⨁\":\"⨁\",\"⨂\":\"⨂\",\"⨆\":\"⨆\",\"★\":\"★\",\"▽\":\"▽\",\"△\":\"△\",\"⨄\":\"⨄\",\"⤍\":\"⤍\",\"⧫\":\"⧫\",\"▴\":\"▴\",\"▾\":\"▾\",\"◂\":\"◂\",\"▸\":\"▸\",\"␣\":\"␣\",\"▒\":\"▒\",\"░\":\"░\",\"▓\":\"▓\",\"█\":\"█\",\"=⃥\":\"=⃥\",\"≡⃥\":\"≡⃥\",\"⌐\":\"⌐\",\"𝕓\":\"𝕓\",\"⋈\":\"⋈\",\"╗\":\"╗\",\"╔\":\"╔\",\"╖\":\"╖\",\"╓\":\"╓\",\"═\":\"═\",\"╦\":\"╦\",\"╩\":\"╩\",\"╤\":\"╤\",\"╧\":\"╧\",\"╝\":\"╝\",\"╚\":\"╚\",\"╜\":\"╜\",\"╙\":\"╙\",\"║\":\"║\",\"╬\":\"╬\",\"╣\":\"╣\",\"╠\":\"╠\",\"╫\":\"╫\",\"╢\":\"╢\",\"╟\":\"╟\",\"⧉\":\"⧉\",\"╕\":\"╕\",\"╒\":\"╒\",\"┐\":\"┐\",\"┌\":\"┌\",\"╥\":\"╥\",\"╨\":\"╨\",\"┬\":\"┬\",\"┴\":\"┴\",\"⊟\":\"⊟\",\"⊞\":\"⊞\",\"⊠\":\"⊠\",\"╛\":\"╛\",\"╘\":\"╘\",\"┘\":\"┘\",\"└\":\"└\",\"│\":\"│\",\"╪\":\"╪\",\"╡\":\"╡\",\"╞\":\"╞\",\"┼\":\"┼\",\"┤\":\"┤\",\"├\":\"├\",\"¦\":\"¦\",\"𝒷\":\"𝒷\",\"⁏\":\"⁏\",\"\\\\\":\"\\",\"⧅\":\"⧅\",\"⟈\":\"⟈\",\"•\":\"•\",\"⪮\":\"⪮\",\"ć\":\"ć\",\"∩\":\"∩\",\"⩄\":\"⩄\",\"⩉\":\"⩉\",\"⩋\":\"⩋\",\"⩇\":\"⩇\",\"⩀\":\"⩀\",\"∩︀\":\"∩︀\",\"⁁\":\"⁁\",\"⩍\":\"⩍\",\"č\":\"č\",\"ç\":\"ç\",\"ĉ\":\"ĉ\",\"⩌\":\"⩌\",\"⩐\":\"⩐\",\"ċ\":\"ċ\",\"⦲\":\"⦲\",\"¢\":\"¢\",\"𝔠\":\"𝔠\",\"ч\":\"ч\",\"✓\":\"✓\",\"χ\":\"χ\",\"○\":\"○\",\"⧃\":\"⧃\",\"ˆ\":\"ˆ\",\"≗\":\"≗\",\"↺\":\"↺\",\"↻\":\"↻\",\"Ⓢ\":\"Ⓢ\",\"⊛\":\"⊛\",\"⊚\":\"⊚\",\"⊝\":\"⊝\",\"⨐\":\"⨐\",\"⫯\":\"⫯\",\"⧂\":\"⧂\",\"♣\":\"♣\",\":\":\":\",\",\":\",\",\"@\":\"@\",\"∁\":\"∁\",\"⩭\":\"⩭\",\"𝕔\":\"𝕔\",\"℗\":\"℗\",\"↵\":\"↵\",\"✗\":\"✗\",\"𝒸\":\"𝒸\",\"⫏\":\"⫏\",\"⫑\":\"⫑\",\"⫐\":\"⫐\",\"⫒\":\"⫒\",\"⋯\":\"⋯\",\"⤸\":\"⤸\",\"⤵\":\"⤵\",\"⋞\":\"⋞\",\"⋟\":\"⋟\",\"↶\":\"↶\",\"⤽\":\"⤽\",\"∪\":\"∪\",\"⩈\":\"⩈\",\"⩆\":\"⩆\",\"⩊\":\"⩊\",\"⊍\":\"⊍\",\"⩅\":\"⩅\",\"∪︀\":\"∪︀\",\"↷\":\"↷\",\"⤼\":\"⤼\",\"⋎\":\"⋎\",\"⋏\":\"⋏\",\"¤\":\"¤\",\"∱\":\"∱\",\"⌭\":\"⌭\",\"⥥\":\"⥥\",\"†\":\"†\",\"ℸ\":\"ℸ\",\"‐\":\"‐\",\"⤏\":\"⤏\",\"ď\":\"ď\",\"д\":\"д\",\"⇊\":\"⇊\",\"⩷\":\"⩷\",\"°\":\"°\",\"δ\":\"δ\",\"⦱\":\"⦱\",\"⥿\":\"⥿\",\"𝔡\":\"𝔡\",\"♦\":\"♦\",\"ϝ\":\"ϝ\",\"⋲\":\"⋲\",\"÷\":\"÷\",\"⋇\":\"⋇\",\"ђ\":\"ђ\",\"⌞\":\"⌞\",\"⌍\":\"⌍\",$:\"$\",\"𝕕\":\"𝕕\",\"≑\":\"≑\",\"∸\":\"∸\",\"∔\":\"∔\",\"⊡\":\"⊡\",\"⌟\":\"⌟\",\"⌌\":\"⌌\",\"𝒹\":\"𝒹\",\"ѕ\":\"ѕ\",\"⧶\":\"⧶\",\"đ\":\"đ\",\"⋱\":\"⋱\",\"▿\":\"▿\",\"⦦\":\"⦦\",\"џ\":\"џ\",\"⟿\":\"⟿\",\"é\":\"é\",\"⩮\":\"⩮\",\"ě\":\"ě\",\"≖\":\"≖\",\"ê\":\"ê\",\"≕\":\"≕\",\"э\":\"э\",\"ė\":\"ė\",\"≒\":\"≒\",\"𝔢\":\"𝔢\",\"⪚\":\"⪚\",\"è\":\"è\",\"⪖\":\"⪖\",\"⪘\":\"⪘\",\"⪙\":\"⪙\",\"⏧\":\"⏧\",\"ℓ\":\"ℓ\",\"⪕\":\"⪕\",\"⪗\":\"⪗\",\"ē\":\"ē\",\"∅\":\"∅\",\" \":\" \",\" \":\" \",\" \":\" \",\"ŋ\":\"ŋ\",\" \":\" \",\"ę\":\"ę\",\"𝕖\":\"𝕖\",\"⋕\":\"⋕\",\"⧣\":\"⧣\",\"⩱\":\"⩱\",\"ε\":\"ε\",\"ϵ\":\"ϵ\",\"=\":\"=\",\"≟\":\"≟\",\"⩸\":\"⩸\",\"⧥\":\"⧥\",\"≓\":\"≓\",\"⥱\":\"⥱\",\"ℯ\":\"ℯ\",\"η\":\"η\",\"ð\":\"ð\",\"ë\":\"ë\",\"€\":\"€\",\"!\":\"!\",\"ф\":\"ф\",\"♀\":\"♀\",\"ffi\":\"ffi\",\"ff\":\"ff\",\"ffl\":\"ffl\",\"𝔣\":\"𝔣\",\"fi\":\"fi\",fj:\"fj\",\"♭\":\"♭\",\"fl\":\"fl\",\"▱\":\"▱\",\"ƒ\":\"ƒ\",\"𝕗\":\"𝕗\",\"⋔\":\"⋔\",\"⫙\":\"⫙\",\"⨍\":\"⨍\",\"½\":\"½\",\"⅓\":\"⅓\",\"¼\":\"¼\",\"⅕\":\"⅕\",\"⅙\":\"⅙\",\"⅛\":\"⅛\",\"⅔\":\"⅔\",\"⅖\":\"⅖\",\"¾\":\"¾\",\"⅗\":\"⅗\",\"⅜\":\"⅜\",\"⅘\":\"⅘\",\"⅚\":\"⅚\",\"⅝\":\"⅝\",\"⅞\":\"⅞\",\"⁄\":\"⁄\",\"⌢\":\"⌢\",\"𝒻\":\"𝒻\",\"⪌\":\"⪌\",\"ǵ\":\"ǵ\",\"γ\":\"γ\",\"⪆\":\"⪆\",\"ğ\":\"ğ\",\"ĝ\":\"ĝ\",\"г\":\"г\",\"ġ\":\"ġ\",\"⪩\":\"⪩\",\"⪀\":\"⪀\",\"⪂\":\"⪂\",\"⪄\":\"⪄\",\"⋛︀\":\"⋛︀\",\"⪔\":\"⪔\",\"𝔤\":\"𝔤\",\"ℷ\":\"ℷ\",\"ѓ\":\"ѓ\",\"⪒\":\"⪒\",\"⪥\":\"⪥\",\"⪤\":\"⪤\",\"≩\":\"≩\",\"⪊\":\"⪊\",\"⪈\":\"⪈\",\"⋧\":\"⋧\",\"𝕘\":\"𝕘\",\"ℊ\":\"ℊ\",\"⪎\":\"⪎\",\"⪐\":\"⪐\",\"⪧\":\"⪧\",\"⩺\":\"⩺\",\"⋗\":\"⋗\",\"⦕\":\"⦕\",\"⩼\":\"⩼\",\"⥸\":\"⥸\",\"≩︀\":\"≩︀\",\"ъ\":\"ъ\",\"⥈\":\"⥈\",\"↭\":\"↭\",\"ℏ\":\"ℏ\",\"ĥ\":\"ĥ\",\"♥\":\"♥\",\"…\":\"…\",\"⊹\":\"⊹\",\"𝔥\":\"𝔥\",\"⤥\":\"⤥\",\"⤦\":\"⤦\",\"⇿\":\"⇿\",\"∻\":\"∻\",\"↩\":\"↩\",\"↪\":\"↪\",\"𝕙\":\"𝕙\",\"―\":\"―\",\"𝒽\":\"𝒽\",\"ħ\":\"ħ\",\"⁃\":\"⁃\",\"í\":\"í\",\"î\":\"î\",\"и\":\"и\",\"е\":\"е\",\"¡\":\"¡\",\"𝔦\":\"𝔦\",\"ì\":\"ì\",\"⨌\":\"⨌\",\"∭\":\"∭\",\"⧜\":\"⧜\",\"℩\":\"℩\",\"ij\":\"ij\",\"ī\":\"ī\",\"ı\":\"ı\",\"⊷\":\"⊷\",\"Ƶ\":\"Ƶ\",\"℅\":\"℅\",\"∞\":\"∞\",\"⧝\":\"⧝\",\"⊺\":\"⊺\",\"⨗\":\"⨗\",\"⨼\":\"⨼\",\"ё\":\"ё\",\"į\":\"į\",\"𝕚\":\"𝕚\",\"ι\":\"ι\",\"¿\":\"¿\",\"𝒾\":\"𝒾\",\"⋹\":\"⋹\",\"⋵\":\"⋵\",\"⋴\":\"⋴\",\"⋳\":\"⋳\",\"ĩ\":\"ĩ\",\"і\":\"і\",\"ï\":\"ï\",\"ĵ\":\"ĵ\",\"й\":\"й\",\"𝔧\":\"𝔧\",\"ȷ\":\"ȷ\",\"𝕛\":\"𝕛\",\"𝒿\":\"𝒿\",\"ј\":\"ј\",\"є\":\"є\",\"κ\":\"κ\",\"ϰ\":\"ϰ\",\"ķ\":\"ķ\",\"к\":\"к\",\"𝔨\":\"𝔨\",\"ĸ\":\"ĸ\",\"х\":\"х\",\"ќ\":\"ќ\",\"𝕜\":\"𝕜\",\"𝓀\":\"𝓀\",\"⤛\":\"⤛\",\"⤎\":\"⤎\",\"⪋\":\"⪋\",\"⥢\":\"⥢\",\"ĺ\":\"ĺ\",\"⦴\":\"⦴\",\"λ\":\"λ\",\"⦑\":\"⦑\",\"⪅\":\"⪅\",\"«\":\"«\",\"⤟\":\"⤟\",\"⤝\":\"⤝\",\"↫\":\"↫\",\"⤹\":\"⤹\",\"⥳\":\"⥳\",\"↢\":\"↢\",\"⪫\":\"⪫\",\"⤙\":\"⤙\",\"⪭\":\"⪭\",\"⪭︀\":\"⪭︀\",\"⤌\":\"⤌\",\"❲\":\"❲\",\"{\":\"{\",\"[\":\"[\",\"⦋\":\"⦋\",\"⦏\":\"⦏\",\"⦍\":\"⦍\",\"ľ\":\"ľ\",\"ļ\":\"ļ\",\"л\":\"л\",\"⤶\":\"⤶\",\"⥧\":\"⥧\",\"⥋\":\"⥋\",\"↲\":\"↲\",\"≤\":\"≤\",\"⇇\":\"⇇\",\"⋋\":\"⋋\",\"⪨\":\"⪨\",\"⩿\":\"⩿\",\"⪁\":\"⪁\",\"⪃\":\"⪃\",\"⋚︀\":\"⋚︀\",\"⪓\":\"⪓\",\"⋖\":\"⋖\",\"⥼\":\"⥼\",\"𝔩\":\"𝔩\",\"⪑\":\"⪑\",\"⥪\":\"⥪\",\"▄\":\"▄\",\"љ\":\"љ\",\"⥫\":\"⥫\",\"◺\":\"◺\",\"ŀ\":\"ŀ\",\"⎰\":\"⎰\",\"≨\":\"≨\",\"⪉\":\"⪉\",\"⪇\":\"⪇\",\"⋦\":\"⋦\",\"⟬\":\"⟬\",\"⇽\":\"⇽\",\"⟼\":\"⟼\",\"↬\":\"↬\",\"⦅\":\"⦅\",\"𝕝\":\"𝕝\",\"⨭\":\"⨭\",\"⨴\":\"⨴\",\"∗\":\"∗\",\"◊\":\"◊\",\"(\":\"(\",\"⦓\":\"⦓\",\"⥭\":\"⥭\",\"‎\":\"‎\",\"⊿\":\"⊿\",\"‹\":\"‹\",\"𝓁\":\"𝓁\",\"⪍\":\"⪍\",\"⪏\":\"⪏\",\"‚\":\"‚\",\"ł\":\"ł\",\"⪦\":\"⪦\",\"⩹\":\"⩹\",\"⋉\":\"⋉\",\"⥶\":\"⥶\",\"⩻\":\"⩻\",\"⦖\":\"⦖\",\"◃\":\"◃\",\"⥊\":\"⥊\",\"⥦\":\"⥦\",\"≨︀\":\"≨︀\",\"∺\":\"∺\",\"¯\":\"¯\",\"♂\":\"♂\",\"✠\":\"✠\",\"▮\":\"▮\",\"⨩\":\"⨩\",\"м\":\"м\",\"—\":\"—\",\"𝔪\":\"𝔪\",\"℧\":\"℧\",\"µ\":\"µ\",\"⫰\":\"⫰\",\"−\":\"−\",\"⨪\":\"⨪\",\"⫛\":\"⫛\",\"⊧\":\"⊧\",\"𝕞\":\"𝕞\",\"𝓂\":\"𝓂\",\"μ\":\"μ\",\"⊸\":\"⊸\",\"⋙̸\":\"⋙̸\",\"≫⃒\":\"≫⃒\",\"⇍\":\"⇍\",\"⇎\":\"⇎\",\"⋘̸\":\"⋘̸\",\"≪⃒\":\"≪⃒\",\"⇏\":\"⇏\",\"⊯\":\"⊯\",\"⊮\":\"⊮\",\"ń\":\"ń\",\"∠⃒\":\"∠⃒\",\"⩰̸\":\"⩰̸\",\"≋̸\":\"≋̸\",\"ʼn\":\"ʼn\",\"♮\":\"♮\",\"⩃\":\"⩃\",\"ň\":\"ň\",\"ņ\":\"ņ\",\"⩭̸\":\"⩭̸\",\"⩂\":\"⩂\",\"н\":\"н\",\"–\":\"–\",\"⇗\":\"⇗\",\"⤤\":\"⤤\",\"≐̸\":\"≐̸\",\"⤨\":\"⤨\",\"𝔫\":\"𝔫\",\"↮\":\"↮\",\"⫲\":\"⫲\",\"⋼\":\"⋼\",\"⋺\":\"⋺\",\"њ\":\"њ\",\"≦̸\":\"≦̸\",\"↚\":\"↚\",\"‥\":\"‥\",\"𝕟\":\"𝕟\",\"¬\":\"¬\",\"⋹̸\":\"⋹̸\",\"⋵̸\":\"⋵̸\",\"⋷\":\"⋷\",\"⋶\":\"⋶\",\"⋾\":\"⋾\",\"⋽\":\"⋽\",\"⫽⃥\":\"⫽⃥\",\"∂̸\":\"∂̸\",\"⨔\":\"⨔\",\"↛\":\"↛\",\"⤳̸\":\"⤳̸\",\"↝̸\":\"↝̸\",\"𝓃\":\"𝓃\",\"⊄\":\"⊄\",\"⫅̸\":\"⫅̸\",\"⊅\":\"⊅\",\"⫆̸\":\"⫆̸\",\"ñ\":\"ñ\",\"ν\":\"ν\",\"#\":\"#\",\"№\":\"№\",\" \":\" \",\"⊭\":\"⊭\",\"⤄\":\"⤄\",\"≍⃒\":\"≍⃒\",\"⊬\":\"⊬\",\"≥⃒\":\"≥⃒\",\">⃒\":\">⃒\",\"⧞\":\"⧞\",\"⤂\":\"⤂\",\"≤⃒\":\"≤⃒\",\"<⃒\":\"<⃒\",\"⊴⃒\":\"⊴⃒\",\"⤃\":\"⤃\",\"⊵⃒\":\"⊵⃒\",\"∼⃒\":\"∼⃒\",\"⇖\":\"⇖\",\"⤣\":\"⤣\",\"⤧\":\"⤧\",\"ó\":\"ó\",\"ô\":\"ô\",\"о\":\"о\",\"ő\":\"ő\",\"⨸\":\"⨸\",\"⦼\":\"⦼\",\"œ\":\"œ\",\"⦿\":\"⦿\",\"𝔬\":\"𝔬\",\"˛\":\"˛\",\"ò\":\"ò\",\"⧁\":\"⧁\",\"⦵\":\"⦵\",\"⦾\":\"⦾\",\"⦻\":\"⦻\",\"⧀\":\"⧀\",\"ō\":\"ō\",\"ω\":\"ω\",\"ο\":\"ο\",\"⦶\":\"⦶\",\"𝕠\":\"𝕠\",\"⦷\":\"⦷\",\"⦹\":\"⦹\",\"∨\":\"∨\",\"⩝\":\"⩝\",\"ℴ\":\"ℴ\",\"ª\":\"ª\",\"º\":\"º\",\"⊶\":\"⊶\",\"⩖\":\"⩖\",\"⩗\":\"⩗\",\"⩛\":\"⩛\",\"ø\":\"ø\",\"⊘\":\"⊘\",\"õ\":\"õ\",\"⨶\":\"⨶\",\"ö\":\"ö\",\"⌽\":\"⌽\",\"¶\":\"¶\",\"⫳\":\"⫳\",\"⫽\":\"⫽\",\"п\":\"п\",\"%\":\"%\",\".\":\".\",\"‰\":\"‰\",\"‱\":\"‱\",\"𝔭\":\"𝔭\",\"φ\":\"φ\",\"ϕ\":\"ϕ\",\"☎\":\"☎\",\"π\":\"π\",\"ϖ\":\"ϖ\",\"ℎ\":\"ℎ\",\"+\":\"+\",\"⨣\":\"⨣\",\"⨢\":\"⨢\",\"⨥\":\"⨥\",\"⩲\":\"⩲\",\"⨦\":\"⨦\",\"⨧\":\"⨧\",\"⨕\":\"⨕\",\"𝕡\":\"𝕡\",\"£\":\"£\",\"⪳\":\"⪳\",\"⪷\":\"⪷\",\"⪹\":\"⪹\",\"⪵\":\"⪵\",\"⋨\":\"⋨\",\"′\":\"′\",\"⌮\":\"⌮\",\"⌒\":\"⌒\",\"⌓\":\"⌓\",\"⊰\":\"⊰\",\"𝓅\":\"𝓅\",\"ψ\":\"ψ\",\" \":\" \",\"𝔮\":\"𝔮\",\"𝕢\":\"𝕢\",\"⁗\":\"⁗\",\"𝓆\":\"𝓆\",\"⨖\":\"⨖\",\"?\":\"?\",\"⤜\":\"⤜\",\"⥤\":\"⥤\",\"∽̱\":\"∽̱\",\"ŕ\":\"ŕ\",\"⦳\":\"⦳\",\"⦒\":\"⦒\",\"⦥\":\"⦥\",\"»\":\"»\",\"⥵\":\"⥵\",\"⤠\":\"⤠\",\"⤳\":\"⤳\",\"⤞\":\"⤞\",\"⥅\":\"⥅\",\"⥴\":\"⥴\",\"↣\":\"↣\",\"↝\":\"↝\",\"⤚\":\"⤚\",\"∶\":\"∶\",\"❳\":\"❳\",\"}\":\"}\",\"]\":\"]\",\"⦌\":\"⦌\",\"⦎\":\"⦎\",\"⦐\":\"⦐\",\"ř\":\"ř\",\"ŗ\":\"ŗ\",\"р\":\"р\",\"⤷\":\"⤷\",\"⥩\":\"⥩\",\"↳\":\"↳\",\"▭\":\"▭\",\"⥽\":\"⥽\",\"𝔯\":\"𝔯\",\"⥬\":\"⥬\",\"ρ\":\"ρ\",\"ϱ\":\"ϱ\",\"⇉\":\"⇉\",\"⋌\":\"⋌\",\"˚\":\"˚\",\"‏\":\"‏\",\"⎱\":\"⎱\",\"⫮\":\"⫮\",\"⟭\":\"⟭\",\"⇾\":\"⇾\",\"⦆\":\"⦆\",\"𝕣\":\"𝕣\",\"⨮\":\"⨮\",\"⨵\":\"⨵\",\")\":\")\",\"⦔\":\"⦔\",\"⨒\":\"⨒\",\"›\":\"›\",\"𝓇\":\"𝓇\",\"⋊\":\"⋊\",\"▹\":\"▹\",\"⧎\":\"⧎\",\"⥨\":\"⥨\",\"℞\":\"℞\",\"ś\":\"ś\",\"⪴\":\"⪴\",\"⪸\":\"⪸\",\"š\":\"š\",\"ş\":\"ş\",\"ŝ\":\"ŝ\",\"⪶\":\"⪶\",\"⪺\":\"⪺\",\"⋩\":\"⋩\",\"⨓\":\"⨓\",\"с\":\"с\",\"⋅\":\"⋅\",\"⩦\":\"⩦\",\"⇘\":\"⇘\",\"§\":\"§\",\";\":\";\",\"⤩\":\"⤩\",\"✶\":\"✶\",\"𝔰\":\"𝔰\",\"♯\":\"♯\",\"щ\":\"щ\",\"ш\":\"ш\",\"­\":\"­\",\"σ\":\"σ\",\"ς\":\"ς\",\"⩪\":\"⩪\",\"⪞\":\"⪞\",\"⪠\":\"⪠\",\"⪝\":\"⪝\",\"⪟\":\"⪟\",\"≆\":\"≆\",\"⨤\":\"⨤\",\"⥲\":\"⥲\",\"⨳\":\"⨳\",\"⧤\":\"⧤\",\"⌣\":\"⌣\",\"⪪\":\"⪪\",\"⪬\":\"⪬\",\"⪬︀\":\"⪬︀\",\"ь\":\"ь\",\"/\":\"/\",\"⧄\":\"⧄\",\"⌿\":\"⌿\",\"𝕤\":\"𝕤\",\"♠\":\"♠\",\"⊓︀\":\"⊓︀\",\"⊔︀\":\"⊔︀\",\"𝓈\":\"𝓈\",\"☆\":\"☆\",\"⊂\":\"⊂\",\"⫅\":\"⫅\",\"⪽\":\"⪽\",\"⫃\":\"⫃\",\"⫁\":\"⫁\",\"⫋\":\"⫋\",\"⊊\":\"⊊\",\"⪿\":\"⪿\",\"⥹\":\"⥹\",\"⫇\":\"⫇\",\"⫕\":\"⫕\",\"⫓\":\"⫓\",\"♪\":\"♪\",\"¹\":\"¹\",\"²\":\"²\",\"³\":\"³\",\"⫆\":\"⫆\",\"⪾\":\"⪾\",\"⫘\":\"⫘\",\"⫄\":\"⫄\",\"⟉\":\"⟉\",\"⫗\":\"⫗\",\"⥻\":\"⥻\",\"⫂\":\"⫂\",\"⫌\":\"⫌\",\"⊋\":\"⊋\",\"⫀\":\"⫀\",\"⫈\":\"⫈\",\"⫔\":\"⫔\",\"⫖\":\"⫖\",\"⇙\":\"⇙\",\"⤪\":\"⤪\",\"ß\":\"ß\",\"⌖\":\"⌖\",\"τ\":\"τ\",\"ť\":\"ť\",\"ţ\":\"ţ\",\"т\":\"т\",\"⌕\":\"⌕\",\"𝔱\":\"𝔱\",\"θ\":\"θ\",\"ϑ\":\"ϑ\",\"þ\":\"þ\",\"×\":\"×\",\"⨱\":\"⨱\",\"⨰\":\"⨰\",\"⌶\":\"⌶\",\"⫱\":\"⫱\",\"𝕥\":\"𝕥\",\"⫚\":\"⫚\",\"‴\":\"‴\",\"▵\":\"▵\",\"≜\":\"≜\",\"◬\":\"◬\",\"⨺\":\"⨺\",\"⨹\":\"⨹\",\"⧍\":\"⧍\",\"⨻\":\"⨻\",\"⏢\":\"⏢\",\"𝓉\":\"𝓉\",\"ц\":\"ц\",\"ћ\":\"ћ\",\"ŧ\":\"ŧ\",\"⥣\":\"⥣\",\"ú\":\"ú\",\"ў\":\"ў\",\"ŭ\":\"ŭ\",\"û\":\"û\",\"у\":\"у\",\"ű\":\"ű\",\"⥾\":\"⥾\",\"𝔲\":\"𝔲\",\"ù\":\"ù\",\"▀\":\"▀\",\"⌜\":\"⌜\",\"⌏\":\"⌏\",\"◸\":\"◸\",\"ū\":\"ū\",\"ų\":\"ų\",\"𝕦\":\"𝕦\",\"υ\":\"υ\",\"⇈\":\"⇈\",\"⌝\":\"⌝\",\"⌎\":\"⌎\",\"ů\":\"ů\",\"◹\":\"◹\",\"𝓊\":\"𝓊\",\"⋰\":\"⋰\",\"ũ\":\"ũ\",\"ü\":\"ü\",\"⦧\":\"⦧\",\"⫨\":\"⫨\",\"⫩\":\"⫩\",\"⦜\":\"⦜\",\"⊊︀\":\"⊊︀\",\"⫋︀\":\"⫋︀\",\"⊋︀\":\"⊋︀\",\"⫌︀\":\"⫌︀\",\"в\":\"в\",\"⊻\":\"⊻\",\"≚\":\"≚\",\"⋮\":\"⋮\",\"𝔳\":\"𝔳\",\"𝕧\":\"𝕧\",\"𝓋\":\"𝓋\",\"⦚\":\"⦚\",\"ŵ\":\"ŵ\",\"⩟\":\"⩟\",\"≙\":\"≙\",\"℘\":\"℘\",\"𝔴\":\"𝔴\",\"𝕨\":\"𝕨\",\"𝓌\":\"𝓌\",\"𝔵\":\"𝔵\",\"ξ\":\"ξ\",\"⋻\":\"⋻\",\"𝕩\":\"𝕩\",\"𝓍\":\"𝓍\",\"ý\":\"ý\",\"я\":\"я\",\"ŷ\":\"ŷ\",\"ы\":\"ы\",\"¥\":\"¥\",\"𝔶\":\"𝔶\",\"ї\":\"ї\",\"𝕪\":\"𝕪\",\"𝓎\":\"𝓎\",\"ю\":\"ю\",\"ÿ\":\"ÿ\",\"ź\":\"ź\",\"ž\":\"ž\",\"з\":\"з\",\"ż\":\"ż\",\"ζ\":\"ζ\",\"𝔷\":\"𝔷\",\"ж\":\"ж\",\"⇝\":\"⇝\",\"𝕫\":\"𝕫\",\"𝓏\":\"𝓏\",\"‍\":\"‍\",\"‌\":\"‌\"}}};"],"mappings":"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"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0cdbeb90d48f77bd76bb84c82df0d19d.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0cdbeb90d48f77bd76bb84c82df0d19d.json deleted file mode 100644 index 008fcad1..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0cdbeb90d48f77bd76bb84c82df0d19d.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import classNames from 'classnames';\nimport css from 'dom-helpers/css';\nimport React, { useMemo } from 'react';\nimport { ENTERED, ENTERING, EXITED, EXITING } from 'react-transition-group/Transition';\nimport transitionEndListener from './transitionEndListener';\nimport createChainedFunction from './createChainedFunction';\nimport triggerBrowserReflow from './triggerBrowserReflow';\nimport TransitionWrapper from './TransitionWrapper';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst MARGINS = {\n height: ['marginTop', 'marginBottom'],\n width: ['marginLeft', 'marginRight']\n};\n\nfunction getDefaultDimensionValue(dimension, elem) {\n const offset = `offset${dimension[0].toUpperCase()}${dimension.slice(1)}`;\n const value = elem[offset];\n const margins = MARGINS[dimension];\n return value + // @ts-ignore\n parseInt(css(elem, margins[0]), 10) + // @ts-ignore\n parseInt(css(elem, margins[1]), 10);\n}\n\nconst collapseStyles = {\n [EXITED]: 'collapse',\n [EXITING]: 'collapsing',\n [ENTERING]: 'collapsing',\n [ENTERED]: 'collapse show'\n};\nconst defaultProps = {\n in: false,\n timeout: 300,\n mountOnEnter: false,\n unmountOnExit: false,\n appear: false,\n getDimensionValue: getDefaultDimensionValue\n};\nconst Collapse = /*#__PURE__*/React.forwardRef((_ref, ref) => {\n let {\n onEnter,\n onEntering,\n onEntered,\n onExit,\n onExiting,\n className,\n children,\n dimension = 'height',\n getDimensionValue = getDefaultDimensionValue,\n ...props\n } = _ref;\n\n /* Compute dimension */\n const computedDimension = typeof dimension === 'function' ? dimension() : dimension;\n /* -- Expanding -- */\n\n const handleEnter = useMemo(() => createChainedFunction(elem => {\n elem.style[computedDimension] = '0';\n }, onEnter), [computedDimension, onEnter]);\n const handleEntering = useMemo(() => createChainedFunction(elem => {\n const scroll = `scroll${computedDimension[0].toUpperCase()}${computedDimension.slice(1)}`;\n elem.style[computedDimension] = `${elem[scroll]}px`;\n }, onEntering), [computedDimension, onEntering]);\n const handleEntered = useMemo(() => createChainedFunction(elem => {\n elem.style[computedDimension] = null;\n }, onEntered), [computedDimension, onEntered]);\n /* -- Collapsing -- */\n\n const handleExit = useMemo(() => createChainedFunction(elem => {\n elem.style[computedDimension] = `${getDimensionValue(computedDimension, elem)}px`;\n triggerBrowserReflow(elem);\n }, onExit), [onExit, getDimensionValue, computedDimension]);\n const handleExiting = useMemo(() => createChainedFunction(elem => {\n elem.style[computedDimension] = null;\n }, onExiting), [computedDimension, onExiting]);\n return /*#__PURE__*/_jsx(TransitionWrapper, {\n ref: ref,\n addEndListener: transitionEndListener,\n ...props,\n \"aria-expanded\": props.role ? props.in : null,\n onEnter: handleEnter,\n onEntering: handleEntering,\n onEntered: handleEntered,\n onExit: handleExit,\n onExiting: handleExiting,\n childRef: children.ref,\n children: (state, innerProps) => /*#__PURE__*/React.cloneElement(children, { ...innerProps,\n className: classNames(className, children.props.className, collapseStyles[state], computedDimension === 'width' && 'collapse-horizontal')\n })\n });\n}); // @ts-ignore\n// @ts-ignore\n\nCollapse.defaultProps = defaultProps;\nexport default Collapse;","map":{"version":3,"names":["classNames","css","React","useMemo","ENTERED","ENTERING","EXITED","EXITING","transitionEndListener","createChainedFunction","triggerBrowserReflow","TransitionWrapper","jsx","_jsx","MARGINS","height","width","getDefaultDimensionValue","dimension","elem","offset","toUpperCase","slice","value","margins","parseInt","collapseStyles","defaultProps","in","timeout","mountOnEnter","unmountOnExit","appear","getDimensionValue","Collapse","forwardRef","ref","onEnter","onEntering","onEntered","onExit","onExiting","className","children","props","computedDimension","handleEnter","style","handleEntering","scroll","handleEntered","handleExit","handleExiting","addEndListener","role","childRef","state","innerProps","cloneElement"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-bootstrap/esm/Collapse.js"],"sourcesContent":["import classNames from 'classnames';\nimport css from 'dom-helpers/css';\nimport React, { useMemo } from 'react';\nimport { ENTERED, ENTERING, EXITED, EXITING } from 'react-transition-group/Transition';\nimport transitionEndListener from './transitionEndListener';\nimport createChainedFunction from './createChainedFunction';\nimport triggerBrowserReflow from './triggerBrowserReflow';\nimport TransitionWrapper from './TransitionWrapper';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst MARGINS = {\n height: ['marginTop', 'marginBottom'],\n width: ['marginLeft', 'marginRight']\n};\n\nfunction getDefaultDimensionValue(dimension, elem) {\n const offset = `offset${dimension[0].toUpperCase()}${dimension.slice(1)}`;\n const value = elem[offset];\n const margins = MARGINS[dimension];\n return value + // @ts-ignore\n parseInt(css(elem, margins[0]), 10) + // @ts-ignore\n parseInt(css(elem, margins[1]), 10);\n}\n\nconst collapseStyles = {\n [EXITED]: 'collapse',\n [EXITING]: 'collapsing',\n [ENTERING]: 'collapsing',\n [ENTERED]: 'collapse show'\n};\nconst defaultProps = {\n in: false,\n timeout: 300,\n mountOnEnter: false,\n unmountOnExit: false,\n appear: false,\n getDimensionValue: getDefaultDimensionValue\n};\nconst Collapse = /*#__PURE__*/React.forwardRef(({\n onEnter,\n onEntering,\n onEntered,\n onExit,\n onExiting,\n className,\n children,\n dimension = 'height',\n getDimensionValue = getDefaultDimensionValue,\n ...props\n}, ref) => {\n /* Compute dimension */\n const computedDimension = typeof dimension === 'function' ? dimension() : dimension;\n /* -- Expanding -- */\n\n const handleEnter = useMemo(() => createChainedFunction(elem => {\n elem.style[computedDimension] = '0';\n }, onEnter), [computedDimension, onEnter]);\n const handleEntering = useMemo(() => createChainedFunction(elem => {\n const scroll = `scroll${computedDimension[0].toUpperCase()}${computedDimension.slice(1)}`;\n elem.style[computedDimension] = `${elem[scroll]}px`;\n }, onEntering), [computedDimension, onEntering]);\n const handleEntered = useMemo(() => createChainedFunction(elem => {\n elem.style[computedDimension] = null;\n }, onEntered), [computedDimension, onEntered]);\n /* -- Collapsing -- */\n\n const handleExit = useMemo(() => createChainedFunction(elem => {\n elem.style[computedDimension] = `${getDimensionValue(computedDimension, elem)}px`;\n triggerBrowserReflow(elem);\n }, onExit), [onExit, getDimensionValue, computedDimension]);\n const handleExiting = useMemo(() => createChainedFunction(elem => {\n elem.style[computedDimension] = null;\n }, onExiting), [computedDimension, onExiting]);\n return /*#__PURE__*/_jsx(TransitionWrapper, {\n ref: ref,\n addEndListener: transitionEndListener,\n ...props,\n \"aria-expanded\": props.role ? props.in : null,\n onEnter: handleEnter,\n onEntering: handleEntering,\n onEntered: handleEntered,\n onExit: handleExit,\n onExiting: handleExiting,\n childRef: children.ref,\n children: (state, innerProps) => /*#__PURE__*/React.cloneElement(children, { ...innerProps,\n className: classNames(className, children.props.className, collapseStyles[state], computedDimension === 'width' && 'collapse-horizontal')\n })\n });\n}); // @ts-ignore\n\n// @ts-ignore\nCollapse.defaultProps = defaultProps;\nexport default Collapse;"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0d47fb066cc50fc8249f3150059409ba.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0d47fb066cc50fc8249f3150059409ba.json deleted file mode 100644 index 72915c1f..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0d47fb066cc50fc8249f3150059409ba.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/pages/home/Home.jsx\";\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Home() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: [\"home page\", /*#__PURE__*/_jsxDEV(Posts, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 4,\n columnNumber: 9\n }, this);\n}\n_c = Home;\n\nvar _c;\n\n$RefreshReg$(_c, \"Home\");","map":{"version":3,"names":["React","Home"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/pages/home/Home.jsx"],"sourcesContent":["import React from \"react\";\nexport default function Home() {\n return (\n
\n\n home page\n \n \n
\n )\n}"],"mappings":";AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACI;IAAA,qCAGI,QAAC,KAAD;MAAA;MAAA;MAAA;IAAA,QAHJ;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAQH;KATuBA,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0d7f40ecc75213c3c85da6cddee0a556.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0d7f40ecc75213c3c85da6cddee0a556.json deleted file mode 100644 index 70c2aea4..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0d7f40ecc75213c3c85da6cddee0a556.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/home/Home.jsx\";\nimport Blogs from \"../../blogs/Blogs\";\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Home() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: [\"home page\", /*#__PURE__*/_jsxDEV(Blogs, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 5,\n columnNumber: 9\n }, this);\n}\n_c = Home;\n\nvar _c;\n\n$RefreshReg$(_c, \"Home\");","map":{"version":3,"names":["Blogs","React","Home"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/home/Home.jsx"],"sourcesContent":["import Blogs from \"../../blogs/Blogs\";\nimport React from \"react\";\nexport default function Home() {\n return (\n
\n\n home page\n \n
\n )\n}"],"mappings":";AAAA,OAAOA,KAAP,MAAkB,mBAAlB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AACA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACI;IAAA,qCAGI,QAAC,KAAD;MAAA;MAAA;MAAA;IAAA,QAHJ;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAOH;KARuBA,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0d996d05d4594e0f837415e797803027.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0d996d05d4594e0f837415e797803027.json new file mode 100644 index 00000000..1d1c9432 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0d996d05d4594e0f837415e797803027.json @@ -0,0 +1 @@ +{"ast":null,"code":"'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}","map":{"version":3,"names":["process","env","NODE_ENV","module","exports","require"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react/jsx-runtime.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n"],"mappings":"AAAA;;AAEA,IAAIA,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;EACzCC,MAAM,CAACC,OAAP,GAAiBC,OAAO,CAAC,2CAAD,CAAxB;AACD,CAFD,MAEO;EACLF,MAAM,CAACC,OAAP,GAAiBC,OAAO,CAAC,wCAAD,CAAxB;AACD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e1999aa0fdff25a294f6e11a0b4c144.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0e1999aa0fdff25a294f6e11a0b4c144.json deleted file mode 100644 index cc3aecbe..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e1999aa0fdff25a294f6e11a0b4c144.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import React, { Component } from 'react';\nimport _inheritsLoose from '@babel/runtime/helpers/esm/inheritsLoose';\nimport PropTypes from 'prop-types';\nimport warning from 'tiny-warning';\nvar MAX_SIGNED_31_BIT_INT = 1073741823;\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : {};\n\nfunction getUniqueId() {\n var key = '__global_unique_id__';\n return commonjsGlobal[key] = (commonjsGlobal[key] || 0) + 1;\n}\n\nfunction objectIs(x, y) {\n if (x === y) {\n return x !== 0 || 1 / x === 1 / y;\n } else {\n return x !== x && y !== y;\n }\n}\n\nfunction createEventEmitter(value) {\n var handlers = [];\n return {\n on: function on(handler) {\n handlers.push(handler);\n },\n off: function off(handler) {\n handlers = handlers.filter(function (h) {\n return h !== handler;\n });\n },\n get: function get() {\n return value;\n },\n set: function set(newValue, changedBits) {\n value = newValue;\n handlers.forEach(function (handler) {\n return handler(value, changedBits);\n });\n }\n };\n}\n\nfunction onlyChild(children) {\n return Array.isArray(children) ? children[0] : children;\n}\n\nfunction createReactContext(defaultValue, calculateChangedBits) {\n var _Provider$childContex, _Consumer$contextType;\n\n var contextProp = '__create-react-context-' + getUniqueId() + '__';\n\n var Provider = /*#__PURE__*/function (_Component) {\n _inheritsLoose(Provider, _Component);\n\n function Provider() {\n var _this;\n\n _this = _Component.apply(this, arguments) || this;\n _this.emitter = createEventEmitter(_this.props.value);\n return _this;\n }\n\n var _proto = Provider.prototype;\n\n _proto.getChildContext = function getChildContext() {\n var _ref;\n\n return _ref = {}, _ref[contextProp] = this.emitter, _ref;\n };\n\n _proto.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {\n if (this.props.value !== nextProps.value) {\n var oldValue = this.props.value;\n var newValue = nextProps.value;\n var changedBits;\n\n if (objectIs(oldValue, newValue)) {\n changedBits = 0;\n } else {\n changedBits = typeof calculateChangedBits === 'function' ? calculateChangedBits(oldValue, newValue) : MAX_SIGNED_31_BIT_INT;\n\n if (process.env.NODE_ENV !== 'production') {\n warning((changedBits & MAX_SIGNED_31_BIT_INT) === changedBits, 'calculateChangedBits: Expected the return value to be a ' + '31-bit integer. Instead received: ' + changedBits);\n }\n\n changedBits |= 0;\n\n if (changedBits !== 0) {\n this.emitter.set(nextProps.value, changedBits);\n }\n }\n }\n };\n\n _proto.render = function render() {\n return this.props.children;\n };\n\n return Provider;\n }(Component);\n\n Provider.childContextTypes = (_Provider$childContex = {}, _Provider$childContex[contextProp] = PropTypes.object.isRequired, _Provider$childContex);\n\n var Consumer = /*#__PURE__*/function (_Component2) {\n _inheritsLoose(Consumer, _Component2);\n\n function Consumer() {\n var _this2;\n\n _this2 = _Component2.apply(this, arguments) || this;\n _this2.state = {\n value: _this2.getValue()\n };\n\n _this2.onUpdate = function (newValue, changedBits) {\n var observedBits = _this2.observedBits | 0;\n\n if ((observedBits & changedBits) !== 0) {\n _this2.setState({\n value: _this2.getValue()\n });\n }\n };\n\n return _this2;\n }\n\n var _proto2 = Consumer.prototype;\n\n _proto2.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {\n var observedBits = nextProps.observedBits;\n this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT : observedBits;\n };\n\n _proto2.componentDidMount = function componentDidMount() {\n if (this.context[contextProp]) {\n this.context[contextProp].on(this.onUpdate);\n }\n\n var observedBits = this.props.observedBits;\n this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT : observedBits;\n };\n\n _proto2.componentWillUnmount = function componentWillUnmount() {\n if (this.context[contextProp]) {\n this.context[contextProp].off(this.onUpdate);\n }\n };\n\n _proto2.getValue = function getValue() {\n if (this.context[contextProp]) {\n return this.context[contextProp].get();\n } else {\n return defaultValue;\n }\n };\n\n _proto2.render = function render() {\n return onlyChild(this.props.children)(this.state.value);\n };\n\n return Consumer;\n }(Component);\n\n Consumer.contextTypes = (_Consumer$contextType = {}, _Consumer$contextType[contextProp] = PropTypes.object, _Consumer$contextType);\n return {\n Provider: Provider,\n Consumer: Consumer\n };\n}\n\nvar index = React.createContext || createReactContext;\nexport default index;","map":{"version":3,"names":["React","Component","_inheritsLoose","PropTypes","warning","MAX_SIGNED_31_BIT_INT","commonjsGlobal","globalThis","window","global","getUniqueId","key","objectIs","x","y","createEventEmitter","value","handlers","on","handler","push","off","filter","h","get","set","newValue","changedBits","forEach","onlyChild","children","Array","isArray","createReactContext","defaultValue","calculateChangedBits","_Provider$childContex","_Consumer$contextType","contextProp","Provider","_Component","_this","apply","arguments","emitter","props","_proto","prototype","getChildContext","_ref","componentWillReceiveProps","nextProps","oldValue","process","env","NODE_ENV","render","childContextTypes","object","isRequired","Consumer","_Component2","_this2","state","getValue","onUpdate","observedBits","setState","_proto2","undefined","componentDidMount","context","componentWillUnmount","contextTypes","index","createContext"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-router/node_modules/mini-create-react-context/dist/esm/index.js"],"sourcesContent":["import React, { Component } from 'react';\nimport _inheritsLoose from '@babel/runtime/helpers/esm/inheritsLoose';\nimport PropTypes from 'prop-types';\nimport warning from 'tiny-warning';\n\nvar MAX_SIGNED_31_BIT_INT = 1073741823;\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : {};\n\nfunction getUniqueId() {\n var key = '__global_unique_id__';\n return commonjsGlobal[key] = (commonjsGlobal[key] || 0) + 1;\n}\n\nfunction objectIs(x, y) {\n if (x === y) {\n return x !== 0 || 1 / x === 1 / y;\n } else {\n return x !== x && y !== y;\n }\n}\n\nfunction createEventEmitter(value) {\n var handlers = [];\n return {\n on: function on(handler) {\n handlers.push(handler);\n },\n off: function off(handler) {\n handlers = handlers.filter(function (h) {\n return h !== handler;\n });\n },\n get: function get() {\n return value;\n },\n set: function set(newValue, changedBits) {\n value = newValue;\n handlers.forEach(function (handler) {\n return handler(value, changedBits);\n });\n }\n };\n}\n\nfunction onlyChild(children) {\n return Array.isArray(children) ? children[0] : children;\n}\n\nfunction createReactContext(defaultValue, calculateChangedBits) {\n var _Provider$childContex, _Consumer$contextType;\n\n var contextProp = '__create-react-context-' + getUniqueId() + '__';\n\n var Provider = /*#__PURE__*/function (_Component) {\n _inheritsLoose(Provider, _Component);\n\n function Provider() {\n var _this;\n\n _this = _Component.apply(this, arguments) || this;\n _this.emitter = createEventEmitter(_this.props.value);\n return _this;\n }\n\n var _proto = Provider.prototype;\n\n _proto.getChildContext = function getChildContext() {\n var _ref;\n\n return _ref = {}, _ref[contextProp] = this.emitter, _ref;\n };\n\n _proto.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {\n if (this.props.value !== nextProps.value) {\n var oldValue = this.props.value;\n var newValue = nextProps.value;\n var changedBits;\n\n if (objectIs(oldValue, newValue)) {\n changedBits = 0;\n } else {\n changedBits = typeof calculateChangedBits === 'function' ? calculateChangedBits(oldValue, newValue) : MAX_SIGNED_31_BIT_INT;\n\n if (process.env.NODE_ENV !== 'production') {\n warning((changedBits & MAX_SIGNED_31_BIT_INT) === changedBits, 'calculateChangedBits: Expected the return value to be a ' + '31-bit integer. Instead received: ' + changedBits);\n }\n\n changedBits |= 0;\n\n if (changedBits !== 0) {\n this.emitter.set(nextProps.value, changedBits);\n }\n }\n }\n };\n\n _proto.render = function render() {\n return this.props.children;\n };\n\n return Provider;\n }(Component);\n\n Provider.childContextTypes = (_Provider$childContex = {}, _Provider$childContex[contextProp] = PropTypes.object.isRequired, _Provider$childContex);\n\n var Consumer = /*#__PURE__*/function (_Component2) {\n _inheritsLoose(Consumer, _Component2);\n\n function Consumer() {\n var _this2;\n\n _this2 = _Component2.apply(this, arguments) || this;\n _this2.state = {\n value: _this2.getValue()\n };\n\n _this2.onUpdate = function (newValue, changedBits) {\n var observedBits = _this2.observedBits | 0;\n\n if ((observedBits & changedBits) !== 0) {\n _this2.setState({\n value: _this2.getValue()\n });\n }\n };\n\n return _this2;\n }\n\n var _proto2 = Consumer.prototype;\n\n _proto2.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {\n var observedBits = nextProps.observedBits;\n this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT : observedBits;\n };\n\n _proto2.componentDidMount = function componentDidMount() {\n if (this.context[contextProp]) {\n this.context[contextProp].on(this.onUpdate);\n }\n\n var observedBits = this.props.observedBits;\n this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT : observedBits;\n };\n\n _proto2.componentWillUnmount = function componentWillUnmount() {\n if (this.context[contextProp]) {\n this.context[contextProp].off(this.onUpdate);\n }\n };\n\n _proto2.getValue = function getValue() {\n if (this.context[contextProp]) {\n return this.context[contextProp].get();\n } else {\n return defaultValue;\n }\n };\n\n _proto2.render = function render() {\n return onlyChild(this.props.children)(this.state.value);\n };\n\n return Consumer;\n }(Component);\n\n Consumer.contextTypes = (_Consumer$contextType = {}, _Consumer$contextType[contextProp] = PropTypes.object, _Consumer$contextType);\n return {\n Provider: Provider,\n Consumer: Consumer\n };\n}\n\nvar index = React.createContext || createReactContext;\n\nexport default index;\n"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e1ffc94454feee82c423964ec2c255e.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0e1ffc94454feee82c423964ec2c255e.json deleted file mode 100644 index 426b640d..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e1ffc94454feee82c423964ec2c255e.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blog() {\n return /*#__PURE__*/_jsxDEV(Card, {\n style: {\n width: '100rem',\n height: '100rem'\n },\n children: /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n children: \"Blog title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Blog text\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = Blog;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blog\");","map":{"version":3,"names":["Button","Card","React","Blog","width","height"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function Blog() {\n return (\n\n \n \n Blog title\n \n Blog text\n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACJ,QAAC,IAAD;IAAM,KAAK,EAAE;MAAEC,KAAK,EAAE,QAAT;MAAmBC,MAAM,EAAC;IAA1B,CAAb;IAAA,uBAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF;IAAA;MAAA;MAAA;MAAA;IAAA;EAFF;IAAA;IAAA;IAAA;EAAA,QADI;AAYH;KAbuBF,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e5092faf52b437560e6815b9beeea7b.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0e5092faf52b437560e6815b9beeea7b.json deleted file mode 100644 index 90b612fc..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e5092faf52b437560e6815b9beeea7b.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';\n\nvar ReactIs = require('react-is');\n\nvar assign = require('object-assign');\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nvar has = require('./lib/has');\n\nvar checkPropTypes = require('./checkPropTypes');\n\nvar printWarning = function () {};\n\nif (process.env.NODE_ENV !== 'production') {\n printWarning = function (text) {\n var message = 'Warning: ' + text;\n\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n };\n}\n\nfunction emptyFunctionThatReturnsNull() {\n return null;\n}\n\nmodule.exports = function (isValidElement, throwOnDirectAccess) {\n /* global Symbol */\n var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;\n var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.\n\n /**\n * Returns the iterator method function contained on the iterable object.\n *\n * Be sure to invoke the function with the iterable as context:\n *\n * var iteratorFn = getIteratorFn(myIterable);\n * if (iteratorFn) {\n * var iterator = iteratorFn.call(myIterable);\n * ...\n * }\n *\n * @param {?object} maybeIterable\n * @return {?function}\n */\n\n function getIteratorFn(maybeIterable) {\n var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);\n\n if (typeof iteratorFn === 'function') {\n return iteratorFn;\n }\n }\n /**\n * Collection of methods that allow declaration and validation of props that are\n * supplied to React components. Example usage:\n *\n * var Props = require('ReactPropTypes');\n * var MyArticle = React.createClass({\n * propTypes: {\n * // An optional string prop named \"description\".\n * description: Props.string,\n *\n * // A required enum prop named \"category\".\n * category: Props.oneOf(['News','Photos']).isRequired,\n *\n * // A prop named \"dialog\" that requires an instance of Dialog.\n * dialog: Props.instanceOf(Dialog).isRequired\n * },\n * render: function() { ... }\n * });\n *\n * A more formal specification of how these methods are used:\n *\n * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)\n * decl := ReactPropTypes.{type}(.isRequired)?\n *\n * Each and every declaration produces a function with the same signature. This\n * allows the creation of custom validation functions. For example:\n *\n * var MyLink = React.createClass({\n * propTypes: {\n * // An optional string or URI prop named \"href\".\n * href: function(props, propName, componentName) {\n * var propValue = props[propName];\n * if (propValue != null && typeof propValue !== 'string' &&\n * !(propValue instanceof URI)) {\n * return new Error(\n * 'Expected a string or an URI for ' + propName + ' in ' +\n * componentName\n * );\n * }\n * }\n * },\n * render: function() {...}\n * });\n *\n * @internal\n */\n\n\n var ANONYMOUS = '<>'; // Important!\n // Keep this list in sync with production version in `./factoryWithThrowingShims.js`.\n\n var ReactPropTypes = {\n array: createPrimitiveTypeChecker('array'),\n bigint: createPrimitiveTypeChecker('bigint'),\n bool: createPrimitiveTypeChecker('boolean'),\n func: createPrimitiveTypeChecker('function'),\n number: createPrimitiveTypeChecker('number'),\n object: createPrimitiveTypeChecker('object'),\n string: createPrimitiveTypeChecker('string'),\n symbol: createPrimitiveTypeChecker('symbol'),\n any: createAnyTypeChecker(),\n arrayOf: createArrayOfTypeChecker,\n element: createElementTypeChecker(),\n elementType: createElementTypeTypeChecker(),\n instanceOf: createInstanceTypeChecker,\n node: createNodeChecker(),\n objectOf: createObjectOfTypeChecker,\n oneOf: createEnumTypeChecker,\n oneOfType: createUnionTypeChecker,\n shape: createShapeTypeChecker,\n exact: createStrictShapeTypeChecker\n };\n /**\n * inlined Object.is polyfill to avoid requiring consumers ship their own\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is\n */\n\n /*eslint-disable no-self-compare*/\n\n function is(x, y) {\n // SameValue algorithm\n if (x === y) {\n // Steps 1-5, 7-10\n // Steps 6.b-6.e: +0 != -0\n return x !== 0 || 1 / x === 1 / y;\n } else {\n // Step 6.a: NaN == NaN\n return x !== x && y !== y;\n }\n }\n /*eslint-enable no-self-compare*/\n\n /**\n * We use an Error-like object for backward compatibility as people may call\n * PropTypes directly and inspect their output. However, we don't use real\n * Errors anymore. We don't inspect their stack anyway, and creating them\n * is prohibitively expensive if they are created too often, such as what\n * happens in oneOfType() for any type before the one that matched.\n */\n\n\n function PropTypeError(message, data) {\n this.message = message;\n this.data = data && typeof data === 'object' ? data : {};\n this.stack = '';\n } // Make `instanceof Error` still work for returned errors.\n\n\n PropTypeError.prototype = Error.prototype;\n\n function createChainableTypeChecker(validate) {\n if (process.env.NODE_ENV !== 'production') {\n var manualPropTypeCallCache = {};\n var manualPropTypeWarningCount = 0;\n }\n\n function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {\n componentName = componentName || ANONYMOUS;\n propFullName = propFullName || propName;\n\n if (secret !== ReactPropTypesSecret) {\n if (throwOnDirectAccess) {\n // New behavior only for users of `prop-types` package\n var err = new Error('Calling PropTypes validators directly is not supported by the `prop-types` package. ' + 'Use `PropTypes.checkPropTypes()` to call them. ' + 'Read more at http://fb.me/use-check-prop-types');\n err.name = 'Invariant Violation';\n throw err;\n } else if (process.env.NODE_ENV !== 'production' && typeof console !== 'undefined') {\n // Old behavior for people using React.PropTypes\n var cacheKey = componentName + ':' + propName;\n\n if (!manualPropTypeCallCache[cacheKey] && // Avoid spamming the console because they are often not actionable except for lib authors\n manualPropTypeWarningCount < 3) {\n printWarning('You are manually calling a React.PropTypes validation ' + 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' + 'and will throw in the standalone `prop-types` package. ' + 'You may be seeing this warning due to a third-party PropTypes ' + 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.');\n manualPropTypeCallCache[cacheKey] = true;\n manualPropTypeWarningCount++;\n }\n }\n }\n\n if (props[propName] == null) {\n if (isRequired) {\n if (props[propName] === null) {\n return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));\n }\n\n return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));\n }\n\n return null;\n } else {\n return validate(props, propName, componentName, location, propFullName);\n }\n }\n\n var chainedCheckType = checkType.bind(null, false);\n chainedCheckType.isRequired = checkType.bind(null, true);\n return chainedCheckType;\n }\n\n function createPrimitiveTypeChecker(expectedType) {\n function validate(props, propName, componentName, location, propFullName, secret) {\n var propValue = props[propName];\n var propType = getPropType(propValue);\n\n if (propType !== expectedType) {\n // `propValue` being instance of, say, date/regexp, pass the 'object'\n // check, but we can offer a more precise error message here rather than\n // 'of type `object`'.\n var preciseType = getPreciseType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'), {\n expectedType: expectedType\n });\n }\n\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function createAnyTypeChecker() {\n return createChainableTypeChecker(emptyFunctionThatReturnsNull);\n }\n\n function createArrayOfTypeChecker(typeChecker) {\n function validate(props, propName, componentName, location, propFullName) {\n if (typeof typeChecker !== 'function') {\n return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');\n }\n\n var propValue = props[propName];\n\n if (!Array.isArray(propValue)) {\n var propType = getPropType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));\n }\n\n for (var i = 0; i < propValue.length; i++) {\n var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);\n\n if (error instanceof Error) {\n return error;\n }\n }\n\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function createElementTypeChecker() {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n\n if (!isValidElement(propValue)) {\n var propType = getPropType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));\n }\n\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function createElementTypeTypeChecker() {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n\n if (!ReactIs.isValidElementType(propValue)) {\n var propType = getPropType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.'));\n }\n\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function createInstanceTypeChecker(expectedClass) {\n function validate(props, propName, componentName, location, propFullName) {\n if (!(props[propName] instanceof expectedClass)) {\n var expectedClassName = expectedClass.name || ANONYMOUS;\n var actualClassName = getClassName(props[propName]);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));\n }\n\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function createEnumTypeChecker(expectedValues) {\n if (!Array.isArray(expectedValues)) {\n if (process.env.NODE_ENV !== 'production') {\n if (arguments.length > 1) {\n printWarning('Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' + 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).');\n } else {\n printWarning('Invalid argument supplied to oneOf, expected an array.');\n }\n }\n\n return emptyFunctionThatReturnsNull;\n }\n\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n\n for (var i = 0; i < expectedValues.length; i++) {\n if (is(propValue, expectedValues[i])) {\n return null;\n }\n }\n\n var valuesString = JSON.stringify(expectedValues, function replacer(key, value) {\n var type = getPreciseType(value);\n\n if (type === 'symbol') {\n return String(value);\n }\n\n return value;\n });\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function createObjectOfTypeChecker(typeChecker) {\n function validate(props, propName, componentName, location, propFullName) {\n if (typeof typeChecker !== 'function') {\n return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');\n }\n\n var propValue = props[propName];\n var propType = getPropType(propValue);\n\n if (propType !== 'object') {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));\n }\n\n for (var key in propValue) {\n if (has(propValue, key)) {\n var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n\n if (error instanceof Error) {\n return error;\n }\n }\n }\n\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function createUnionTypeChecker(arrayOfTypeCheckers) {\n if (!Array.isArray(arrayOfTypeCheckers)) {\n process.env.NODE_ENV !== 'production' ? printWarning('Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;\n return emptyFunctionThatReturnsNull;\n }\n\n for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n var checker = arrayOfTypeCheckers[i];\n\n if (typeof checker !== 'function') {\n printWarning('Invalid argument supplied to oneOfType. Expected an array of check functions, but ' + 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.');\n return emptyFunctionThatReturnsNull;\n }\n }\n\n function validate(props, propName, componentName, location, propFullName) {\n var expectedTypes = [];\n\n for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n var checker = arrayOfTypeCheckers[i];\n var checkerResult = checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret);\n\n if (checkerResult == null) {\n return null;\n }\n\n if (checkerResult.data && has(checkerResult.data, 'expectedType')) {\n expectedTypes.push(checkerResult.data.expectedType);\n }\n }\n\n var expectedTypesMessage = expectedTypes.length > 0 ? ', expected one of type [' + expectedTypes.join(', ') + ']' : '';\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`' + expectedTypesMessage + '.'));\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function createNodeChecker() {\n function validate(props, propName, componentName, location, propFullName) {\n if (!isNode(props[propName])) {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));\n }\n\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function invalidValidatorError(componentName, location, propFullName, key, type) {\n return new PropTypeError((componentName || 'React class') + ': ' + location + ' type `' + propFullName + '.' + key + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + type + '`.');\n }\n\n function createShapeTypeChecker(shapeTypes) {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n var propType = getPropType(propValue);\n\n if (propType !== 'object') {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n }\n\n for (var key in shapeTypes) {\n var checker = shapeTypes[key];\n\n if (typeof checker !== 'function') {\n return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));\n }\n\n var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n\n if (error) {\n return error;\n }\n }\n\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function createStrictShapeTypeChecker(shapeTypes) {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n var propType = getPropType(propValue);\n\n if (propType !== 'object') {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n } // We need to check all keys in case some are required but missing from props.\n\n\n var allKeys = assign({}, props[propName], shapeTypes);\n\n for (var key in allKeys) {\n var checker = shapeTypes[key];\n\n if (has(shapeTypes, key) && typeof checker !== 'function') {\n return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));\n }\n\n if (!checker) {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' + '\\nBad object: ' + JSON.stringify(props[propName], null, ' ') + '\\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' '));\n }\n\n var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n\n if (error) {\n return error;\n }\n }\n\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function isNode(propValue) {\n switch (typeof propValue) {\n case 'number':\n case 'string':\n case 'undefined':\n return true;\n\n case 'boolean':\n return !propValue;\n\n case 'object':\n if (Array.isArray(propValue)) {\n return propValue.every(isNode);\n }\n\n if (propValue === null || isValidElement(propValue)) {\n return true;\n }\n\n var iteratorFn = getIteratorFn(propValue);\n\n if (iteratorFn) {\n var iterator = iteratorFn.call(propValue);\n var step;\n\n if (iteratorFn !== propValue.entries) {\n while (!(step = iterator.next()).done) {\n if (!isNode(step.value)) {\n return false;\n }\n }\n } else {\n // Iterator will provide entry [k,v] tuples rather than values.\n while (!(step = iterator.next()).done) {\n var entry = step.value;\n\n if (entry) {\n if (!isNode(entry[1])) {\n return false;\n }\n }\n }\n }\n } else {\n return false;\n }\n\n return true;\n\n default:\n return false;\n }\n }\n\n function isSymbol(propType, propValue) {\n // Native Symbol.\n if (propType === 'symbol') {\n return true;\n } // falsy value can't be a Symbol\n\n\n if (!propValue) {\n return false;\n } // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'\n\n\n if (propValue['@@toStringTag'] === 'Symbol') {\n return true;\n } // Fallback for non-spec compliant Symbols which are polyfilled.\n\n\n if (typeof Symbol === 'function' && propValue instanceof Symbol) {\n return true;\n }\n\n return false;\n } // Equivalent of `typeof` but with special handling for array and regexp.\n\n\n function getPropType(propValue) {\n var propType = typeof propValue;\n\n if (Array.isArray(propValue)) {\n return 'array';\n }\n\n if (propValue instanceof RegExp) {\n // Old webkits (at least until Android 4.0) return 'function' rather than\n // 'object' for typeof a RegExp. We'll normalize this here so that /bla/\n // passes PropTypes.object.\n return 'object';\n }\n\n if (isSymbol(propType, propValue)) {\n return 'symbol';\n }\n\n return propType;\n } // This handles more types than `getPropType`. Only used for error messages.\n // See `createPrimitiveTypeChecker`.\n\n\n function getPreciseType(propValue) {\n if (typeof propValue === 'undefined' || propValue === null) {\n return '' + propValue;\n }\n\n var propType = getPropType(propValue);\n\n if (propType === 'object') {\n if (propValue instanceof Date) {\n return 'date';\n } else if (propValue instanceof RegExp) {\n return 'regexp';\n }\n }\n\n return propType;\n } // Returns a string that is postfixed to a warning about an invalid type.\n // For example, \"undefined\" or \"of type array\"\n\n\n function getPostfixForTypeWarning(value) {\n var type = getPreciseType(value);\n\n switch (type) {\n case 'array':\n case 'object':\n return 'an ' + type;\n\n case 'boolean':\n case 'date':\n case 'regexp':\n return 'a ' + type;\n\n default:\n return type;\n }\n } // Returns class name of the object, if any.\n\n\n function getClassName(propValue) {\n if (!propValue.constructor || !propValue.constructor.name) {\n return ANONYMOUS;\n }\n\n return propValue.constructor.name;\n }\n\n ReactPropTypes.checkPropTypes = checkPropTypes;\n ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache;\n ReactPropTypes.PropTypes = ReactPropTypes;\n return ReactPropTypes;\n};","map":{"version":3,"names":["ReactIs","require","assign","ReactPropTypesSecret","has","checkPropTypes","printWarning","process","env","NODE_ENV","text","message","console","error","Error","x","emptyFunctionThatReturnsNull","module","exports","isValidElement","throwOnDirectAccess","ITERATOR_SYMBOL","Symbol","iterator","FAUX_ITERATOR_SYMBOL","getIteratorFn","maybeIterable","iteratorFn","ANONYMOUS","ReactPropTypes","array","createPrimitiveTypeChecker","bigint","bool","func","number","object","string","symbol","any","createAnyTypeChecker","arrayOf","createArrayOfTypeChecker","element","createElementTypeChecker","elementType","createElementTypeTypeChecker","instanceOf","createInstanceTypeChecker","node","createNodeChecker","objectOf","createObjectOfTypeChecker","oneOf","createEnumTypeChecker","oneOfType","createUnionTypeChecker","shape","createShapeTypeChecker","exact","createStrictShapeTypeChecker","is","y","PropTypeError","data","stack","prototype","createChainableTypeChecker","validate","manualPropTypeCallCache","manualPropTypeWarningCount","checkType","isRequired","props","propName","componentName","location","propFullName","secret","err","name","cacheKey","chainedCheckType","bind","expectedType","propValue","propType","getPropType","preciseType","getPreciseType","typeChecker","Array","isArray","i","length","isValidElementType","expectedClass","expectedClassName","actualClassName","getClassName","expectedValues","arguments","valuesString","JSON","stringify","replacer","key","value","type","String","arrayOfTypeCheckers","checker","getPostfixForTypeWarning","expectedTypes","checkerResult","push","expectedTypesMessage","join","isNode","invalidValidatorError","shapeTypes","allKeys","Object","keys","every","call","step","entries","next","done","entry","isSymbol","RegExp","Date","constructor","resetWarningCache","PropTypes"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/prop-types/factoryWithTypeCheckers.js"],"sourcesContent":["/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactIs = require('react-is');\nvar assign = require('object-assign');\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\nvar has = require('./lib/has');\nvar checkPropTypes = require('./checkPropTypes');\n\nvar printWarning = function() {};\n\nif (process.env.NODE_ENV !== 'production') {\n printWarning = function(text) {\n var message = 'Warning: ' + text;\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n };\n}\n\nfunction emptyFunctionThatReturnsNull() {\n return null;\n}\n\nmodule.exports = function(isValidElement, throwOnDirectAccess) {\n /* global Symbol */\n var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;\n var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.\n\n /**\n * Returns the iterator method function contained on the iterable object.\n *\n * Be sure to invoke the function with the iterable as context:\n *\n * var iteratorFn = getIteratorFn(myIterable);\n * if (iteratorFn) {\n * var iterator = iteratorFn.call(myIterable);\n * ...\n * }\n *\n * @param {?object} maybeIterable\n * @return {?function}\n */\n function getIteratorFn(maybeIterable) {\n var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);\n if (typeof iteratorFn === 'function') {\n return iteratorFn;\n }\n }\n\n /**\n * Collection of methods that allow declaration and validation of props that are\n * supplied to React components. Example usage:\n *\n * var Props = require('ReactPropTypes');\n * var MyArticle = React.createClass({\n * propTypes: {\n * // An optional string prop named \"description\".\n * description: Props.string,\n *\n * // A required enum prop named \"category\".\n * category: Props.oneOf(['News','Photos']).isRequired,\n *\n * // A prop named \"dialog\" that requires an instance of Dialog.\n * dialog: Props.instanceOf(Dialog).isRequired\n * },\n * render: function() { ... }\n * });\n *\n * A more formal specification of how these methods are used:\n *\n * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)\n * decl := ReactPropTypes.{type}(.isRequired)?\n *\n * Each and every declaration produces a function with the same signature. This\n * allows the creation of custom validation functions. For example:\n *\n * var MyLink = React.createClass({\n * propTypes: {\n * // An optional string or URI prop named \"href\".\n * href: function(props, propName, componentName) {\n * var propValue = props[propName];\n * if (propValue != null && typeof propValue !== 'string' &&\n * !(propValue instanceof URI)) {\n * return new Error(\n * 'Expected a string or an URI for ' + propName + ' in ' +\n * componentName\n * );\n * }\n * }\n * },\n * render: function() {...}\n * });\n *\n * @internal\n */\n\n var ANONYMOUS = '<>';\n\n // Important!\n // Keep this list in sync with production version in `./factoryWithThrowingShims.js`.\n var ReactPropTypes = {\n array: createPrimitiveTypeChecker('array'),\n bigint: createPrimitiveTypeChecker('bigint'),\n bool: createPrimitiveTypeChecker('boolean'),\n func: createPrimitiveTypeChecker('function'),\n number: createPrimitiveTypeChecker('number'),\n object: createPrimitiveTypeChecker('object'),\n string: createPrimitiveTypeChecker('string'),\n symbol: createPrimitiveTypeChecker('symbol'),\n\n any: createAnyTypeChecker(),\n arrayOf: createArrayOfTypeChecker,\n element: createElementTypeChecker(),\n elementType: createElementTypeTypeChecker(),\n instanceOf: createInstanceTypeChecker,\n node: createNodeChecker(),\n objectOf: createObjectOfTypeChecker,\n oneOf: createEnumTypeChecker,\n oneOfType: createUnionTypeChecker,\n shape: createShapeTypeChecker,\n exact: createStrictShapeTypeChecker,\n };\n\n /**\n * inlined Object.is polyfill to avoid requiring consumers ship their own\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is\n */\n /*eslint-disable no-self-compare*/\n function is(x, y) {\n // SameValue algorithm\n if (x === y) {\n // Steps 1-5, 7-10\n // Steps 6.b-6.e: +0 != -0\n return x !== 0 || 1 / x === 1 / y;\n } else {\n // Step 6.a: NaN == NaN\n return x !== x && y !== y;\n }\n }\n /*eslint-enable no-self-compare*/\n\n /**\n * We use an Error-like object for backward compatibility as people may call\n * PropTypes directly and inspect their output. However, we don't use real\n * Errors anymore. We don't inspect their stack anyway, and creating them\n * is prohibitively expensive if they are created too often, such as what\n * happens in oneOfType() for any type before the one that matched.\n */\n function PropTypeError(message, data) {\n this.message = message;\n this.data = data && typeof data === 'object' ? data: {};\n this.stack = '';\n }\n // Make `instanceof Error` still work for returned errors.\n PropTypeError.prototype = Error.prototype;\n\n function createChainableTypeChecker(validate) {\n if (process.env.NODE_ENV !== 'production') {\n var manualPropTypeCallCache = {};\n var manualPropTypeWarningCount = 0;\n }\n function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {\n componentName = componentName || ANONYMOUS;\n propFullName = propFullName || propName;\n\n if (secret !== ReactPropTypesSecret) {\n if (throwOnDirectAccess) {\n // New behavior only for users of `prop-types` package\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use `PropTypes.checkPropTypes()` to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n } else if (process.env.NODE_ENV !== 'production' && typeof console !== 'undefined') {\n // Old behavior for people using React.PropTypes\n var cacheKey = componentName + ':' + propName;\n if (\n !manualPropTypeCallCache[cacheKey] &&\n // Avoid spamming the console because they are often not actionable except for lib authors\n manualPropTypeWarningCount < 3\n ) {\n printWarning(\n 'You are manually calling a React.PropTypes validation ' +\n 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' +\n 'and will throw in the standalone `prop-types` package. ' +\n 'You may be seeing this warning due to a third-party PropTypes ' +\n 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.'\n );\n manualPropTypeCallCache[cacheKey] = true;\n manualPropTypeWarningCount++;\n }\n }\n }\n if (props[propName] == null) {\n if (isRequired) {\n if (props[propName] === null) {\n return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));\n }\n return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));\n }\n return null;\n } else {\n return validate(props, propName, componentName, location, propFullName);\n }\n }\n\n var chainedCheckType = checkType.bind(null, false);\n chainedCheckType.isRequired = checkType.bind(null, true);\n\n return chainedCheckType;\n }\n\n function createPrimitiveTypeChecker(expectedType) {\n function validate(props, propName, componentName, location, propFullName, secret) {\n var propValue = props[propName];\n var propType = getPropType(propValue);\n if (propType !== expectedType) {\n // `propValue` being instance of, say, date/regexp, pass the 'object'\n // check, but we can offer a more precise error message here rather than\n // 'of type `object`'.\n var preciseType = getPreciseType(propValue);\n\n return new PropTypeError(\n 'Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'),\n {expectedType: expectedType}\n );\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createAnyTypeChecker() {\n return createChainableTypeChecker(emptyFunctionThatReturnsNull);\n }\n\n function createArrayOfTypeChecker(typeChecker) {\n function validate(props, propName, componentName, location, propFullName) {\n if (typeof typeChecker !== 'function') {\n return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');\n }\n var propValue = props[propName];\n if (!Array.isArray(propValue)) {\n var propType = getPropType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));\n }\n for (var i = 0; i < propValue.length; i++) {\n var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);\n if (error instanceof Error) {\n return error;\n }\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createElementTypeChecker() {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n if (!isValidElement(propValue)) {\n var propType = getPropType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createElementTypeTypeChecker() {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n if (!ReactIs.isValidElementType(propValue)) {\n var propType = getPropType(propValue);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.'));\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createInstanceTypeChecker(expectedClass) {\n function validate(props, propName, componentName, location, propFullName) {\n if (!(props[propName] instanceof expectedClass)) {\n var expectedClassName = expectedClass.name || ANONYMOUS;\n var actualClassName = getClassName(props[propName]);\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createEnumTypeChecker(expectedValues) {\n if (!Array.isArray(expectedValues)) {\n if (process.env.NODE_ENV !== 'production') {\n if (arguments.length > 1) {\n printWarning(\n 'Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' +\n 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).'\n );\n } else {\n printWarning('Invalid argument supplied to oneOf, expected an array.');\n }\n }\n return emptyFunctionThatReturnsNull;\n }\n\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n for (var i = 0; i < expectedValues.length; i++) {\n if (is(propValue, expectedValues[i])) {\n return null;\n }\n }\n\n var valuesString = JSON.stringify(expectedValues, function replacer(key, value) {\n var type = getPreciseType(value);\n if (type === 'symbol') {\n return String(value);\n }\n return value;\n });\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));\n }\n return createChainableTypeChecker(validate);\n }\n\n function createObjectOfTypeChecker(typeChecker) {\n function validate(props, propName, componentName, location, propFullName) {\n if (typeof typeChecker !== 'function') {\n return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');\n }\n var propValue = props[propName];\n var propType = getPropType(propValue);\n if (propType !== 'object') {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));\n }\n for (var key in propValue) {\n if (has(propValue, key)) {\n var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n if (error instanceof Error) {\n return error;\n }\n }\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createUnionTypeChecker(arrayOfTypeCheckers) {\n if (!Array.isArray(arrayOfTypeCheckers)) {\n process.env.NODE_ENV !== 'production' ? printWarning('Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;\n return emptyFunctionThatReturnsNull;\n }\n\n for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n var checker = arrayOfTypeCheckers[i];\n if (typeof checker !== 'function') {\n printWarning(\n 'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' +\n 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.'\n );\n return emptyFunctionThatReturnsNull;\n }\n }\n\n function validate(props, propName, componentName, location, propFullName) {\n var expectedTypes = [];\n for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n var checker = arrayOfTypeCheckers[i];\n var checkerResult = checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret);\n if (checkerResult == null) {\n return null;\n }\n if (checkerResult.data && has(checkerResult.data, 'expectedType')) {\n expectedTypes.push(checkerResult.data.expectedType);\n }\n }\n var expectedTypesMessage = (expectedTypes.length > 0) ? ', expected one of type [' + expectedTypes.join(', ') + ']': '';\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`' + expectedTypesMessage + '.'));\n }\n return createChainableTypeChecker(validate);\n }\n\n function createNodeChecker() {\n function validate(props, propName, componentName, location, propFullName) {\n if (!isNode(props[propName])) {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function invalidValidatorError(componentName, location, propFullName, key, type) {\n return new PropTypeError(\n (componentName || 'React class') + ': ' + location + ' type `' + propFullName + '.' + key + '` is invalid; ' +\n 'it must be a function, usually from the `prop-types` package, but received `' + type + '`.'\n );\n }\n\n function createShapeTypeChecker(shapeTypes) {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n var propType = getPropType(propValue);\n if (propType !== 'object') {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n }\n for (var key in shapeTypes) {\n var checker = shapeTypes[key];\n if (typeof checker !== 'function') {\n return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));\n }\n var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n if (error) {\n return error;\n }\n }\n return null;\n }\n return createChainableTypeChecker(validate);\n }\n\n function createStrictShapeTypeChecker(shapeTypes) {\n function validate(props, propName, componentName, location, propFullName) {\n var propValue = props[propName];\n var propType = getPropType(propValue);\n if (propType !== 'object') {\n return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n }\n // We need to check all keys in case some are required but missing from props.\n var allKeys = assign({}, props[propName], shapeTypes);\n for (var key in allKeys) {\n var checker = shapeTypes[key];\n if (has(shapeTypes, key) && typeof checker !== 'function') {\n return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));\n }\n if (!checker) {\n return new PropTypeError(\n 'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' +\n '\\nBad object: ' + JSON.stringify(props[propName], null, ' ') +\n '\\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ')\n );\n }\n var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n if (error) {\n return error;\n }\n }\n return null;\n }\n\n return createChainableTypeChecker(validate);\n }\n\n function isNode(propValue) {\n switch (typeof propValue) {\n case 'number':\n case 'string':\n case 'undefined':\n return true;\n case 'boolean':\n return !propValue;\n case 'object':\n if (Array.isArray(propValue)) {\n return propValue.every(isNode);\n }\n if (propValue === null || isValidElement(propValue)) {\n return true;\n }\n\n var iteratorFn = getIteratorFn(propValue);\n if (iteratorFn) {\n var iterator = iteratorFn.call(propValue);\n var step;\n if (iteratorFn !== propValue.entries) {\n while (!(step = iterator.next()).done) {\n if (!isNode(step.value)) {\n return false;\n }\n }\n } else {\n // Iterator will provide entry [k,v] tuples rather than values.\n while (!(step = iterator.next()).done) {\n var entry = step.value;\n if (entry) {\n if (!isNode(entry[1])) {\n return false;\n }\n }\n }\n }\n } else {\n return false;\n }\n\n return true;\n default:\n return false;\n }\n }\n\n function isSymbol(propType, propValue) {\n // Native Symbol.\n if (propType === 'symbol') {\n return true;\n }\n\n // falsy value can't be a Symbol\n if (!propValue) {\n return false;\n }\n\n // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'\n if (propValue['@@toStringTag'] === 'Symbol') {\n return true;\n }\n\n // Fallback for non-spec compliant Symbols which are polyfilled.\n if (typeof Symbol === 'function' && propValue instanceof Symbol) {\n return true;\n }\n\n return false;\n }\n\n // Equivalent of `typeof` but with special handling for array and regexp.\n function getPropType(propValue) {\n var propType = typeof propValue;\n if (Array.isArray(propValue)) {\n return 'array';\n }\n if (propValue instanceof RegExp) {\n // Old webkits (at least until Android 4.0) return 'function' rather than\n // 'object' for typeof a RegExp. We'll normalize this here so that /bla/\n // passes PropTypes.object.\n return 'object';\n }\n if (isSymbol(propType, propValue)) {\n return 'symbol';\n }\n return propType;\n }\n\n // This handles more types than `getPropType`. Only used for error messages.\n // See `createPrimitiveTypeChecker`.\n function getPreciseType(propValue) {\n if (typeof propValue === 'undefined' || propValue === null) {\n return '' + propValue;\n }\n var propType = getPropType(propValue);\n if (propType === 'object') {\n if (propValue instanceof Date) {\n return 'date';\n } else if (propValue instanceof RegExp) {\n return 'regexp';\n }\n }\n return propType;\n }\n\n // Returns a string that is postfixed to a warning about an invalid type.\n // For example, \"undefined\" or \"of type array\"\n function getPostfixForTypeWarning(value) {\n var type = getPreciseType(value);\n switch (type) {\n case 'array':\n case 'object':\n return 'an ' + type;\n case 'boolean':\n case 'date':\n case 'regexp':\n return 'a ' + type;\n default:\n return type;\n }\n }\n\n // Returns class name of the object, if any.\n function getClassName(propValue) {\n if (!propValue.constructor || !propValue.constructor.name) {\n return ANONYMOUS;\n }\n return propValue.constructor.name;\n }\n\n ReactPropTypes.checkPropTypes = checkPropTypes;\n ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache;\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n"],"mappings":"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"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e6ea86d2a0ea56bc3332632b7d22a53.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0e6ea86d2a0ea56bc3332632b7d22a53.json deleted file mode 100644 index 03010538..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e6ea86d2a0ea56bc3332632b7d22a53.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = all;\n\nvar _createChainableTypeChecker = require('./utils/createChainableTypeChecker');\n\nvar _createChainableTypeChecker2 = _interopRequireDefault(_createChainableTypeChecker);\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\n\nfunction all() {\n for (var _len = arguments.length, validators = Array(_len), _key = 0; _key < _len; _key++) {\n validators[_key] = arguments[_key];\n }\n\n function allPropTypes() {\n for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n var error = null;\n validators.forEach(function (validator) {\n if (error != null) {\n return;\n }\n\n var result = validator.apply(undefined, args);\n\n if (result != null) {\n error = result;\n }\n });\n return error;\n }\n\n return (0, _createChainableTypeChecker2.default)(allPropTypes);\n}\n\nmodule.exports = exports['default'];","map":{"version":3,"names":["Object","defineProperty","exports","value","default","all","_createChainableTypeChecker","require","_createChainableTypeChecker2","_interopRequireDefault","obj","__esModule","_len","arguments","length","validators","Array","_key","allPropTypes","_len2","args","_key2","error","forEach","validator","result","apply","undefined","module"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/prop-types-extra/lib/all.js"],"sourcesContent":["'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = all;\n\nvar _createChainableTypeChecker = require('./utils/createChainableTypeChecker');\n\nvar _createChainableTypeChecker2 = _interopRequireDefault(_createChainableTypeChecker);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction all() {\n for (var _len = arguments.length, validators = Array(_len), _key = 0; _key < _len; _key++) {\n validators[_key] = arguments[_key];\n }\n\n function allPropTypes() {\n for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n var error = null;\n\n validators.forEach(function (validator) {\n if (error != null) {\n return;\n }\n\n var result = validator.apply(undefined, args);\n if (result != null) {\n error = result;\n }\n });\n\n return error;\n }\n\n return (0, _createChainableTypeChecker2.default)(allPropTypes);\n}\nmodule.exports = exports['default'];"],"mappings":"AAAA;;AAEAA,MAAM,CAACC,cAAP,CAAsBC,OAAtB,EAA+B,YAA/B,EAA6C;EAC3CC,KAAK,EAAE;AADoC,CAA7C;AAGAD,OAAO,CAACE,OAAR,GAAkBC,GAAlB;;AAEA,IAAIC,2BAA2B,GAAGC,OAAO,CAAC,oCAAD,CAAzC;;AAEA,IAAIC,4BAA4B,GAAGC,sBAAsB,CAACH,2BAAD,CAAzD;;AAEA,SAASG,sBAAT,CAAgCC,GAAhC,EAAqC;EAAE,OAAOA,GAAG,IAAIA,GAAG,CAACC,UAAX,GAAwBD,GAAxB,GAA8B;IAAEN,OAAO,EAAEM;EAAX,CAArC;AAAwD;;AAE/F,SAASL,GAAT,GAAe;EACb,KAAK,IAAIO,IAAI,GAAGC,SAAS,CAACC,MAArB,EAA6BC,UAAU,GAAGC,KAAK,CAACJ,IAAD,CAA/C,EAAuDK,IAAI,GAAG,CAAnE,EAAsEA,IAAI,GAAGL,IAA7E,EAAmFK,IAAI,EAAvF,EAA2F;IACzFF,UAAU,CAACE,IAAD,CAAV,GAAmBJ,SAAS,CAACI,IAAD,CAA5B;EACD;;EAED,SAASC,YAAT,GAAwB;IACtB,KAAK,IAAIC,KAAK,GAAGN,SAAS,CAACC,MAAtB,EAA8BM,IAAI,GAAGJ,KAAK,CAACG,KAAD,CAA1C,EAAmDE,KAAK,GAAG,CAAhE,EAAmEA,KAAK,GAAGF,KAA3E,EAAkFE,KAAK,EAAvF,EAA2F;MACzFD,IAAI,CAACC,KAAD,CAAJ,GAAcR,SAAS,CAACQ,KAAD,CAAvB;IACD;;IAED,IAAIC,KAAK,GAAG,IAAZ;IAEAP,UAAU,CAACQ,OAAX,CAAmB,UAAUC,SAAV,EAAqB;MACtC,IAAIF,KAAK,IAAI,IAAb,EAAmB;QACjB;MACD;;MAED,IAAIG,MAAM,GAAGD,SAAS,CAACE,KAAV,CAAgBC,SAAhB,EAA2BP,IAA3B,CAAb;;MACA,IAAIK,MAAM,IAAI,IAAd,EAAoB;QAClBH,KAAK,GAAGG,MAAR;MACD;IACF,CATD;IAWA,OAAOH,KAAP;EACD;;EAED,OAAO,CAAC,GAAGd,4BAA4B,CAACJ,OAAjC,EAA0Cc,YAA1C,CAAP;AACD;;AACDU,MAAM,CAAC1B,OAAP,GAAiBA,OAAO,CAAC,SAAD,CAAxB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e87579d5bc23550e195a4173776a78f.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0e87579d5bc23550e195a4173776a78f.json new file mode 100644 index 00000000..9873bd64 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0e87579d5bc23550e195a4173776a78f.json @@ -0,0 +1 @@ +{"ast":null,"code":"import classNames from 'classnames';\nimport useEventCallback from '@restart/hooks/useEventCallback';\nimport * as React from 'react';\nimport { useCallback, useContext, useMemo, useRef } from 'react';\nimport BaseModal from '@restart/ui/Modal';\nimport Fade from './Fade';\nimport OffcanvasBody from './OffcanvasBody';\nimport OffcanvasToggling from './OffcanvasToggling';\nimport ModalContext from './ModalContext';\nimport NavbarContext from './NavbarContext';\nimport OffcanvasHeader from './OffcanvasHeader';\nimport OffcanvasTitle from './OffcanvasTitle';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport BootstrapModalManager, { getSharedManager } from './BootstrapModalManager';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst defaultProps = {\n show: false,\n backdrop: true,\n keyboard: true,\n scroll: false,\n autoFocus: true,\n enforceFocus: true,\n restoreFocus: true,\n placement: 'start'\n};\n\nfunction DialogTransition(props) {\n return /*#__PURE__*/_jsx(OffcanvasToggling, { ...props\n });\n}\n\nfunction BackdropTransition(props) {\n return /*#__PURE__*/_jsx(Fade, { ...props\n });\n}\n\nconst Offcanvas = /*#__PURE__*/React.forwardRef((_ref, ref) => {\n let {\n bsPrefix,\n className,\n children,\n 'aria-labelledby': ariaLabelledby,\n placement,\n\n /* BaseModal props */\n show,\n backdrop,\n keyboard,\n scroll,\n onEscapeKeyDown,\n onShow,\n onHide,\n container,\n autoFocus,\n enforceFocus,\n restoreFocus,\n restoreFocusOptions,\n onEntered,\n onExit,\n onExiting,\n onEnter,\n onEntering,\n onExited,\n backdropClassName,\n manager: propsManager,\n ...props\n } = _ref;\n const modalManager = useRef();\n bsPrefix = useBootstrapPrefix(bsPrefix, 'offcanvas');\n const {\n onToggle\n } = useContext(NavbarContext) || {};\n const handleHide = useEventCallback(() => {\n onToggle == null ? void 0 : onToggle();\n onHide == null ? void 0 : onHide();\n });\n const modalContext = useMemo(() => ({\n onHide: handleHide\n }), [handleHide]);\n\n function getModalManager() {\n if (propsManager) return propsManager;\n\n if (scroll) {\n // Have to use a different modal manager since the shared\n // one handles overflow.\n if (!modalManager.current) modalManager.current = new BootstrapModalManager({\n handleContainerOverflow: false\n });\n return modalManager.current;\n }\n\n return getSharedManager();\n }\n\n const handleEnter = function (node) {\n if (node) node.style.visibility = 'visible';\n\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n onEnter == null ? void 0 : onEnter(node, ...args);\n };\n\n const handleExited = function (node) {\n if (node) node.style.visibility = '';\n\n for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n args[_key2 - 1] = arguments[_key2];\n }\n\n onExited == null ? void 0 : onExited(...args);\n };\n\n const renderBackdrop = useCallback(backdropProps => /*#__PURE__*/_jsx(\"div\", { ...backdropProps,\n className: classNames(`${bsPrefix}-backdrop`, backdropClassName)\n }), [backdropClassName, bsPrefix]);\n\n const renderDialog = dialogProps => /*#__PURE__*/_jsx(\"div\", {\n role: \"dialog\",\n ...dialogProps,\n ...props,\n className: classNames(className, bsPrefix, `${bsPrefix}-${placement}`),\n \"aria-labelledby\": ariaLabelledby,\n children: children\n });\n\n return /*#__PURE__*/_jsx(ModalContext.Provider, {\n value: modalContext,\n children: /*#__PURE__*/_jsx(BaseModal, {\n show: show,\n ref: ref,\n backdrop: backdrop,\n container: container,\n keyboard: keyboard,\n autoFocus: autoFocus,\n enforceFocus: enforceFocus && !scroll,\n restoreFocus: restoreFocus,\n restoreFocusOptions: restoreFocusOptions,\n onEscapeKeyDown: onEscapeKeyDown,\n onShow: onShow,\n onHide: handleHide,\n onEnter: handleEnter,\n onEntering: onEntering,\n onEntered: onEntered,\n onExit: onExit,\n onExiting: onExiting,\n onExited: handleExited,\n manager: getModalManager(),\n transition: DialogTransition,\n backdropTransition: BackdropTransition,\n renderBackdrop: renderBackdrop,\n renderDialog: renderDialog\n })\n });\n});\nOffcanvas.displayName = 'Offcanvas';\nOffcanvas.defaultProps = defaultProps;\nexport default Object.assign(Offcanvas, {\n Body: OffcanvasBody,\n Header: OffcanvasHeader,\n Title: OffcanvasTitle\n});","map":{"version":3,"names":["classNames","useEventCallback","React","useCallback","useContext","useMemo","useRef","BaseModal","Fade","OffcanvasBody","OffcanvasToggling","ModalContext","NavbarContext","OffcanvasHeader","OffcanvasTitle","useBootstrapPrefix","BootstrapModalManager","getSharedManager","jsx","_jsx","defaultProps","show","backdrop","keyboard","scroll","autoFocus","enforceFocus","restoreFocus","placement","DialogTransition","props","BackdropTransition","Offcanvas","forwardRef","ref","bsPrefix","className","children","ariaLabelledby","onEscapeKeyDown","onShow","onHide","container","restoreFocusOptions","onEntered","onExit","onExiting","onEnter","onEntering","onExited","backdropClassName","manager","propsManager","modalManager","onToggle","handleHide","modalContext","getModalManager","current","handleContainerOverflow","handleEnter","node","style","visibility","args","handleExited","renderBackdrop","backdropProps","renderDialog","dialogProps","role","Provider","value","transition","backdropTransition","displayName","Object","assign","Body","Header","Title"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-bootstrap/esm/Offcanvas.js"],"sourcesContent":["import classNames from 'classnames';\nimport useEventCallback from '@restart/hooks/useEventCallback';\nimport * as React from 'react';\nimport { useCallback, useContext, useMemo, useRef } from 'react';\nimport BaseModal from '@restart/ui/Modal';\nimport Fade from './Fade';\nimport OffcanvasBody from './OffcanvasBody';\nimport OffcanvasToggling from './OffcanvasToggling';\nimport ModalContext from './ModalContext';\nimport NavbarContext from './NavbarContext';\nimport OffcanvasHeader from './OffcanvasHeader';\nimport OffcanvasTitle from './OffcanvasTitle';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport BootstrapModalManager, { getSharedManager } from './BootstrapModalManager';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst defaultProps = {\n show: false,\n backdrop: true,\n keyboard: true,\n scroll: false,\n autoFocus: true,\n enforceFocus: true,\n restoreFocus: true,\n placement: 'start'\n};\n\nfunction DialogTransition(props) {\n return /*#__PURE__*/_jsx(OffcanvasToggling, { ...props\n });\n}\n\nfunction BackdropTransition(props) {\n return /*#__PURE__*/_jsx(Fade, { ...props\n });\n}\n\nconst Offcanvas = /*#__PURE__*/React.forwardRef(({\n bsPrefix,\n className,\n children,\n 'aria-labelledby': ariaLabelledby,\n placement,\n\n /* BaseModal props */\n show,\n backdrop,\n keyboard,\n scroll,\n onEscapeKeyDown,\n onShow,\n onHide,\n container,\n autoFocus,\n enforceFocus,\n restoreFocus,\n restoreFocusOptions,\n onEntered,\n onExit,\n onExiting,\n onEnter,\n onEntering,\n onExited,\n backdropClassName,\n manager: propsManager,\n ...props\n}, ref) => {\n const modalManager = useRef();\n bsPrefix = useBootstrapPrefix(bsPrefix, 'offcanvas');\n const {\n onToggle\n } = useContext(NavbarContext) || {};\n const handleHide = useEventCallback(() => {\n onToggle == null ? void 0 : onToggle();\n onHide == null ? void 0 : onHide();\n });\n const modalContext = useMemo(() => ({\n onHide: handleHide\n }), [handleHide]);\n\n function getModalManager() {\n if (propsManager) return propsManager;\n\n if (scroll) {\n // Have to use a different modal manager since the shared\n // one handles overflow.\n if (!modalManager.current) modalManager.current = new BootstrapModalManager({\n handleContainerOverflow: false\n });\n return modalManager.current;\n }\n\n return getSharedManager();\n }\n\n const handleEnter = (node, ...args) => {\n if (node) node.style.visibility = 'visible';\n onEnter == null ? void 0 : onEnter(node, ...args);\n };\n\n const handleExited = (node, ...args) => {\n if (node) node.style.visibility = '';\n onExited == null ? void 0 : onExited(...args);\n };\n\n const renderBackdrop = useCallback(backdropProps => /*#__PURE__*/_jsx(\"div\", { ...backdropProps,\n className: classNames(`${bsPrefix}-backdrop`, backdropClassName)\n }), [backdropClassName, bsPrefix]);\n\n const renderDialog = dialogProps => /*#__PURE__*/_jsx(\"div\", {\n role: \"dialog\",\n ...dialogProps,\n ...props,\n className: classNames(className, bsPrefix, `${bsPrefix}-${placement}`),\n \"aria-labelledby\": ariaLabelledby,\n children: children\n });\n\n return /*#__PURE__*/_jsx(ModalContext.Provider, {\n value: modalContext,\n children: /*#__PURE__*/_jsx(BaseModal, {\n show: show,\n ref: ref,\n backdrop: backdrop,\n container: container,\n keyboard: keyboard,\n autoFocus: autoFocus,\n enforceFocus: enforceFocus && !scroll,\n restoreFocus: restoreFocus,\n restoreFocusOptions: restoreFocusOptions,\n onEscapeKeyDown: onEscapeKeyDown,\n onShow: onShow,\n onHide: handleHide,\n onEnter: handleEnter,\n onEntering: onEntering,\n onEntered: onEntered,\n onExit: onExit,\n onExiting: onExiting,\n onExited: handleExited,\n manager: getModalManager(),\n transition: DialogTransition,\n backdropTransition: BackdropTransition,\n renderBackdrop: renderBackdrop,\n renderDialog: renderDialog\n })\n });\n});\nOffcanvas.displayName = 'Offcanvas';\nOffcanvas.defaultProps = defaultProps;\nexport default Object.assign(Offcanvas, {\n Body: OffcanvasBody,\n Header: OffcanvasHeader,\n Title: OffcanvasTitle\n});"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e87e36c7190c1774f8176deb65370ed.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0e87e36c7190c1774f8176deb65370ed.json deleted file mode 100644 index 063e1b89..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0e87e36c7190c1774f8176deb65370ed.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"// The error overlay is inspired (and mostly copied) from Create React App (https://github.com/facebookincubator/create-react-app)\n// They, in turn, got inspired by webpack-hot-middleware (https://github.com/glenjamin/webpack-hot-middleware).\nimport ansiHTML from \"ansi-html-community\";\nimport { encode } from \"html-entities\";\nvar colors = {\n reset: [\"transparent\", \"transparent\"],\n black: \"181818\",\n red: \"E36049\",\n green: \"B3CB74\",\n yellow: \"FFD080\",\n blue: \"7CAFC2\",\n magenta: \"7FACCA\",\n cyan: \"C3C2EF\",\n lightgrey: \"EBE7E3\",\n darkgrey: \"6D7891\"\n};\n/** @type {HTMLIFrameElement | null | undefined} */\n\nvar iframeContainerElement;\n/** @type {HTMLDivElement | null | undefined} */\n\nvar containerElement;\n/** @type {Array<(element: HTMLDivElement) => void>} */\n\nvar onLoadQueue = [];\n/** @type {TrustedTypePolicy | undefined} */\n\nvar overlayTrustedTypesPolicy;\nansiHTML.setColors(colors);\n/**\n * @param {string | null} trustedTypesPolicyName\n */\n\nfunction createContainer(trustedTypesPolicyName) {\n // Enable Trusted Types if they are available in the current browser.\n if (window.trustedTypes) {\n overlayTrustedTypesPolicy = window.trustedTypes.createPolicy(trustedTypesPolicyName || \"webpack-dev-server#overlay\", {\n createHTML: function createHTML(value) {\n return value;\n }\n });\n }\n\n iframeContainerElement = document.createElement(\"iframe\");\n iframeContainerElement.id = \"webpack-dev-server-client-overlay\";\n iframeContainerElement.src = \"about:blank\";\n iframeContainerElement.style.position = \"fixed\";\n iframeContainerElement.style.left = 0;\n iframeContainerElement.style.top = 0;\n iframeContainerElement.style.right = 0;\n iframeContainerElement.style.bottom = 0;\n iframeContainerElement.style.width = \"100vw\";\n iframeContainerElement.style.height = \"100vh\";\n iframeContainerElement.style.border = \"none\";\n iframeContainerElement.style.zIndex = 9999999999;\n\n iframeContainerElement.onload = function () {\n containerElement =\n /** @type {Document} */\n\n /** @type {HTMLIFrameElement} */\n iframeContainerElement.contentDocument.createElement(\"div\");\n containerElement.id = \"webpack-dev-server-client-overlay-div\";\n containerElement.style.position = \"fixed\";\n containerElement.style.boxSizing = \"border-box\";\n containerElement.style.left = 0;\n containerElement.style.top = 0;\n containerElement.style.right = 0;\n containerElement.style.bottom = 0;\n containerElement.style.width = \"100vw\";\n containerElement.style.height = \"100vh\";\n containerElement.style.backgroundColor = \"rgba(0, 0, 0, 0.85)\";\n containerElement.style.color = \"#E8E8E8\";\n containerElement.style.fontFamily = \"Menlo, Consolas, monospace\";\n containerElement.style.fontSize = \"large\";\n containerElement.style.padding = \"2rem\";\n containerElement.style.lineHeight = \"1.2\";\n containerElement.style.whiteSpace = \"pre-wrap\";\n containerElement.style.overflow = \"auto\";\n var headerElement = document.createElement(\"span\");\n headerElement.innerText = \"Compiled with problems:\";\n var closeButtonElement = document.createElement(\"button\");\n closeButtonElement.innerText = \"X\";\n closeButtonElement.style.background = \"transparent\";\n closeButtonElement.style.border = \"none\";\n closeButtonElement.style.fontSize = \"20px\";\n closeButtonElement.style.fontWeight = \"bold\";\n closeButtonElement.style.color = \"white\";\n closeButtonElement.style.cursor = \"pointer\";\n closeButtonElement.style.cssFloat = \"right\"; // @ts-ignore\n\n closeButtonElement.style.styleFloat = \"right\";\n closeButtonElement.addEventListener(\"click\", function () {\n hide();\n });\n containerElement.appendChild(headerElement);\n containerElement.appendChild(closeButtonElement);\n containerElement.appendChild(document.createElement(\"br\"));\n containerElement.appendChild(document.createElement(\"br\"));\n /** @type {Document} */\n\n /** @type {HTMLIFrameElement} */\n\n iframeContainerElement.contentDocument.body.appendChild(containerElement);\n onLoadQueue.forEach(function (onLoad) {\n onLoad(\n /** @type {HTMLDivElement} */\n containerElement);\n });\n onLoadQueue = [];\n /** @type {HTMLIFrameElement} */\n\n iframeContainerElement.onload = null;\n };\n\n document.body.appendChild(iframeContainerElement);\n}\n/**\n * @param {(element: HTMLDivElement) => void} callback\n * @param {string | null} trustedTypesPolicyName\n */\n\n\nfunction ensureOverlayExists(callback, trustedTypesPolicyName) {\n if (containerElement) {\n // Everything is ready, call the callback right away.\n callback(containerElement);\n return;\n }\n\n onLoadQueue.push(callback);\n\n if (iframeContainerElement) {\n return;\n }\n\n createContainer(trustedTypesPolicyName);\n} // Successful compilation.\n\n\nfunction hide() {\n if (!iframeContainerElement) {\n return;\n } // Clean up and reset internal state.\n\n\n document.body.removeChild(iframeContainerElement);\n iframeContainerElement = null;\n containerElement = null;\n}\n/**\n * @param {string} type\n * @param {string | { file?: string, moduleName?: string, loc?: string, message?: string }} item\n * @returns {{ header: string, body: string }}\n */\n\n\nfunction formatProblem(type, item) {\n var header = type === \"warning\" ? \"WARNING\" : \"ERROR\";\n var body = \"\";\n\n if (typeof item === \"string\") {\n body += item;\n } else {\n var file = item.file || \"\"; // eslint-disable-next-line no-nested-ternary\n\n var moduleName = item.moduleName ? item.moduleName.indexOf(\"!\") !== -1 ? \"\".concat(item.moduleName.replace(/^(\\s|\\S)*!/, \"\"), \" (\").concat(item.moduleName, \")\") : \"\".concat(item.moduleName) : \"\";\n var loc = item.loc;\n header += \"\".concat(moduleName || file ? \" in \".concat(moduleName ? \"\".concat(moduleName).concat(file ? \" (\".concat(file, \")\") : \"\") : file).concat(loc ? \" \".concat(loc) : \"\") : \"\");\n body += item.message || \"\";\n }\n\n return {\n header: header,\n body: body\n };\n} // Compilation with errors (e.g. syntax error or missing modules).\n\n/**\n * @param {string} type\n * @param {Array} messages\n * @param {string | null} trustedTypesPolicyName\n */\n\n\nfunction show(type, messages, trustedTypesPolicyName) {\n ensureOverlayExists(function () {\n messages.forEach(function (message) {\n var entryElement = document.createElement(\"div\");\n var typeElement = document.createElement(\"span\");\n\n var _formatProblem = formatProblem(type, message),\n header = _formatProblem.header,\n body = _formatProblem.body;\n\n typeElement.innerText = header;\n typeElement.style.color = \"#\".concat(colors.red); // Make it look similar to our terminal.\n\n var text = ansiHTML(encode(body));\n var messageTextNode = document.createElement(\"div\");\n messageTextNode.innerHTML = overlayTrustedTypesPolicy ? overlayTrustedTypesPolicy.createHTML(text) : text;\n entryElement.appendChild(typeElement);\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(messageTextNode);\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(document.createElement(\"br\"));\n /** @type {HTMLDivElement} */\n\n containerElement.appendChild(entryElement);\n });\n }, trustedTypesPolicyName);\n}\n\nexport { formatProblem, show, hide };","map":{"version":3,"names":["ansiHTML","encode","colors","reset","black","red","green","yellow","blue","magenta","cyan","lightgrey","darkgrey","iframeContainerElement","containerElement","onLoadQueue","overlayTrustedTypesPolicy","setColors","createContainer","trustedTypesPolicyName","window","trustedTypes","createPolicy","createHTML","value","document","createElement","id","src","style","position","left","top","right","bottom","width","height","border","zIndex","onload","contentDocument","boxSizing","backgroundColor","color","fontFamily","fontSize","padding","lineHeight","whiteSpace","overflow","headerElement","innerText","closeButtonElement","background","fontWeight","cursor","cssFloat","styleFloat","addEventListener","hide","appendChild","body","forEach","onLoad","ensureOverlayExists","callback","push","removeChild","formatProblem","type","item","header","file","moduleName","indexOf","concat","replace","loc","message","show","messages","entryElement","typeElement","_formatProblem","text","messageTextNode","innerHTML"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/webpack-dev-server/client/overlay.js"],"sourcesContent":["// The error overlay is inspired (and mostly copied) from Create React App (https://github.com/facebookincubator/create-react-app)\n// They, in turn, got inspired by webpack-hot-middleware (https://github.com/glenjamin/webpack-hot-middleware).\nimport ansiHTML from \"ansi-html-community\";\nimport { encode } from \"html-entities\";\nvar colors = {\n reset: [\"transparent\", \"transparent\"],\n black: \"181818\",\n red: \"E36049\",\n green: \"B3CB74\",\n yellow: \"FFD080\",\n blue: \"7CAFC2\",\n magenta: \"7FACCA\",\n cyan: \"C3C2EF\",\n lightgrey: \"EBE7E3\",\n darkgrey: \"6D7891\"\n};\n/** @type {HTMLIFrameElement | null | undefined} */\n\nvar iframeContainerElement;\n/** @type {HTMLDivElement | null | undefined} */\n\nvar containerElement;\n/** @type {Array<(element: HTMLDivElement) => void>} */\n\nvar onLoadQueue = [];\n/** @type {TrustedTypePolicy | undefined} */\n\nvar overlayTrustedTypesPolicy;\nansiHTML.setColors(colors);\n/**\n * @param {string | null} trustedTypesPolicyName\n */\n\nfunction createContainer(trustedTypesPolicyName) {\n // Enable Trusted Types if they are available in the current browser.\n if (window.trustedTypes) {\n overlayTrustedTypesPolicy = window.trustedTypes.createPolicy(trustedTypesPolicyName || \"webpack-dev-server#overlay\", {\n createHTML: function createHTML(value) {\n return value;\n }\n });\n }\n\n iframeContainerElement = document.createElement(\"iframe\");\n iframeContainerElement.id = \"webpack-dev-server-client-overlay\";\n iframeContainerElement.src = \"about:blank\";\n iframeContainerElement.style.position = \"fixed\";\n iframeContainerElement.style.left = 0;\n iframeContainerElement.style.top = 0;\n iframeContainerElement.style.right = 0;\n iframeContainerElement.style.bottom = 0;\n iframeContainerElement.style.width = \"100vw\";\n iframeContainerElement.style.height = \"100vh\";\n iframeContainerElement.style.border = \"none\";\n iframeContainerElement.style.zIndex = 9999999999;\n\n iframeContainerElement.onload = function () {\n containerElement =\n /** @type {Document} */\n\n /** @type {HTMLIFrameElement} */\n iframeContainerElement.contentDocument.createElement(\"div\");\n containerElement.id = \"webpack-dev-server-client-overlay-div\";\n containerElement.style.position = \"fixed\";\n containerElement.style.boxSizing = \"border-box\";\n containerElement.style.left = 0;\n containerElement.style.top = 0;\n containerElement.style.right = 0;\n containerElement.style.bottom = 0;\n containerElement.style.width = \"100vw\";\n containerElement.style.height = \"100vh\";\n containerElement.style.backgroundColor = \"rgba(0, 0, 0, 0.85)\";\n containerElement.style.color = \"#E8E8E8\";\n containerElement.style.fontFamily = \"Menlo, Consolas, monospace\";\n containerElement.style.fontSize = \"large\";\n containerElement.style.padding = \"2rem\";\n containerElement.style.lineHeight = \"1.2\";\n containerElement.style.whiteSpace = \"pre-wrap\";\n containerElement.style.overflow = \"auto\";\n var headerElement = document.createElement(\"span\");\n headerElement.innerText = \"Compiled with problems:\";\n var closeButtonElement = document.createElement(\"button\");\n closeButtonElement.innerText = \"X\";\n closeButtonElement.style.background = \"transparent\";\n closeButtonElement.style.border = \"none\";\n closeButtonElement.style.fontSize = \"20px\";\n closeButtonElement.style.fontWeight = \"bold\";\n closeButtonElement.style.color = \"white\";\n closeButtonElement.style.cursor = \"pointer\";\n closeButtonElement.style.cssFloat = \"right\"; // @ts-ignore\n\n closeButtonElement.style.styleFloat = \"right\";\n closeButtonElement.addEventListener(\"click\", function () {\n hide();\n });\n containerElement.appendChild(headerElement);\n containerElement.appendChild(closeButtonElement);\n containerElement.appendChild(document.createElement(\"br\"));\n containerElement.appendChild(document.createElement(\"br\"));\n /** @type {Document} */\n\n /** @type {HTMLIFrameElement} */\n iframeContainerElement.contentDocument.body.appendChild(containerElement);\n onLoadQueue.forEach(function (onLoad) {\n onLoad(\n /** @type {HTMLDivElement} */\n containerElement);\n });\n onLoadQueue = [];\n /** @type {HTMLIFrameElement} */\n\n iframeContainerElement.onload = null;\n };\n\n document.body.appendChild(iframeContainerElement);\n}\n/**\n * @param {(element: HTMLDivElement) => void} callback\n * @param {string | null} trustedTypesPolicyName\n */\n\n\nfunction ensureOverlayExists(callback, trustedTypesPolicyName) {\n if (containerElement) {\n // Everything is ready, call the callback right away.\n callback(containerElement);\n return;\n }\n\n onLoadQueue.push(callback);\n\n if (iframeContainerElement) {\n return;\n }\n\n createContainer(trustedTypesPolicyName);\n} // Successful compilation.\n\n\nfunction hide() {\n if (!iframeContainerElement) {\n return;\n } // Clean up and reset internal state.\n\n\n document.body.removeChild(iframeContainerElement);\n iframeContainerElement = null;\n containerElement = null;\n}\n/**\n * @param {string} type\n * @param {string | { file?: string, moduleName?: string, loc?: string, message?: string }} item\n * @returns {{ header: string, body: string }}\n */\n\n\nfunction formatProblem(type, item) {\n var header = type === \"warning\" ? \"WARNING\" : \"ERROR\";\n var body = \"\";\n\n if (typeof item === \"string\") {\n body += item;\n } else {\n var file = item.file || \"\"; // eslint-disable-next-line no-nested-ternary\n\n var moduleName = item.moduleName ? item.moduleName.indexOf(\"!\") !== -1 ? \"\".concat(item.moduleName.replace(/^(\\s|\\S)*!/, \"\"), \" (\").concat(item.moduleName, \")\") : \"\".concat(item.moduleName) : \"\";\n var loc = item.loc;\n header += \"\".concat(moduleName || file ? \" in \".concat(moduleName ? \"\".concat(moduleName).concat(file ? \" (\".concat(file, \")\") : \"\") : file).concat(loc ? \" \".concat(loc) : \"\") : \"\");\n body += item.message || \"\";\n }\n\n return {\n header: header,\n body: body\n };\n} // Compilation with errors (e.g. syntax error or missing modules).\n\n/**\n * @param {string} type\n * @param {Array} messages\n * @param {string | null} trustedTypesPolicyName\n */\n\n\nfunction show(type, messages, trustedTypesPolicyName) {\n ensureOverlayExists(function () {\n messages.forEach(function (message) {\n var entryElement = document.createElement(\"div\");\n var typeElement = document.createElement(\"span\");\n\n var _formatProblem = formatProblem(type, message),\n header = _formatProblem.header,\n body = _formatProblem.body;\n\n typeElement.innerText = header;\n typeElement.style.color = \"#\".concat(colors.red); // Make it look similar to our terminal.\n\n var text = ansiHTML(encode(body));\n var messageTextNode = document.createElement(\"div\");\n messageTextNode.innerHTML = overlayTrustedTypesPolicy ? overlayTrustedTypesPolicy.createHTML(text) : text;\n entryElement.appendChild(typeElement);\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(messageTextNode);\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(document.createElement(\"br\"));\n /** @type {HTMLDivElement} */\n\n containerElement.appendChild(entryElement);\n });\n }, trustedTypesPolicyName);\n}\n\nexport { formatProblem, show, hide };"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0f4bb42f62f2fb77f89f9b1fa50a3c36.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0f4bb42f62f2fb77f89f9b1fa50a3c36.json new file mode 100644 index 00000000..887708d9 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0f4bb42f62f2fb77f89f9b1fa50a3c36.json @@ -0,0 +1 @@ +{"ast":null,"code":"'use strict';\n\nvar AxiosError = require('./AxiosError');\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\n\n\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(new AxiosError('Request failed with status code ' + response.status, [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4], response.config, response.request, response));\n }\n};","map":{"version":3,"names":["AxiosError","require","module","exports","settle","resolve","reject","response","validateStatus","config","status","ERR_BAD_REQUEST","ERR_BAD_RESPONSE","Math","floor","request"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/axios/lib/core/settle.js"],"sourcesContent":["'use strict';\n\nvar AxiosError = require('./AxiosError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(new AxiosError(\n 'Request failed with status code ' + response.status,\n [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],\n response.config,\n response.request,\n response\n ));\n }\n};\n"],"mappings":"AAAA;;AAEA,IAAIA,UAAU,GAAGC,OAAO,CAAC,cAAD,CAAxB;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACAC,MAAM,CAACC,OAAP,GAAiB,SAASC,MAAT,CAAgBC,OAAhB,EAAyBC,MAAzB,EAAiCC,QAAjC,EAA2C;EAC1D,IAAIC,cAAc,GAAGD,QAAQ,CAACE,MAAT,CAAgBD,cAArC;;EACA,IAAI,CAACD,QAAQ,CAACG,MAAV,IAAoB,CAACF,cAArB,IAAuCA,cAAc,CAACD,QAAQ,CAACG,MAAV,CAAzD,EAA4E;IAC1EL,OAAO,CAACE,QAAD,CAAP;EACD,CAFD,MAEO;IACLD,MAAM,CAAC,IAAIN,UAAJ,CACL,qCAAqCO,QAAQ,CAACG,MADzC,EAEL,CAACV,UAAU,CAACW,eAAZ,EAA6BX,UAAU,CAACY,gBAAxC,EAA0DC,IAAI,CAACC,KAAL,CAAWP,QAAQ,CAACG,MAAT,GAAkB,GAA7B,IAAoC,CAA9F,CAFK,EAGLH,QAAQ,CAACE,MAHJ,EAILF,QAAQ,CAACQ,OAJJ,EAKLR,QALK,CAAD,CAAN;EAOD;AACF,CAbD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0f736b9512ab2d64ffd1ae74ffa3e004.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0f736b9512ab2d64ffd1ae74ffa3e004.json deleted file mode 100644 index ae6293fe..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0f736b9512ab2d64ffd1ae74ffa3e004.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(BlogEntry, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 6,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["BlogEntry","Home","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\nfunction App() {\n return (\n
\n \n \n
\n );\n}\n\nexport default App;\n"],"mappings":";AAAA,OAAOA,SAAP,MAAsB,wCAAtB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AACA,SAASC,GAAT,GAAe;EACb,oBACE;IAAA,wBACA,QAAC,MAAD;MAAA;MAAA;MAAA;IAAA,QADA,eAEA,QAAC,SAAD;MAAA;MAAA;MAAA;IAAA,QAFA;EAAA;IAAA;IAAA;IAAA;EAAA,QADF;AAMD;;KAPQA,G;AAST,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0f800e3d761d84dec8885ca6e0a4aa89.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0f800e3d761d84dec8885ca6e0a4aa89.json new file mode 100644 index 00000000..251d4f5e --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/0f800e3d761d84dec8885ca6e0a4aa89.json @@ -0,0 +1 @@ +{"ast":null,"code":"import { useEffect } from 'react';\nimport useEventCallback from './useEventCallback';\n/**\n * Attaches an event handler outside directly to specified DOM element\n * bypassing the react synthetic event system.\n *\n * @param element The target to listen for events on\n * @param event The DOM event name\n * @param handler An event handler\n * @param capture Whether or not to listen during the capture event phase\n */\n\nexport default function useEventListener(eventTarget, event, listener, capture) {\n if (capture === void 0) {\n capture = false;\n }\n\n var handler = useEventCallback(listener);\n useEffect(function () {\n var target = typeof eventTarget === 'function' ? eventTarget() : eventTarget;\n target.addEventListener(event, handler, capture);\n return function () {\n return target.removeEventListener(event, handler, capture);\n };\n }, [eventTarget]);\n}","map":{"version":3,"names":["useEffect","useEventCallback","useEventListener","eventTarget","event","listener","capture","handler","target","addEventListener","removeEventListener"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/@restart/hooks/esm/useEventListener.js"],"sourcesContent":["import { useEffect } from 'react';\nimport useEventCallback from './useEventCallback';\n\n/**\n * Attaches an event handler outside directly to specified DOM element\n * bypassing the react synthetic event system.\n *\n * @param element The target to listen for events on\n * @param event The DOM event name\n * @param handler An event handler\n * @param capture Whether or not to listen during the capture event phase\n */\nexport default function useEventListener(eventTarget, event, listener, capture) {\n if (capture === void 0) {\n capture = false;\n }\n\n var handler = useEventCallback(listener);\n useEffect(function () {\n var target = typeof eventTarget === 'function' ? eventTarget() : eventTarget;\n target.addEventListener(event, handler, capture);\n return function () {\n return target.removeEventListener(event, handler, capture);\n };\n }, [eventTarget]);\n}"],"mappings":"AAAA,SAASA,SAAT,QAA0B,OAA1B;AACA,OAAOC,gBAAP,MAA6B,oBAA7B;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA,eAAe,SAASC,gBAAT,CAA0BC,WAA1B,EAAuCC,KAAvC,EAA8CC,QAA9C,EAAwDC,OAAxD,EAAiE;EAC9E,IAAIA,OAAO,KAAK,KAAK,CAArB,EAAwB;IACtBA,OAAO,GAAG,KAAV;EACD;;EAED,IAAIC,OAAO,GAAGN,gBAAgB,CAACI,QAAD,CAA9B;EACAL,SAAS,CAAC,YAAY;IACpB,IAAIQ,MAAM,GAAG,OAAOL,WAAP,KAAuB,UAAvB,GAAoCA,WAAW,EAA/C,GAAoDA,WAAjE;IACAK,MAAM,CAACC,gBAAP,CAAwBL,KAAxB,EAA+BG,OAA/B,EAAwCD,OAAxC;IACA,OAAO,YAAY;MACjB,OAAOE,MAAM,CAACE,mBAAP,CAA2BN,KAA3B,EAAkCG,OAAlC,EAA2CD,OAA3C,CAAP;IACD,CAFD;EAGD,CANQ,EAMN,CAACH,WAAD,CANM,CAAT;AAOD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0faa6a010d54efaed14da855333413d7.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0faa6a010d54efaed14da855333413d7.json deleted file mode 100644 index 79f8169e..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0faa6a010d54efaed14da855333413d7.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"export * from \"./enums.js\";\nexport * from \"./modifiers/index.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport { popperGenerator, detectOverflow, createPopper as createPopperBase } from \"./createPopper.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper } from \"./popper.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper as createPopperLite } from \"./popper-lite.js\";","map":{"version":3,"names":["popperGenerator","detectOverflow","createPopper","createPopperBase","createPopperLite"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/index.js"],"sourcesContent":["export * from \"./enums.js\";\nexport * from \"./modifiers/index.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport { popperGenerator, detectOverflow, createPopper as createPopperBase } from \"./createPopper.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper } from \"./popper.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper as createPopperLite } from \"./popper-lite.js\";"],"mappings":"AAAA,cAAc,YAAd;AACA,cAAc,sBAAd,C,CAAsC;;AAEtC,SAASA,eAAT,EAA0BC,cAA1B,EAA0CC,YAAY,IAAIC,gBAA1D,QAAkF,mBAAlF,C,CAAuG;;AAEvG,SAASD,YAAT,QAA6B,aAA7B,C,CAA4C;;AAE5C,SAASA,YAAY,IAAIE,gBAAzB,QAAiD,kBAAjD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/0fbb8c67ee0e842d04be21682df7184e.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/0fbb8c67ee0e842d04be21682df7184e.json deleted file mode 100644 index 0e87b3f3..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/0fbb8c67ee0e842d04be21682df7184e.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary margin:'1rem'\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: Created: \n \n Entry Title \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,uBAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,uBAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/10102fdf0782c0805e3e923b82c5c336.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/10102fdf0782c0805e3e923b82c5c336.json deleted file mode 100644 index d1362733..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/10102fdf0782c0805e3e923b82c5c336.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary \",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary m-5\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1 m-5\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n \n \n Author: Created: \n \n Entry Title \n \n Entry content\n \n\n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACI,QAAC,MAAD;MAAQ,OAAO,EAAC,UAAhB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADJ,eAEI,QAAC,MAAD;MAAQ,OAAO,EAAC,aAAhB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAFJ,eAGE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAHF,eAIE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,2BAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF;IAAA;MAAA;MAAA;MAAA;IAAA,QAJF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAcH;KAfuBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/104d76a3f58f8e66024c76c446588df1.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/104d76a3f58f8e66024c76c446588df1.json new file mode 100644 index 00000000..215f4940 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/104d76a3f58f8e66024c76c446588df1.json @@ -0,0 +1 @@ +{"ast":null,"code":"import useEffect from './useIsomorphicEffect';\nimport { useState } from 'react';\nvar matchersByWindow = new WeakMap();\n\nvar getMatcher = function getMatcher(query, targetWindow) {\n if (!query || !targetWindow) return undefined;\n var matchers = matchersByWindow.get(targetWindow) || new Map();\n matchersByWindow.set(targetWindow, matchers);\n var mql = matchers.get(query);\n\n if (!mql) {\n mql = targetWindow.matchMedia(query);\n mql.refCount = 0;\n matchers.set(mql.media, mql);\n }\n\n return mql;\n};\n/**\n * Match a media query and get updates as the match changes. The media string is\n * passed directly to `window.matchMedia` and run as a Layout Effect, so initial\n * matches are returned before the browser has a chance to paint.\n *\n * ```tsx\n * function Page() {\n * const isWide = useMediaQuery('min-width: 1000px')\n *\n * return isWide ? \"very wide\" : 'not so wide'\n * }\n * ```\n *\n * Media query lists are also reused globally, hook calls for the same query\n * will only create a matcher once under the hood.\n *\n * @param query A media query\n * @param targetWindow The window to match against, uses the globally available one as a default.\n */\n\n\nexport default function useMediaQuery(query, targetWindow) {\n if (targetWindow === void 0) {\n targetWindow = typeof window === 'undefined' ? undefined : window;\n }\n\n var mql = getMatcher(query, targetWindow);\n\n var _useState = useState(function () {\n return mql ? mql.matches : false;\n }),\n matches = _useState[0],\n setMatches = _useState[1];\n\n useEffect(function () {\n var mql = getMatcher(query, targetWindow);\n\n if (!mql) {\n return setMatches(false);\n }\n\n var matchers = matchersByWindow.get(targetWindow);\n\n var handleChange = function handleChange() {\n setMatches(mql.matches);\n };\n\n mql.refCount++;\n mql.addListener(handleChange);\n handleChange();\n return function () {\n mql.removeListener(handleChange);\n mql.refCount--;\n\n if (mql.refCount <= 0) {\n matchers == null ? void 0 : matchers.delete(mql.media);\n }\n\n mql = undefined;\n };\n }, [query]);\n return matches;\n}","map":{"version":3,"names":["useEffect","useState","matchersByWindow","WeakMap","getMatcher","query","targetWindow","undefined","matchers","get","Map","set","mql","matchMedia","refCount","media","useMediaQuery","window","_useState","matches","setMatches","handleChange","addListener","removeListener","delete"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/@restart/hooks/esm/useMediaQuery.js"],"sourcesContent":["import useEffect from './useIsomorphicEffect';\nimport { useState } from 'react';\nvar matchersByWindow = new WeakMap();\n\nvar getMatcher = function getMatcher(query, targetWindow) {\n if (!query || !targetWindow) return undefined;\n var matchers = matchersByWindow.get(targetWindow) || new Map();\n matchersByWindow.set(targetWindow, matchers);\n var mql = matchers.get(query);\n\n if (!mql) {\n mql = targetWindow.matchMedia(query);\n mql.refCount = 0;\n matchers.set(mql.media, mql);\n }\n\n return mql;\n};\n/**\n * Match a media query and get updates as the match changes. The media string is\n * passed directly to `window.matchMedia` and run as a Layout Effect, so initial\n * matches are returned before the browser has a chance to paint.\n *\n * ```tsx\n * function Page() {\n * const isWide = useMediaQuery('min-width: 1000px')\n *\n * return isWide ? \"very wide\" : 'not so wide'\n * }\n * ```\n *\n * Media query lists are also reused globally, hook calls for the same query\n * will only create a matcher once under the hood.\n *\n * @param query A media query\n * @param targetWindow The window to match against, uses the globally available one as a default.\n */\n\n\nexport default function useMediaQuery(query, targetWindow) {\n if (targetWindow === void 0) {\n targetWindow = typeof window === 'undefined' ? undefined : window;\n }\n\n var mql = getMatcher(query, targetWindow);\n\n var _useState = useState(function () {\n return mql ? mql.matches : false;\n }),\n matches = _useState[0],\n setMatches = _useState[1];\n\n useEffect(function () {\n var mql = getMatcher(query, targetWindow);\n\n if (!mql) {\n return setMatches(false);\n }\n\n var matchers = matchersByWindow.get(targetWindow);\n\n var handleChange = function handleChange() {\n setMatches(mql.matches);\n };\n\n mql.refCount++;\n mql.addListener(handleChange);\n handleChange();\n return function () {\n mql.removeListener(handleChange);\n mql.refCount--;\n\n if (mql.refCount <= 0) {\n matchers == null ? void 0 : matchers.delete(mql.media);\n }\n\n mql = undefined;\n };\n }, [query]);\n return matches;\n}"],"mappings":"AAAA,OAAOA,SAAP,MAAsB,uBAAtB;AACA,SAASC,QAAT,QAAyB,OAAzB;AACA,IAAIC,gBAAgB,GAAG,IAAIC,OAAJ,EAAvB;;AAEA,IAAIC,UAAU,GAAG,SAASA,UAAT,CAAoBC,KAApB,EAA2BC,YAA3B,EAAyC;EACxD,IAAI,CAACD,KAAD,IAAU,CAACC,YAAf,EAA6B,OAAOC,SAAP;EAC7B,IAAIC,QAAQ,GAAGN,gBAAgB,CAACO,GAAjB,CAAqBH,YAArB,KAAsC,IAAII,GAAJ,EAArD;EACAR,gBAAgB,CAACS,GAAjB,CAAqBL,YAArB,EAAmCE,QAAnC;EACA,IAAII,GAAG,GAAGJ,QAAQ,CAACC,GAAT,CAAaJ,KAAb,CAAV;;EAEA,IAAI,CAACO,GAAL,EAAU;IACRA,GAAG,GAAGN,YAAY,CAACO,UAAb,CAAwBR,KAAxB,CAAN;IACAO,GAAG,CAACE,QAAJ,GAAe,CAAf;IACAN,QAAQ,CAACG,GAAT,CAAaC,GAAG,CAACG,KAAjB,EAAwBH,GAAxB;EACD;;EAED,OAAOA,GAAP;AACD,CAbD;AAcA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA,eAAe,SAASI,aAAT,CAAuBX,KAAvB,EAA8BC,YAA9B,EAA4C;EACzD,IAAIA,YAAY,KAAK,KAAK,CAA1B,EAA6B;IAC3BA,YAAY,GAAG,OAAOW,MAAP,KAAkB,WAAlB,GAAgCV,SAAhC,GAA4CU,MAA3D;EACD;;EAED,IAAIL,GAAG,GAAGR,UAAU,CAACC,KAAD,EAAQC,YAAR,CAApB;;EAEA,IAAIY,SAAS,GAAGjB,QAAQ,CAAC,YAAY;IACnC,OAAOW,GAAG,GAAGA,GAAG,CAACO,OAAP,GAAiB,KAA3B;EACD,CAFuB,CAAxB;EAAA,IAGIA,OAAO,GAAGD,SAAS,CAAC,CAAD,CAHvB;EAAA,IAIIE,UAAU,GAAGF,SAAS,CAAC,CAAD,CAJ1B;;EAMAlB,SAAS,CAAC,YAAY;IACpB,IAAIY,GAAG,GAAGR,UAAU,CAACC,KAAD,EAAQC,YAAR,CAApB;;IAEA,IAAI,CAACM,GAAL,EAAU;MACR,OAAOQ,UAAU,CAAC,KAAD,CAAjB;IACD;;IAED,IAAIZ,QAAQ,GAAGN,gBAAgB,CAACO,GAAjB,CAAqBH,YAArB,CAAf;;IAEA,IAAIe,YAAY,GAAG,SAASA,YAAT,GAAwB;MACzCD,UAAU,CAACR,GAAG,CAACO,OAAL,CAAV;IACD,CAFD;;IAIAP,GAAG,CAACE,QAAJ;IACAF,GAAG,CAACU,WAAJ,CAAgBD,YAAhB;IACAA,YAAY;IACZ,OAAO,YAAY;MACjBT,GAAG,CAACW,cAAJ,CAAmBF,YAAnB;MACAT,GAAG,CAACE,QAAJ;;MAEA,IAAIF,GAAG,CAACE,QAAJ,IAAgB,CAApB,EAAuB;QACrBN,QAAQ,IAAI,IAAZ,GAAmB,KAAK,CAAxB,GAA4BA,QAAQ,CAACgB,MAAT,CAAgBZ,GAAG,CAACG,KAApB,CAA5B;MACD;;MAEDH,GAAG,GAAGL,SAAN;IACD,CATD;EAUD,CA1BQ,EA0BN,CAACF,KAAD,CA1BM,CAAT;EA2BA,OAAOc,OAAP;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/10ca31ab47d8413b359f918c4f289b7f.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/10ca31ab47d8413b359f918c4f289b7f.json deleted file mode 100644 index 0d48ebda..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/10ca31ab47d8413b359f918c4f289b7f.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/topbar/TopBar.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Container from 'react-bootstrap/Container';\nimport Nav from 'react-bootstrap/Nav';\nimport Navbar from 'react-bootstrap/Navbar';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function TopBar() {\n return /*#__PURE__*/_jsxDEV(Navbar, {\n bg: \"light\",\n expand: \"lg\",\n children: /*#__PURE__*/_jsxDEV(Container, {\n children: [/*#__PURE__*/_jsxDEV(Navbar.Brand, {\n href: \"#home\",\n children: \"Lab 3 Blog\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Navbar.Toggle, {\n \"aria-controls\": \"basic-navbar-nav\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Navbar.Collapse, {\n id: \"basic-navbar-nav\",\n children: /*#__PURE__*/_jsxDEV(Nav, {\n className: \"me-auto\",\n children: [/*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"\",\n children: \"Home\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/login\",\n children: \"Link\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/login\",\n children: \"Link\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = TopBar;\n\nvar _c;\n\n$RefreshReg$(_c, \"TopBar\");","map":{"version":3,"names":["Container","Nav","Navbar","TopBar"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/topbar/TopBar.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Container from 'react-bootstrap/Container'\nimport Nav from 'react-bootstrap/Nav';\nimport Navbar from 'react-bootstrap/Navbar'\n\nexport default function TopBar() {\n return (\n\n \n Lab 3 Blog\n \n \n \n \n \n\n )\n}\n"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,SAAP,MAAsB,2BAAtB;AACA,OAAOC,GAAP,MAAgB,qBAAhB;AACA,OAAOC,MAAP,MAAmB,wBAAnB;;AAEA,eAAe,SAASC,MAAT,GAAkB;EAC7B,oBACJ,QAAC,MAAD;IAAQ,EAAE,EAAC,OAAX;IAAmB,MAAM,EAAC,IAA1B;IAAA,uBACE,QAAC,SAAD;MAAA,wBACE,QAAC,MAAD,CAAQ,KAAR;QAAc,IAAI,EAAC,OAAnB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,MAAD,CAAQ,MAAR;QAAe,iBAAc;MAA7B;QAAA;QAAA;QAAA;MAAA,QAFF,eAGE,QAAC,MAAD,CAAQ,QAAR;QAAiB,EAAE,EAAC,kBAApB;QAAA,uBACE,QAAC,GAAD;UAAK,SAAS,EAAC,SAAf;UAAA,wBACE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,EAAf;YAAA;UAAA;YAAA;YAAA;YAAA;UAAA,QADF,eAEE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,QAAf;YAAA;UAAA;YAAA;YAAA;YAAA;UAAA,QAFF,eAGE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,QAAf;YAAA;UAAA;YAAA;YAAA;YAAA;UAAA,QAHF;QAAA;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAHF;IAAA;MAAA;MAAA;MAAA;IAAA;EADF;IAAA;IAAA;IAAA;EAAA,QADI;AAeH;KAhBuBA,M"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/10fd5a3fd2e391a4fd73c82c234b9019.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/10fd5a3fd2e391a4fd73c82c234b9019.json deleted file mode 100644 index cf37ab49..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/10fd5a3fd2e391a4fd73c82c234b9019.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar apply = FunctionPrototype.apply;\nvar call = FunctionPrototype.call; // eslint-disable-next-line es-x/no-reflect -- safe\n\nmodule.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {\n return call.apply(apply, arguments);\n});","map":{"version":3,"names":["NATIVE_BIND","require","FunctionPrototype","Function","prototype","apply","call","module","exports","Reflect","bind","arguments"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/function-apply.js"],"sourcesContent":["var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar apply = FunctionPrototype.apply;\nvar call = FunctionPrototype.call;\n\n// eslint-disable-next-line es-x/no-reflect -- safe\nmodule.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {\n return call.apply(apply, arguments);\n});\n"],"mappings":"AAAA,IAAIA,WAAW,GAAGC,OAAO,CAAC,mCAAD,CAAzB;;AAEA,IAAIC,iBAAiB,GAAGC,QAAQ,CAACC,SAAjC;AACA,IAAIC,KAAK,GAAGH,iBAAiB,CAACG,KAA9B;AACA,IAAIC,IAAI,GAAGJ,iBAAiB,CAACI,IAA7B,C,CAEA;;AACAC,MAAM,CAACC,OAAP,GAAiB,OAAOC,OAAP,IAAkB,QAAlB,IAA8BA,OAAO,CAACJ,KAAtC,KAAgDL,WAAW,GAAGM,IAAI,CAACI,IAAL,CAAUL,KAAV,CAAH,GAAsB,YAAY;EAC5G,OAAOC,IAAI,CAACD,KAAL,CAAWA,KAAX,EAAkBM,SAAlB,CAAP;AACD,CAFgB,CAAjB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/11bb8fa7d6ec3db47c6757740841da08.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/11bb8fa7d6ec3db47c6757740841da08.json deleted file mode 100644 index 3079edfd..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/11bb8fa7d6ec3db47c6757740841da08.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var uncurryThis = require('../internals/function-uncurry-this');\n\nvar id = 0;\nvar postfix = Math.random();\nvar toString = uncurryThis(1.0.toString);\n\nmodule.exports = function (key) {\n return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);\n};","map":{"version":3,"names":["uncurryThis","require","id","postfix","Math","random","toString","module","exports","key","undefined"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/uid.js"],"sourcesContent":["var uncurryThis = require('../internals/function-uncurry-this');\n\nvar id = 0;\nvar postfix = Math.random();\nvar toString = uncurryThis(1.0.toString);\n\nmodule.exports = function (key) {\n return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);\n};\n"],"mappings":"AAAA,IAAIA,WAAW,GAAGC,OAAO,CAAC,oCAAD,CAAzB;;AAEA,IAAIC,EAAE,GAAG,CAAT;AACA,IAAIC,OAAO,GAAGC,IAAI,CAACC,MAAL,EAAd;AACA,IAAIC,QAAQ,GAAGN,WAAW,CAAC,IAAIM,QAAL,CAA1B;;AAEAC,MAAM,CAACC,OAAP,GAAiB,UAAUC,GAAV,EAAe;EAC9B,OAAO,aAAaA,GAAG,KAAKC,SAAR,GAAoB,EAApB,GAAyBD,GAAtC,IAA6C,IAA7C,GAAoDH,QAAQ,CAAC,EAAEJ,EAAF,GAAOC,OAAR,EAAiB,EAAjB,CAAnE;AACD,CAFD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/11d51343d33235351d17ddc90134bd05.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/11d51343d33235351d17ddc90134bd05.json deleted file mode 100644 index 284264c7..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/11d51343d33235351d17ddc90134bd05.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var global = require('../internals/global');\n\nvar isObject = require('../internals/is-object');\n\nvar document = global.document; // typeof document.createElement is 'object' in old IE\n\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};","map":{"version":3,"names":["global","require","isObject","document","EXISTS","createElement","module","exports","it"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/document-create-element.js"],"sourcesContent":["var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n"],"mappings":"AAAA,IAAIA,MAAM,GAAGC,OAAO,CAAC,qBAAD,CAApB;;AACA,IAAIC,QAAQ,GAAGD,OAAO,CAAC,wBAAD,CAAtB;;AAEA,IAAIE,QAAQ,GAAGH,MAAM,CAACG,QAAtB,C,CACA;;AACA,IAAIC,MAAM,GAAGF,QAAQ,CAACC,QAAD,CAAR,IAAsBD,QAAQ,CAACC,QAAQ,CAACE,aAAV,CAA3C;;AAEAC,MAAM,CAACC,OAAP,GAAiB,UAAUC,EAAV,EAAc;EAC7B,OAAOJ,MAAM,GAAGD,QAAQ,CAACE,aAAT,CAAuBG,EAAvB,CAAH,GAAgC,EAA7C;AACD,CAFD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/12306d6ade502a3f5f97079e3cda5c32.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/12306d6ade502a3f5f97079e3cda5c32.json new file mode 100644 index 00000000..805cb6e9 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/12306d6ade502a3f5f97079e3cda5c32.json @@ -0,0 +1 @@ +{"ast":null,"code":"var rUpper = /([A-Z])/g;\nexport default function hyphenate(string) {\n return string.replace(rUpper, '-$1').toLowerCase();\n}","map":{"version":3,"names":["rUpper","hyphenate","string","replace","toLowerCase"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/dom-helpers/esm/hyphenate.js"],"sourcesContent":["var rUpper = /([A-Z])/g;\nexport default function hyphenate(string) {\n return string.replace(rUpper, '-$1').toLowerCase();\n}"],"mappings":"AAAA,IAAIA,MAAM,GAAG,UAAb;AACA,eAAe,SAASC,SAAT,CAAmBC,MAAnB,EAA2B;EACxC,OAAOA,MAAM,CAACC,OAAP,CAAeH,MAAf,EAAuB,KAAvB,EAA8BI,WAA9B,EAAP;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/144ec73dfe944e8c6982eea82c4bebcc.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/144ec73dfe944e8c6982eea82c4bebcc.json deleted file mode 100644 index 06cd8c15..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/144ec73dfe944e8c6982eea82c4bebcc.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/blog/blog.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blog() {\n return /*#__PURE__*/_jsxDEV(Card, {\n style: {\n width: '40rem',\n height: '40rem',\n margin: '1rem'\n },\n children: /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n children: \"Blog title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Blog text\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = Blog;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blog\");","map":{"version":3,"names":["Button","Card","React","Blog","width","height","margin"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/blog/blog.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function Blog() {\n return (\n\n \n \n Blog title\n \n Blog text\n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACJ,QAAC,IAAD;IAAM,KAAK,EAAE;MAAEC,KAAK,EAAE,OAAT;MAAkBC,MAAM,EAAC,OAAzB;MAAkCC,MAAM,EAAC;IAAzC,CAAb;IAAA,uBAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF;IAAA;MAAA;MAAA;MAAA;IAAA;EAFF;IAAA;IAAA;IAAA;EAAA,QADI;AAYH;KAbuBH,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/153549228fbde82d1e5c8244d1276650.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/153549228fbde82d1e5c8244d1276650.json deleted file mode 100644 index 65ed7bc2..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/153549228fbde82d1e5c8244d1276650.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Form from 'react-bootstrap/Form';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function CreateEntry() {\n return /*#__PURE__*/_jsxDEV(Form, {\n children: [/*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formText\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"text\",\n placeholder: \"Enter Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formText\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"text\",\n placeholder: \"Enter Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n type: \"submit\",\n children: \"Submit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 9\n }, this);\n}\n_c = CreateEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"CreateEntry\");","map":{"version":3,"names":["Button","Form","React","CreateEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Form from 'react-bootstrap/Form'\nimport React from \"react\";\n\nexport default function CreateEntry() {\n return (\n
\n \n Blog Title\n \n \n\n \n Password\n \n \n\n \n
\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,WAAT,GAAuB;EAClC,oBACI,QAAC,IAAD;IAAA,wBACA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,UAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,MAAnB;QAA0B,WAAW,EAAC;MAAtC;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QADA,eAMA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,UAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,MAAnB;QAA0B,WAAW,EAAC;MAAtC;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QANA,eAWA,QAAC,MAAD;MAAQ,OAAO,EAAC,SAAhB;MAA0B,IAAI,EAAC,QAA/B;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAXA;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAiBH;KAlBuBA,W"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1549bd6bdf53722297098891df233f03.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1549bd6bdf53722297098891df233f03.json deleted file mode 100644 index a635771d..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1549bd6bdf53722297098891df233f03.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"// TODO: Remove from `core-js@4`\nrequire('../modules/es.global-this');","map":{"version":3,"names":["require"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/modules/esnext.global-this.js"],"sourcesContent":["// TODO: Remove from `core-js@4`\nrequire('../modules/es.global-this');\n"],"mappings":"AAAA;AACAA,OAAO,CAAC,2BAAD,CAAP"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/15d70aa8fecd42f10a1ff50187074c25.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/15d70aa8fecd42f10a1ff50187074c25.json deleted file mode 100644 index 3ae9871b..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/15d70aa8fecd42f10a1ff50187074c25.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var $ = require('../internals/export');\n\nvar global = require('../internals/global'); // `globalThis` object\n// https://tc39.es/ecma262/#sec-globalthis\n\n\n$({\n global: true\n}, {\n globalThis: global\n});","map":{"version":3,"names":["$","require","global","globalThis"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/modules/es.global-this.js"],"sourcesContent":["var $ = require('../internals/export');\nvar global = require('../internals/global');\n\n// `globalThis` object\n// https://tc39.es/ecma262/#sec-globalthis\n$({ global: true }, {\n globalThis: global\n});\n"],"mappings":"AAAA,IAAIA,CAAC,GAAGC,OAAO,CAAC,qBAAD,CAAf;;AACA,IAAIC,MAAM,GAAGD,OAAO,CAAC,qBAAD,CAApB,C,CAEA;AACA;;;AACAD,CAAC,CAAC;EAAEE,MAAM,EAAE;AAAV,CAAD,EAAmB;EAClBC,UAAU,EAAED;AADM,CAAnB,CAAD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/15da596f669ffe604151134956d1dbe4.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/15da596f669ffe604151134956d1dbe4.json deleted file mode 100644 index 58d181b5..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/15da596f669ffe604151134956d1dbe4.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"export default function getWindow(node) {\n if (node == null) {\n return window;\n }\n\n if (node.toString() !== '[object Window]') {\n var ownerDocument = node.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView || window : window;\n }\n\n return node;\n}","map":{"version":3,"names":["getWindow","node","window","toString","ownerDocument","defaultView"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/dom-utils/getWindow.js"],"sourcesContent":["export default function getWindow(node) {\n if (node == null) {\n return window;\n }\n\n if (node.toString() !== '[object Window]') {\n var ownerDocument = node.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView || window : window;\n }\n\n return node;\n}"],"mappings":"AAAA,eAAe,SAASA,SAAT,CAAmBC,IAAnB,EAAyB;EACtC,IAAIA,IAAI,IAAI,IAAZ,EAAkB;IAChB,OAAOC,MAAP;EACD;;EAED,IAAID,IAAI,CAACE,QAAL,OAAoB,iBAAxB,EAA2C;IACzC,IAAIC,aAAa,GAAGH,IAAI,CAACG,aAAzB;IACA,OAAOA,aAAa,GAAGA,aAAa,CAACC,WAAd,IAA6BH,MAAhC,GAAyCA,MAA7D;EACD;;EAED,OAAOD,IAAP;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/15ecfbe129e50679525eaf4f1f7d0e64.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/15ecfbe129e50679525eaf4f1f7d0e64.json deleted file mode 100644 index 5eeb476f..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/15ecfbe129e50679525eaf4f1f7d0e64.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/pages/home/Home.jsx\";\nimport Blogs from \"../../blogs/Blogs\";\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Home() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: [\"home page\", /*#__PURE__*/_jsxDEV(Blogs, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Sidebar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 5,\n columnNumber: 9\n }, this);\n}\n_c = Home;\n\nvar _c;\n\n$RefreshReg$(_c, \"Home\");","map":{"version":3,"names":["Blogs","React","Home"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/pages/home/Home.jsx"],"sourcesContent":["import Blogs from \"../../blogs/Blogs\";\nimport React from \"react\";\nexport default function Home() {\n return (\n
\n\n home page\n \n \n
\n )\n}"],"mappings":";AAAA,OAAOA,KAAP,MAAkB,mBAAlB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AACA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACI;IAAA,qCAGI,QAAC,KAAD;MAAA;MAAA;MAAA;IAAA,QAHJ,eAII,QAAC,OAAD;MAAA;MAAA;MAAA;IAAA,QAJJ;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAQH;KATuBA,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/160cc80235653ddfcd429447459bf43d.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/160cc80235653ddfcd429447459bf43d.json new file mode 100644 index 00000000..76146f71 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/160cc80235653ddfcd429447459bf43d.json @@ -0,0 +1 @@ +{"ast":null,"code":"// The error overlay is inspired (and mostly copied) from Create React App (https://github.com/facebookincubator/create-react-app)\n// They, in turn, got inspired by webpack-hot-middleware (https://github.com/glenjamin/webpack-hot-middleware).\nimport ansiHTML from \"ansi-html-community\";\nimport { encode } from \"html-entities\";\nvar colors = {\n reset: [\"transparent\", \"transparent\"],\n black: \"181818\",\n red: \"E36049\",\n green: \"B3CB74\",\n yellow: \"FFD080\",\n blue: \"7CAFC2\",\n magenta: \"7FACCA\",\n cyan: \"C3C2EF\",\n lightgrey: \"EBE7E3\",\n darkgrey: \"6D7891\"\n};\n/** @type {HTMLIFrameElement | null | undefined} */\n\nvar iframeContainerElement;\n/** @type {HTMLDivElement | null | undefined} */\n\nvar containerElement;\n/** @type {Array<(element: HTMLDivElement) => void>} */\n\nvar onLoadQueue = [];\n/** @type {TrustedTypePolicy | undefined} */\n\nvar overlayTrustedTypesPolicy;\nansiHTML.setColors(colors);\n/**\n * @param {string | null} trustedTypesPolicyName\n */\n\nfunction createContainer(trustedTypesPolicyName) {\n // Enable Trusted Types if they are available in the current browser.\n if (window.trustedTypes) {\n overlayTrustedTypesPolicy = window.trustedTypes.createPolicy(trustedTypesPolicyName || \"webpack-dev-server#overlay\", {\n createHTML: function createHTML(value) {\n return value;\n }\n });\n }\n\n iframeContainerElement = document.createElement(\"iframe\");\n iframeContainerElement.id = \"webpack-dev-server-client-overlay\";\n iframeContainerElement.src = \"about:blank\";\n iframeContainerElement.style.position = \"fixed\";\n iframeContainerElement.style.left = 0;\n iframeContainerElement.style.top = 0;\n iframeContainerElement.style.right = 0;\n iframeContainerElement.style.bottom = 0;\n iframeContainerElement.style.width = \"100vw\";\n iframeContainerElement.style.height = \"100vh\";\n iframeContainerElement.style.border = \"none\";\n iframeContainerElement.style.zIndex = 9999999999;\n\n iframeContainerElement.onload = function () {\n containerElement =\n /** @type {Document} */\n\n /** @type {HTMLIFrameElement} */\n iframeContainerElement.contentDocument.createElement(\"div\");\n containerElement.id = \"webpack-dev-server-client-overlay-div\";\n containerElement.style.position = \"fixed\";\n containerElement.style.boxSizing = \"border-box\";\n containerElement.style.left = 0;\n containerElement.style.top = 0;\n containerElement.style.right = 0;\n containerElement.style.bottom = 0;\n containerElement.style.width = \"100vw\";\n containerElement.style.height = \"100vh\";\n containerElement.style.backgroundColor = \"rgba(0, 0, 0, 0.85)\";\n containerElement.style.color = \"#E8E8E8\";\n containerElement.style.fontFamily = \"Menlo, Consolas, monospace\";\n containerElement.style.fontSize = \"large\";\n containerElement.style.padding = \"2rem\";\n containerElement.style.lineHeight = \"1.2\";\n containerElement.style.whiteSpace = \"pre-wrap\";\n containerElement.style.overflow = \"auto\";\n var headerElement = document.createElement(\"span\");\n headerElement.innerText = \"Compiled with problems:\";\n var closeButtonElement = document.createElement(\"button\");\n closeButtonElement.innerText = \"X\";\n closeButtonElement.style.background = \"transparent\";\n closeButtonElement.style.border = \"none\";\n closeButtonElement.style.fontSize = \"20px\";\n closeButtonElement.style.fontWeight = \"bold\";\n closeButtonElement.style.color = \"white\";\n closeButtonElement.style.cursor = \"pointer\";\n closeButtonElement.style.cssFloat = \"right\"; // @ts-ignore\n\n closeButtonElement.style.styleFloat = \"right\";\n closeButtonElement.addEventListener(\"click\", function () {\n hide();\n });\n containerElement.appendChild(headerElement);\n containerElement.appendChild(closeButtonElement);\n containerElement.appendChild(document.createElement(\"br\"));\n containerElement.appendChild(document.createElement(\"br\"));\n /** @type {Document} */\n\n /** @type {HTMLIFrameElement} */\n\n iframeContainerElement.contentDocument.body.appendChild(containerElement);\n onLoadQueue.forEach(function (onLoad) {\n onLoad(\n /** @type {HTMLDivElement} */\n containerElement);\n });\n onLoadQueue = [];\n /** @type {HTMLIFrameElement} */\n\n iframeContainerElement.onload = null;\n };\n\n document.body.appendChild(iframeContainerElement);\n}\n/**\n * @param {(element: HTMLDivElement) => void} callback\n * @param {string | null} trustedTypesPolicyName\n */\n\n\nfunction ensureOverlayExists(callback, trustedTypesPolicyName) {\n if (containerElement) {\n // Everything is ready, call the callback right away.\n callback(containerElement);\n return;\n }\n\n onLoadQueue.push(callback);\n\n if (iframeContainerElement) {\n return;\n }\n\n createContainer(trustedTypesPolicyName);\n} // Successful compilation.\n\n\nfunction hide() {\n if (!iframeContainerElement) {\n return;\n } // Clean up and reset internal state.\n\n\n document.body.removeChild(iframeContainerElement);\n iframeContainerElement = null;\n containerElement = null;\n}\n/**\n * @param {string} type\n * @param {string | { file?: string, moduleName?: string, loc?: string, message?: string }} item\n * @returns {{ header: string, body: string }}\n */\n\n\nfunction formatProblem(type, item) {\n var header = type === \"warning\" ? \"WARNING\" : \"ERROR\";\n var body = \"\";\n\n if (typeof item === \"string\") {\n body += item;\n } else {\n var file = item.file || \"\"; // eslint-disable-next-line no-nested-ternary\n\n var moduleName = item.moduleName ? item.moduleName.indexOf(\"!\") !== -1 ? \"\".concat(item.moduleName.replace(/^(\\s|\\S)*!/, \"\"), \" (\").concat(item.moduleName, \")\") : \"\".concat(item.moduleName) : \"\";\n var loc = item.loc;\n header += \"\".concat(moduleName || file ? \" in \".concat(moduleName ? \"\".concat(moduleName).concat(file ? \" (\".concat(file, \")\") : \"\") : file).concat(loc ? \" \".concat(loc) : \"\") : \"\");\n body += item.message || \"\";\n }\n\n return {\n header: header,\n body: body\n };\n} // Compilation with errors (e.g. syntax error or missing modules).\n\n/**\n * @param {string} type\n * @param {Array} messages\n * @param {string | null} trustedTypesPolicyName\n */\n\n\nfunction show(type, messages, trustedTypesPolicyName) {\n ensureOverlayExists(function () {\n messages.forEach(function (message) {\n var entryElement = document.createElement(\"div\");\n var typeElement = document.createElement(\"span\");\n\n var _formatProblem = formatProblem(type, message),\n header = _formatProblem.header,\n body = _formatProblem.body;\n\n typeElement.innerText = header;\n typeElement.style.color = \"#\".concat(colors.red); // Make it look similar to our terminal.\n\n var text = ansiHTML(encode(body));\n var messageTextNode = document.createElement(\"div\");\n messageTextNode.innerHTML = overlayTrustedTypesPolicy ? overlayTrustedTypesPolicy.createHTML(text) : text;\n entryElement.appendChild(typeElement);\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(messageTextNode);\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(document.createElement(\"br\"));\n /** @type {HTMLDivElement} */\n\n containerElement.appendChild(entryElement);\n });\n }, trustedTypesPolicyName);\n}\n\nexport { formatProblem, show, hide };","map":{"version":3,"names":["ansiHTML","encode","colors","reset","black","red","green","yellow","blue","magenta","cyan","lightgrey","darkgrey","iframeContainerElement","containerElement","onLoadQueue","overlayTrustedTypesPolicy","setColors","createContainer","trustedTypesPolicyName","window","trustedTypes","createPolicy","createHTML","value","document","createElement","id","src","style","position","left","top","right","bottom","width","height","border","zIndex","onload","contentDocument","boxSizing","backgroundColor","color","fontFamily","fontSize","padding","lineHeight","whiteSpace","overflow","headerElement","innerText","closeButtonElement","background","fontWeight","cursor","cssFloat","styleFloat","addEventListener","hide","appendChild","body","forEach","onLoad","ensureOverlayExists","callback","push","removeChild","formatProblem","type","item","header","file","moduleName","indexOf","concat","replace","loc","message","show","messages","entryElement","typeElement","_formatProblem","text","messageTextNode","innerHTML"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/webpack-dev-server/client/overlay.js"],"sourcesContent":["// The error overlay is inspired (and mostly copied) from Create React App (https://github.com/facebookincubator/create-react-app)\n// They, in turn, got inspired by webpack-hot-middleware (https://github.com/glenjamin/webpack-hot-middleware).\nimport ansiHTML from \"ansi-html-community\";\nimport { encode } from \"html-entities\";\nvar colors = {\n reset: [\"transparent\", \"transparent\"],\n black: \"181818\",\n red: \"E36049\",\n green: \"B3CB74\",\n yellow: \"FFD080\",\n blue: \"7CAFC2\",\n magenta: \"7FACCA\",\n cyan: \"C3C2EF\",\n lightgrey: \"EBE7E3\",\n darkgrey: \"6D7891\"\n};\n/** @type {HTMLIFrameElement | null | undefined} */\n\nvar iframeContainerElement;\n/** @type {HTMLDivElement | null | undefined} */\n\nvar containerElement;\n/** @type {Array<(element: HTMLDivElement) => void>} */\n\nvar onLoadQueue = [];\n/** @type {TrustedTypePolicy | undefined} */\n\nvar overlayTrustedTypesPolicy;\nansiHTML.setColors(colors);\n/**\n * @param {string | null} trustedTypesPolicyName\n */\n\nfunction createContainer(trustedTypesPolicyName) {\n // Enable Trusted Types if they are available in the current browser.\n if (window.trustedTypes) {\n overlayTrustedTypesPolicy = window.trustedTypes.createPolicy(trustedTypesPolicyName || \"webpack-dev-server#overlay\", {\n createHTML: function createHTML(value) {\n return value;\n }\n });\n }\n\n iframeContainerElement = document.createElement(\"iframe\");\n iframeContainerElement.id = \"webpack-dev-server-client-overlay\";\n iframeContainerElement.src = \"about:blank\";\n iframeContainerElement.style.position = \"fixed\";\n iframeContainerElement.style.left = 0;\n iframeContainerElement.style.top = 0;\n iframeContainerElement.style.right = 0;\n iframeContainerElement.style.bottom = 0;\n iframeContainerElement.style.width = \"100vw\";\n iframeContainerElement.style.height = \"100vh\";\n iframeContainerElement.style.border = \"none\";\n iframeContainerElement.style.zIndex = 9999999999;\n\n iframeContainerElement.onload = function () {\n containerElement =\n /** @type {Document} */\n\n /** @type {HTMLIFrameElement} */\n iframeContainerElement.contentDocument.createElement(\"div\");\n containerElement.id = \"webpack-dev-server-client-overlay-div\";\n containerElement.style.position = \"fixed\";\n containerElement.style.boxSizing = \"border-box\";\n containerElement.style.left = 0;\n containerElement.style.top = 0;\n containerElement.style.right = 0;\n containerElement.style.bottom = 0;\n containerElement.style.width = \"100vw\";\n containerElement.style.height = \"100vh\";\n containerElement.style.backgroundColor = \"rgba(0, 0, 0, 0.85)\";\n containerElement.style.color = \"#E8E8E8\";\n containerElement.style.fontFamily = \"Menlo, Consolas, monospace\";\n containerElement.style.fontSize = \"large\";\n containerElement.style.padding = \"2rem\";\n containerElement.style.lineHeight = \"1.2\";\n containerElement.style.whiteSpace = \"pre-wrap\";\n containerElement.style.overflow = \"auto\";\n var headerElement = document.createElement(\"span\");\n headerElement.innerText = \"Compiled with problems:\";\n var closeButtonElement = document.createElement(\"button\");\n closeButtonElement.innerText = \"X\";\n closeButtonElement.style.background = \"transparent\";\n closeButtonElement.style.border = \"none\";\n closeButtonElement.style.fontSize = \"20px\";\n closeButtonElement.style.fontWeight = \"bold\";\n closeButtonElement.style.color = \"white\";\n closeButtonElement.style.cursor = \"pointer\";\n closeButtonElement.style.cssFloat = \"right\"; // @ts-ignore\n\n closeButtonElement.style.styleFloat = \"right\";\n closeButtonElement.addEventListener(\"click\", function () {\n hide();\n });\n containerElement.appendChild(headerElement);\n containerElement.appendChild(closeButtonElement);\n containerElement.appendChild(document.createElement(\"br\"));\n containerElement.appendChild(document.createElement(\"br\"));\n /** @type {Document} */\n\n /** @type {HTMLIFrameElement} */\n iframeContainerElement.contentDocument.body.appendChild(containerElement);\n onLoadQueue.forEach(function (onLoad) {\n onLoad(\n /** @type {HTMLDivElement} */\n containerElement);\n });\n onLoadQueue = [];\n /** @type {HTMLIFrameElement} */\n\n iframeContainerElement.onload = null;\n };\n\n document.body.appendChild(iframeContainerElement);\n}\n/**\n * @param {(element: HTMLDivElement) => void} callback\n * @param {string | null} trustedTypesPolicyName\n */\n\n\nfunction ensureOverlayExists(callback, trustedTypesPolicyName) {\n if (containerElement) {\n // Everything is ready, call the callback right away.\n callback(containerElement);\n return;\n }\n\n onLoadQueue.push(callback);\n\n if (iframeContainerElement) {\n return;\n }\n\n createContainer(trustedTypesPolicyName);\n} // Successful compilation.\n\n\nfunction hide() {\n if (!iframeContainerElement) {\n return;\n } // Clean up and reset internal state.\n\n\n document.body.removeChild(iframeContainerElement);\n iframeContainerElement = null;\n containerElement = null;\n}\n/**\n * @param {string} type\n * @param {string | { file?: string, moduleName?: string, loc?: string, message?: string }} item\n * @returns {{ header: string, body: string }}\n */\n\n\nfunction formatProblem(type, item) {\n var header = type === \"warning\" ? \"WARNING\" : \"ERROR\";\n var body = \"\";\n\n if (typeof item === \"string\") {\n body += item;\n } else {\n var file = item.file || \"\"; // eslint-disable-next-line no-nested-ternary\n\n var moduleName = item.moduleName ? item.moduleName.indexOf(\"!\") !== -1 ? \"\".concat(item.moduleName.replace(/^(\\s|\\S)*!/, \"\"), \" (\").concat(item.moduleName, \")\") : \"\".concat(item.moduleName) : \"\";\n var loc = item.loc;\n header += \"\".concat(moduleName || file ? \" in \".concat(moduleName ? \"\".concat(moduleName).concat(file ? \" (\".concat(file, \")\") : \"\") : file).concat(loc ? \" \".concat(loc) : \"\") : \"\");\n body += item.message || \"\";\n }\n\n return {\n header: header,\n body: body\n };\n} // Compilation with errors (e.g. syntax error or missing modules).\n\n/**\n * @param {string} type\n * @param {Array} messages\n * @param {string | null} trustedTypesPolicyName\n */\n\n\nfunction show(type, messages, trustedTypesPolicyName) {\n ensureOverlayExists(function () {\n messages.forEach(function (message) {\n var entryElement = document.createElement(\"div\");\n var typeElement = document.createElement(\"span\");\n\n var _formatProblem = formatProblem(type, message),\n header = _formatProblem.header,\n body = _formatProblem.body;\n\n typeElement.innerText = header;\n typeElement.style.color = \"#\".concat(colors.red); // Make it look similar to our terminal.\n\n var text = ansiHTML(encode(body));\n var messageTextNode = document.createElement(\"div\");\n messageTextNode.innerHTML = overlayTrustedTypesPolicy ? overlayTrustedTypesPolicy.createHTML(text) : text;\n entryElement.appendChild(typeElement);\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(messageTextNode);\n entryElement.appendChild(document.createElement(\"br\"));\n entryElement.appendChild(document.createElement(\"br\"));\n /** @type {HTMLDivElement} */\n\n containerElement.appendChild(entryElement);\n });\n }, trustedTypesPolicyName);\n}\n\nexport { formatProblem, show, hide };"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1622d2854b7e694bd4df91fbdd5972fd.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1622d2854b7e694bd4df91fbdd5972fd.json new file mode 100644 index 00000000..008a87cf --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/1622d2854b7e694bd4df91fbdd5972fd.json @@ -0,0 +1 @@ +{"ast":null,"code":"/* global __resourceQuery WorkerGlobalScope */\n// Send messages to the outside, so plugins can consume it.\n\n/**\n * @param {string} type\n * @param {any} [data]\n */\nfunction sendMsg(type, data) {\n if (typeof self !== \"undefined\" && (typeof WorkerGlobalScope === \"undefined\" || !(self instanceof WorkerGlobalScope))) {\n self.postMessage({\n type: \"webpack\".concat(type),\n data: data\n }, \"*\");\n }\n}\n\nexport default sendMsg;","map":{"version":3,"names":["sendMsg","type","data","self","WorkerGlobalScope","postMessage","concat"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/webpack-dev-server/client/utils/sendMessage.js"],"sourcesContent":["/* global __resourceQuery WorkerGlobalScope */\n// Send messages to the outside, so plugins can consume it.\n\n/**\n * @param {string} type\n * @param {any} [data]\n */\nfunction sendMsg(type, data) {\n if (typeof self !== \"undefined\" && (typeof WorkerGlobalScope === \"undefined\" || !(self instanceof WorkerGlobalScope))) {\n self.postMessage({\n type: \"webpack\".concat(type),\n data: data\n }, \"*\");\n }\n}\n\nexport default sendMsg;"],"mappings":"AAAA;AACA;;AAEA;AACA;AACA;AACA;AACA,SAASA,OAAT,CAAiBC,IAAjB,EAAuBC,IAAvB,EAA6B;EAC3B,IAAI,OAAOC,IAAP,KAAgB,WAAhB,KAAgC,OAAOC,iBAAP,KAA6B,WAA7B,IAA4C,EAAED,IAAI,YAAYC,iBAAlB,CAA5E,CAAJ,EAAuH;IACrHD,IAAI,CAACE,WAAL,CAAiB;MACfJ,IAAI,EAAE,UAAUK,MAAV,CAAiBL,IAAjB,CADS;MAEfC,IAAI,EAAEA;IAFS,CAAjB,EAGG,GAHH;EAID;AACF;;AAED,eAAeF,OAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/170191f6ad299f1aff9e8692cb158e69.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/170191f6ad299f1aff9e8692cb158e69.json deleted file mode 100644 index eb9a9e1c..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/170191f6ad299f1aff9e8692cb158e69.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center\",\n children: \"Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center\",\n children: \"Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n class: \"text-center\",\n children: \"With supporting text below as a natural lead-in to additional content.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: Created: \n \n Entry Title \n \n With supporting text below as a natural lead-in to additional content.\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,aAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,aAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAW,KAAK,EAAC,aAAjB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/174e42eceb80ae499541757b7abeb035.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/174e42eceb80ae499541757b7abeb035.json deleted file mode 100644 index a94ba13c..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/174e42eceb80ae499541757b7abeb035.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import css from 'dom-helpers/css';\nimport transitionEnd from 'dom-helpers/transitionEnd';\n\nfunction parseDuration(node, property) {\n const str = css(node, property) || '';\n const mult = str.indexOf('ms') === -1 ? 1000 : 1;\n return parseFloat(str) * mult;\n}\n\nexport default function transitionEndListener(element, handler) {\n const duration = parseDuration(element, 'transitionDuration');\n const delay = parseDuration(element, 'transitionDelay');\n const remove = transitionEnd(element, e => {\n if (e.target === element) {\n remove();\n handler(e);\n }\n }, duration + delay);\n}","map":{"version":3,"names":["css","transitionEnd","parseDuration","node","property","str","mult","indexOf","parseFloat","transitionEndListener","element","handler","duration","delay","remove","e","target"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-bootstrap/esm/transitionEndListener.js"],"sourcesContent":["import css from 'dom-helpers/css';\nimport transitionEnd from 'dom-helpers/transitionEnd';\n\nfunction parseDuration(node, property) {\n const str = css(node, property) || '';\n const mult = str.indexOf('ms') === -1 ? 1000 : 1;\n return parseFloat(str) * mult;\n}\n\nexport default function transitionEndListener(element, handler) {\n const duration = parseDuration(element, 'transitionDuration');\n const delay = parseDuration(element, 'transitionDelay');\n const remove = transitionEnd(element, e => {\n if (e.target === element) {\n remove();\n handler(e);\n }\n }, duration + delay);\n}"],"mappings":"AAAA,OAAOA,GAAP,MAAgB,iBAAhB;AACA,OAAOC,aAAP,MAA0B,2BAA1B;;AAEA,SAASC,aAAT,CAAuBC,IAAvB,EAA6BC,QAA7B,EAAuC;EACrC,MAAMC,GAAG,GAAGL,GAAG,CAACG,IAAD,EAAOC,QAAP,CAAH,IAAuB,EAAnC;EACA,MAAME,IAAI,GAAGD,GAAG,CAACE,OAAJ,CAAY,IAAZ,MAAsB,CAAC,CAAvB,GAA2B,IAA3B,GAAkC,CAA/C;EACA,OAAOC,UAAU,CAACH,GAAD,CAAV,GAAkBC,IAAzB;AACD;;AAED,eAAe,SAASG,qBAAT,CAA+BC,OAA/B,EAAwCC,OAAxC,EAAiD;EAC9D,MAAMC,QAAQ,GAAGV,aAAa,CAACQ,OAAD,EAAU,oBAAV,CAA9B;EACA,MAAMG,KAAK,GAAGX,aAAa,CAACQ,OAAD,EAAU,iBAAV,CAA3B;EACA,MAAMI,MAAM,GAAGb,aAAa,CAACS,OAAD,EAAUK,CAAC,IAAI;IACzC,IAAIA,CAAC,CAACC,MAAF,KAAaN,OAAjB,EAA0B;MACxBI,MAAM;MACNH,OAAO,CAACI,CAAD,CAAP;IACD;EACF,CAL2B,EAKzBH,QAAQ,GAAGC,KALc,CAA5B;AAMD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/17c66bf78637ca28278b33218a98d38c.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/17c66bf78637ca28278b33218a98d38c.json deleted file mode 100644 index 6e0371f6..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/17c66bf78637ca28278b33218a98d38c.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import { popperGenerator, detectOverflow } from \"./createPopper.js\";\nimport eventListeners from \"./modifiers/eventListeners.js\";\nimport popperOffsets from \"./modifiers/popperOffsets.js\";\nimport computeStyles from \"./modifiers/computeStyles.js\";\nimport applyStyles from \"./modifiers/applyStyles.js\";\nvar defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles];\nvar createPopper = /*#__PURE__*/popperGenerator({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper, popperGenerator, defaultModifiers, detectOverflow };","map":{"version":3,"names":["popperGenerator","detectOverflow","eventListeners","popperOffsets","computeStyles","applyStyles","defaultModifiers","createPopper"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/popper-lite.js"],"sourcesContent":["import { popperGenerator, detectOverflow } from \"./createPopper.js\";\nimport eventListeners from \"./modifiers/eventListeners.js\";\nimport popperOffsets from \"./modifiers/popperOffsets.js\";\nimport computeStyles from \"./modifiers/computeStyles.js\";\nimport applyStyles from \"./modifiers/applyStyles.js\";\nvar defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles];\nvar createPopper = /*#__PURE__*/popperGenerator({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper, popperGenerator, defaultModifiers, detectOverflow };"],"mappings":"AAAA,SAASA,eAAT,EAA0BC,cAA1B,QAAgD,mBAAhD;AACA,OAAOC,cAAP,MAA2B,+BAA3B;AACA,OAAOC,aAAP,MAA0B,8BAA1B;AACA,OAAOC,aAAP,MAA0B,8BAA1B;AACA,OAAOC,WAAP,MAAwB,4BAAxB;AACA,IAAIC,gBAAgB,GAAG,CAACJ,cAAD,EAAiBC,aAAjB,EAAgCC,aAAhC,EAA+CC,WAA/C,CAAvB;AACA,IAAIE,YAAY,GAAG,aAAaP,eAAe,CAAC;EAC9CM,gBAAgB,EAAEA;AAD4B,CAAD,CAA/C,C,CAEI;;AAEJ,SAASC,YAAT,EAAuBP,eAAvB,EAAwCM,gBAAxC,EAA0DL,cAA1D"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/17f25d2c2f65a370c92b2b4c60b425f8.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/17f25d2c2f65a370c92b2b4c60b425f8.json new file mode 100644 index 00000000..ff213acf --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/17f25d2c2f65a370c92b2b4c60b425f8.json @@ -0,0 +1 @@ +{"ast":null,"code":"import * as React from 'react';\n/**\n * Iterates through children that are typically specified as `props.children`,\n * but only maps over children that are \"valid elements\".\n *\n * The mapFunction provided index will be normalised to the components mapped,\n * so an invalid component would not increase the index.\n *\n */\n\nfunction map(children, func) {\n let index = 0;\n return React.Children.map(children, child => /*#__PURE__*/React.isValidElement(child) ? func(child, index++) : child);\n}\n/**\n * Iterates through children that are \"valid elements\".\n *\n * The provided forEachFunc(child, index) will be called for each\n * leaf child with the index reflecting the position relative to \"valid components\".\n */\n\n\nfunction forEach(children, func) {\n let index = 0;\n React.Children.forEach(children, child => {\n if ( /*#__PURE__*/React.isValidElement(child)) func(child, index++);\n });\n}\n/**\n * Finds whether a component's `children` prop includes a React element of the\n * specified type.\n */\n\n\nfunction hasChildOfType(children, type) {\n return React.Children.toArray(children).some(child => /*#__PURE__*/React.isValidElement(child) && child.type === type);\n}\n\nexport { map, forEach, hasChildOfType };","map":{"version":3,"names":["React","map","children","func","index","Children","child","isValidElement","forEach","hasChildOfType","type","toArray","some"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-bootstrap/esm/ElementChildren.js"],"sourcesContent":["import * as React from 'react';\n/**\n * Iterates through children that are typically specified as `props.children`,\n * but only maps over children that are \"valid elements\".\n *\n * The mapFunction provided index will be normalised to the components mapped,\n * so an invalid component would not increase the index.\n *\n */\n\nfunction map(children, func) {\n let index = 0;\n return React.Children.map(children, child => /*#__PURE__*/React.isValidElement(child) ? func(child, index++) : child);\n}\n/**\n * Iterates through children that are \"valid elements\".\n *\n * The provided forEachFunc(child, index) will be called for each\n * leaf child with the index reflecting the position relative to \"valid components\".\n */\n\n\nfunction forEach(children, func) {\n let index = 0;\n React.Children.forEach(children, child => {\n if ( /*#__PURE__*/React.isValidElement(child)) func(child, index++);\n });\n}\n/**\n * Finds whether a component's `children` prop includes a React element of the\n * specified type.\n */\n\n\nfunction hasChildOfType(children, type) {\n return React.Children.toArray(children).some(child => /*#__PURE__*/React.isValidElement(child) && child.type === type);\n}\n\nexport { map, forEach, hasChildOfType };"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAASC,GAAT,CAAaC,QAAb,EAAuBC,IAAvB,EAA6B;EAC3B,IAAIC,KAAK,GAAG,CAAZ;EACA,OAAOJ,KAAK,CAACK,QAAN,CAAeJ,GAAf,CAAmBC,QAAnB,EAA6BI,KAAK,IAAI,aAAaN,KAAK,CAACO,cAAN,CAAqBD,KAArB,IAA8BH,IAAI,CAACG,KAAD,EAAQF,KAAK,EAAb,CAAlC,GAAqDE,KAAxG,CAAP;AACD;AACD;AACA;AACA;AACA;AACA;AACA;;;AAGA,SAASE,OAAT,CAAiBN,QAAjB,EAA2BC,IAA3B,EAAiC;EAC/B,IAAIC,KAAK,GAAG,CAAZ;EACAJ,KAAK,CAACK,QAAN,CAAeG,OAAf,CAAuBN,QAAvB,EAAiCI,KAAK,IAAI;IACxC,KAAK,aAAaN,KAAK,CAACO,cAAN,CAAqBD,KAArB,CAAlB,EAA+CH,IAAI,CAACG,KAAD,EAAQF,KAAK,EAAb,CAAJ;EAChD,CAFD;AAGD;AACD;AACA;AACA;AACA;;;AAGA,SAASK,cAAT,CAAwBP,QAAxB,EAAkCQ,IAAlC,EAAwC;EACtC,OAAOV,KAAK,CAACK,QAAN,CAAeM,OAAf,CAAuBT,QAAvB,EAAiCU,IAAjC,CAAsCN,KAAK,IAAI,aAAaN,KAAK,CAACO,cAAN,CAAqBD,KAArB,KAA+BA,KAAK,CAACI,IAAN,KAAeA,IAA1G,CAAP;AACD;;AAED,SAAST,GAAT,EAAcO,OAAd,EAAuBC,cAAvB"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/18327f6c5446d55750813132b5bdaca9.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/18327f6c5446d55750813132b5bdaca9.json new file mode 100644 index 00000000..c81d00d7 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/18327f6c5446d55750813132b5bdaca9.json @@ -0,0 +1 @@ +{"ast":null,"code":"import invariant from 'invariant';\n\nvar noop = function noop() {};\n\nfunction readOnlyPropType(handler, name) {\n return function (props, propName) {\n if (props[propName] !== undefined) {\n if (!props[handler]) {\n return new Error(\"You have provided a `\" + propName + \"` prop to `\" + name + \"` \" + (\"without an `\" + handler + \"` handler prop. This will render a read-only field. \") + (\"If the field should be mutable use `\" + defaultKey(propName) + \"`. \") + (\"Otherwise, set `\" + handler + \"`.\"));\n }\n }\n };\n}\n\nexport function uncontrolledPropTypes(controlledValues, displayName) {\n var propTypes = {};\n Object.keys(controlledValues).forEach(function (prop) {\n // add default propTypes for folks that use runtime checks\n propTypes[defaultKey(prop)] = noop;\n\n if (process.env.NODE_ENV !== 'production') {\n var handler = controlledValues[prop];\n !(typeof handler === 'string' && handler.trim().length) ? process.env.NODE_ENV !== \"production\" ? invariant(false, 'Uncontrollable - [%s]: the prop `%s` needs a valid handler key name in order to make it uncontrollable', displayName, prop) : invariant(false) : void 0;\n propTypes[prop] = readOnlyPropType(handler, displayName);\n }\n });\n return propTypes;\n}\nexport function isProp(props, prop) {\n return props[prop] !== undefined;\n}\nexport function defaultKey(key) {\n return 'default' + key.charAt(0).toUpperCase() + key.substr(1);\n}\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\nexport function canAcceptRef(component) {\n return !!component && (typeof component !== 'function' || component.prototype && component.prototype.isReactComponent);\n}","map":{"version":3,"names":["invariant","noop","readOnlyPropType","handler","name","props","propName","undefined","Error","defaultKey","uncontrolledPropTypes","controlledValues","displayName","propTypes","Object","keys","forEach","prop","process","env","NODE_ENV","trim","length","isProp","key","charAt","toUpperCase","substr","canAcceptRef","component","prototype","isReactComponent"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/uncontrollable/lib/esm/utils.js"],"sourcesContent":["import invariant from 'invariant';\n\nvar noop = function noop() {};\n\nfunction readOnlyPropType(handler, name) {\n return function (props, propName) {\n if (props[propName] !== undefined) {\n if (!props[handler]) {\n return new Error(\"You have provided a `\" + propName + \"` prop to `\" + name + \"` \" + (\"without an `\" + handler + \"` handler prop. This will render a read-only field. \") + (\"If the field should be mutable use `\" + defaultKey(propName) + \"`. \") + (\"Otherwise, set `\" + handler + \"`.\"));\n }\n }\n };\n}\n\nexport function uncontrolledPropTypes(controlledValues, displayName) {\n var propTypes = {};\n Object.keys(controlledValues).forEach(function (prop) {\n // add default propTypes for folks that use runtime checks\n propTypes[defaultKey(prop)] = noop;\n\n if (process.env.NODE_ENV !== 'production') {\n var handler = controlledValues[prop];\n !(typeof handler === 'string' && handler.trim().length) ? process.env.NODE_ENV !== \"production\" ? invariant(false, 'Uncontrollable - [%s]: the prop `%s` needs a valid handler key name in order to make it uncontrollable', displayName, prop) : invariant(false) : void 0;\n propTypes[prop] = readOnlyPropType(handler, displayName);\n }\n });\n return propTypes;\n}\nexport function isProp(props, prop) {\n return props[prop] !== undefined;\n}\nexport function defaultKey(key) {\n return 'default' + key.charAt(0).toUpperCase() + key.substr(1);\n}\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\nexport function canAcceptRef(component) {\n return !!component && (typeof component !== 'function' || component.prototype && component.prototype.isReactComponent);\n}"],"mappings":"AAAA,OAAOA,SAAP,MAAsB,WAAtB;;AAEA,IAAIC,IAAI,GAAG,SAASA,IAAT,GAAgB,CAAE,CAA7B;;AAEA,SAASC,gBAAT,CAA0BC,OAA1B,EAAmCC,IAAnC,EAAyC;EACvC,OAAO,UAAUC,KAAV,EAAiBC,QAAjB,EAA2B;IAChC,IAAID,KAAK,CAACC,QAAD,CAAL,KAAoBC,SAAxB,EAAmC;MACjC,IAAI,CAACF,KAAK,CAACF,OAAD,CAAV,EAAqB;QACnB,OAAO,IAAIK,KAAJ,CAAU,0BAA0BF,QAA1B,GAAqC,aAArC,GAAqDF,IAArD,GAA4D,IAA5D,IAAoE,iBAAiBD,OAAjB,GAA2B,sDAA/F,KAA0J,yCAAyCM,UAAU,CAACH,QAAD,CAAnD,GAAgE,KAA1N,KAAoO,qBAAqBH,OAArB,GAA+B,IAAnQ,CAAV,CAAP;MACD;IACF;EACF,CAND;AAOD;;AAED,OAAO,SAASO,qBAAT,CAA+BC,gBAA/B,EAAiDC,WAAjD,EAA8D;EACnE,IAAIC,SAAS,GAAG,EAAhB;EACAC,MAAM,CAACC,IAAP,CAAYJ,gBAAZ,EAA8BK,OAA9B,CAAsC,UAAUC,IAAV,EAAgB;IACpD;IACAJ,SAAS,CAACJ,UAAU,CAACQ,IAAD,CAAX,CAAT,GAA8BhB,IAA9B;;IAEA,IAAIiB,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;MACzC,IAAIjB,OAAO,GAAGQ,gBAAgB,CAACM,IAAD,CAA9B;MACA,EAAE,OAAOd,OAAP,KAAmB,QAAnB,IAA+BA,OAAO,CAACkB,IAAR,GAAeC,MAAhD,IAA0DJ,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAzB,GAAwCpB,SAAS,CAAC,KAAD,EAAQ,wGAAR,EAAkHY,WAAlH,EAA+HK,IAA/H,CAAjD,GAAwLjB,SAAS,CAAC,KAAD,CAA3P,GAAqQ,KAAK,CAA1Q;MACAa,SAAS,CAACI,IAAD,CAAT,GAAkBf,gBAAgB,CAACC,OAAD,EAAUS,WAAV,CAAlC;IACD;EACF,CATD;EAUA,OAAOC,SAAP;AACD;AACD,OAAO,SAASU,MAAT,CAAgBlB,KAAhB,EAAuBY,IAAvB,EAA6B;EAClC,OAAOZ,KAAK,CAACY,IAAD,CAAL,KAAgBV,SAAvB;AACD;AACD,OAAO,SAASE,UAAT,CAAoBe,GAApB,EAAyB;EAC9B,OAAO,YAAYA,GAAG,CAACC,MAAJ,CAAW,CAAX,EAAcC,WAAd,EAAZ,GAA0CF,GAAG,CAACG,MAAJ,CAAW,CAAX,CAAjD;AACD;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,OAAO,SAASC,YAAT,CAAsBC,SAAtB,EAAiC;EACtC,OAAO,CAAC,CAACA,SAAF,KAAgB,OAAOA,SAAP,KAAqB,UAArB,IAAmCA,SAAS,CAACC,SAAV,IAAuBD,SAAS,CAACC,SAAV,CAAoBC,gBAA9F,CAAP;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1839eb6b8cfc74782297b5aa8b9883b6.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1839eb6b8cfc74782297b5aa8b9883b6.json deleted file mode 100644 index 05341451..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1839eb6b8cfc74782297b5aa8b9883b6.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n class: \"text-center \",\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: Created: \n \n Entry Title \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,uBAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAW,KAAK,EAAC,eAAjB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1896401a1e2be3f5c8f57ec043995569.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1896401a1e2be3f5c8f57ec043995569.json new file mode 100644 index 00000000..35b83013 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/1896401a1e2be3f5c8f57ec043995569.json @@ -0,0 +1 @@ +{"ast":null,"code":"var path = require('../internals/path');\n\nvar global = require('../internals/global');\n\nvar isCallable = require('../internals/is-callable');\n\nvar aFunction = function (variable) {\n return isCallable(variable) ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace]) : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};","map":{"version":3,"names":["path","require","global","isCallable","aFunction","variable","undefined","module","exports","namespace","method","arguments","length"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/internals/get-built-in.js"],"sourcesContent":["var path = require('../internals/path');\nvar global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\n\nvar aFunction = function (variable) {\n return isCallable(variable) ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n"],"mappings":"AAAA,IAAIA,IAAI,GAAGC,OAAO,CAAC,mBAAD,CAAlB;;AACA,IAAIC,MAAM,GAAGD,OAAO,CAAC,qBAAD,CAApB;;AACA,IAAIE,UAAU,GAAGF,OAAO,CAAC,0BAAD,CAAxB;;AAEA,IAAIG,SAAS,GAAG,UAAUC,QAAV,EAAoB;EAClC,OAAOF,UAAU,CAACE,QAAD,CAAV,GAAuBA,QAAvB,GAAkCC,SAAzC;AACD,CAFD;;AAIAC,MAAM,CAACC,OAAP,GAAiB,UAAUC,SAAV,EAAqBC,MAArB,EAA6B;EAC5C,OAAOC,SAAS,CAACC,MAAV,GAAmB,CAAnB,GAAuBR,SAAS,CAACJ,IAAI,CAACS,SAAD,CAAL,CAAT,IAA8BL,SAAS,CAACF,MAAM,CAACO,SAAD,CAAP,CAA9D,GACHT,IAAI,CAACS,SAAD,CAAJ,IAAmBT,IAAI,CAACS,SAAD,CAAJ,CAAgBC,MAAhB,CAAnB,IAA8CR,MAAM,CAACO,SAAD,CAAN,IAAqBP,MAAM,CAACO,SAAD,CAAN,CAAkBC,MAAlB,CADvE;AAED,CAHD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/18b3624081745a58db596d4b0f6c0dfc.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/18b3624081745a58db596d4b0f6c0dfc.json deleted file mode 100644 index 8dd1baa7..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/18b3624081745a58db596d4b0f6c0dfc.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blog() {\n return /*#__PURE__*/_jsxDEV(Card, {\n style: {\n width: '40rem',\n height: '25rem'\n },\n children: /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n children: \"Blog title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Blog text\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = Blog;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blog\");","map":{"version":3,"names":["Button","Card","React","Blog","width","height"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function Blog() {\n return (\n\n \n \n Blog title\n \n Blog text\n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACJ,QAAC,IAAD;IAAM,KAAK,EAAE;MAAEC,KAAK,EAAE,OAAT;MAAkBC,MAAM,EAAC;IAAzB,CAAb;IAAA,uBAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF;IAAA;MAAA;MAAA;MAAA;IAAA;EAFF;IAAA;IAAA;IAAA;EAAA,QADI;AAYH;KAbuBF,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1907ad6c34d585b25eebad8eb2000de2.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1907ad6c34d585b25eebad8eb2000de2.json deleted file mode 100644 index 7c3df5b3..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1907ad6c34d585b25eebad8eb2000de2.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/Register/Register.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Form from 'react-bootstrap/Form';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Register() {\n return /*#__PURE__*/_jsxDEV(Form, {\n children: [/*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBasicEmail\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Email address\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"email\",\n placeholder: \"Enter email\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formLogin\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Login\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"login\",\n placeholder: \"Enter Login\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBlogTitle\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"blogTitle\",\n placeholder: \"Enter Blog Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 23,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formPassword\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 28,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"password\",\n placeholder: \"Enter Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 29,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 27,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n type: \"submit\",\n children: \"Submit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 32,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 9\n }, this);\n}\n_c = Register;\n\nvar _c;\n\n$RefreshReg$(_c, \"Register\");","map":{"version":3,"names":["Button","Form","Register"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/Register/Register.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button';\nimport Form from 'react-bootstrap/Form';\n\nexport default function Register() {\n return (\n
\n \n Email address\n \n \n \n \n Login\n \n \n \n \n Blog Title\n \n \n \n \n Password\n \n \n \n
\n );\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;;AAEA,eAAe,SAASC,QAAT,GAAoB;EAC/B,oBACI,QAAC,IAAD;IAAA,wBACA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,gBAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,OAAnB;QAA2B,WAAW,EAAC;MAAvC;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QADA,eAOI,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,WAAvC;MAAA,wBACA,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADA,eAEA,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,OAAnB;QAA2B,WAAW,EAAC;MAAvC;QAAA;QAAA;QAAA;MAAA,QAFA;IAAA;MAAA;MAAA;MAAA;IAAA,QAPJ,eAaI,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,eAAvC;MAAA,wBACA,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADA,eAEA,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,WAAnB;QAA+B,WAAW,EAAC;MAA3C;QAAA;QAAA;QAAA;MAAA,QAFA;IAAA;MAAA;MAAA;MAAA;IAAA,QAbJ,eAmBI,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,cAAvC;MAAA,wBACA,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADA,eAEA,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,UAAnB;QAA8B,WAAW,EAAC;MAA1C;QAAA;QAAA;QAAA;MAAA,QAFA;IAAA;MAAA;MAAA;MAAA;IAAA,QAnBJ,eAwBA,QAAC,MAAD;MAAQ,OAAO,EAAC,SAAhB;MAA0B,IAAI,EAAC,QAA/B;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAxBA;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AA8BH;KA/BuBA,Q"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/19906158c5b1b58d2ccd0b8b411830a6.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/19906158c5b1b58d2ccd0b8b411830a6.json deleted file mode 100644 index 983c2d75..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/19906158c5b1b58d2ccd0b8b411830a6.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blogs/Blogs.jsx\";\nimport Blog from \"../blog/blog\";\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blogs() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n class: \"d-flex flex-column align-items-center\",\n children: [/*#__PURE__*/_jsxDEV(Blog, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 6,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Blog, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Blog, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Blog, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 5,\n columnNumber: 9\n }, this);\n}\n_c = Blogs;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blogs\");","map":{"version":3,"names":["Blog","React","Blogs"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blogs/Blogs.jsx"],"sourcesContent":["import Blog from \"../blog/blog\";\nimport React from \"react\";\nexport default function Blogs() {\n return (\n
\n \n \n \n \n
\n )\n}"],"mappings":";AAAA,OAAOA,IAAP,MAAiB,cAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AACA,eAAe,SAASC,KAAT,GAAiB;EAC5B,oBACI;IAAK,KAAK,EAAC,uCAAX;IAAA,wBACI,QAAC,IAAD;MAAA;MAAA;MAAA;IAAA,QADJ,eAEI,QAAC,IAAD;MAAA;MAAA;MAAA;IAAA,QAFJ,eAGI,QAAC,IAAD;MAAA;MAAA;MAAA;IAAA,QAHJ,eAII,QAAC,IAAD;MAAA;MAAA;MAAA;IAAA,QAJJ;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAQH;KATuBA,K"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1a01ad5ca84dd9ede7ebbded7e3d5193.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1a01ad5ca84dd9ede7ebbded7e3d5193.json deleted file mode 100644 index c76985ce..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1a01ad5ca84dd9ede7ebbded7e3d5193.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n\nvar utils = require('../utils');\n\nvar normalizeHeaderName = require('../helpers/normalizeHeaderName');\n\nvar AxiosError = require('../core/AxiosError');\n\nvar transitionalDefaults = require('./transitional');\n\nvar toFormData = require('../helpers/toFormData');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('../adapters/xhr');\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = require('../adapters/http');\n }\n\n return adapter;\n}\n\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nvar defaults = {\n transitional: transitionalDefaults,\n adapter: getDefaultAdapter(),\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n\n if (utils.isFormData(data) || utils.isArrayBuffer(data) || utils.isBuffer(data) || utils.isStream(data) || utils.isFile(data) || utils.isBlob(data)) {\n return data;\n }\n\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n\n var isObjectPayload = utils.isObject(data);\n var contentType = headers && headers['Content-Type'];\n var isFileList;\n\n if ((isFileList = utils.isFileList(data)) || isObjectPayload && contentType === 'multipart/form-data') {\n var _FormData = this.env && this.env.FormData;\n\n return toFormData(isFileList ? {\n 'files[]': data\n } : data, _FormData && new _FormData());\n } else if (isObjectPayload || contentType === 'application/json') {\n setContentTypeIfUnset(headers, 'application/json');\n return stringifySafely(data);\n }\n\n return data;\n }],\n transformResponse: [function transformResponse(data) {\n var transitional = this.transitional || defaults.transitional;\n var silentJSONParsing = transitional && transitional.silentJSONParsing;\n var forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n var strictJSONParsing = !silentJSONParsing && this.responseType === 'json';\n\n if (strictJSONParsing || forcedJSONParsing && utils.isString(data) && data.length) {\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);\n }\n\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n maxContentLength: -1,\n maxBodyLength: -1,\n env: {\n FormData: require('./env/FormData')\n },\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n }\n};\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\nmodule.exports = defaults;","map":{"version":3,"names":["utils","require","normalizeHeaderName","AxiosError","transitionalDefaults","toFormData","DEFAULT_CONTENT_TYPE","setContentTypeIfUnset","headers","value","isUndefined","getDefaultAdapter","adapter","XMLHttpRequest","process","Object","prototype","toString","call","stringifySafely","rawValue","parser","encoder","isString","JSON","parse","trim","e","name","stringify","defaults","transitional","transformRequest","data","isFormData","isArrayBuffer","isBuffer","isStream","isFile","isBlob","isArrayBufferView","buffer","isURLSearchParams","isObjectPayload","isObject","contentType","isFileList","_FormData","env","FormData","transformResponse","silentJSONParsing","forcedJSONParsing","strictJSONParsing","responseType","length","from","ERR_BAD_RESPONSE","response","timeout","xsrfCookieName","xsrfHeaderName","maxContentLength","maxBodyLength","validateStatus","status","common","forEach","forEachMethodNoData","method","forEachMethodWithData","merge","module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/axios/lib/defaults/index.js"],"sourcesContent":["'use strict';\n\nvar utils = require('../utils');\nvar normalizeHeaderName = require('../helpers/normalizeHeaderName');\nvar AxiosError = require('../core/AxiosError');\nvar transitionalDefaults = require('./transitional');\nvar toFormData = require('../helpers/toFormData');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('../adapters/xhr');\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = require('../adapters/http');\n }\n return adapter;\n}\n\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nvar defaults = {\n\n transitional: transitionalDefaults,\n\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n\n var isObjectPayload = utils.isObject(data);\n var contentType = headers && headers['Content-Type'];\n\n var isFileList;\n\n if ((isFileList = utils.isFileList(data)) || (isObjectPayload && contentType === 'multipart/form-data')) {\n var _FormData = this.env && this.env.FormData;\n return toFormData(isFileList ? {'files[]': data} : data, _FormData && new _FormData());\n } else if (isObjectPayload || contentType === 'application/json') {\n setContentTypeIfUnset(headers, 'application/json');\n return stringifySafely(data);\n }\n\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n var transitional = this.transitional || defaults.transitional;\n var silentJSONParsing = transitional && transitional.silentJSONParsing;\n var forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n var strictJSONParsing = !silentJSONParsing && this.responseType === 'json';\n\n if (strictJSONParsing || (forcedJSONParsing && utils.isString(data) && data.length)) {\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n env: {\n FormData: require('./env/FormData')\n },\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n"],"mappings":"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"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1a9a2724f6be3f45c286e5f0addd6fca.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1a9a2724f6be3f45c286e5f0addd6fca.json deleted file mode 100644 index a1cd8c51..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1a9a2724f6be3f45c286e5f0addd6fca.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n\nvar isAbsoluteURL = require('../helpers/isAbsoluteURL');\n\nvar combineURLs = require('../helpers/combineURLs');\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n * @returns {string} The combined full path\n */\n\n\nmodule.exports = function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n\n return requestedURL;\n};","map":{"version":3,"names":["isAbsoluteURL","require","combineURLs","module","exports","buildFullPath","baseURL","requestedURL"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/axios/lib/core/buildFullPath.js"],"sourcesContent":["'use strict';\n\nvar isAbsoluteURL = require('../helpers/isAbsoluteURL');\nvar combineURLs = require('../helpers/combineURLs');\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n * @returns {string} The combined full path\n */\nmodule.exports = function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n};\n"],"mappings":"AAAA;;AAEA,IAAIA,aAAa,GAAGC,OAAO,CAAC,0BAAD,CAA3B;;AACA,IAAIC,WAAW,GAAGD,OAAO,CAAC,wBAAD,CAAzB;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACAE,MAAM,CAACC,OAAP,GAAiB,SAASC,aAAT,CAAuBC,OAAvB,EAAgCC,YAAhC,EAA8C;EAC7D,IAAID,OAAO,IAAI,CAACN,aAAa,CAACO,YAAD,CAA7B,EAA6C;IAC3C,OAAOL,WAAW,CAACI,OAAD,EAAUC,YAAV,CAAlB;EACD;;EACD,OAAOA,YAAP;AACD,CALD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1ab6de7ef7017b49d94dbd8677e32977.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1ab6de7ef7017b49d94dbd8677e32977.json deleted file mode 100644 index b92b7a75..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1ab6de7ef7017b49d94dbd8677e32977.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/index.js\";\nimport React from 'react';\nimport ReactDOM from 'react-dom/client';\nimport './index.css';\nimport App from './App';\nimport reportWebVitals from './reportWebVitals';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nconst root = ReactDOM.createRoot(document.getElementById('root'));\nroot.render( /*#__PURE__*/_jsxDEV(React.StrictMode, {\n children: /*#__PURE__*/_jsxDEV(App, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 5\n }, this)\n}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 3\n}, this));","map":{"version":3,"names":["React","ReactDOM","App","reportWebVitals","root","createRoot","document","getElementById","render"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/index.js"],"sourcesContent":["import React from 'react';\nimport ReactDOM from 'react-dom/client';\nimport './index.css';\nimport App from './App';\nimport reportWebVitals from './reportWebVitals';\n\nconst root = ReactDOM.createRoot(document.getElementById('root'));\nroot.render(\n \n \n \n);\n\n"],"mappings":";AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,OAAOC,QAAP,MAAqB,kBAArB;AACA,OAAO,aAAP;AACA,OAAOC,GAAP,MAAgB,OAAhB;AACA,OAAOC,eAAP,MAA4B,mBAA5B;;AAEA,MAAMC,IAAI,GAAGH,QAAQ,CAACI,UAAT,CAAoBC,QAAQ,CAACC,cAAT,CAAwB,MAAxB,CAApB,CAAb;AACAH,IAAI,CAACI,MAAL,eACE,QAAC,KAAD,CAAO,UAAP;EAAA,uBACE,QAAC,GAAD;IAAA;IAAA;IAAA;EAAA;AADF;EAAA;EAAA;EAAA;AAAA,QADF"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1b01e4101f88b5908bc2ed3ef8e8c818.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1b01e4101f88b5908bc2ed3ef8e8c818.json deleted file mode 100644 index 2993cf1f..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1b01e4101f88b5908bc2ed3ef8e8c818.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import * as React from 'react';\nconst SelectableContext = /*#__PURE__*/React.createContext(null);\nexport const makeEventKey = function (eventKey) {\n let href = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n if (eventKey != null) return String(eventKey);\n return href || null;\n};\nexport default SelectableContext;","map":{"version":3,"names":["React","SelectableContext","createContext","makeEventKey","eventKey","href","String"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@restart/ui/esm/SelectableContext.js"],"sourcesContent":["import * as React from 'react';\nconst SelectableContext = /*#__PURE__*/React.createContext(null);\nexport const makeEventKey = (eventKey, href = null) => {\n if (eventKey != null) return String(eventKey);\n return href || null;\n};\nexport default SelectableContext;"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,MAAMC,iBAAiB,GAAG,aAAaD,KAAK,CAACE,aAAN,CAAoB,IAApB,CAAvC;AACA,OAAO,MAAMC,YAAY,GAAG,UAACC,QAAD,EAA2B;EAAA,IAAhBC,IAAgB,uEAAT,IAAS;EACrD,IAAID,QAAQ,IAAI,IAAhB,EAAsB,OAAOE,MAAM,CAACF,QAAD,CAAb;EACtB,OAAOC,IAAI,IAAI,IAAf;AACD,CAHM;AAIP,eAAeJ,iBAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1c54be6cb402995549271ac9cd660c66.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1c54be6cb402995549271ac9cd660c66.json deleted file mode 100644 index af63f831..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1c54be6cb402995549271ac9cd660c66.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import classNames from 'classnames';\nimport * as React from 'react';\nimport { useContext, useMemo } from 'react';\nimport Feedback from './Feedback';\nimport FormCheckInput from './FormCheckInput';\nimport FormCheckLabel from './FormCheckLabel';\nimport FormContext from './FormContext';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport { hasChildOfType } from './ElementChildren';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { jsxs as _jsxs } from \"react/jsx-runtime\";\nconst FormCheck = /*#__PURE__*/React.forwardRef((_ref, ref) => {\n let {\n id,\n bsPrefix,\n bsSwitchPrefix,\n inline = false,\n disabled = false,\n isValid = false,\n isInvalid = false,\n feedbackTooltip = false,\n feedback,\n feedbackType,\n className,\n style,\n title = '',\n type = 'checkbox',\n label,\n children,\n // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n as = 'input',\n ...props\n } = _ref;\n bsPrefix = useBootstrapPrefix(bsPrefix, 'form-check');\n bsSwitchPrefix = useBootstrapPrefix(bsSwitchPrefix, 'form-switch');\n const {\n controlId\n } = useContext(FormContext);\n const innerFormContext = useMemo(() => ({\n controlId: id || controlId\n }), [controlId, id]);\n const hasLabel = !children && label != null && label !== false || hasChildOfType(children, FormCheckLabel);\n\n const input = /*#__PURE__*/_jsx(FormCheckInput, { ...props,\n type: type === 'switch' ? 'checkbox' : type,\n ref: ref,\n isValid: isValid,\n isInvalid: isInvalid,\n disabled: disabled,\n as: as\n });\n\n return /*#__PURE__*/_jsx(FormContext.Provider, {\n value: innerFormContext,\n children: /*#__PURE__*/_jsx(\"div\", {\n style: style,\n className: classNames(className, hasLabel && bsPrefix, inline && `${bsPrefix}-inline`, type === 'switch' && bsSwitchPrefix),\n children: children || /*#__PURE__*/_jsxs(_Fragment, {\n children: [input, hasLabel && /*#__PURE__*/_jsx(FormCheckLabel, {\n title: title,\n children: label\n }), feedback && /*#__PURE__*/_jsx(Feedback, {\n type: feedbackType,\n tooltip: feedbackTooltip,\n children: feedback\n })]\n })\n })\n });\n});\nFormCheck.displayName = 'FormCheck';\nexport default Object.assign(FormCheck, {\n Input: FormCheckInput,\n Label: FormCheckLabel\n});","map":{"version":3,"names":["classNames","React","useContext","useMemo","Feedback","FormCheckInput","FormCheckLabel","FormContext","useBootstrapPrefix","hasChildOfType","jsx","_jsx","Fragment","_Fragment","jsxs","_jsxs","FormCheck","forwardRef","ref","id","bsPrefix","bsSwitchPrefix","inline","disabled","isValid","isInvalid","feedbackTooltip","feedback","feedbackType","className","style","title","type","label","children","as","props","controlId","innerFormContext","hasLabel","input","Provider","value","tooltip","displayName","Object","assign","Input","Label"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-bootstrap/esm/FormCheck.js"],"sourcesContent":["import classNames from 'classnames';\nimport * as React from 'react';\nimport { useContext, useMemo } from 'react';\nimport Feedback from './Feedback';\nimport FormCheckInput from './FormCheckInput';\nimport FormCheckLabel from './FormCheckLabel';\nimport FormContext from './FormContext';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport { hasChildOfType } from './ElementChildren';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { jsxs as _jsxs } from \"react/jsx-runtime\";\nconst FormCheck = /*#__PURE__*/React.forwardRef(({\n id,\n bsPrefix,\n bsSwitchPrefix,\n inline = false,\n disabled = false,\n isValid = false,\n isInvalid = false,\n feedbackTooltip = false,\n feedback,\n feedbackType,\n className,\n style,\n title = '',\n type = 'checkbox',\n label,\n children,\n // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n as = 'input',\n ...props\n}, ref) => {\n bsPrefix = useBootstrapPrefix(bsPrefix, 'form-check');\n bsSwitchPrefix = useBootstrapPrefix(bsSwitchPrefix, 'form-switch');\n const {\n controlId\n } = useContext(FormContext);\n const innerFormContext = useMemo(() => ({\n controlId: id || controlId\n }), [controlId, id]);\n const hasLabel = !children && label != null && label !== false || hasChildOfType(children, FormCheckLabel);\n\n const input = /*#__PURE__*/_jsx(FormCheckInput, { ...props,\n type: type === 'switch' ? 'checkbox' : type,\n ref: ref,\n isValid: isValid,\n isInvalid: isInvalid,\n disabled: disabled,\n as: as\n });\n\n return /*#__PURE__*/_jsx(FormContext.Provider, {\n value: innerFormContext,\n children: /*#__PURE__*/_jsx(\"div\", {\n style: style,\n className: classNames(className, hasLabel && bsPrefix, inline && `${bsPrefix}-inline`, type === 'switch' && bsSwitchPrefix),\n children: children || /*#__PURE__*/_jsxs(_Fragment, {\n children: [input, hasLabel && /*#__PURE__*/_jsx(FormCheckLabel, {\n title: title,\n children: label\n }), feedback && /*#__PURE__*/_jsx(Feedback, {\n type: feedbackType,\n tooltip: feedbackTooltip,\n children: feedback\n })]\n })\n })\n });\n});\nFormCheck.displayName = 'FormCheck';\nexport default Object.assign(FormCheck, {\n Input: FormCheckInput,\n Label: FormCheckLabel\n});"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1c5680423e002c4218dc56f9b5f011be.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1c5680423e002c4218dc56f9b5f011be.json deleted file mode 100644 index 69d42ba0..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1c5680423e002c4218dc56f9b5f011be.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blog() {\n return /*#__PURE__*/_jsxDEV(Card, {\n style: {\n width: '18rem'\n },\n children: /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n children: \"Card Title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Some quick example text to build on the card title and make up the bulk of the card's content.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Go somewhere\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = Blog;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blog\");","map":{"version":3,"names":["Button","Card","React","Blog","width"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function Blog() {\n return (\n\n \n \n Card Title\n \n Some quick example text to build on the card title and make up the bulk of\n the card's content.\n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACJ,QAAC,IAAD;IAAM,KAAK,EAAE;MAAEC,KAAK,EAAE;IAAT,CAAb;IAAA,uBAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA;EAFF;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBD,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1c6406e740f80018ea0ceacaa342cfe9.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1c6406e740f80018ea0ceacaa342cfe9.json deleted file mode 100644 index accb4e1a..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1c6406e740f80018ea0ceacaa342cfe9.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import * as React from 'react'; // TODO: check\n\nconst context = /*#__PURE__*/React.createContext(null);\ncontext.displayName = 'NavbarContext';\nexport default context;","map":{"version":3,"names":["React","context","createContext","displayName"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-bootstrap/esm/NavbarContext.js"],"sourcesContent":["import * as React from 'react'; // TODO: check\n\nconst context = /*#__PURE__*/React.createContext(null);\ncontext.displayName = 'NavbarContext';\nexport default context;"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB,C,CAAgC;;AAEhC,MAAMC,OAAO,GAAG,aAAaD,KAAK,CAACE,aAAN,CAAoB,IAApB,CAA7B;AACAD,OAAO,CAACE,WAAR,GAAsB,eAAtB;AACA,eAAeF,OAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1d0c1deb8a97fe26fef33cd3af230334.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1d0c1deb8a97fe26fef33cd3af230334.json new file mode 100644 index 00000000..9d0bca80 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/1d0c1deb8a97fe26fef33cd3af230334.json @@ -0,0 +1 @@ +{"ast":null,"code":"export default !!(typeof window !== 'undefined' && window.document && window.document.createElement);","map":{"version":3,"names":["window","document","createElement"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/dom-helpers/esm/canUseDOM.js"],"sourcesContent":["export default !!(typeof window !== 'undefined' && window.document && window.document.createElement);"],"mappings":"AAAA,eAAe,CAAC,EAAE,OAAOA,MAAP,KAAkB,WAAlB,IAAiCA,MAAM,CAACC,QAAxC,IAAoDD,MAAM,CAACC,QAAP,CAAgBC,aAAtE,CAAhB"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1d1be5618ec0e1dcbdc6c7cc36fcb9d5.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1d1be5618ec0e1dcbdc6c7cc36fcb9d5.json new file mode 100644 index 00000000..3b050da3 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/1d1be5618ec0e1dcbdc6c7cc36fcb9d5.json @@ -0,0 +1 @@ +{"ast":null,"code":"var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar call = Function.prototype.call;\nmodule.exports = NATIVE_BIND ? call.bind(call) : function () {\n return call.apply(call, arguments);\n};","map":{"version":3,"names":["NATIVE_BIND","require","call","Function","prototype","module","exports","bind","apply","arguments"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/internals/function-call.js"],"sourcesContent":["var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar call = Function.prototype.call;\n\nmodule.exports = NATIVE_BIND ? call.bind(call) : function () {\n return call.apply(call, arguments);\n};\n"],"mappings":"AAAA,IAAIA,WAAW,GAAGC,OAAO,CAAC,mCAAD,CAAzB;;AAEA,IAAIC,IAAI,GAAGC,QAAQ,CAACC,SAAT,CAAmBF,IAA9B;AAEAG,MAAM,CAACC,OAAP,GAAiBN,WAAW,GAAGE,IAAI,CAACK,IAAL,CAAUL,IAAV,CAAH,GAAqB,YAAY;EAC3D,OAAOA,IAAI,CAACM,KAAL,CAAWN,IAAX,EAAiBO,SAAjB,CAAP;AACD,CAFD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1d6cd72a1389533e0e5fca2251b46cf8.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1d6cd72a1389533e0e5fca2251b46cf8.json deleted file mode 100644 index c488b453..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1d6cd72a1389533e0e5fca2251b46cf8.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { Router, Switch } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: /*#__PURE__*/_jsxDEV(Router, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 7\n }, this), /*#__PURE__*/_jsxDEV(Switch, {\n children: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["Router","Switch","BlogEntry","CreateEntry","Home","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n Router,\n Switch,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n return (\n
\n \n \n \n\n \n \n \n \n
\n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,MADF,EAEEC,MAFF,QAGO,kBAHP;AAKA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE;IAAA,uBACA,QAAC,MAAD;MAAA,wBACE,QAAC,MAAD;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,MAAD;QAAA,uBAEA,QAAC,IAAD;UAAA;UAAA;UAAA;QAAA;MAFA;QAAA;QAAA;QAAA;MAAA,QAFF;IAAA;MAAA;MAAA;MAAA;IAAA;EADA;IAAA;IAAA;IAAA;EAAA,QADF;AAYD;;KAbQA,G;AAeT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1d7f4c397d44acd3793408f6eb103ec7.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1d7f4c397d44acd3793408f6eb103ec7.json deleted file mode 100644 index 1ba1bfa0..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1d7f4c397d44acd3793408f6eb103ec7.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/topbar/TopBar.jsx\";\nimport \"./topbar.css\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Nav from 'react-b';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function TopBar() {\n return /*#__PURE__*/_jsxDEV(Navbar, {\n bg: \"light\",\n expand: \"lg\",\n children: /*#__PURE__*/_jsxDEV(Container, {\n children: [/*#__PURE__*/_jsxDEV(Navbar.Brand, {\n href: \"#home\",\n children: \"React-Bootstrap\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Navbar.Toggle, {\n \"aria-controls\": \"basic-navbar-nav\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Navbar.Collapse, {\n id: \"basic-navbar-nav\",\n children: /*#__PURE__*/_jsxDEV(Nav, {\n className: \"me-auto\",\n children: [/*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"#home\",\n children: \"Home\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"#link\",\n children: \"Link\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 1\n }, this);\n}\n_c = TopBar;\n\nvar _c;\n\n$RefreshReg$(_c, \"TopBar\");","map":{"version":3,"names":["Nav","TopBar"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/topbar/TopBar.jsx"],"sourcesContent":["import \"./topbar.css\"\nimport 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Nav from 'react-b'\nexport default function TopBar() {\n return (\n\n \n React-Bootstrap\n \n \n \n \n \n\n )\n}\n"],"mappings":";AAAA,OAAO,cAAP;AACA,OAAO,sCAAP;AAEA,OAAOA,GAAP,MAAgB,SAAhB;;AACA,eAAe,SAASC,MAAT,GAAkB;EAC7B,oBACJ,QAAC,MAAD;IAAQ,EAAE,EAAC,OAAX;IAAmB,MAAM,EAAC,IAA1B;IAAA,uBACE,QAAC,SAAD;MAAA,wBACE,QAAC,MAAD,CAAQ,KAAR;QAAc,IAAI,EAAC,OAAnB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,MAAD,CAAQ,MAAR;QAAe,iBAAc;MAA7B;QAAA;QAAA;QAAA;MAAA,QAFF,eAGE,QAAC,MAAD,CAAQ,QAAR;QAAiB,EAAE,EAAC,kBAApB;QAAA,uBACE,QAAC,GAAD;UAAK,SAAS,EAAC,SAAf;UAAA,wBACE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,OAAf;YAAA;UAAA;YAAA;YAAA;YAAA;UAAA,QADF,eAEE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,OAAf;YAAA;UAAA;YAAA;YAAA;YAAA;UAAA,QAFF;QAAA;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAHF;IAAA;MAAA;MAAA;MAAA;IAAA;EADF;IAAA;IAAA;IAAA;EAAA,QADI;AAcH;KAfuBA,M"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1df0d4e6505f2350429a0fe4d7c7b5f4.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1df0d4e6505f2350429a0fe4d7c7b5f4.json new file mode 100644 index 00000000..a6c4d207 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/1df0d4e6505f2350429a0fe4d7c7b5f4.json @@ -0,0 +1 @@ +{"ast":null,"code":"'use strict';\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\n\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};","map":{"version":3,"names":["module","exports","spread","callback","wrap","arr","apply"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/axios/lib/helpers/spread.js"],"sourcesContent":["'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n"],"mappings":"AAAA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACAA,MAAM,CAACC,OAAP,GAAiB,SAASC,MAAT,CAAgBC,QAAhB,EAA0B;EACzC,OAAO,SAASC,IAAT,CAAcC,GAAd,EAAmB;IACxB,OAAOF,QAAQ,CAACG,KAAT,CAAe,IAAf,EAAqBD,GAArB,CAAP;EACD,CAFD;AAGD,CAJD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1df4ca7009c37275d601a1710620cdee.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1df4ca7009c37275d601a1710620cdee.json deleted file mode 100644 index c6c3a6b4..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1df4ca7009c37275d601a1710620cdee.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import ReactDOM from 'react-dom';\nexport default function safeFindDOMNode(componentOrElement) {\n if (componentOrElement && 'setState' in componentOrElement) {\n return ReactDOM.findDOMNode(componentOrElement);\n }\n\n return componentOrElement != null ? componentOrElement : null;\n}","map":{"version":3,"names":["ReactDOM","safeFindDOMNode","componentOrElement","findDOMNode"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-bootstrap/esm/safeFindDOMNode.js"],"sourcesContent":["import ReactDOM from 'react-dom';\nexport default function safeFindDOMNode(componentOrElement) {\n if (componentOrElement && 'setState' in componentOrElement) {\n return ReactDOM.findDOMNode(componentOrElement);\n }\n\n return componentOrElement != null ? componentOrElement : null;\n}"],"mappings":"AAAA,OAAOA,QAAP,MAAqB,WAArB;AACA,eAAe,SAASC,eAAT,CAAyBC,kBAAzB,EAA6C;EAC1D,IAAIA,kBAAkB,IAAI,cAAcA,kBAAxC,EAA4D;IAC1D,OAAOF,QAAQ,CAACG,WAAT,CAAqBD,kBAArB,CAAP;EACD;;EAED,OAAOA,kBAAkB,IAAI,IAAtB,GAA6BA,kBAA7B,GAAkD,IAAzD;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1df8760d513e79025c8a8962489664e6.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1df8760d513e79025c8a8962489664e6.json new file mode 100644 index 00000000..6b6659bd --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/1df8760d513e79025c8a8962489664e6.json @@ -0,0 +1 @@ +{"ast":null,"code":"/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nvar warning = function () {};\n\nif (__DEV__) {\n var printWarning = function printWarning(format, args) {\n var len = arguments.length;\n args = new Array(len > 1 ? len - 1 : 0);\n\n for (var key = 1; key < len; key++) {\n args[key - 1] = arguments[key];\n }\n\n var argIndex = 0;\n var message = 'Warning: ' + format.replace(/%s/g, function () {\n return args[argIndex++];\n });\n\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n };\n\n warning = function (condition, format, args) {\n var len = arguments.length;\n args = new Array(len > 2 ? len - 2 : 0);\n\n for (var key = 2; key < len; key++) {\n args[key - 2] = arguments[key];\n }\n\n if (format === undefined) {\n throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'message argument');\n }\n\n if (!condition) {\n printWarning.apply(null, [format].concat(args));\n }\n };\n}\n\nmodule.exports = warning;","map":{"version":3,"names":["__DEV__","process","env","NODE_ENV","warning","printWarning","format","args","len","arguments","length","Array","key","argIndex","message","replace","console","error","Error","x","condition","undefined","apply","concat","module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/warning/warning.js"],"sourcesContent":["/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nvar warning = function() {};\n\nif (__DEV__) {\n var printWarning = function printWarning(format, args) {\n var len = arguments.length;\n args = new Array(len > 1 ? len - 1 : 0);\n for (var key = 1; key < len; key++) {\n args[key - 1] = arguments[key];\n }\n var argIndex = 0;\n var message = 'Warning: ' +\n format.replace(/%s/g, function() {\n return args[argIndex++];\n });\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n }\n\n warning = function(condition, format, args) {\n var len = arguments.length;\n args = new Array(len > 2 ? len - 2 : 0);\n for (var key = 2; key < len; key++) {\n args[key - 2] = arguments[key];\n }\n if (format === undefined) {\n throw new Error(\n '`warning(condition, format, ...args)` requires a warning ' +\n 'message argument'\n );\n }\n if (!condition) {\n printWarning.apply(null, [format].concat(args));\n }\n };\n}\n\nmodule.exports = warning;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AAEA;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,IAAIA,OAAO,GAAGC,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAvC;;AAEA,IAAIC,OAAO,GAAG,YAAW,CAAE,CAA3B;;AAEA,IAAIJ,OAAJ,EAAa;EACX,IAAIK,YAAY,GAAG,SAASA,YAAT,CAAsBC,MAAtB,EAA8BC,IAA9B,EAAoC;IACrD,IAAIC,GAAG,GAAGC,SAAS,CAACC,MAApB;IACAH,IAAI,GAAG,IAAII,KAAJ,CAAUH,GAAG,GAAG,CAAN,GAAUA,GAAG,GAAG,CAAhB,GAAoB,CAA9B,CAAP;;IACA,KAAK,IAAII,GAAG,GAAG,CAAf,EAAkBA,GAAG,GAAGJ,GAAxB,EAA6BI,GAAG,EAAhC,EAAoC;MAClCL,IAAI,CAACK,GAAG,GAAG,CAAP,CAAJ,GAAgBH,SAAS,CAACG,GAAD,CAAzB;IACD;;IACD,IAAIC,QAAQ,GAAG,CAAf;IACA,IAAIC,OAAO,GAAG,cACZR,MAAM,CAACS,OAAP,CAAe,KAAf,EAAsB,YAAW;MAC/B,OAAOR,IAAI,CAACM,QAAQ,EAAT,CAAX;IACD,CAFD,CADF;;IAIA,IAAI,OAAOG,OAAP,KAAmB,WAAvB,EAAoC;MAClCA,OAAO,CAACC,KAAR,CAAcH,OAAd;IACD;;IACD,IAAI;MACF;MACA;MACA;MACA,MAAM,IAAII,KAAJ,CAAUJ,OAAV,CAAN;IACD,CALD,CAKE,OAAOK,CAAP,EAAU,CAAE;EACf,CApBD;;EAsBAf,OAAO,GAAG,UAASgB,SAAT,EAAoBd,MAApB,EAA4BC,IAA5B,EAAkC;IAC1C,IAAIC,GAAG,GAAGC,SAAS,CAACC,MAApB;IACAH,IAAI,GAAG,IAAII,KAAJ,CAAUH,GAAG,GAAG,CAAN,GAAUA,GAAG,GAAG,CAAhB,GAAoB,CAA9B,CAAP;;IACA,KAAK,IAAII,GAAG,GAAG,CAAf,EAAkBA,GAAG,GAAGJ,GAAxB,EAA6BI,GAAG,EAAhC,EAAoC;MAClCL,IAAI,CAACK,GAAG,GAAG,CAAP,CAAJ,GAAgBH,SAAS,CAACG,GAAD,CAAzB;IACD;;IACD,IAAIN,MAAM,KAAKe,SAAf,EAA0B;MACxB,MAAM,IAAIH,KAAJ,CACF,8DACA,kBAFE,CAAN;IAID;;IACD,IAAI,CAACE,SAAL,EAAgB;MACdf,YAAY,CAACiB,KAAb,CAAmB,IAAnB,EAAyB,CAAChB,MAAD,EAASiB,MAAT,CAAgBhB,IAAhB,CAAzB;IACD;EACF,CAfD;AAgBD;;AAEDiB,MAAM,CAACC,OAAP,GAAiBrB,OAAjB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1e0c09386c34bdddc69afc028730fa17.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1e0c09386c34bdddc69afc028730fa17.json new file mode 100644 index 00000000..b3ec028e --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/1e0c09386c34bdddc69afc028730fa17.json @@ -0,0 +1 @@ +{"ast":null,"code":"import classNames from 'classnames';\nimport * as React from 'react';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst defaultProps = {\n fluid: false\n};\nconst Container = /*#__PURE__*/React.forwardRef((_ref, ref) => {\n let {\n bsPrefix,\n fluid,\n // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n as: Component = 'div',\n className,\n ...props\n } = _ref;\n const prefix = useBootstrapPrefix(bsPrefix, 'container');\n const suffix = typeof fluid === 'string' ? `-${fluid}` : '-fluid';\n return /*#__PURE__*/_jsx(Component, {\n ref: ref,\n ...props,\n className: classNames(className, fluid ? `${prefix}${suffix}` : prefix)\n });\n});\nContainer.displayName = 'Container';\nContainer.defaultProps = defaultProps;\nexport default Container;","map":{"version":3,"names":["classNames","React","useBootstrapPrefix","jsx","_jsx","defaultProps","fluid","Container","forwardRef","ref","bsPrefix","as","Component","className","props","prefix","suffix","displayName"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-bootstrap/esm/Container.js"],"sourcesContent":["import classNames from 'classnames';\nimport * as React from 'react';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst defaultProps = {\n fluid: false\n};\nconst Container = /*#__PURE__*/React.forwardRef(({\n bsPrefix,\n fluid,\n // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n as: Component = 'div',\n className,\n ...props\n}, ref) => {\n const prefix = useBootstrapPrefix(bsPrefix, 'container');\n const suffix = typeof fluid === 'string' ? `-${fluid}` : '-fluid';\n return /*#__PURE__*/_jsx(Component, {\n ref: ref,\n ...props,\n className: classNames(className, fluid ? `${prefix}${suffix}` : prefix)\n });\n});\nContainer.displayName = 'Container';\nContainer.defaultProps = defaultProps;\nexport default Container;"],"mappings":"AAAA,OAAOA,UAAP,MAAuB,YAAvB;AACA,OAAO,KAAKC,KAAZ,MAAuB,OAAvB;AACA,SAASC,kBAAT,QAAmC,iBAAnC;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,MAAMC,YAAY,GAAG;EACnBC,KAAK,EAAE;AADY,CAArB;AAGA,MAAMC,SAAS,GAAG,aAAaN,KAAK,CAACO,UAAN,CAAiB,OAO7CC,GAP6C,KAOrC;EAAA,IAPsC;IAC/CC,QAD+C;IAE/CJ,KAF+C;IAG/C;IACAK,EAAE,EAAEC,SAAS,GAAG,KAJ+B;IAK/CC,SAL+C;IAM/C,GAAGC;EAN4C,CAOtC;EACT,MAAMC,MAAM,GAAGb,kBAAkB,CAACQ,QAAD,EAAW,WAAX,CAAjC;EACA,MAAMM,MAAM,GAAG,OAAOV,KAAP,KAAiB,QAAjB,GAA6B,IAAGA,KAAM,EAAtC,GAA0C,QAAzD;EACA,OAAO,aAAaF,IAAI,CAACQ,SAAD,EAAY;IAClCH,GAAG,EAAEA,GAD6B;IAElC,GAAGK,KAF+B;IAGlCD,SAAS,EAAEb,UAAU,CAACa,SAAD,EAAYP,KAAK,GAAI,GAAES,MAAO,GAAEC,MAAO,EAAtB,GAA0BD,MAA3C;EAHa,CAAZ,CAAxB;AAKD,CAf8B,CAA/B;AAgBAR,SAAS,CAACU,WAAV,GAAwB,WAAxB;AACAV,SAAS,CAACF,YAAV,GAAyBA,YAAzB;AACA,eAAeE,SAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1e0d72dee34df639c6f2ace088e9b7f4.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1e0d72dee34df639c6f2ace088e9b7f4.json deleted file mode 100644 index 418b1e3a..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1e0d72dee34df639c6f2ace088e9b7f4.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}","map":{"version":3,"names":["process","env","NODE_ENV","module","exports","require"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-router/node_modules/react-is/index.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n"],"mappings":"AAAA;;AAEA,IAAIA,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;EACzCC,MAAM,CAACC,OAAP,GAAiBC,OAAO,CAAC,kCAAD,CAAxB;AACD,CAFD,MAEO;EACLF,MAAM,CAACC,OAAP,GAAiBC,OAAO,CAAC,+BAAD,CAAxB;AACD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1e147e80977f679056244ca7e86676c2.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1e147e80977f679056244ca7e86676c2.json deleted file mode 100644 index 600fe715..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1e147e80977f679056244ca7e86676c2.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var global = require('../internals/global'); // eslint-disable-next-line es-x/no-object-defineproperty -- safe\n\n\nvar defineProperty = Object.defineProperty;\n\nmodule.exports = function (key, value) {\n try {\n defineProperty(global, key, {\n value: value,\n configurable: true,\n writable: true\n });\n } catch (error) {\n global[key] = value;\n }\n\n return value;\n};","map":{"version":3,"names":["global","require","defineProperty","Object","module","exports","key","value","configurable","writable","error"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/define-global-property.js"],"sourcesContent":["var global = require('../internals/global');\n\n// eslint-disable-next-line es-x/no-object-defineproperty -- safe\nvar defineProperty = Object.defineProperty;\n\nmodule.exports = function (key, value) {\n try {\n defineProperty(global, key, { value: value, configurable: true, writable: true });\n } catch (error) {\n global[key] = value;\n } return value;\n};\n"],"mappings":"AAAA,IAAIA,MAAM,GAAGC,OAAO,CAAC,qBAAD,CAApB,C,CAEA;;;AACA,IAAIC,cAAc,GAAGC,MAAM,CAACD,cAA5B;;AAEAE,MAAM,CAACC,OAAP,GAAiB,UAAUC,GAAV,EAAeC,KAAf,EAAsB;EACrC,IAAI;IACFL,cAAc,CAACF,MAAD,EAASM,GAAT,EAAc;MAAEC,KAAK,EAAEA,KAAT;MAAgBC,YAAY,EAAE,IAA9B;MAAoCC,QAAQ,EAAE;IAA9C,CAAd,CAAd;EACD,CAFD,CAEE,OAAOC,KAAP,EAAc;IACdV,MAAM,CAACM,GAAD,CAAN,GAAcC,KAAd;EACD;;EAAC,OAAOA,KAAP;AACH,CAND"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1e204657c24be19891983412675c22fd.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1e204657c24be19891983412675c22fd.json deleted file mode 100644 index 5feb7805..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1e204657c24be19891983412675c22fd.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/home/Home.jsx\",\n _s = $RefreshSig$();\n\nimport React, { useEffect } from \"react\";\nimport Blogs from \"../../blogs/Blogs\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Home() {\n _s();\n\n const [blogEntries, setBlogEntires] = useState([]);\n useEffect(() => {});\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: /*#__PURE__*/_jsxDEV(Blogs, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 9\n }, this);\n}\n\n_s(Home, \"yti199pok4XmZHclVyomQs5sHLo=\");\n\n_c = Home;\n\nvar _c;\n\n$RefreshReg$(_c, \"Home\");","map":{"version":3,"names":["React","useEffect","Blogs","Home","blogEntries","setBlogEntires","useState"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/home/Home.jsx"],"sourcesContent":["import React, { useEffect } from \"react\";\n\nimport Blogs from \"../../blogs/Blogs\";\nexport default function Home() {\n const [blogEntries, setBlogEntires] = useState([]);\n\n useEffect(()=>{\n \n })\n return (\n
\n\n \n
\n )\n}"],"mappings":";;;AAAA,OAAOA,KAAP,IAAgBC,SAAhB,QAAiC,OAAjC;AAEA,OAAOC,KAAP,MAAkB,mBAAlB;;AACA,eAAe,SAASC,IAAT,GAAgB;EAAA;;EAC3B,MAAM,CAACC,WAAD,EAAcC,cAAd,IAAgCC,QAAQ,CAAC,EAAD,CAA9C;EAEAL,SAAS,CAAC,MAAI,CAEb,CAFQ,CAAT;EAGA,oBACI;IAAA,uBAEI,QAAC,KAAD;MAAA;MAAA;MAAA;IAAA;EAFJ;IAAA;IAAA;IAAA;EAAA,QADJ;AAMH;;GAZuBE,I;;KAAAA,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1f01a22c0a8bd5a34a71aa32082dc338.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1f01a22c0a8bd5a34a71aa32082dc338.json new file mode 100644 index 00000000..a5676280 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/1f01a22c0a8bd5a34a71aa32082dc338.json @@ -0,0 +1 @@ +{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/index.js\";\nimport App from './App';\nimport React from 'react';\nimport ReactDOM from 'react-dom/client';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nconst root = ReactDOM.createRoot(document.getElementById('root'));\nroot.render( /*#__PURE__*/_jsxDEV(React.StrictMode, {\n children: /*#__PURE__*/_jsxDEV(App, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 5\n }, this)\n}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 3\n}, this));","map":{"version":3,"names":["App","React","ReactDOM","root","createRoot","document","getElementById","render"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/src/index.js"],"sourcesContent":["import App from './App';\nimport React from 'react';\nimport ReactDOM from 'react-dom/client';\n\nconst root = ReactDOM.createRoot(document.getElementById('root'));\nroot.render(\n \n \n \n);\n\n"],"mappings":";AAAA,OAAOA,GAAP,MAAgB,OAAhB;AACA,OAAOC,KAAP,MAAkB,OAAlB;AACA,OAAOC,QAAP,MAAqB,kBAArB;;AAEA,MAAMC,IAAI,GAAGD,QAAQ,CAACE,UAAT,CAAoBC,QAAQ,CAACC,cAAT,CAAwB,MAAxB,CAApB,CAAb;AACAH,IAAI,CAACI,MAAL,eACE,QAAC,KAAD,CAAO,UAAP;EAAA,uBACE,QAAC,GAAD;IAAA;IAAA;IAAA;EAAA;AADF;EAAA;EAAA;EAAA;AAAA,QADF"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1f47140af348c76a9069907bd349c6ec.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1f47140af348c76a9069907bd349c6ec.json deleted file mode 100644 index 66931985..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1f47140af348c76a9069907bd349c6ec.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { Route, Router, Switch } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: /*#__PURE__*/_jsxDEV(Router, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 7\n }, this), /*#__PURE__*/_jsxDEV(Switch, {\n children: [/*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/\",\n children: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/login\",\n children: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/\",\n children: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 25,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 24,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 5\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["Route","Router","Switch","BlogEntry","CreateEntry","Home","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n Route,\n Router,\n Switch,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n return (\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,KADF,EAEEC,MAFF,EAGEC,MAHF,QAIO,kBAJP;AAMA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE;IAAA,uBACA,QAAC,MAAD;MAAA,wBACE,QAAC,MAAD;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,MAAD;QAAA,wBACE,QAAC,KAAD;UAAO,KAAK,MAAZ;UAAa,IAAI,EAAC,GAAlB;UAAA,uBACA,QAAC,IAAD;YAAA;YAAA;YAAA;UAAA;QADA;UAAA;UAAA;UAAA;QAAA,QADF,eAIE,QAAC,KAAD;UAAO,KAAK,MAAZ;UAAa,IAAI,EAAC,QAAlB;UAAA,uBACA,QAAC,IAAD;YAAA;YAAA;YAAA;UAAA;QADA;UAAA;UAAA;UAAA;QAAA,QAJF,eAOE,QAAC,KAAD;UAAO,KAAK,MAAZ;UAAa,IAAI,EAAC,GAAlB;UAAA,uBACA,QAAC,IAAD;YAAA;YAAA;YAAA;UAAA;QADA;UAAA;UAAA;UAAA;QAAA,QAPF;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF;IAAA;MAAA;MAAA;MAAA;IAAA;EADA;IAAA;IAAA;IAAA;EAAA,QADF;AAkBD;;KAnBQA,G;AAqBT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/1f5d03535c757980958c9e9d8cf0fe1e.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/1f5d03535c757980958c9e9d8cf0fe1e.json deleted file mode 100644 index f0cb2b5a..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/1f5d03535c757980958c9e9d8cf0fe1e.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar bind = FunctionPrototype.bind;\nvar call = FunctionPrototype.call;\nvar uncurryThis = NATIVE_BIND && bind.bind(call, call);\nmodule.exports = NATIVE_BIND ? function (fn) {\n return fn && uncurryThis(fn);\n} : function (fn) {\n return fn && function () {\n return call.apply(fn, arguments);\n };\n};","map":{"version":3,"names":["NATIVE_BIND","require","FunctionPrototype","Function","prototype","bind","call","uncurryThis","module","exports","fn","apply","arguments"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/function-uncurry-this.js"],"sourcesContent":["var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar bind = FunctionPrototype.bind;\nvar call = FunctionPrototype.call;\nvar uncurryThis = NATIVE_BIND && bind.bind(call, call);\n\nmodule.exports = NATIVE_BIND ? function (fn) {\n return fn && uncurryThis(fn);\n} : function (fn) {\n return fn && function () {\n return call.apply(fn, arguments);\n };\n};\n"],"mappings":"AAAA,IAAIA,WAAW,GAAGC,OAAO,CAAC,mCAAD,CAAzB;;AAEA,IAAIC,iBAAiB,GAAGC,QAAQ,CAACC,SAAjC;AACA,IAAIC,IAAI,GAAGH,iBAAiB,CAACG,IAA7B;AACA,IAAIC,IAAI,GAAGJ,iBAAiB,CAACI,IAA7B;AACA,IAAIC,WAAW,GAAGP,WAAW,IAAIK,IAAI,CAACA,IAAL,CAAUC,IAAV,EAAgBA,IAAhB,CAAjC;AAEAE,MAAM,CAACC,OAAP,GAAiBT,WAAW,GAAG,UAAUU,EAAV,EAAc;EAC3C,OAAOA,EAAE,IAAIH,WAAW,CAACG,EAAD,CAAxB;AACD,CAF2B,GAExB,UAAUA,EAAV,EAAc;EAChB,OAAOA,EAAE,IAAI,YAAY;IACvB,OAAOJ,IAAI,CAACK,KAAL,CAAWD,EAAX,EAAeE,SAAf,CAAP;EACD,CAFD;AAGD,CAND"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/203b613946b2fa1c42c5ef8906810ec9.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/203b613946b2fa1c42c5ef8906810ec9.json new file mode 100644 index 00000000..f76f6e4f --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/203b613946b2fa1c42c5ef8906810ec9.json @@ -0,0 +1 @@ +{"ast":null,"code":"var $ = require('../internals/export');\n\nvar global = require('../internals/global'); // `globalThis` object\n// https://tc39.es/ecma262/#sec-globalthis\n\n\n$({\n global: true\n}, {\n globalThis: global\n});","map":{"version":3,"names":["$","require","global","globalThis"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/modules/es.global-this.js"],"sourcesContent":["var $ = require('../internals/export');\nvar global = require('../internals/global');\n\n// `globalThis` object\n// https://tc39.es/ecma262/#sec-globalthis\n$({ global: true }, {\n globalThis: global\n});\n"],"mappings":"AAAA,IAAIA,CAAC,GAAGC,OAAO,CAAC,qBAAD,CAAf;;AACA,IAAIC,MAAM,GAAGD,OAAO,CAAC,qBAAD,CAApB,C,CAEA;AACA;;;AACAD,CAAC,CAAC;EAAEE,MAAM,EAAE;AAAV,CAAD,EAAmB;EAClBC,UAAU,EAAED;AADM,CAAnB,CAAD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/20cc87ea59320b56102d0cc79a6bbd46.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/20cc87ea59320b56102d0cc79a6bbd46.json new file mode 100644 index 00000000..ec1d3097 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/20cc87ea59320b56102d0cc79a6bbd46.json @@ -0,0 +1 @@ +{"ast":null,"code":"module.exports = {};","map":{"version":3,"names":["module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/internals/path.js"],"sourcesContent":["module.exports = {};\n"],"mappings":"AAAAA,MAAM,CAACC,OAAP,GAAiB,EAAjB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/20f031439cca4e093982c7ff7492ba6f.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/20f031439cca4e093982c7ff7492ba6f.json new file mode 100644 index 00000000..19579a7e --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/20f031439cca4e093982c7ff7492ba6f.json @@ -0,0 +1 @@ +{"ast":null,"code":"import PropTypes from 'prop-types';\nexport var timeoutsShape = process.env.NODE_ENV !== 'production' ? PropTypes.oneOfType([PropTypes.number, PropTypes.shape({\n enter: PropTypes.number,\n exit: PropTypes.number,\n appear: PropTypes.number\n}).isRequired]) : null;\nexport var classNamesShape = process.env.NODE_ENV !== 'production' ? PropTypes.oneOfType([PropTypes.string, PropTypes.shape({\n enter: PropTypes.string,\n exit: PropTypes.string,\n active: PropTypes.string\n}), PropTypes.shape({\n enter: PropTypes.string,\n enterDone: PropTypes.string,\n enterActive: PropTypes.string,\n exit: PropTypes.string,\n exitDone: PropTypes.string,\n exitActive: PropTypes.string\n})]) : null;","map":{"version":3,"names":["PropTypes","timeoutsShape","process","env","NODE_ENV","oneOfType","number","shape","enter","exit","appear","isRequired","classNamesShape","string","active","enterDone","enterActive","exitDone","exitActive"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-transition-group/esm/utils/PropTypes.js"],"sourcesContent":["import PropTypes from 'prop-types';\nexport var timeoutsShape = process.env.NODE_ENV !== 'production' ? PropTypes.oneOfType([PropTypes.number, PropTypes.shape({\n enter: PropTypes.number,\n exit: PropTypes.number,\n appear: PropTypes.number\n}).isRequired]) : null;\nexport var classNamesShape = process.env.NODE_ENV !== 'production' ? PropTypes.oneOfType([PropTypes.string, PropTypes.shape({\n enter: PropTypes.string,\n exit: PropTypes.string,\n active: PropTypes.string\n}), PropTypes.shape({\n enter: PropTypes.string,\n enterDone: PropTypes.string,\n enterActive: PropTypes.string,\n exit: PropTypes.string,\n exitDone: PropTypes.string,\n exitActive: PropTypes.string\n})]) : null;"],"mappings":"AAAA,OAAOA,SAAP,MAAsB,YAAtB;AACA,OAAO,IAAIC,aAAa,GAAGC,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAzB,GAAwCJ,SAAS,CAACK,SAAV,CAAoB,CAACL,SAAS,CAACM,MAAX,EAAmBN,SAAS,CAACO,KAAV,CAAgB;EACxHC,KAAK,EAAER,SAAS,CAACM,MADuG;EAExHG,IAAI,EAAET,SAAS,CAACM,MAFwG;EAGxHI,MAAM,EAAEV,SAAS,CAACM;AAHsG,CAAhB,EAIvGK,UAJoF,CAApB,CAAxC,GAIT,IAJX;AAKP,OAAO,IAAIC,eAAe,GAAGV,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAzB,GAAwCJ,SAAS,CAACK,SAAV,CAAoB,CAACL,SAAS,CAACa,MAAX,EAAmBb,SAAS,CAACO,KAAV,CAAgB;EAC1HC,KAAK,EAAER,SAAS,CAACa,MADyG;EAE1HJ,IAAI,EAAET,SAAS,CAACa,MAF0G;EAG1HC,MAAM,EAAEd,SAAS,CAACa;AAHwG,CAAhB,CAAnB,EAIrFb,SAAS,CAACO,KAAV,CAAgB;EAClBC,KAAK,EAAER,SAAS,CAACa,MADC;EAElBE,SAAS,EAAEf,SAAS,CAACa,MAFH;EAGlBG,WAAW,EAAEhB,SAAS,CAACa,MAHL;EAIlBJ,IAAI,EAAET,SAAS,CAACa,MAJE;EAKlBI,QAAQ,EAAEjB,SAAS,CAACa,MALF;EAMlBK,UAAU,EAAElB,SAAS,CAACa;AANJ,CAAhB,CAJqF,CAApB,CAAxC,GAWtB,IAXA"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/21e864e9d78b6a47ee879224e260b315.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/21e864e9d78b6a47ee879224e260b315.json deleted file mode 100644 index 8716c96a..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/21e864e9d78b6a47ee879224e260b315.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { BrowserRouter, Route } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: /*#__PURE__*/_jsxDEV(Router, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["BrowserRouter","Route","BlogEntry","CreateEntry","Home","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n BrowserRouter,\n Route,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n return (\n
\n \n \n \n \n
\n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,aADF,EAEEC,KAFF,QAGO,kBAHP;AAKA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE;IAAA,uBACA,QAAC,MAAD;MAAA,wBACA,QAAC,MAAD;QAAA;QAAA;QAAA;MAAA,QADA,eAEA,QAAC,IAAD;QAAA;QAAA;QAAA;MAAA,QAFA;IAAA;MAAA;MAAA;MAAA;IAAA;EADA;IAAA;IAAA;IAAA;EAAA,QADF;AAQD;;KATQA,G;AAWT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/221494c8d6f3fe21cdb36af869559662.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/221494c8d6f3fe21cdb36af869559662.json deleted file mode 100644 index 37a49daa..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/221494c8d6f3fe21cdb36af869559662.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var supportedTransforms = /^((translate|rotate|scale)(X|Y|Z|3d)?|matrix(3d)?|perspective|skew(X|Y)?)$/i;\nexport default function isTransform(value) {\n return !!(value && supportedTransforms.test(value));\n}","map":{"version":3,"names":["supportedTransforms","isTransform","value","test"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/dom-helpers/esm/isTransform.js"],"sourcesContent":["var supportedTransforms = /^((translate|rotate|scale)(X|Y|Z|3d)?|matrix(3d)?|perspective|skew(X|Y)?)$/i;\nexport default function isTransform(value) {\n return !!(value && supportedTransforms.test(value));\n}"],"mappings":"AAAA,IAAIA,mBAAmB,GAAG,6EAA1B;AACA,eAAe,SAASC,WAAT,CAAqBC,KAArB,EAA4B;EACzC,OAAO,CAAC,EAAEA,KAAK,IAAIF,mBAAmB,CAACG,IAApB,CAAyBD,KAAzB,CAAX,CAAR;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2233cb69fd3dd4893a115b37876e6eb2.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2233cb69fd3dd4893a115b37876e6eb2.json deleted file mode 100644 index 673a93ca..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2233cb69fd3dd4893a115b37876e6eb2.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import getWindow from \"./getWindow.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isHTMLElement, isShadowRoot } from \"./instanceOf.js\";\nimport isTableElement from \"./isTableElement.js\";\nimport getParentNode from \"./getParentNode.js\";\n\nfunction getTrueOffsetParent(element) {\n if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837\n getComputedStyle(element).position === 'fixed') {\n return null;\n }\n\n return element.offsetParent;\n} // `.offsetParent` reports `null` for fixed elements, while absolute elements\n// return the containing block\n\n\nfunction getContainingBlock(element) {\n var isFirefox = navigator.userAgent.toLowerCase().indexOf('firefox') !== -1;\n var isIE = navigator.userAgent.indexOf('Trident') !== -1;\n\n if (isIE && isHTMLElement(element)) {\n // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport\n var elementCss = getComputedStyle(element);\n\n if (elementCss.position === 'fixed') {\n return null;\n }\n }\n\n var currentNode = getParentNode(element);\n\n if (isShadowRoot(currentNode)) {\n currentNode = currentNode.host;\n }\n\n while (isHTMLElement(currentNode) && ['html', 'body'].indexOf(getNodeName(currentNode)) < 0) {\n var css = getComputedStyle(currentNode); // This is non-exhaustive but covers the most common CSS properties that\n // create a containing block.\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n\n if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') {\n return currentNode;\n } else {\n currentNode = currentNode.parentNode;\n }\n }\n\n return null;\n} // Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\n\n\nexport default function getOffsetParent(element) {\n var window = getWindow(element);\n var offsetParent = getTrueOffsetParent(element);\n\n while (offsetParent && isTableElement(offsetParent) && getComputedStyle(offsetParent).position === 'static') {\n offsetParent = getTrueOffsetParent(offsetParent);\n }\n\n if (offsetParent && (getNodeName(offsetParent) === 'html' || getNodeName(offsetParent) === 'body' && getComputedStyle(offsetParent).position === 'static')) {\n return window;\n }\n\n return offsetParent || getContainingBlock(element) || window;\n}","map":{"version":3,"names":["getWindow","getNodeName","getComputedStyle","isHTMLElement","isShadowRoot","isTableElement","getParentNode","getTrueOffsetParent","element","position","offsetParent","getContainingBlock","isFirefox","navigator","userAgent","toLowerCase","indexOf","isIE","elementCss","currentNode","host","css","transform","perspective","contain","willChange","filter","parentNode","getOffsetParent","window"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js"],"sourcesContent":["import getWindow from \"./getWindow.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isHTMLElement, isShadowRoot } from \"./instanceOf.js\";\nimport isTableElement from \"./isTableElement.js\";\nimport getParentNode from \"./getParentNode.js\";\n\nfunction getTrueOffsetParent(element) {\n if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837\n getComputedStyle(element).position === 'fixed') {\n return null;\n }\n\n return element.offsetParent;\n} // `.offsetParent` reports `null` for fixed elements, while absolute elements\n// return the containing block\n\n\nfunction getContainingBlock(element) {\n var isFirefox = navigator.userAgent.toLowerCase().indexOf('firefox') !== -1;\n var isIE = navigator.userAgent.indexOf('Trident') !== -1;\n\n if (isIE && isHTMLElement(element)) {\n // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport\n var elementCss = getComputedStyle(element);\n\n if (elementCss.position === 'fixed') {\n return null;\n }\n }\n\n var currentNode = getParentNode(element);\n\n if (isShadowRoot(currentNode)) {\n currentNode = currentNode.host;\n }\n\n while (isHTMLElement(currentNode) && ['html', 'body'].indexOf(getNodeName(currentNode)) < 0) {\n var css = getComputedStyle(currentNode); // This is non-exhaustive but covers the most common CSS properties that\n // create a containing block.\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n\n if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') {\n return currentNode;\n } else {\n currentNode = currentNode.parentNode;\n }\n }\n\n return null;\n} // Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\n\n\nexport default function getOffsetParent(element) {\n var window = getWindow(element);\n var offsetParent = getTrueOffsetParent(element);\n\n while (offsetParent && isTableElement(offsetParent) && getComputedStyle(offsetParent).position === 'static') {\n offsetParent = getTrueOffsetParent(offsetParent);\n }\n\n if (offsetParent && (getNodeName(offsetParent) === 'html' || getNodeName(offsetParent) === 'body' && getComputedStyle(offsetParent).position === 'static')) {\n return window;\n }\n\n return offsetParent || getContainingBlock(element) || window;\n}"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/226847d511fc2feadcba1de0665ff480.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/226847d511fc2feadcba1de0665ff480.json new file mode 100644 index 00000000..737cf964 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/226847d511fc2feadcba1de0665ff480.json @@ -0,0 +1 @@ +{"ast":null,"code":"import { useEffect } from 'react';\nimport useCommittedRef from './useCommittedRef';\n\nfunction useRafInterval(fn, ms, paused) {\n if (paused === void 0) {\n paused = false;\n }\n\n var handle;\n var start = new Date().getTime();\n var fnRef = useCommittedRef(fn); // this ref is necessary b/c useEffect will sometimes miss a paused toggle\n // orphaning a setTimeout chain in the aether, so relying on it's refresh logic is not reliable.\n\n var pausedRef = useCommittedRef(paused);\n\n function loop() {\n var current = new Date().getTime();\n var delta = current - start;\n if (pausedRef.current) return;\n\n if (delta >= ms && fnRef.current) {\n fnRef.current();\n start = new Date().getTime();\n }\n\n cancelAnimationFrame(handle);\n handle = requestAnimationFrame(loop);\n }\n\n useEffect(function () {\n handle = requestAnimationFrame(loop);\n return function () {\n return cancelAnimationFrame(handle);\n };\n }, []);\n}\n\nexport default useRafInterval;","map":{"version":3,"names":["useEffect","useCommittedRef","useRafInterval","fn","ms","paused","handle","start","Date","getTime","fnRef","pausedRef","loop","current","delta","cancelAnimationFrame","requestAnimationFrame"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/@restart/hooks/esm/useRafInterval.js"],"sourcesContent":["import { useEffect } from 'react';\nimport useCommittedRef from './useCommittedRef';\n\nfunction useRafInterval(fn, ms, paused) {\n if (paused === void 0) {\n paused = false;\n }\n\n var handle;\n var start = new Date().getTime();\n var fnRef = useCommittedRef(fn); // this ref is necessary b/c useEffect will sometimes miss a paused toggle\n // orphaning a setTimeout chain in the aether, so relying on it's refresh logic is not reliable.\n\n var pausedRef = useCommittedRef(paused);\n\n function loop() {\n var current = new Date().getTime();\n var delta = current - start;\n if (pausedRef.current) return;\n\n if (delta >= ms && fnRef.current) {\n fnRef.current();\n start = new Date().getTime();\n }\n\n cancelAnimationFrame(handle);\n handle = requestAnimationFrame(loop);\n }\n\n useEffect(function () {\n handle = requestAnimationFrame(loop);\n return function () {\n return cancelAnimationFrame(handle);\n };\n }, []);\n}\n\nexport default useRafInterval;"],"mappings":"AAAA,SAASA,SAAT,QAA0B,OAA1B;AACA,OAAOC,eAAP,MAA4B,mBAA5B;;AAEA,SAASC,cAAT,CAAwBC,EAAxB,EAA4BC,EAA5B,EAAgCC,MAAhC,EAAwC;EACtC,IAAIA,MAAM,KAAK,KAAK,CAApB,EAAuB;IACrBA,MAAM,GAAG,KAAT;EACD;;EAED,IAAIC,MAAJ;EACA,IAAIC,KAAK,GAAG,IAAIC,IAAJ,GAAWC,OAAX,EAAZ;EACA,IAAIC,KAAK,GAAGT,eAAe,CAACE,EAAD,CAA3B,CAPsC,CAOL;EACjC;;EAEA,IAAIQ,SAAS,GAAGV,eAAe,CAACI,MAAD,CAA/B;;EAEA,SAASO,IAAT,GAAgB;IACd,IAAIC,OAAO,GAAG,IAAIL,IAAJ,GAAWC,OAAX,EAAd;IACA,IAAIK,KAAK,GAAGD,OAAO,GAAGN,KAAtB;IACA,IAAII,SAAS,CAACE,OAAd,EAAuB;;IAEvB,IAAIC,KAAK,IAAIV,EAAT,IAAeM,KAAK,CAACG,OAAzB,EAAkC;MAChCH,KAAK,CAACG,OAAN;MACAN,KAAK,GAAG,IAAIC,IAAJ,GAAWC,OAAX,EAAR;IACD;;IAEDM,oBAAoB,CAACT,MAAD,CAApB;IACAA,MAAM,GAAGU,qBAAqB,CAACJ,IAAD,CAA9B;EACD;;EAEDZ,SAAS,CAAC,YAAY;IACpBM,MAAM,GAAGU,qBAAqB,CAACJ,IAAD,CAA9B;IACA,OAAO,YAAY;MACjB,OAAOG,oBAAoB,CAACT,MAAD,CAA3B;IACD,CAFD;EAGD,CALQ,EAKN,EALM,CAAT;AAMD;;AAED,eAAeJ,cAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/22aa49ca5df91d5873f49219ab88f77e.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/22aa49ca5df91d5873f49219ab88f77e.json deleted file mode 100644 index 4e66a074..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/22aa49ca5df91d5873f49219ab88f77e.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var isProduction = process.env.NODE_ENV === 'production';\n\nfunction warning(condition, message) {\n if (!isProduction) {\n if (condition) {\n return;\n }\n\n var text = \"Warning: \" + message;\n\n if (typeof console !== 'undefined') {\n console.warn(text);\n }\n\n try {\n throw Error(text);\n } catch (x) {}\n }\n}\n\nexport default warning;","map":{"version":3,"names":["isProduction","process","env","NODE_ENV","warning","condition","message","text","console","warn","Error","x"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/tiny-warning/dist/tiny-warning.esm.js"],"sourcesContent":["var isProduction = process.env.NODE_ENV === 'production';\nfunction warning(condition, message) {\n if (!isProduction) {\n if (condition) {\n return;\n }\n\n var text = \"Warning: \" + message;\n\n if (typeof console !== 'undefined') {\n console.warn(text);\n }\n\n try {\n throw Error(text);\n } catch (x) {}\n }\n}\n\nexport default warning;\n"],"mappings":"AAAA,IAAIA,YAAY,GAAGC,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA5C;;AACA,SAASC,OAAT,CAAiBC,SAAjB,EAA4BC,OAA5B,EAAqC;EACnC,IAAI,CAACN,YAAL,EAAmB;IACjB,IAAIK,SAAJ,EAAe;MACb;IACD;;IAED,IAAIE,IAAI,GAAG,cAAcD,OAAzB;;IAEA,IAAI,OAAOE,OAAP,KAAmB,WAAvB,EAAoC;MAClCA,OAAO,CAACC,IAAR,CAAaF,IAAb;IACD;;IAED,IAAI;MACF,MAAMG,KAAK,CAACH,IAAD,CAAX;IACD,CAFD,CAEE,OAAOI,CAAP,EAAU,CAAE;EACf;AACF;;AAED,eAAeP,OAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/240cab7b12e29308d1155f774a26982c.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/240cab7b12e29308d1155f774a26982c.json deleted file mode 100644 index f0bd84da..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/240cab7b12e29308d1155f774a26982c.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import css from 'dom-helpers/css';\nimport { dataAttr } from './DataKey';\nimport getBodyScrollbarWidth from './getScrollbarWidth';\nexport const OPEN_DATA_ATTRIBUTE = dataAttr('modal-open');\n/**\n * Manages a stack of Modals as well as ensuring\n * body scrolling is is disabled and padding accounted for\n */\n\nclass ModalManager {\n constructor() {\n let {\n ownerDocument,\n handleContainerOverflow = true,\n isRTL = false\n } = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n this.handleContainerOverflow = handleContainerOverflow;\n this.isRTL = isRTL;\n this.modals = [];\n this.ownerDocument = ownerDocument;\n }\n\n getScrollbarWidth() {\n return getBodyScrollbarWidth(this.ownerDocument);\n }\n\n getElement() {\n return (this.ownerDocument || document).body;\n }\n\n setModalAttributes(_modal) {// For overriding\n }\n\n removeModalAttributes(_modal) {// For overriding\n }\n\n setContainerStyle(containerState) {\n const style = {\n overflow: 'hidden'\n }; // we are only interested in the actual `style` here\n // because we will override it\n\n const paddingProp = this.isRTL ? 'paddingLeft' : 'paddingRight';\n const container = this.getElement();\n containerState.style = {\n overflow: container.style.overflow,\n [paddingProp]: container.style[paddingProp]\n };\n\n if (containerState.scrollBarWidth) {\n // use computed style, here to get the real padding\n // to add our scrollbar width\n style[paddingProp] = `${parseInt(css(container, paddingProp) || '0', 10) + containerState.scrollBarWidth}px`;\n }\n\n container.setAttribute(OPEN_DATA_ATTRIBUTE, '');\n css(container, style);\n }\n\n reset() {\n [...this.modals].forEach(m => this.remove(m));\n }\n\n removeContainerStyle(containerState) {\n const container = this.getElement();\n container.removeAttribute(OPEN_DATA_ATTRIBUTE);\n Object.assign(container.style, containerState.style);\n }\n\n add(modal) {\n let modalIdx = this.modals.indexOf(modal);\n\n if (modalIdx !== -1) {\n return modalIdx;\n }\n\n modalIdx = this.modals.length;\n this.modals.push(modal);\n this.setModalAttributes(modal);\n\n if (modalIdx !== 0) {\n return modalIdx;\n }\n\n this.state = {\n scrollBarWidth: this.getScrollbarWidth(),\n style: {}\n };\n\n if (this.handleContainerOverflow) {\n this.setContainerStyle(this.state);\n }\n\n return modalIdx;\n }\n\n remove(modal) {\n const modalIdx = this.modals.indexOf(modal);\n\n if (modalIdx === -1) {\n return;\n }\n\n this.modals.splice(modalIdx, 1); // if that was the last modal in a container,\n // clean up the container\n\n if (!this.modals.length && this.handleContainerOverflow) {\n this.removeContainerStyle(this.state);\n }\n\n this.removeModalAttributes(modal);\n }\n\n isTopModal(modal) {\n return !!this.modals.length && this.modals[this.modals.length - 1] === modal;\n }\n\n}\n\nexport default ModalManager;","map":{"version":3,"names":["css","dataAttr","getBodyScrollbarWidth","OPEN_DATA_ATTRIBUTE","ModalManager","constructor","ownerDocument","handleContainerOverflow","isRTL","modals","getScrollbarWidth","getElement","document","body","setModalAttributes","_modal","removeModalAttributes","setContainerStyle","containerState","style","overflow","paddingProp","container","scrollBarWidth","parseInt","setAttribute","reset","forEach","m","remove","removeContainerStyle","removeAttribute","Object","assign","add","modal","modalIdx","indexOf","length","push","state","splice","isTopModal"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@restart/ui/esm/ModalManager.js"],"sourcesContent":["import css from 'dom-helpers/css';\nimport { dataAttr } from './DataKey';\nimport getBodyScrollbarWidth from './getScrollbarWidth';\nexport const OPEN_DATA_ATTRIBUTE = dataAttr('modal-open');\n/**\n * Manages a stack of Modals as well as ensuring\n * body scrolling is is disabled and padding accounted for\n */\n\nclass ModalManager {\n constructor({\n ownerDocument,\n handleContainerOverflow = true,\n isRTL = false\n } = {}) {\n this.handleContainerOverflow = handleContainerOverflow;\n this.isRTL = isRTL;\n this.modals = [];\n this.ownerDocument = ownerDocument;\n }\n\n getScrollbarWidth() {\n return getBodyScrollbarWidth(this.ownerDocument);\n }\n\n getElement() {\n return (this.ownerDocument || document).body;\n }\n\n setModalAttributes(_modal) {// For overriding\n }\n\n removeModalAttributes(_modal) {// For overriding\n }\n\n setContainerStyle(containerState) {\n const style = {\n overflow: 'hidden'\n }; // we are only interested in the actual `style` here\n // because we will override it\n\n const paddingProp = this.isRTL ? 'paddingLeft' : 'paddingRight';\n const container = this.getElement();\n containerState.style = {\n overflow: container.style.overflow,\n [paddingProp]: container.style[paddingProp]\n };\n\n if (containerState.scrollBarWidth) {\n // use computed style, here to get the real padding\n // to add our scrollbar width\n style[paddingProp] = `${parseInt(css(container, paddingProp) || '0', 10) + containerState.scrollBarWidth}px`;\n }\n\n container.setAttribute(OPEN_DATA_ATTRIBUTE, '');\n css(container, style);\n }\n\n reset() {\n [...this.modals].forEach(m => this.remove(m));\n }\n\n removeContainerStyle(containerState) {\n const container = this.getElement();\n container.removeAttribute(OPEN_DATA_ATTRIBUTE);\n Object.assign(container.style, containerState.style);\n }\n\n add(modal) {\n let modalIdx = this.modals.indexOf(modal);\n\n if (modalIdx !== -1) {\n return modalIdx;\n }\n\n modalIdx = this.modals.length;\n this.modals.push(modal);\n this.setModalAttributes(modal);\n\n if (modalIdx !== 0) {\n return modalIdx;\n }\n\n this.state = {\n scrollBarWidth: this.getScrollbarWidth(),\n style: {}\n };\n\n if (this.handleContainerOverflow) {\n this.setContainerStyle(this.state);\n }\n\n return modalIdx;\n }\n\n remove(modal) {\n const modalIdx = this.modals.indexOf(modal);\n\n if (modalIdx === -1) {\n return;\n }\n\n this.modals.splice(modalIdx, 1); // if that was the last modal in a container,\n // clean up the container\n\n if (!this.modals.length && this.handleContainerOverflow) {\n this.removeContainerStyle(this.state);\n }\n\n this.removeModalAttributes(modal);\n }\n\n isTopModal(modal) {\n return !!this.modals.length && this.modals[this.modals.length - 1] === modal;\n }\n\n}\n\nexport default ModalManager;"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/24b3929ee6921012b44080620efe1244.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/24b3929ee6921012b44080620efe1244.json deleted file mode 100644 index 5fc1781a..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/24b3929ee6921012b44080620efe1244.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';\n\nvar printWarning = function () {};\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\n var loggedTypeFailures = {};\n\n var has = require('./lib/has');\n\n printWarning = function (text) {\n var message = 'Warning: ' + text;\n\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {\n /**/\n }\n };\n}\n/**\n * Assert that the values match with the type specs.\n * Error messages are memorized and will only be shown once.\n *\n * @param {object} typeSpecs Map of name to a ReactPropType\n * @param {object} values Runtime values that need to be type-checked\n * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n * @param {string} componentName Name of the component for error messages.\n * @param {?Function} getStack Returns the component stack.\n * @private\n */\n\n\nfunction checkPropTypes(typeSpecs, values, location, componentName, getStack) {\n if (process.env.NODE_ENV !== 'production') {\n for (var typeSpecName in typeSpecs) {\n if (has(typeSpecs, typeSpecName)) {\n var error; // Prop type validation may throw. In case they do, we don't want to\n // fail the render phase where it didn't fail before. So we log it.\n // After these have been cleaned up, we'll let them throw.\n\n try {\n // This is intentionally an invariant that gets caught. It's the same\n // behavior as without this statement except with a better message.\n if (typeof typeSpecs[typeSpecName] !== 'function') {\n var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');\n err.name = 'Invariant Violation';\n throw err;\n }\n\n error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);\n } catch (ex) {\n error = ex;\n }\n\n if (error && !(error instanceof Error)) {\n printWarning((componentName || 'React class') + ': type specification of ' + location + ' `' + typeSpecName + '` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).');\n }\n\n if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n // Only monitor this failure once because there tends to be a lot of the\n // same error.\n loggedTypeFailures[error.message] = true;\n var stack = getStack ? getStack() : '';\n printWarning('Failed ' + location + ' type: ' + error.message + (stack != null ? stack : ''));\n }\n }\n }\n }\n}\n/**\n * Resets warning cache when testing.\n *\n * @private\n */\n\n\ncheckPropTypes.resetWarningCache = function () {\n if (process.env.NODE_ENV !== 'production') {\n loggedTypeFailures = {};\n }\n};\n\nmodule.exports = checkPropTypes;","map":{"version":3,"names":["printWarning","process","env","NODE_ENV","ReactPropTypesSecret","require","loggedTypeFailures","has","text","message","console","error","Error","x","checkPropTypes","typeSpecs","values","location","componentName","getStack","typeSpecName","err","name","ex","stack","resetWarningCache","module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/prop-types/checkPropTypes.js"],"sourcesContent":["/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar printWarning = function() {};\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n var loggedTypeFailures = {};\n var has = require('./lib/has');\n\n printWarning = function(text) {\n var message = 'Warning: ' + text;\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) { /**/ }\n };\n}\n\n/**\n * Assert that the values match with the type specs.\n * Error messages are memorized and will only be shown once.\n *\n * @param {object} typeSpecs Map of name to a ReactPropType\n * @param {object} values Runtime values that need to be type-checked\n * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n * @param {string} componentName Name of the component for error messages.\n * @param {?Function} getStack Returns the component stack.\n * @private\n */\nfunction checkPropTypes(typeSpecs, values, location, componentName, getStack) {\n if (process.env.NODE_ENV !== 'production') {\n for (var typeSpecName in typeSpecs) {\n if (has(typeSpecs, typeSpecName)) {\n var error;\n // Prop type validation may throw. In case they do, we don't want to\n // fail the render phase where it didn't fail before. So we log it.\n // After these have been cleaned up, we'll let them throw.\n try {\n // This is intentionally an invariant that gets caught. It's the same\n // behavior as without this statement except with a better message.\n if (typeof typeSpecs[typeSpecName] !== 'function') {\n var err = Error(\n (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' +\n 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' +\n 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.'\n );\n err.name = 'Invariant Violation';\n throw err;\n }\n error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);\n } catch (ex) {\n error = ex;\n }\n if (error && !(error instanceof Error)) {\n printWarning(\n (componentName || 'React class') + ': type specification of ' +\n location + ' `' + typeSpecName + '` is invalid; the type checker ' +\n 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' +\n 'You may have forgotten to pass an argument to the type checker ' +\n 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' +\n 'shape all require an argument).'\n );\n }\n if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n // Only monitor this failure once because there tends to be a lot of the\n // same error.\n loggedTypeFailures[error.message] = true;\n\n var stack = getStack ? getStack() : '';\n\n printWarning(\n 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '')\n );\n }\n }\n }\n }\n}\n\n/**\n * Resets warning cache when testing.\n *\n * @private\n */\ncheckPropTypes.resetWarningCache = function() {\n if (process.env.NODE_ENV !== 'production') {\n loggedTypeFailures = {};\n }\n}\n\nmodule.exports = checkPropTypes;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AAEA;;AAEA,IAAIA,YAAY,GAAG,YAAW,CAAE,CAAhC;;AAEA,IAAIC,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;EACzC,IAAIC,oBAAoB,GAAGC,OAAO,CAAC,4BAAD,CAAlC;;EACA,IAAIC,kBAAkB,GAAG,EAAzB;;EACA,IAAIC,GAAG,GAAGF,OAAO,CAAC,WAAD,CAAjB;;EAEAL,YAAY,GAAG,UAASQ,IAAT,EAAe;IAC5B,IAAIC,OAAO,GAAG,cAAcD,IAA5B;;IACA,IAAI,OAAOE,OAAP,KAAmB,WAAvB,EAAoC;MAClCA,OAAO,CAACC,KAAR,CAAcF,OAAd;IACD;;IACD,IAAI;MACF;MACA;MACA;MACA,MAAM,IAAIG,KAAJ,CAAUH,OAAV,CAAN;IACD,CALD,CAKE,OAAOI,CAAP,EAAU;MAAE;IAAM;EACrB,CAXD;AAYD;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA,SAASC,cAAT,CAAwBC,SAAxB,EAAmCC,MAAnC,EAA2CC,QAA3C,EAAqDC,aAArD,EAAoEC,QAApE,EAA8E;EAC5E,IAAIlB,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;IACzC,KAAK,IAAIiB,YAAT,IAAyBL,SAAzB,EAAoC;MAClC,IAAIR,GAAG,CAACQ,SAAD,EAAYK,YAAZ,CAAP,EAAkC;QAChC,IAAIT,KAAJ,CADgC,CAEhC;QACA;QACA;;QACA,IAAI;UACF;UACA;UACA,IAAI,OAAOI,SAAS,CAACK,YAAD,CAAhB,KAAmC,UAAvC,EAAmD;YACjD,IAAIC,GAAG,GAAGT,KAAK,CACb,CAACM,aAAa,IAAI,aAAlB,IAAmC,IAAnC,GAA0CD,QAA1C,GAAqD,SAArD,GAAiEG,YAAjE,GAAgF,gBAAhF,GACA,8EADA,GACiF,OAAOL,SAAS,CAACK,YAAD,CADjG,GACkH,IADlH,GAEA,+FAHa,CAAf;YAKAC,GAAG,CAACC,IAAJ,GAAW,qBAAX;YACA,MAAMD,GAAN;UACD;;UACDV,KAAK,GAAGI,SAAS,CAACK,YAAD,CAAT,CAAwBJ,MAAxB,EAAgCI,YAAhC,EAA8CF,aAA9C,EAA6DD,QAA7D,EAAuE,IAAvE,EAA6Eb,oBAA7E,CAAR;QACD,CAbD,CAaE,OAAOmB,EAAP,EAAW;UACXZ,KAAK,GAAGY,EAAR;QACD;;QACD,IAAIZ,KAAK,IAAI,EAAEA,KAAK,YAAYC,KAAnB,CAAb,EAAwC;UACtCZ,YAAY,CACV,CAACkB,aAAa,IAAI,aAAlB,IAAmC,0BAAnC,GACAD,QADA,GACW,IADX,GACkBG,YADlB,GACiC,iCADjC,GAEA,2DAFA,GAE8D,OAAOT,KAFrE,GAE6E,IAF7E,GAGA,iEAHA,GAIA,gEAJA,GAKA,iCANU,CAAZ;QAQD;;QACD,IAAIA,KAAK,YAAYC,KAAjB,IAA0B,EAAED,KAAK,CAACF,OAAN,IAAiBH,kBAAnB,CAA9B,EAAsE;UACpE;UACA;UACAA,kBAAkB,CAACK,KAAK,CAACF,OAAP,CAAlB,GAAoC,IAApC;UAEA,IAAIe,KAAK,GAAGL,QAAQ,GAAGA,QAAQ,EAAX,GAAgB,EAApC;UAEAnB,YAAY,CACV,YAAYiB,QAAZ,GAAuB,SAAvB,GAAmCN,KAAK,CAACF,OAAzC,IAAoDe,KAAK,IAAI,IAAT,GAAgBA,KAAhB,GAAwB,EAA5E,CADU,CAAZ;QAGD;MACF;IACF;EACF;AACF;AAED;AACA;AACA;AACA;AACA;;;AACAV,cAAc,CAACW,iBAAf,GAAmC,YAAW;EAC5C,IAAIxB,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;IACzCG,kBAAkB,GAAG,EAArB;EACD;AACF,CAJD;;AAMAoB,MAAM,CAACC,OAAP,GAAiBb,cAAjB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2535a9d1d9753a02719f7697349be9ad.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2535a9d1d9753a02719f7697349be9ad.json new file mode 100644 index 00000000..720947af --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/2535a9d1d9753a02719f7697349be9ad.json @@ -0,0 +1 @@ +{"ast":null,"code":"import React from 'react';\nexport default React.createContext(null);","map":{"version":3,"names":["React","createContext"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-transition-group/esm/TransitionGroupContext.js"],"sourcesContent":["import React from 'react';\nexport default React.createContext(null);"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,eAAeA,KAAK,CAACC,aAAN,CAAoB,IAApB,CAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2557d7fa2f37c100908fafdc4f0df6b3.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2557d7fa2f37c100908fafdc4f0df6b3.json new file mode 100644 index 00000000..555cde64 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/2557d7fa2f37c100908fafdc4f0df6b3.json @@ -0,0 +1 @@ +{"ast":null,"code":"module.exports = require('./lib/axios');","map":{"version":3,"names":["module","exports","require"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/axios/index.js"],"sourcesContent":["module.exports = require('./lib/axios');"],"mappings":"AAAAA,MAAM,CAACC,OAAP,GAAiBC,OAAO,CAAC,aAAD,CAAxB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/25e42a54301a5fd472df0713edee1f2b.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/25e42a54301a5fd472df0713edee1f2b.json deleted file mode 100644 index d67b8f12..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/25e42a54301a5fd472df0713edee1f2b.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blog() {\n return /*#__PURE__*/_jsxDEV(Card, {\n style: {\n width: '50rem',\n height: '50rem'\n },\n children: /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n children: \"Blog title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Blog text\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = Blog;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blog\");","map":{"version":3,"names":["Button","Card","React","Blog","width","height"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function Blog() {\n return (\n\n \n \n Blog title\n \n Blog text\n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACJ,QAAC,IAAD;IAAM,KAAK,EAAE;MAAEC,KAAK,EAAE,OAAT;MAAkBC,MAAM,EAAC;IAAzB,CAAb;IAAA,uBAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF;IAAA;MAAA;MAAA;MAAA;IAAA;EAFF;IAAA;IAAA;IAAA;EAAA,QADI;AAYH;KAbuBF,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2613f43dbf67eec7d11f3cfd340e6a46.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2613f43dbf67eec7d11f3cfd340e6a46.json deleted file mode 100644 index dad265ca..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2613f43dbf67eec7d11f3cfd340e6a46.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import logger from \"../modules/logger/index.js\";\nvar name = \"webpack-dev-server\"; // default level is set on the client side, so it does not need\n// to be set by the CLI or API\n\nvar defaultLevel = \"info\"; // options new options, merge with old options\n\n/**\n * @param {false | true | \"none\" | \"error\" | \"warn\" | \"info\" | \"log\" | \"verbose\"} level\n * @returns {void}\n */\n\nfunction setLogLevel(level) {\n logger.configureDefaultLogger({\n level: level\n });\n}\n\nsetLogLevel(defaultLevel);\nvar log = logger.getLogger(name);\nexport { log, setLogLevel };","map":{"version":3,"names":["logger","name","defaultLevel","setLogLevel","level","configureDefaultLogger","log","getLogger"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/webpack-dev-server/client/utils/log.js"],"sourcesContent":["import logger from \"../modules/logger/index.js\";\nvar name = \"webpack-dev-server\"; // default level is set on the client side, so it does not need\n// to be set by the CLI or API\n\nvar defaultLevel = \"info\"; // options new options, merge with old options\n\n/**\n * @param {false | true | \"none\" | \"error\" | \"warn\" | \"info\" | \"log\" | \"verbose\"} level\n * @returns {void}\n */\n\nfunction setLogLevel(level) {\n logger.configureDefaultLogger({\n level: level\n });\n}\n\nsetLogLevel(defaultLevel);\nvar log = logger.getLogger(name);\nexport { log, setLogLevel };"],"mappings":"AAAA,OAAOA,MAAP,MAAmB,4BAAnB;AACA,IAAIC,IAAI,GAAG,oBAAX,C,CAAiC;AACjC;;AAEA,IAAIC,YAAY,GAAG,MAAnB,C,CAA2B;;AAE3B;AACA;AACA;AACA;;AAEA,SAASC,WAAT,CAAqBC,KAArB,EAA4B;EAC1BJ,MAAM,CAACK,sBAAP,CAA8B;IAC5BD,KAAK,EAAEA;EADqB,CAA9B;AAGD;;AAEDD,WAAW,CAACD,YAAD,CAAX;AACA,IAAII,GAAG,GAAGN,MAAM,CAACO,SAAP,CAAiBN,IAAjB,CAAV;AACA,SAASK,GAAT,EAAcH,WAAd"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2683c99d63db566f222bc184129de3ec.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2683c99d63db566f222bc184129de3ec.json deleted file mode 100644 index 3218d65f..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2683c99d63db566f222bc184129de3ec.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center\",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center\",\n children: [\" \", /*#__PURE__*/_jsxDEV(\"h1\", {\n children: \"Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 38\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n class: \"text-center\",\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: Created: \n \n

Entry Title

\n \n Entry content\n \n \n \n
\n
\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,aAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,aAAlB;QAAA,6BAAiC;UAAA;QAAA;UAAA;UAAA;UAAA;QAAA,QAAjC;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAW,KAAK,EAAC,aAAjB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/26d482f3432ea991d89c45e19b3d04ca.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/26d482f3432ea991d89c45e19b3d04ca.json deleted file mode 100644 index 0cb88178..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/26d482f3432ea991d89c45e19b3d04ca.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = utils.isStandardBrowserEnv() ? // Standard browser envs have full support of the APIs needed to test\n// whether the request URL is of the same origin as current location.\nfunction standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href); // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: urlParsingNode.pathname.charAt(0) === '/' ? urlParsingNode.pathname : '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n\n return function isURLSameOrigin(requestURL) {\n var parsed = utils.isString(requestURL) ? resolveURL(requestURL) : requestURL;\n return parsed.protocol === originURL.protocol && parsed.host === originURL.host;\n };\n}() : // Non standard browser envs (web workers, react-native) lack needed support.\nfunction nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n}();","map":{"version":3,"names":["utils","require","module","exports","isStandardBrowserEnv","standardBrowserEnv","msie","test","navigator","userAgent","urlParsingNode","document","createElement","originURL","resolveURL","url","href","setAttribute","protocol","replace","host","search","hash","hostname","port","pathname","charAt","window","location","isURLSameOrigin","requestURL","parsed","isString","nonStandardBrowserEnv"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/axios/lib/helpers/isURLSameOrigin.js"],"sourcesContent":["'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n"],"mappings":"AAAA;;AAEA,IAAIA,KAAK,GAAGC,OAAO,CAAC,YAAD,CAAnB;;AAEAC,MAAM,CAACC,OAAP,GACEH,KAAK,CAACI,oBAAN,KAEA;AACA;AACG,SAASC,kBAAT,GAA8B;EAC7B,IAAIC,IAAI,GAAG,kBAAkBC,IAAlB,CAAuBC,SAAS,CAACC,SAAjC,CAAX;EACA,IAAIC,cAAc,GAAGC,QAAQ,CAACC,aAAT,CAAuB,GAAvB,CAArB;EACA,IAAIC,SAAJ;EAEA;AACN;AACA;AACA;AACA;AACA;;EACM,SAASC,UAAT,CAAoBC,GAApB,EAAyB;IACvB,IAAIC,IAAI,GAAGD,GAAX;;IAEA,IAAIT,IAAJ,EAAU;MACV;MACEI,cAAc,CAACO,YAAf,CAA4B,MAA5B,EAAoCD,IAApC;MACAA,IAAI,GAAGN,cAAc,CAACM,IAAtB;IACD;;IAEDN,cAAc,CAACO,YAAf,CAA4B,MAA5B,EAAoCD,IAApC,EATuB,CAWvB;;IACA,OAAO;MACLA,IAAI,EAAEN,cAAc,CAACM,IADhB;MAELE,QAAQ,EAAER,cAAc,CAACQ,QAAf,GAA0BR,cAAc,CAACQ,QAAf,CAAwBC,OAAxB,CAAgC,IAAhC,EAAsC,EAAtC,CAA1B,GAAsE,EAF3E;MAGLC,IAAI,EAAEV,cAAc,CAACU,IAHhB;MAILC,MAAM,EAAEX,cAAc,CAACW,MAAf,GAAwBX,cAAc,CAACW,MAAf,CAAsBF,OAAtB,CAA8B,KAA9B,EAAqC,EAArC,CAAxB,GAAmE,EAJtE;MAKLG,IAAI,EAAEZ,cAAc,CAACY,IAAf,GAAsBZ,cAAc,CAACY,IAAf,CAAoBH,OAApB,CAA4B,IAA5B,EAAkC,EAAlC,CAAtB,GAA8D,EAL/D;MAMLI,QAAQ,EAAEb,cAAc,CAACa,QANpB;MAOLC,IAAI,EAAEd,cAAc,CAACc,IAPhB;MAQLC,QAAQ,EAAGf,cAAc,CAACe,QAAf,CAAwBC,MAAxB,CAA+B,CAA/B,MAAsC,GAAvC,GACRhB,cAAc,CAACe,QADP,GAER,MAAMf,cAAc,CAACe;IAVlB,CAAP;EAYD;;EAEDZ,SAAS,GAAGC,UAAU,CAACa,MAAM,CAACC,QAAP,CAAgBZ,IAAjB,CAAtB;EAEA;AACN;AACA;AACA;AACA;AACA;;EACM,OAAO,SAASa,eAAT,CAAyBC,UAAzB,EAAqC;IAC1C,IAAIC,MAAM,GAAI/B,KAAK,CAACgC,QAAN,CAAeF,UAAf,CAAD,GAA+BhB,UAAU,CAACgB,UAAD,CAAzC,GAAwDA,UAArE;IACA,OAAQC,MAAM,CAACb,QAAP,KAAoBL,SAAS,CAACK,QAA9B,IACJa,MAAM,CAACX,IAAP,KAAgBP,SAAS,CAACO,IAD9B;EAED,CAJD;AAKD,CAlDD,EAJF,GAwDA;AACG,SAASa,qBAAT,GAAiC;EAChC,OAAO,SAASJ,eAAT,GAA2B;IAChC,OAAO,IAAP;EACD,CAFD;AAGD,CAJD,EA1DJ"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/26ea3b4b8a66add7d23831920f3736dd.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/26ea3b4b8a66add7d23831920f3736dd.json deleted file mode 100644 index 061b3d2b..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/26ea3b4b8a66add7d23831920f3736dd.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var isCallable = require('../internals/is-callable');\n\nvar tryToString = require('../internals/try-to-string');\n\nvar $TypeError = TypeError; // `Assert: IsCallable(argument) is true`\n\nmodule.exports = function (argument) {\n if (isCallable(argument)) return argument;\n throw $TypeError(tryToString(argument) + ' is not a function');\n};","map":{"version":3,"names":["isCallable","require","tryToString","$TypeError","TypeError","module","exports","argument"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/a-callable.js"],"sourcesContent":["var isCallable = require('../internals/is-callable');\nvar tryToString = require('../internals/try-to-string');\n\nvar $TypeError = TypeError;\n\n// `Assert: IsCallable(argument) is true`\nmodule.exports = function (argument) {\n if (isCallable(argument)) return argument;\n throw $TypeError(tryToString(argument) + ' is not a function');\n};\n"],"mappings":"AAAA,IAAIA,UAAU,GAAGC,OAAO,CAAC,0BAAD,CAAxB;;AACA,IAAIC,WAAW,GAAGD,OAAO,CAAC,4BAAD,CAAzB;;AAEA,IAAIE,UAAU,GAAGC,SAAjB,C,CAEA;;AACAC,MAAM,CAACC,OAAP,GAAiB,UAAUC,QAAV,EAAoB;EACnC,IAAIP,UAAU,CAACO,QAAD,CAAd,EAA0B,OAAOA,QAAP;EAC1B,MAAMJ,UAAU,CAACD,WAAW,CAACK,QAAD,CAAX,GAAwB,oBAAzB,CAAhB;AACD,CAHD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/275d49f23861a074c8933dc766b7869e.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/275d49f23861a074c8933dc766b7869e.json deleted file mode 100644 index f9732c91..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/275d49f23861a074c8933dc766b7869e.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1 m-5\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary \",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary -5\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: Created: \n \n Entry Title \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,2BAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,UAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,YAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/27917d94a3ffeeadc2045b13a1357733.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/27917d94a3ffeeadc2045b13a1357733.json deleted file mode 100644 index 9f325aac..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/27917d94a3ffeeadc2045b13a1357733.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var uncurryThis = require('../internals/function-uncurry-this');\n\nvar toObject = require('../internals/to-object');\n\nvar hasOwnProperty = uncurryThis({}.hasOwnProperty); // `HasOwnProperty` abstract operation\n// https://tc39.es/ecma262/#sec-hasownproperty\n// eslint-disable-next-line es-x/no-object-hasown -- safe\n\nmodule.exports = Object.hasOwn || function hasOwn(it, key) {\n return hasOwnProperty(toObject(it), key);\n};","map":{"version":3,"names":["uncurryThis","require","toObject","hasOwnProperty","module","exports","Object","hasOwn","it","key"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/has-own-property.js"],"sourcesContent":["var uncurryThis = require('../internals/function-uncurry-this');\nvar toObject = require('../internals/to-object');\n\nvar hasOwnProperty = uncurryThis({}.hasOwnProperty);\n\n// `HasOwnProperty` abstract operation\n// https://tc39.es/ecma262/#sec-hasownproperty\n// eslint-disable-next-line es-x/no-object-hasown -- safe\nmodule.exports = Object.hasOwn || function hasOwn(it, key) {\n return hasOwnProperty(toObject(it), key);\n};\n"],"mappings":"AAAA,IAAIA,WAAW,GAAGC,OAAO,CAAC,oCAAD,CAAzB;;AACA,IAAIC,QAAQ,GAAGD,OAAO,CAAC,wBAAD,CAAtB;;AAEA,IAAIE,cAAc,GAAGH,WAAW,CAAC,GAAGG,cAAJ,CAAhC,C,CAEA;AACA;AACA;;AACAC,MAAM,CAACC,OAAP,GAAiBC,MAAM,CAACC,MAAP,IAAiB,SAASA,MAAT,CAAgBC,EAAhB,EAAoBC,GAApB,EAAyB;EACzD,OAAON,cAAc,CAACD,QAAQ,CAACM,EAAD,CAAT,EAAeC,GAAf,CAArB;AACD,CAFD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/27c3d4008b9a45b4c2e658e3ec400ceb.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/27c3d4008b9a45b4c2e658e3ec400ceb.json new file mode 100644 index 00000000..87f30d07 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/27c3d4008b9a45b4c2e658e3ec400ceb.json @@ -0,0 +1 @@ +{"ast":null,"code":"import useCallbackRef from './useCallbackRef';\nimport useCommittedRef from './useCommittedRef';\nimport useEventCallback from './useEventCallback';\nimport useEventListener from './useEventListener';\nimport useGlobalListener from './useGlobalListener';\nimport useInterval from './useInterval';\nimport useRafInterval from './useRafInterval';\nimport useMergeState from './useMergeState';\nimport useMergeStateFromProps from './useMergeStateFromProps';\nimport useMounted from './useMounted';\nimport usePrevious from './usePrevious';\nimport useImage from './useImage';\nimport useResizeObserver from './useResizeObserver';\nexport { useCallbackRef, useCommittedRef, useEventCallback, useEventListener, useGlobalListener, useInterval, useRafInterval, useMergeState, useMergeStateFromProps, useMounted, usePrevious, useImage, useResizeObserver };","map":{"version":3,"names":["useCallbackRef","useCommittedRef","useEventCallback","useEventListener","useGlobalListener","useInterval","useRafInterval","useMergeState","useMergeStateFromProps","useMounted","usePrevious","useImage","useResizeObserver"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/@restart/hooks/esm/index.js"],"sourcesContent":["import useCallbackRef from './useCallbackRef';\nimport useCommittedRef from './useCommittedRef';\nimport useEventCallback from './useEventCallback';\nimport useEventListener from './useEventListener';\nimport useGlobalListener from './useGlobalListener';\nimport useInterval from './useInterval';\nimport useRafInterval from './useRafInterval';\nimport useMergeState from './useMergeState';\nimport useMergeStateFromProps from './useMergeStateFromProps';\nimport useMounted from './useMounted';\nimport usePrevious from './usePrevious';\nimport useImage from './useImage';\nimport useResizeObserver from './useResizeObserver';\nexport { useCallbackRef, useCommittedRef, useEventCallback, useEventListener, useGlobalListener, useInterval, useRafInterval, useMergeState, useMergeStateFromProps, useMounted, usePrevious, useImage, useResizeObserver };"],"mappings":"AAAA,OAAOA,cAAP,MAA2B,kBAA3B;AACA,OAAOC,eAAP,MAA4B,mBAA5B;AACA,OAAOC,gBAAP,MAA6B,oBAA7B;AACA,OAAOC,gBAAP,MAA6B,oBAA7B;AACA,OAAOC,iBAAP,MAA8B,qBAA9B;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,cAAP,MAA2B,kBAA3B;AACA,OAAOC,aAAP,MAA0B,iBAA1B;AACA,OAAOC,sBAAP,MAAmC,0BAAnC;AACA,OAAOC,UAAP,MAAuB,cAAvB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,iBAAP,MAA8B,qBAA9B;AACA,SAASZ,cAAT,EAAyBC,eAAzB,EAA0CC,gBAA1C,EAA4DC,gBAA5D,EAA8EC,iBAA9E,EAAiGC,WAAjG,EAA8GC,cAA9G,EAA8HC,aAA9H,EAA6IC,sBAA7I,EAAqKC,UAArK,EAAiLC,WAAjL,EAA8LC,QAA9L,EAAwMC,iBAAxM"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2899024573077d387b08a222cc2c1228.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2899024573077d387b08a222cc2c1228.json deleted file mode 100644 index e037fdad..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2899024573077d387b08a222cc2c1228.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/blogs/Blogs.jsx\";\nimport Blog from \"../blog/blog\";\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blogs() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n class: \"d-flex flex-column align-items-center\",\n children: [/*#__PURE__*/_jsxDEV(Blog, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 6,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Blog, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Blog, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Blog, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 5,\n columnNumber: 9\n }, this);\n}\n_c = Blogs;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blogs\");","map":{"version":3,"names":["Blog","React","Blogs"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/blogs/Blogs.jsx"],"sourcesContent":["import Blog from \"../blog/blog\";\nimport React from \"react\";\nexport default function Blogs() {\n return (\n
\n \n \n \n \n
\n )\n}"],"mappings":";AAAA,OAAOA,IAAP,MAAiB,cAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AACA,eAAe,SAASC,KAAT,GAAiB;EAC5B,oBACI;IAAK,KAAK,EAAC,uCAAX;IAAA,wBACI,QAAC,IAAD;MAAA;MAAA;MAAA;IAAA,QADJ,eAEI,QAAC,IAAD;MAAA;MAAA;MAAA;IAAA,QAFJ,eAGI,QAAC,IAAD;MAAA;MAAA;MAAA;IAAA,QAHJ,eAII,QAAC,IAAD;MAAA;MAAA;MAAA;IAAA,QAJJ;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAQH;KATuBA,K"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/28b4e9397b5c1338ae0f2eda292991eb.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/28b4e9397b5c1338ae0f2eda292991eb.json new file mode 100644 index 00000000..2f24b11a --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/28b4e9397b5c1338ae0f2eda292991eb.json @@ -0,0 +1 @@ +{"ast":null,"code":"import ReactDOM from 'react-dom';\nexport default function safeFindDOMNode(componentOrElement) {\n if (componentOrElement && 'setState' in componentOrElement) {\n return ReactDOM.findDOMNode(componentOrElement);\n }\n\n return componentOrElement != null ? componentOrElement : null;\n}","map":{"version":3,"names":["ReactDOM","safeFindDOMNode","componentOrElement","findDOMNode"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-bootstrap/esm/safeFindDOMNode.js"],"sourcesContent":["import ReactDOM from 'react-dom';\nexport default function safeFindDOMNode(componentOrElement) {\n if (componentOrElement && 'setState' in componentOrElement) {\n return ReactDOM.findDOMNode(componentOrElement);\n }\n\n return componentOrElement != null ? componentOrElement : null;\n}"],"mappings":"AAAA,OAAOA,QAAP,MAAqB,WAArB;AACA,eAAe,SAASC,eAAT,CAAyBC,kBAAzB,EAA6C;EAC1D,IAAIA,kBAAkB,IAAI,cAAcA,kBAAxC,EAA4D;IAC1D,OAAOF,QAAQ,CAACG,WAAT,CAAqBD,kBAArB,CAAP;EACD;;EAED,OAAOA,kBAAkB,IAAI,IAAtB,GAA6BA,kBAA7B,GAAkD,IAAzD;AACD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2904c1b6fa6482270c3260bad007b6da.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2904c1b6fa6482270c3260bad007b6da.json deleted file mode 100644 index 6dede135..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2904c1b6fa6482270c3260bad007b6da.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { Route, Router, Routes } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(Router, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 7\n }, this), /*#__PURE__*/_jsxDEV(Routes, {\n children: [/*#__PURE__*/_jsxDEV(Route, {\n path: \"/\",\n children: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n path: \"/register\",\n children: /*#__PURE__*/_jsxDEV(Login, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 25,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 24,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n path: \"/login\",\n children: /*#__PURE__*/_jsxDEV(Register, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 29,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 28,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n path: \"/createEntry\",\n children: /*#__PURE__*/_jsxDEV(CreateEntry, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 33,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 32,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n path: \"/blogEntry/:entryId\",\n children: /*#__PURE__*/_jsxDEV(BlogEntry, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 37,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 36,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["Route","Router","Routes","BlogEntry","CreateEntry","Home","Login","Register","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n Route,\n Router,\n Routes,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n return (\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,KADF,EAEEC,MAFF,EAGEC,MAHF,QAIO,kBAJP;AAMA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,KAAP,MAAkB,gCAAlB;AACA,OAAOC,QAAP,MAAqB,sCAArB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE,QAAC,MAAD;IAAA,wBACE,QAAC,MAAD;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,MAAD;MAAA,wBAEE,QAAC,KAAD;QAAO,IAAI,EAAC,GAAZ;QAAA,uBACE,QAAC,IAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAFF,eAME,QAAC,KAAD;QAAO,IAAI,EAAC,WAAZ;QAAA,uBACE,QAAC,KAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QANF,eAUE,QAAC,KAAD;QAAO,IAAI,EAAC,QAAZ;QAAA,uBACE,QAAC,QAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAVF,eAcE,QAAC,KAAD;QAAO,IAAI,EAAC,cAAZ;QAAA,uBACE,QAAC,WAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAdF,eAkBE,QAAC,KAAD;QAAO,IAAI,EAAC,qBAAZ;QAAA,uBACE,QAAC,SAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAlBF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADF;AA2BD;;KA5BQA,G;AA8BT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/292b80fac033ba0b364effa4bca2eba8.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/292b80fac033ba0b364effa4bca2eba8.json new file mode 100644 index 00000000..ccbf748c --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/292b80fac033ba0b364effa4bca2eba8.json @@ -0,0 +1 @@ +{"ast":null,"code":"'use strict';\n\nvar utils = require('./../utils');\n\nvar settle = require('./../core/settle');\n\nvar cookies = require('./../helpers/cookies');\n\nvar buildURL = require('./../helpers/buildURL');\n\nvar buildFullPath = require('../core/buildFullPath');\n\nvar parseHeaders = require('./../helpers/parseHeaders');\n\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\n\nvar transitionalDefaults = require('../defaults/transitional');\n\nvar AxiosError = require('../core/AxiosError');\n\nvar CanceledError = require('../cancel/CanceledError');\n\nvar parseProtocol = require('../helpers/parseProtocol');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n var responseType = config.responseType;\n var onCanceled;\n\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n if (utils.isFormData(requestData) && utils.isStandardBrowserEnv()) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest(); // HTTP basic authentication\n\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n var fullPath = buildFullPath(config.baseURL, config.url);\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true); // Set the request timeout in MS\n\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n } // Prepare the response\n\n\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !responseType || responseType === 'text' || responseType === 'json' ? request.responseText : request.response;\n var response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response); // Clean up request\n\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n } // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n\n\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n } // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n\n\n setTimeout(onloadend);\n };\n } // Handle browser request cancellation (as opposed to a manual cancellation)\n\n\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request)); // Clean up request\n\n request = null;\n }; // Handle low level network errors\n\n\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request, request)); // Clean up request\n\n request = null;\n }; // Handle timeout\n\n\n request.ontimeout = function handleTimeout() {\n var timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n var transitional = config.transitional || transitionalDefaults;\n\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n\n reject(new AxiosError(timeoutErrorMessage, transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED, config, request)); // Clean up request\n\n request = null;\n }; // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n\n\n if (utils.isStandardBrowserEnv()) {\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ? cookies.read(config.xsrfCookieName) : undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n } // Add headers to the request\n\n\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n } // Add withCredentials to request if needed\n\n\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n } // Add responseType to request if needed\n\n\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n } // Handle progress if needed\n\n\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n } // Not all browsers support upload events\n\n\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = function (cancel) {\n if (!request) {\n return;\n }\n\n reject(!cancel || cancel && cancel.type ? new CanceledError() : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n if (!requestData) {\n requestData = null;\n }\n\n var protocol = parseProtocol(fullPath);\n\n if (protocol && ['http', 'https', 'file'].indexOf(protocol) === -1) {\n reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));\n return;\n } // Send the request\n\n\n request.send(requestData);\n });\n};","map":{"version":3,"names":["utils","require","settle","cookies","buildURL","buildFullPath","parseHeaders","isURLSameOrigin","transitionalDefaults","AxiosError","CanceledError","parseProtocol","module","exports","xhrAdapter","config","Promise","dispatchXhrRequest","resolve","reject","requestData","data","requestHeaders","headers","responseType","onCanceled","done","cancelToken","unsubscribe","signal","removeEventListener","isFormData","isStandardBrowserEnv","request","XMLHttpRequest","auth","username","password","unescape","encodeURIComponent","Authorization","btoa","fullPath","baseURL","url","open","method","toUpperCase","params","paramsSerializer","timeout","onloadend","responseHeaders","getAllResponseHeaders","responseData","responseText","response","status","statusText","_resolve","value","_reject","err","onreadystatechange","handleLoad","readyState","responseURL","indexOf","setTimeout","onabort","handleAbort","ECONNABORTED","onerror","handleError","ERR_NETWORK","ontimeout","handleTimeout","timeoutErrorMessage","transitional","clarifyTimeoutError","ETIMEDOUT","xsrfValue","withCredentials","xsrfCookieName","read","undefined","xsrfHeaderName","forEach","setRequestHeader","val","key","toLowerCase","isUndefined","onDownloadProgress","addEventListener","onUploadProgress","upload","cancel","type","abort","subscribe","aborted","protocol","ERR_BAD_REQUEST","send"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/axios/lib/adapters/xhr.js"],"sourcesContent":["'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar cookies = require('./../helpers/cookies');\nvar buildURL = require('./../helpers/buildURL');\nvar buildFullPath = require('../core/buildFullPath');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar transitionalDefaults = require('../defaults/transitional');\nvar AxiosError = require('../core/AxiosError');\nvar CanceledError = require('../cancel/CanceledError');\nvar parseProtocol = require('../helpers/parseProtocol');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n var responseType = config.responseType;\n var onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n if (utils.isFormData(requestData) && utils.isStandardBrowserEnv()) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n var fullPath = buildFullPath(config.baseURL, config.url);\n\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n var response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n var timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n var transitional = config.transitional || transitionalDefaults;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(new AxiosError(\n timeoutErrorMessage,\n transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,\n config,\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = function(cancel) {\n if (!request) {\n return;\n }\n reject(!cancel || (cancel && cancel.type) ? new CanceledError() : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n if (!requestData) {\n requestData = null;\n }\n\n var protocol = parseProtocol(fullPath);\n\n if (protocol && [ 'http', 'https', 'file' ].indexOf(protocol) === -1) {\n reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));\n return;\n }\n\n\n // Send the request\n request.send(requestData);\n });\n};\n"],"mappings":"AAAA;;AAEA,IAAIA,KAAK,GAAGC,OAAO,CAAC,YAAD,CAAnB;;AACA,IAAIC,MAAM,GAAGD,OAAO,CAAC,kBAAD,CAApB;;AACA,IAAIE,OAAO,GAAGF,OAAO,CAAC,sBAAD,CAArB;;AACA,IAAIG,QAAQ,GAAGH,OAAO,CAAC,uBAAD,CAAtB;;AACA,IAAII,aAAa,GAAGJ,OAAO,CAAC,uBAAD,CAA3B;;AACA,IAAIK,YAAY,GAAGL,OAAO,CAAC,2BAAD,CAA1B;;AACA,IAAIM,eAAe,GAAGN,OAAO,CAAC,8BAAD,CAA7B;;AACA,IAAIO,oBAAoB,GAAGP,OAAO,CAAC,0BAAD,CAAlC;;AACA,IAAIQ,UAAU,GAAGR,OAAO,CAAC,oBAAD,CAAxB;;AACA,IAAIS,aAAa,GAAGT,OAAO,CAAC,yBAAD,CAA3B;;AACA,IAAIU,aAAa,GAAGV,OAAO,CAAC,0BAAD,CAA3B;;AAEAW,MAAM,CAACC,OAAP,GAAiB,SAASC,UAAT,CAAoBC,MAApB,EAA4B;EAC3C,OAAO,IAAIC,OAAJ,CAAY,SAASC,kBAAT,CAA4BC,OAA5B,EAAqCC,MAArC,EAA6C;IAC9D,IAAIC,WAAW,GAAGL,MAAM,CAACM,IAAzB;IACA,IAAIC,cAAc,GAAGP,MAAM,CAACQ,OAA5B;IACA,IAAIC,YAAY,GAAGT,MAAM,CAACS,YAA1B;IACA,IAAIC,UAAJ;;IACA,SAASC,IAAT,GAAgB;MACd,IAAIX,MAAM,CAACY,WAAX,EAAwB;QACtBZ,MAAM,CAACY,WAAP,CAAmBC,WAAnB,CAA+BH,UAA/B;MACD;;MAED,IAAIV,MAAM,CAACc,MAAX,EAAmB;QACjBd,MAAM,CAACc,MAAP,CAAcC,mBAAd,CAAkC,OAAlC,EAA2CL,UAA3C;MACD;IACF;;IAED,IAAIzB,KAAK,CAAC+B,UAAN,CAAiBX,WAAjB,KAAiCpB,KAAK,CAACgC,oBAAN,EAArC,EAAmE;MACjE,OAAOV,cAAc,CAAC,cAAD,CAArB,CADiE,CAC1B;IACxC;;IAED,IAAIW,OAAO,GAAG,IAAIC,cAAJ,EAAd,CAnB8D,CAqB9D;;IACA,IAAInB,MAAM,CAACoB,IAAX,EAAiB;MACf,IAAIC,QAAQ,GAAGrB,MAAM,CAACoB,IAAP,CAAYC,QAAZ,IAAwB,EAAvC;MACA,IAAIC,QAAQ,GAAGtB,MAAM,CAACoB,IAAP,CAAYE,QAAZ,GAAuBC,QAAQ,CAACC,kBAAkB,CAACxB,MAAM,CAACoB,IAAP,CAAYE,QAAb,CAAnB,CAA/B,GAA4E,EAA3F;MACAf,cAAc,CAACkB,aAAf,GAA+B,WAAWC,IAAI,CAACL,QAAQ,GAAG,GAAX,GAAiBC,QAAlB,CAA9C;IACD;;IAED,IAAIK,QAAQ,GAAGrC,aAAa,CAACU,MAAM,CAAC4B,OAAR,EAAiB5B,MAAM,CAAC6B,GAAxB,CAA5B;IAEAX,OAAO,CAACY,IAAR,CAAa9B,MAAM,CAAC+B,MAAP,CAAcC,WAAd,EAAb,EAA0C3C,QAAQ,CAACsC,QAAD,EAAW3B,MAAM,CAACiC,MAAlB,EAA0BjC,MAAM,CAACkC,gBAAjC,CAAlD,EAAsG,IAAtG,EA9B8D,CAgC9D;;IACAhB,OAAO,CAACiB,OAAR,GAAkBnC,MAAM,CAACmC,OAAzB;;IAEA,SAASC,SAAT,GAAqB;MACnB,IAAI,CAAClB,OAAL,EAAc;QACZ;MACD,CAHkB,CAInB;;;MACA,IAAImB,eAAe,GAAG,2BAA2BnB,OAA3B,GAAqC3B,YAAY,CAAC2B,OAAO,CAACoB,qBAAR,EAAD,CAAjD,GAAqF,IAA3G;MACA,IAAIC,YAAY,GAAG,CAAC9B,YAAD,IAAiBA,YAAY,KAAK,MAAlC,IAA6CA,YAAY,KAAK,MAA9D,GACjBS,OAAO,CAACsB,YADS,GACMtB,OAAO,CAACuB,QADjC;MAEA,IAAIA,QAAQ,GAAG;QACbnC,IAAI,EAAEiC,YADO;QAEbG,MAAM,EAAExB,OAAO,CAACwB,MAFH;QAGbC,UAAU,EAAEzB,OAAO,CAACyB,UAHP;QAIbnC,OAAO,EAAE6B,eAJI;QAKbrC,MAAM,EAAEA,MALK;QAMbkB,OAAO,EAAEA;MANI,CAAf;MASA/B,MAAM,CAAC,SAASyD,QAAT,CAAkBC,KAAlB,EAAyB;QAC9B1C,OAAO,CAAC0C,KAAD,CAAP;QACAlC,IAAI;MACL,CAHK,EAGH,SAASmC,OAAT,CAAiBC,GAAjB,EAAsB;QACvB3C,MAAM,CAAC2C,GAAD,CAAN;QACApC,IAAI;MACL,CANK,EAMH8B,QANG,CAAN,CAjBmB,CAyBnB;;MACAvB,OAAO,GAAG,IAAV;IACD;;IAED,IAAI,eAAeA,OAAnB,EAA4B;MAC1B;MACAA,OAAO,CAACkB,SAAR,GAAoBA,SAApB;IACD,CAHD,MAGO;MACL;MACAlB,OAAO,CAAC8B,kBAAR,GAA6B,SAASC,UAAT,GAAsB;QACjD,IAAI,CAAC/B,OAAD,IAAYA,OAAO,CAACgC,UAAR,KAAuB,CAAvC,EAA0C;UACxC;QACD,CAHgD,CAKjD;QACA;QACA;QACA;;;QACA,IAAIhC,OAAO,CAACwB,MAAR,KAAmB,CAAnB,IAAwB,EAAExB,OAAO,CAACiC,WAAR,IAAuBjC,OAAO,CAACiC,WAAR,CAAoBC,OAApB,CAA4B,OAA5B,MAAyC,CAAlE,CAA5B,EAAkG;UAChG;QACD,CAXgD,CAYjD;QACA;;;QACAC,UAAU,CAACjB,SAAD,CAAV;MACD,CAfD;IAgBD,CArF6D,CAuF9D;;;IACAlB,OAAO,CAACoC,OAAR,GAAkB,SAASC,WAAT,GAAuB;MACvC,IAAI,CAACrC,OAAL,EAAc;QACZ;MACD;;MAEDd,MAAM,CAAC,IAAIV,UAAJ,CAAe,iBAAf,EAAkCA,UAAU,CAAC8D,YAA7C,EAA2DxD,MAA3D,EAAmEkB,OAAnE,CAAD,CAAN,CALuC,CAOvC;;MACAA,OAAO,GAAG,IAAV;IACD,CATD,CAxF8D,CAmG9D;;;IACAA,OAAO,CAACuC,OAAR,GAAkB,SAASC,WAAT,GAAuB;MACvC;MACA;MACAtD,MAAM,CAAC,IAAIV,UAAJ,CAAe,eAAf,EAAgCA,UAAU,CAACiE,WAA3C,EAAwD3D,MAAxD,EAAgEkB,OAAhE,EAAyEA,OAAzE,CAAD,CAAN,CAHuC,CAKvC;;MACAA,OAAO,GAAG,IAAV;IACD,CAPD,CApG8D,CA6G9D;;;IACAA,OAAO,CAAC0C,SAAR,GAAoB,SAASC,aAAT,GAAyB;MAC3C,IAAIC,mBAAmB,GAAG9D,MAAM,CAACmC,OAAP,GAAiB,gBAAgBnC,MAAM,CAACmC,OAAvB,GAAiC,aAAlD,GAAkE,kBAA5F;MACA,IAAI4B,YAAY,GAAG/D,MAAM,CAAC+D,YAAP,IAAuBtE,oBAA1C;;MACA,IAAIO,MAAM,CAAC8D,mBAAX,EAAgC;QAC9BA,mBAAmB,GAAG9D,MAAM,CAAC8D,mBAA7B;MACD;;MACD1D,MAAM,CAAC,IAAIV,UAAJ,CACLoE,mBADK,EAELC,YAAY,CAACC,mBAAb,GAAmCtE,UAAU,CAACuE,SAA9C,GAA0DvE,UAAU,CAAC8D,YAFhE,EAGLxD,MAHK,EAILkB,OAJK,CAAD,CAAN,CAN2C,CAY3C;;MACAA,OAAO,GAAG,IAAV;IACD,CAdD,CA9G8D,CA8H9D;IACA;IACA;;;IACA,IAAIjC,KAAK,CAACgC,oBAAN,EAAJ,EAAkC;MAChC;MACA,IAAIiD,SAAS,GAAG,CAAClE,MAAM,CAACmE,eAAP,IAA0B3E,eAAe,CAACmC,QAAD,CAA1C,KAAyD3B,MAAM,CAACoE,cAAhE,GACdhF,OAAO,CAACiF,IAAR,CAAarE,MAAM,CAACoE,cAApB,CADc,GAEdE,SAFF;;MAIA,IAAIJ,SAAJ,EAAe;QACb3D,cAAc,CAACP,MAAM,CAACuE,cAAR,CAAd,GAAwCL,SAAxC;MACD;IACF,CA1I6D,CA4I9D;;;IACA,IAAI,sBAAsBhD,OAA1B,EAAmC;MACjCjC,KAAK,CAACuF,OAAN,CAAcjE,cAAd,EAA8B,SAASkE,gBAAT,CAA0BC,GAA1B,EAA+BC,GAA/B,EAAoC;QAChE,IAAI,OAAOtE,WAAP,KAAuB,WAAvB,IAAsCsE,GAAG,CAACC,WAAJ,OAAsB,cAAhE,EAAgF;UAC9E;UACA,OAAOrE,cAAc,CAACoE,GAAD,CAArB;QACD,CAHD,MAGO;UACL;UACAzD,OAAO,CAACuD,gBAAR,CAAyBE,GAAzB,EAA8BD,GAA9B;QACD;MACF,CARD;IASD,CAvJ6D,CAyJ9D;;;IACA,IAAI,CAACzF,KAAK,CAAC4F,WAAN,CAAkB7E,MAAM,CAACmE,eAAzB,CAAL,EAAgD;MAC9CjD,OAAO,CAACiD,eAAR,GAA0B,CAAC,CAACnE,MAAM,CAACmE,eAAnC;IACD,CA5J6D,CA8J9D;;;IACA,IAAI1D,YAAY,IAAIA,YAAY,KAAK,MAArC,EAA6C;MAC3CS,OAAO,CAACT,YAAR,GAAuBT,MAAM,CAACS,YAA9B;IACD,CAjK6D,CAmK9D;;;IACA,IAAI,OAAOT,MAAM,CAAC8E,kBAAd,KAAqC,UAAzC,EAAqD;MACnD5D,OAAO,CAAC6D,gBAAR,CAAyB,UAAzB,EAAqC/E,MAAM,CAAC8E,kBAA5C;IACD,CAtK6D,CAwK9D;;;IACA,IAAI,OAAO9E,MAAM,CAACgF,gBAAd,KAAmC,UAAnC,IAAiD9D,OAAO,CAAC+D,MAA7D,EAAqE;MACnE/D,OAAO,CAAC+D,MAAR,CAAeF,gBAAf,CAAgC,UAAhC,EAA4C/E,MAAM,CAACgF,gBAAnD;IACD;;IAED,IAAIhF,MAAM,CAACY,WAAP,IAAsBZ,MAAM,CAACc,MAAjC,EAAyC;MACvC;MACA;MACAJ,UAAU,GAAG,UAASwE,MAAT,EAAiB;QAC5B,IAAI,CAAChE,OAAL,EAAc;UACZ;QACD;;QACDd,MAAM,CAAC,CAAC8E,MAAD,IAAYA,MAAM,IAAIA,MAAM,CAACC,IAA7B,GAAqC,IAAIxF,aAAJ,EAArC,GAA2DuF,MAA5D,CAAN;QACAhE,OAAO,CAACkE,KAAR;QACAlE,OAAO,GAAG,IAAV;MACD,CAPD;;MASAlB,MAAM,CAACY,WAAP,IAAsBZ,MAAM,CAACY,WAAP,CAAmByE,SAAnB,CAA6B3E,UAA7B,CAAtB;;MACA,IAAIV,MAAM,CAACc,MAAX,EAAmB;QACjBd,MAAM,CAACc,MAAP,CAAcwE,OAAd,GAAwB5E,UAAU,EAAlC,GAAuCV,MAAM,CAACc,MAAP,CAAciE,gBAAd,CAA+B,OAA/B,EAAwCrE,UAAxC,CAAvC;MACD;IACF;;IAED,IAAI,CAACL,WAAL,EAAkB;MAChBA,WAAW,GAAG,IAAd;IACD;;IAED,IAAIkF,QAAQ,GAAG3F,aAAa,CAAC+B,QAAD,CAA5B;;IAEA,IAAI4D,QAAQ,IAAI,CAAE,MAAF,EAAU,OAAV,EAAmB,MAAnB,EAA4BnC,OAA5B,CAAoCmC,QAApC,MAAkD,CAAC,CAAnE,EAAsE;MACpEnF,MAAM,CAAC,IAAIV,UAAJ,CAAe,0BAA0B6F,QAA1B,GAAqC,GAApD,EAAyD7F,UAAU,CAAC8F,eAApE,EAAqFxF,MAArF,CAAD,CAAN;MACA;IACD,CAxM6D,CA2M9D;;;IACAkB,OAAO,CAACuE,IAAR,CAAapF,WAAb;EACD,CA7MM,CAAP;AA8MD,CA/MD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2a1ce000c7c7aba92a025b72508af6d0.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2a1ce000c7c7aba92a025b72508af6d0.json deleted file mode 100644 index cc5cc24e..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2a1ce000c7c7aba92a025b72508af6d0.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import getBoundingClientRect from \"./getBoundingClientRect.js\"; // Returns the layout rect of an element relative to its offsetParent. Layout\n// means it doesn't take into account transforms.\n\nexport default function getLayoutRect(element) {\n var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed.\n // Fixes https://github.com/popperjs/popper-core/issues/1223\n\n var width = element.offsetWidth;\n var height = element.offsetHeight;\n\n if (Math.abs(clientRect.width - width) <= 1) {\n width = clientRect.width;\n }\n\n if (Math.abs(clientRect.height - height) <= 1) {\n height = clientRect.height;\n }\n\n return {\n x: element.offsetLeft,\n y: element.offsetTop,\n width: width,\n height: height\n };\n}","map":{"version":3,"names":["getBoundingClientRect","getLayoutRect","element","clientRect","width","offsetWidth","height","offsetHeight","Math","abs","x","offsetLeft","y","offsetTop"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js"],"sourcesContent":["import getBoundingClientRect from \"./getBoundingClientRect.js\"; // Returns the layout rect of an element relative to its offsetParent. Layout\n// means it doesn't take into account transforms.\n\nexport default function getLayoutRect(element) {\n var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed.\n // Fixes https://github.com/popperjs/popper-core/issues/1223\n\n var width = element.offsetWidth;\n var height = element.offsetHeight;\n\n if (Math.abs(clientRect.width - width) <= 1) {\n width = clientRect.width;\n }\n\n if (Math.abs(clientRect.height - height) <= 1) {\n height = clientRect.height;\n }\n\n return {\n x: element.offsetLeft,\n y: element.offsetTop,\n width: width,\n height: height\n };\n}"],"mappings":"AAAA,OAAOA,qBAAP,MAAkC,4BAAlC,C,CAAgE;AAChE;;AAEA,eAAe,SAASC,aAAT,CAAuBC,OAAvB,EAAgC;EAC7C,IAAIC,UAAU,GAAGH,qBAAqB,CAACE,OAAD,CAAtC,CAD6C,CACI;EACjD;;EAEA,IAAIE,KAAK,GAAGF,OAAO,CAACG,WAApB;EACA,IAAIC,MAAM,GAAGJ,OAAO,CAACK,YAArB;;EAEA,IAAIC,IAAI,CAACC,GAAL,CAASN,UAAU,CAACC,KAAX,GAAmBA,KAA5B,KAAsC,CAA1C,EAA6C;IAC3CA,KAAK,GAAGD,UAAU,CAACC,KAAnB;EACD;;EAED,IAAII,IAAI,CAACC,GAAL,CAASN,UAAU,CAACG,MAAX,GAAoBA,MAA7B,KAAwC,CAA5C,EAA+C;IAC7CA,MAAM,GAAGH,UAAU,CAACG,MAApB;EACD;;EAED,OAAO;IACLI,CAAC,EAAER,OAAO,CAACS,UADN;IAELC,CAAC,EAAEV,OAAO,CAACW,SAFN;IAGLT,KAAK,EAAEA,KAHF;IAILE,MAAM,EAAEA;EAJH,CAAP;AAMD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2a623e2ba25e82caaee65db5d4b4e9b9.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2a623e2ba25e82caaee65db5d4b4e9b9.json deleted file mode 100644 index c3ecbc3a..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2a623e2ba25e82caaee65db5d4b4e9b9.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Blogs from \"../../blogs/Blogs\";\nimport Button from \"../../blogs/Blogs\";\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function CreateEntry() {\n return /*#__PURE__*/_jsxDEV(Form, {\n children: [/*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBasicEmail\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Email address\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"email\",\n placeholder: \"Enter email\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Text, {\n className: \"text-muted\",\n children: \"We'll never share your email with anyone else.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBasicPassword\",\n children: [/*#__PURE__*/_jsxDEV(Form.Label, {\n children: \"Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 13\n }, this), /*#__PURE__*/_jsxDEV(Form.Control, {\n type: \"password\",\n placeholder: \"Password\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Form.Group, {\n className: \"mb-3\",\n controlId: \"formBasicCheckbox\",\n children: /*#__PURE__*/_jsxDEV(Form.Check, {\n type: \"checkbox\",\n label: \"Check me out\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 23,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n type: \"submit\",\n children: \"Submit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 25,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 9\n }, this);\n}\n_c = CreateEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"CreateEntry\");","map":{"version":3,"names":["Blogs","Button","React","CreateEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/createEntry/CreateEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Blogs from \"../../blogs/Blogs\";\nimport Button from \"../../blogs/Blogs\";\nimport React from \"react\";\n\nexport default function CreateEntry() {\n return (\n
\n \n Email address\n \n \n We'll never share your email with anyone else.\n \n \n\n \n Password\n \n \n \n \n \n \n
\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,KAAP,MAAkB,mBAAlB;AACA,OAAOC,MAAP,MAAmB,mBAAnB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,WAAT,GAAuB;EAClC,oBACI,QAAC,IAAD;IAAA,wBACA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,gBAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,OAAnB;QAA2B,WAAW,EAAC;MAAvC;QAAA;QAAA;QAAA;MAAA,QAFJ,eAGI,QAAC,IAAD,CAAM,IAAN;QAAW,SAAS,EAAC,YAArB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAHJ;IAAA;MAAA;MAAA;MAAA;IAAA,QADA,eASA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,mBAAvC;MAAA,wBACI,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADJ,eAEI,QAAC,IAAD,CAAM,OAAN;QAAc,IAAI,EAAC,UAAnB;QAA8B,WAAW,EAAC;MAA1C;QAAA;QAAA;QAAA;MAAA,QAFJ;IAAA;MAAA;MAAA;MAAA;IAAA,QATA,eAaA,QAAC,IAAD,CAAM,KAAN;MAAY,SAAS,EAAC,MAAtB;MAA6B,SAAS,EAAC,mBAAvC;MAAA,uBACI,QAAC,IAAD,CAAM,KAAN;QAAY,IAAI,EAAC,UAAjB;QAA4B,KAAK,EAAC;MAAlC;QAAA;QAAA;QAAA;MAAA;IADJ;MAAA;MAAA;MAAA;IAAA,QAbA,eAgBA,QAAC,MAAD;MAAQ,OAAO,EAAC,SAAhB;MAA0B,IAAI,EAAC,QAA/B;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAhBA;EAAA;IAAA;IAAA;IAAA;EAAA,QADJ;AAsBH;KAvBuBA,W"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2a7c34fe76a7b2a59440bbb79d175a0b.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2a7c34fe76a7b2a59440bbb79d175a0b.json deleted file mode 100644 index b14c150c..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2a7c34fe76a7b2a59440bbb79d175a0b.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center display-1\",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center\",\n children: [\" \", /*#__PURE__*/_jsxDEV(\"h1\", {\n children: \"Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 38\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n class: \"text-center\",\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Author: Created: \n \n

Entry Title

\n \n Entry content\n \n \n \n
\n
\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,uBAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,aAAlB;QAAA,6BAAiC;UAAA;QAAA;UAAA;UAAA;UAAA;QAAA,QAAjC;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAW,KAAK,EAAC,aAAjB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2a89a0581d789584b53415845753311f.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2a89a0581d789584b53415845753311f.json new file mode 100644 index 00000000..aa5cceb4 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/2a89a0581d789584b53415845753311f.json @@ -0,0 +1 @@ +{"ast":null,"code":"import classNames from 'classnames';\nimport * as React from 'react';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst NavbarBrand = /*#__PURE__*/React.forwardRef((_ref, ref) => {\n let {\n bsPrefix,\n className,\n as,\n ...props\n } = _ref;\n bsPrefix = useBootstrapPrefix(bsPrefix, 'navbar-brand');\n const Component = as || (props.href ? 'a' : 'span');\n return /*#__PURE__*/_jsx(Component, { ...props,\n ref: ref,\n className: classNames(className, bsPrefix)\n });\n});\nNavbarBrand.displayName = 'NavbarBrand';\nexport default NavbarBrand;","map":{"version":3,"names":["classNames","React","useBootstrapPrefix","jsx","_jsx","NavbarBrand","forwardRef","ref","bsPrefix","className","as","props","Component","href","displayName"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/react-bootstrap/esm/NavbarBrand.js"],"sourcesContent":["import classNames from 'classnames';\nimport * as React from 'react';\nimport { useBootstrapPrefix } from './ThemeProvider';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst NavbarBrand = /*#__PURE__*/React.forwardRef(({\n bsPrefix,\n className,\n as,\n ...props\n}, ref) => {\n bsPrefix = useBootstrapPrefix(bsPrefix, 'navbar-brand');\n const Component = as || (props.href ? 'a' : 'span');\n return /*#__PURE__*/_jsx(Component, { ...props,\n ref: ref,\n className: classNames(className, bsPrefix)\n });\n});\nNavbarBrand.displayName = 'NavbarBrand';\nexport default NavbarBrand;"],"mappings":"AAAA,OAAOA,UAAP,MAAuB,YAAvB;AACA,OAAO,KAAKC,KAAZ,MAAuB,OAAvB;AACA,SAASC,kBAAT,QAAmC,iBAAnC;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,MAAMC,WAAW,GAAG,aAAaJ,KAAK,CAACK,UAAN,CAAiB,OAK/CC,GAL+C,KAKvC;EAAA,IALwC;IACjDC,QADiD;IAEjDC,SAFiD;IAGjDC,EAHiD;IAIjD,GAAGC;EAJ8C,CAKxC;EACTH,QAAQ,GAAGN,kBAAkB,CAACM,QAAD,EAAW,cAAX,CAA7B;EACA,MAAMI,SAAS,GAAGF,EAAE,KAAKC,KAAK,CAACE,IAAN,GAAa,GAAb,GAAmB,MAAxB,CAApB;EACA,OAAO,aAAaT,IAAI,CAACQ,SAAD,EAAY,EAAE,GAAGD,KAAL;IAClCJ,GAAG,EAAEA,GAD6B;IAElCE,SAAS,EAAET,UAAU,CAACS,SAAD,EAAYD,QAAZ;EAFa,CAAZ,CAAxB;AAID,CAZgC,CAAjC;AAaAH,WAAW,CAACS,WAAZ,GAA0B,aAA1B;AACA,eAAeT,WAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2aa4fb3b215029ced95a5584ee81b0e0.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2aa4fb3b215029ced95a5584ee81b0e0.json deleted file mode 100644 index f1206892..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2aa4fb3b215029ced95a5584ee81b0e0.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import getCompositeRect from \"./dom-utils/getCompositeRect.js\";\nimport getLayoutRect from \"./dom-utils/getLayoutRect.js\";\nimport listScrollParents from \"./dom-utils/listScrollParents.js\";\nimport getOffsetParent from \"./dom-utils/getOffsetParent.js\";\nimport getComputedStyle from \"./dom-utils/getComputedStyle.js\";\nimport orderModifiers from \"./utils/orderModifiers.js\";\nimport debounce from \"./utils/debounce.js\";\nimport validateModifiers from \"./utils/validateModifiers.js\";\nimport uniqueBy from \"./utils/uniqueBy.js\";\nimport getBasePlacement from \"./utils/getBasePlacement.js\";\nimport mergeByName from \"./utils/mergeByName.js\";\nimport detectOverflow from \"./utils/detectOverflow.js\";\nimport { isElement } from \"./dom-utils/instanceOf.js\";\nimport { auto } from \"./enums.js\";\nvar INVALID_ELEMENT_ERROR = 'Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.';\nvar INFINITE_LOOP_ERROR = 'Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.';\nvar DEFAULT_OPTIONS = {\n placement: 'bottom',\n modifiers: [],\n strategy: 'absolute'\n};\n\nfunction areValidElements() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return !args.some(function (element) {\n return !(element && typeof element.getBoundingClientRect === 'function');\n });\n}\n\nexport function popperGenerator(generatorOptions) {\n if (generatorOptions === void 0) {\n generatorOptions = {};\n }\n\n var _generatorOptions = generatorOptions,\n _generatorOptions$def = _generatorOptions.defaultModifiers,\n defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def,\n _generatorOptions$def2 = _generatorOptions.defaultOptions,\n defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2;\n return function createPopper(reference, popper, options) {\n if (options === void 0) {\n options = defaultOptions;\n }\n\n var state = {\n placement: 'bottom',\n orderedModifiers: [],\n options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions),\n modifiersData: {},\n elements: {\n reference: reference,\n popper: popper\n },\n attributes: {},\n styles: {}\n };\n var effectCleanupFns = [];\n var isDestroyed = false;\n var instance = {\n state: state,\n setOptions: function setOptions(setOptionsAction) {\n var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction;\n cleanupModifierEffects();\n state.options = Object.assign({}, defaultOptions, state.options, options);\n state.scrollParents = {\n reference: isElement(reference) ? listScrollParents(reference) : reference.contextElement ? listScrollParents(reference.contextElement) : [],\n popper: listScrollParents(popper)\n }; // Orders the modifiers based on their dependencies and `phase`\n // properties\n\n var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers\n\n state.orderedModifiers = orderedModifiers.filter(function (m) {\n return m.enabled;\n }); // Validate the provided modifiers so that the consumer will get warned\n // if one of the modifiers is invalid for any reason\n\n if (process.env.NODE_ENV !== \"production\") {\n var modifiers = uniqueBy([].concat(orderedModifiers, state.options.modifiers), function (_ref) {\n var name = _ref.name;\n return name;\n });\n validateModifiers(modifiers);\n\n if (getBasePlacement(state.options.placement) === auto) {\n var flipModifier = state.orderedModifiers.find(function (_ref2) {\n var name = _ref2.name;\n return name === 'flip';\n });\n\n if (!flipModifier) {\n console.error(['Popper: \"auto\" placements require the \"flip\" modifier be', 'present and enabled to work.'].join(' '));\n }\n }\n\n var _getComputedStyle = getComputedStyle(popper),\n marginTop = _getComputedStyle.marginTop,\n marginRight = _getComputedStyle.marginRight,\n marginBottom = _getComputedStyle.marginBottom,\n marginLeft = _getComputedStyle.marginLeft; // We no longer take into account `margins` on the popper, and it can\n // cause bugs with positioning, so we'll warn the consumer\n\n\n if ([marginTop, marginRight, marginBottom, marginLeft].some(function (margin) {\n return parseFloat(margin);\n })) {\n console.warn(['Popper: CSS \"margin\" styles cannot be used to apply padding', 'between the popper and its reference element or boundary.', 'To replicate margin, use the `offset` modifier, as well as', 'the `padding` option in the `preventOverflow` and `flip`', 'modifiers.'].join(' '));\n }\n }\n\n runModifierEffects();\n return instance.update();\n },\n // Sync update – it will always be executed, even if not necessary. This\n // is useful for low frequency updates where sync behavior simplifies the\n // logic.\n // For high frequency updates (e.g. `resize` and `scroll` events), always\n // prefer the async Popper#update method\n forceUpdate: function forceUpdate() {\n if (isDestroyed) {\n return;\n }\n\n var _state$elements = state.elements,\n reference = _state$elements.reference,\n popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements\n // anymore\n\n if (!areValidElements(reference, popper)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(INVALID_ELEMENT_ERROR);\n }\n\n return;\n } // Store the reference and popper rects to be read by modifiers\n\n\n state.rects = {\n reference: getCompositeRect(reference, getOffsetParent(popper), state.options.strategy === 'fixed'),\n popper: getLayoutRect(popper)\n }; // Modifiers have the ability to reset the current update cycle. The\n // most common use case for this is the `flip` modifier changing the\n // placement, which then needs to re-run all the modifiers, because the\n // logic was previously ran for the previous placement and is therefore\n // stale/incorrect\n\n state.reset = false;\n state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier\n // is filled with the initial data specified by the modifier. This means\n // it doesn't persist and is fresh on each update.\n // To ensure persistent data, use `${name}#persistent`\n\n state.orderedModifiers.forEach(function (modifier) {\n return state.modifiersData[modifier.name] = Object.assign({}, modifier.data);\n });\n var __debug_loops__ = 0;\n\n for (var index = 0; index < state.orderedModifiers.length; index++) {\n if (process.env.NODE_ENV !== \"production\") {\n __debug_loops__ += 1;\n\n if (__debug_loops__ > 100) {\n console.error(INFINITE_LOOP_ERROR);\n break;\n }\n }\n\n if (state.reset === true) {\n state.reset = false;\n index = -1;\n continue;\n }\n\n var _state$orderedModifie = state.orderedModifiers[index],\n fn = _state$orderedModifie.fn,\n _state$orderedModifie2 = _state$orderedModifie.options,\n _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2,\n name = _state$orderedModifie.name;\n\n if (typeof fn === 'function') {\n state = fn({\n state: state,\n options: _options,\n name: name,\n instance: instance\n }) || state;\n }\n }\n },\n // Async and optimistically optimized update – it will not be executed if\n // not necessary (debounced to run at most once-per-tick)\n update: debounce(function () {\n return new Promise(function (resolve) {\n instance.forceUpdate();\n resolve(state);\n });\n }),\n destroy: function destroy() {\n cleanupModifierEffects();\n isDestroyed = true;\n }\n };\n\n if (!areValidElements(reference, popper)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(INVALID_ELEMENT_ERROR);\n }\n\n return instance;\n }\n\n instance.setOptions(options).then(function (state) {\n if (!isDestroyed && options.onFirstUpdate) {\n options.onFirstUpdate(state);\n }\n }); // Modifiers have the ability to execute arbitrary code before the first\n // update cycle runs. They will be executed in the same order as the update\n // cycle. This is useful when a modifier adds some persistent data that\n // other modifiers need to use, but the modifier is run after the dependent\n // one.\n\n function runModifierEffects() {\n state.orderedModifiers.forEach(function (_ref3) {\n var name = _ref3.name,\n _ref3$options = _ref3.options,\n options = _ref3$options === void 0 ? {} : _ref3$options,\n effect = _ref3.effect;\n\n if (typeof effect === 'function') {\n var cleanupFn = effect({\n state: state,\n name: name,\n instance: instance,\n options: options\n });\n\n var noopFn = function noopFn() {};\n\n effectCleanupFns.push(cleanupFn || noopFn);\n }\n });\n }\n\n function cleanupModifierEffects() {\n effectCleanupFns.forEach(function (fn) {\n return fn();\n });\n effectCleanupFns = [];\n }\n\n return instance;\n };\n}\nexport var createPopper = /*#__PURE__*/popperGenerator(); // eslint-disable-next-line import/no-unused-modules\n\nexport { detectOverflow };","map":{"version":3,"names":["getCompositeRect","getLayoutRect","listScrollParents","getOffsetParent","getComputedStyle","orderModifiers","debounce","validateModifiers","uniqueBy","getBasePlacement","mergeByName","detectOverflow","isElement","auto","INVALID_ELEMENT_ERROR","INFINITE_LOOP_ERROR","DEFAULT_OPTIONS","placement","modifiers","strategy","areValidElements","_len","arguments","length","args","Array","_key","some","element","getBoundingClientRect","popperGenerator","generatorOptions","_generatorOptions","_generatorOptions$def","defaultModifiers","_generatorOptions$def2","defaultOptions","createPopper","reference","popper","options","state","orderedModifiers","Object","assign","modifiersData","elements","attributes","styles","effectCleanupFns","isDestroyed","instance","setOptions","setOptionsAction","cleanupModifierEffects","scrollParents","contextElement","concat","filter","m","enabled","process","env","NODE_ENV","_ref","name","flipModifier","find","_ref2","console","error","join","_getComputedStyle","marginTop","marginRight","marginBottom","marginLeft","margin","parseFloat","warn","runModifierEffects","update","forceUpdate","_state$elements","rects","reset","forEach","modifier","data","__debug_loops__","index","_state$orderedModifie","fn","_state$orderedModifie2","_options","Promise","resolve","destroy","then","onFirstUpdate","_ref3","_ref3$options","effect","cleanupFn","noopFn","push"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/createPopper.js"],"sourcesContent":["import getCompositeRect from \"./dom-utils/getCompositeRect.js\";\nimport getLayoutRect from \"./dom-utils/getLayoutRect.js\";\nimport listScrollParents from \"./dom-utils/listScrollParents.js\";\nimport getOffsetParent from \"./dom-utils/getOffsetParent.js\";\nimport getComputedStyle from \"./dom-utils/getComputedStyle.js\";\nimport orderModifiers from \"./utils/orderModifiers.js\";\nimport debounce from \"./utils/debounce.js\";\nimport validateModifiers from \"./utils/validateModifiers.js\";\nimport uniqueBy from \"./utils/uniqueBy.js\";\nimport getBasePlacement from \"./utils/getBasePlacement.js\";\nimport mergeByName from \"./utils/mergeByName.js\";\nimport detectOverflow from \"./utils/detectOverflow.js\";\nimport { isElement } from \"./dom-utils/instanceOf.js\";\nimport { auto } from \"./enums.js\";\nvar INVALID_ELEMENT_ERROR = 'Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.';\nvar INFINITE_LOOP_ERROR = 'Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.';\nvar DEFAULT_OPTIONS = {\n placement: 'bottom',\n modifiers: [],\n strategy: 'absolute'\n};\n\nfunction areValidElements() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return !args.some(function (element) {\n return !(element && typeof element.getBoundingClientRect === 'function');\n });\n}\n\nexport function popperGenerator(generatorOptions) {\n if (generatorOptions === void 0) {\n generatorOptions = {};\n }\n\n var _generatorOptions = generatorOptions,\n _generatorOptions$def = _generatorOptions.defaultModifiers,\n defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def,\n _generatorOptions$def2 = _generatorOptions.defaultOptions,\n defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2;\n return function createPopper(reference, popper, options) {\n if (options === void 0) {\n options = defaultOptions;\n }\n\n var state = {\n placement: 'bottom',\n orderedModifiers: [],\n options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions),\n modifiersData: {},\n elements: {\n reference: reference,\n popper: popper\n },\n attributes: {},\n styles: {}\n };\n var effectCleanupFns = [];\n var isDestroyed = false;\n var instance = {\n state: state,\n setOptions: function setOptions(setOptionsAction) {\n var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction;\n cleanupModifierEffects();\n state.options = Object.assign({}, defaultOptions, state.options, options);\n state.scrollParents = {\n reference: isElement(reference) ? listScrollParents(reference) : reference.contextElement ? listScrollParents(reference.contextElement) : [],\n popper: listScrollParents(popper)\n }; // Orders the modifiers based on their dependencies and `phase`\n // properties\n\n var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers\n\n state.orderedModifiers = orderedModifiers.filter(function (m) {\n return m.enabled;\n }); // Validate the provided modifiers so that the consumer will get warned\n // if one of the modifiers is invalid for any reason\n\n if (process.env.NODE_ENV !== \"production\") {\n var modifiers = uniqueBy([].concat(orderedModifiers, state.options.modifiers), function (_ref) {\n var name = _ref.name;\n return name;\n });\n validateModifiers(modifiers);\n\n if (getBasePlacement(state.options.placement) === auto) {\n var flipModifier = state.orderedModifiers.find(function (_ref2) {\n var name = _ref2.name;\n return name === 'flip';\n });\n\n if (!flipModifier) {\n console.error(['Popper: \"auto\" placements require the \"flip\" modifier be', 'present and enabled to work.'].join(' '));\n }\n }\n\n var _getComputedStyle = getComputedStyle(popper),\n marginTop = _getComputedStyle.marginTop,\n marginRight = _getComputedStyle.marginRight,\n marginBottom = _getComputedStyle.marginBottom,\n marginLeft = _getComputedStyle.marginLeft; // We no longer take into account `margins` on the popper, and it can\n // cause bugs with positioning, so we'll warn the consumer\n\n\n if ([marginTop, marginRight, marginBottom, marginLeft].some(function (margin) {\n return parseFloat(margin);\n })) {\n console.warn(['Popper: CSS \"margin\" styles cannot be used to apply padding', 'between the popper and its reference element or boundary.', 'To replicate margin, use the `offset` modifier, as well as', 'the `padding` option in the `preventOverflow` and `flip`', 'modifiers.'].join(' '));\n }\n }\n\n runModifierEffects();\n return instance.update();\n },\n // Sync update – it will always be executed, even if not necessary. This\n // is useful for low frequency updates where sync behavior simplifies the\n // logic.\n // For high frequency updates (e.g. `resize` and `scroll` events), always\n // prefer the async Popper#update method\n forceUpdate: function forceUpdate() {\n if (isDestroyed) {\n return;\n }\n\n var _state$elements = state.elements,\n reference = _state$elements.reference,\n popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements\n // anymore\n\n if (!areValidElements(reference, popper)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(INVALID_ELEMENT_ERROR);\n }\n\n return;\n } // Store the reference and popper rects to be read by modifiers\n\n\n state.rects = {\n reference: getCompositeRect(reference, getOffsetParent(popper), state.options.strategy === 'fixed'),\n popper: getLayoutRect(popper)\n }; // Modifiers have the ability to reset the current update cycle. The\n // most common use case for this is the `flip` modifier changing the\n // placement, which then needs to re-run all the modifiers, because the\n // logic was previously ran for the previous placement and is therefore\n // stale/incorrect\n\n state.reset = false;\n state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier\n // is filled with the initial data specified by the modifier. This means\n // it doesn't persist and is fresh on each update.\n // To ensure persistent data, use `${name}#persistent`\n\n state.orderedModifiers.forEach(function (modifier) {\n return state.modifiersData[modifier.name] = Object.assign({}, modifier.data);\n });\n var __debug_loops__ = 0;\n\n for (var index = 0; index < state.orderedModifiers.length; index++) {\n if (process.env.NODE_ENV !== \"production\") {\n __debug_loops__ += 1;\n\n if (__debug_loops__ > 100) {\n console.error(INFINITE_LOOP_ERROR);\n break;\n }\n }\n\n if (state.reset === true) {\n state.reset = false;\n index = -1;\n continue;\n }\n\n var _state$orderedModifie = state.orderedModifiers[index],\n fn = _state$orderedModifie.fn,\n _state$orderedModifie2 = _state$orderedModifie.options,\n _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2,\n name = _state$orderedModifie.name;\n\n if (typeof fn === 'function') {\n state = fn({\n state: state,\n options: _options,\n name: name,\n instance: instance\n }) || state;\n }\n }\n },\n // Async and optimistically optimized update – it will not be executed if\n // not necessary (debounced to run at most once-per-tick)\n update: debounce(function () {\n return new Promise(function (resolve) {\n instance.forceUpdate();\n resolve(state);\n });\n }),\n destroy: function destroy() {\n cleanupModifierEffects();\n isDestroyed = true;\n }\n };\n\n if (!areValidElements(reference, popper)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(INVALID_ELEMENT_ERROR);\n }\n\n return instance;\n }\n\n instance.setOptions(options).then(function (state) {\n if (!isDestroyed && options.onFirstUpdate) {\n options.onFirstUpdate(state);\n }\n }); // Modifiers have the ability to execute arbitrary code before the first\n // update cycle runs. They will be executed in the same order as the update\n // cycle. This is useful when a modifier adds some persistent data that\n // other modifiers need to use, but the modifier is run after the dependent\n // one.\n\n function runModifierEffects() {\n state.orderedModifiers.forEach(function (_ref3) {\n var name = _ref3.name,\n _ref3$options = _ref3.options,\n options = _ref3$options === void 0 ? {} : _ref3$options,\n effect = _ref3.effect;\n\n if (typeof effect === 'function') {\n var cleanupFn = effect({\n state: state,\n name: name,\n instance: instance,\n options: options\n });\n\n var noopFn = function noopFn() {};\n\n effectCleanupFns.push(cleanupFn || noopFn);\n }\n });\n }\n\n function cleanupModifierEffects() {\n effectCleanupFns.forEach(function (fn) {\n return fn();\n });\n effectCleanupFns = [];\n }\n\n return instance;\n };\n}\nexport var createPopper = /*#__PURE__*/popperGenerator(); // eslint-disable-next-line import/no-unused-modules\n\nexport { detectOverflow };"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2ad295a112d3d3f57d54b680449a997f.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2ad295a112d3d3f57d54b680449a997f.json deleted file mode 100644 index 6ccfdffc..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2ad295a112d3d3f57d54b680449a997f.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import classNames from 'classnames';\nimport * as React from 'react';\nimport { useBootstrapPrefix, useBootstrapBreakpoints } from './ThemeProvider';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport function useCol(_ref) {\n let {\n as,\n bsPrefix,\n className,\n ...props\n } = _ref;\n bsPrefix = useBootstrapPrefix(bsPrefix, 'col');\n const breakpoints = useBootstrapBreakpoints();\n const spans = [];\n const classes = [];\n breakpoints.forEach(brkPoint => {\n const propValue = props[brkPoint];\n delete props[brkPoint];\n let span;\n let offset;\n let order;\n\n if (typeof propValue === 'object' && propValue != null) {\n ({\n span,\n offset,\n order\n } = propValue);\n } else {\n span = propValue;\n }\n\n const infix = brkPoint !== 'xs' ? `-${brkPoint}` : '';\n if (span) spans.push(span === true ? `${bsPrefix}${infix}` : `${bsPrefix}${infix}-${span}`);\n if (order != null) classes.push(`order${infix}-${order}`);\n if (offset != null) classes.push(`offset${infix}-${offset}`);\n });\n return [{ ...props,\n className: classNames(className, ...spans, ...classes)\n }, {\n as,\n bsPrefix,\n spans\n }];\n}\nconst Col = /*#__PURE__*/React.forwardRef( // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n(props, ref) => {\n const [{\n className,\n ...colProps\n }, {\n as: Component = 'div',\n bsPrefix,\n spans\n }] = useCol(props);\n return /*#__PURE__*/_jsx(Component, { ...colProps,\n ref: ref,\n className: classNames(className, !spans.length && bsPrefix)\n });\n});\nCol.displayName = 'Col';\nexport default Col;","map":{"version":3,"names":["classNames","React","useBootstrapPrefix","useBootstrapBreakpoints","jsx","_jsx","useCol","as","bsPrefix","className","props","breakpoints","spans","classes","forEach","brkPoint","propValue","span","offset","order","infix","push","Col","forwardRef","ref","colProps","Component","length","displayName"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-bootstrap/esm/Col.js"],"sourcesContent":["import classNames from 'classnames';\nimport * as React from 'react';\nimport { useBootstrapPrefix, useBootstrapBreakpoints } from './ThemeProvider';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport function useCol({\n as,\n bsPrefix,\n className,\n ...props\n}) {\n bsPrefix = useBootstrapPrefix(bsPrefix, 'col');\n const breakpoints = useBootstrapBreakpoints();\n const spans = [];\n const classes = [];\n breakpoints.forEach(brkPoint => {\n const propValue = props[brkPoint];\n delete props[brkPoint];\n let span;\n let offset;\n let order;\n\n if (typeof propValue === 'object' && propValue != null) {\n ({\n span,\n offset,\n order\n } = propValue);\n } else {\n span = propValue;\n }\n\n const infix = brkPoint !== 'xs' ? `-${brkPoint}` : '';\n if (span) spans.push(span === true ? `${bsPrefix}${infix}` : `${bsPrefix}${infix}-${span}`);\n if (order != null) classes.push(`order${infix}-${order}`);\n if (offset != null) classes.push(`offset${infix}-${offset}`);\n });\n return [{ ...props,\n className: classNames(className, ...spans, ...classes)\n }, {\n as,\n bsPrefix,\n spans\n }];\n}\nconst Col = /*#__PURE__*/React.forwardRef( // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n(props, ref) => {\n const [{\n className,\n ...colProps\n }, {\n as: Component = 'div',\n bsPrefix,\n spans\n }] = useCol(props);\n return /*#__PURE__*/_jsx(Component, { ...colProps,\n ref: ref,\n className: classNames(className, !spans.length && bsPrefix)\n });\n});\nCol.displayName = 'Col';\nexport default Col;"],"mappings":"AAAA,OAAOA,UAAP,MAAuB,YAAvB;AACA,OAAO,KAAKC,KAAZ,MAAuB,OAAvB;AACA,SAASC,kBAAT,EAA6BC,uBAA7B,QAA4D,iBAA5D;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,OAAO,SAASC,MAAT,OAKJ;EAAA,IALoB;IACrBC,EADqB;IAErBC,QAFqB;IAGrBC,SAHqB;IAIrB,GAAGC;EAJkB,CAKpB;EACDF,QAAQ,GAAGN,kBAAkB,CAACM,QAAD,EAAW,KAAX,CAA7B;EACA,MAAMG,WAAW,GAAGR,uBAAuB,EAA3C;EACA,MAAMS,KAAK,GAAG,EAAd;EACA,MAAMC,OAAO,GAAG,EAAhB;EACAF,WAAW,CAACG,OAAZ,CAAoBC,QAAQ,IAAI;IAC9B,MAAMC,SAAS,GAAGN,KAAK,CAACK,QAAD,CAAvB;IACA,OAAOL,KAAK,CAACK,QAAD,CAAZ;IACA,IAAIE,IAAJ;IACA,IAAIC,MAAJ;IACA,IAAIC,KAAJ;;IAEA,IAAI,OAAOH,SAAP,KAAqB,QAArB,IAAiCA,SAAS,IAAI,IAAlD,EAAwD;MACtD,CAAC;QACCC,IADD;QAECC,MAFD;QAGCC;MAHD,IAIGH,SAJJ;IAKD,CAND,MAMO;MACLC,IAAI,GAAGD,SAAP;IACD;;IAED,MAAMI,KAAK,GAAGL,QAAQ,KAAK,IAAb,GAAqB,IAAGA,QAAS,EAAjC,GAAqC,EAAnD;IACA,IAAIE,IAAJ,EAAUL,KAAK,CAACS,IAAN,CAAWJ,IAAI,KAAK,IAAT,GAAiB,GAAET,QAAS,GAAEY,KAAM,EAApC,GAAyC,GAAEZ,QAAS,GAAEY,KAAM,IAAGH,IAAK,EAA/E;IACV,IAAIE,KAAK,IAAI,IAAb,EAAmBN,OAAO,CAACQ,IAAR,CAAc,QAAOD,KAAM,IAAGD,KAAM,EAApC;IACnB,IAAID,MAAM,IAAI,IAAd,EAAoBL,OAAO,CAACQ,IAAR,CAAc,SAAQD,KAAM,IAAGF,MAAO,EAAtC;EACrB,CArBD;EAsBA,OAAO,CAAC,EAAE,GAAGR,KAAL;IACND,SAAS,EAAET,UAAU,CAACS,SAAD,EAAY,GAAGG,KAAf,EAAsB,GAAGC,OAAzB;EADf,CAAD,EAEJ;IACDN,EADC;IAEDC,QAFC;IAGDI;EAHC,CAFI,CAAP;AAOD;AACD,MAAMU,GAAG,GAAG,aAAarB,KAAK,CAACsB,UAAN,EAAkB;AAC3C,CAACb,KAAD,EAAQc,GAAR,KAAgB;EACd,MAAM,CAAC;IACLf,SADK;IAEL,GAAGgB;EAFE,CAAD,EAGH;IACDlB,EAAE,EAAEmB,SAAS,GAAG,KADf;IAEDlB,QAFC;IAGDI;EAHC,CAHG,IAODN,MAAM,CAACI,KAAD,CAPX;EAQA,OAAO,aAAaL,IAAI,CAACqB,SAAD,EAAY,EAAE,GAAGD,QAAL;IAClCD,GAAG,EAAEA,GAD6B;IAElCf,SAAS,EAAET,UAAU,CAACS,SAAD,EAAY,CAACG,KAAK,CAACe,MAAP,IAAiBnB,QAA7B;EAFa,CAAZ,CAAxB;AAID,CAdwB,CAAzB;AAeAc,GAAG,CAACM,WAAJ,GAAkB,KAAlB;AACA,eAAeN,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2c20b81702779bda6a5eb6a6f6eb71b2.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2c20b81702779bda6a5eb6a6f6eb71b2.json new file mode 100644 index 00000000..c32d632c --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/2c20b81702779bda6a5eb6a6f6eb71b2.json @@ -0,0 +1 @@ +{"ast":null,"code":"'use strict';\n\nvar VERSION = require('../env/data').version;\n\nvar AxiosError = require('../core/AxiosError');\n\nvar validators = {}; // eslint-disable-next-line func-names\n\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach(function (type, i) {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\nvar deprecatedWarnings = {};\n/**\n * Transitional option validator\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n * @returns {function}\n */\n\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n } // eslint-disable-next-line func-names\n\n\n return function (value, opt, opts) {\n if (validator === false) {\n throw new AxiosError(formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')), AxiosError.ERR_DEPRECATED);\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true; // eslint-disable-next-line no-console\n\n console.warn(formatMessage(opt, ' has been deprecated since v' + version + ' and will be removed in the near future'));\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n/**\n * Assert object's properties type\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n */\n\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);\n }\n\n var keys = Object.keys(options);\n var i = keys.length;\n\n while (i-- > 0) {\n var opt = keys[i];\n var validator = schema[opt];\n\n if (validator) {\n var value = options[opt];\n var result = value === undefined || validator(value, opt, options);\n\n if (result !== true) {\n throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);\n }\n\n continue;\n }\n\n if (allowUnknown !== true) {\n throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);\n }\n }\n}\n\nmodule.exports = {\n assertOptions: assertOptions,\n validators: validators\n};","map":{"version":3,"names":["VERSION","require","version","AxiosError","validators","forEach","type","i","validator","thing","deprecatedWarnings","transitional","message","formatMessage","opt","desc","value","opts","ERR_DEPRECATED","console","warn","assertOptions","options","schema","allowUnknown","ERR_BAD_OPTION_VALUE","keys","Object","length","result","undefined","ERR_BAD_OPTION","module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/axios/lib/helpers/validator.js"],"sourcesContent":["'use strict';\n\nvar VERSION = require('../env/data').version;\nvar AxiosError = require('../core/AxiosError');\n\nvar validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach(function(type, i) {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nvar deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return function(value, opt, opts) {\n if (validator === false) {\n throw new AxiosError(\n formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')),\n AxiosError.ERR_DEPRECATED\n );\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);\n }\n var keys = Object.keys(options);\n var i = keys.length;\n while (i-- > 0) {\n var opt = keys[i];\n var validator = schema[opt];\n if (validator) {\n var value = options[opt];\n var result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);\n }\n }\n}\n\nmodule.exports = {\n assertOptions: assertOptions,\n validators: validators\n};\n"],"mappings":"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"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2c2290a8dbee1ad273259052f014d681.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2c2290a8dbee1ad273259052f014d681.json deleted file mode 100644 index ccad9914..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2c2290a8dbee1ad273259052f014d681.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { BrowserRouter, Route, Routes } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n c;\n return /*#__PURE__*/_jsxDEV(BrowserRouter, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Routes, {\n children: [/*#__PURE__*/_jsxDEV(Route, {\n path: \"/\",\n element: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 32\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 7\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"login\",\n element: /*#__PURE__*/_jsxDEV(Login, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 44\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/register\",\n element: /*#__PURE__*/_jsxDEV(Register, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 48\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"createEntry\",\n element: /*#__PURE__*/_jsxDEV(CreateEntry, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 23,\n columnNumber: 50\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 23,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"blogEntry:entryId\",\n element: /*#__PURE__*/_jsxDEV(BlogEntry, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 24,\n columnNumber: 56\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 24,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["BrowserRouter","Route","Routes","BlogEntry","CreateEntry","Home","Login","Register","TopBar","App","c"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n BrowserRouter,\n Route,\n Routes,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n c\n return (\n \n \n \n } />\n }/>\n } />\n } />\n } />\n\n \n \n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,aADF,EAEEC,KAFF,EAGEC,MAHF,QAIO,kBAJP;AAMA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,KAAP,MAAkB,gCAAlB;AACA,OAAOC,QAAP,MAAqB,sCAArB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACbC,CAAC;EACD,oBACE,QAAC,aAAD;IAAA,wBACA,QAAC,MAAD;MAAA;MAAA;MAAA;IAAA,QADA,eAEA,QAAC,MAAD;MAAA,wBACE,QAAC,KAAD;QAAO,IAAI,EAAC,GAAZ;QAAgB,OAAO,eAAE,QAAC,IAAD;UAAA;UAAA;UAAA;QAAA;MAAzB;QAAA;QAAA;QAAA;MAAA,QADF,eAEI,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,OAAlB;QAA0B,OAAO,eAAE,QAAC,KAAD;UAAA;UAAA;UAAA;QAAA;MAAnC;QAAA;QAAA;QAAA;MAAA,QAFJ,eAGI,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,WAAlB;QAA8B,OAAO,eAAE,QAAC,QAAD;UAAA;UAAA;UAAA;QAAA;MAAvC;QAAA;QAAA;QAAA;MAAA,QAHJ,eAII,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,aAAlB;QAAgC,OAAO,eAAE,QAAC,WAAD;UAAA;UAAA;UAAA;QAAA;MAAzC;QAAA;QAAA;QAAA;MAAA,QAJJ,eAKI,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,mBAAlB;QAAsC,OAAO,eAAE,QAAC,SAAD;UAAA;UAAA;UAAA;QAAA;MAA/C;QAAA;QAAA;QAAA;MAAA,QALJ;IAAA;MAAA;MAAA;MAAA;IAAA,QAFA;EAAA;IAAA;IAAA;IAAA;EAAA,QADF;AAaD;;KAfQD,G;AAiBT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2c3b195551327038153a16c56f9d1169.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2c3b195551327038153a16c56f9d1169.json deleted file mode 100644 index 423a3967..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2c3b195551327038153a16c56f9d1169.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n\nvar utils = require('./../utils');\n\nvar transformData = require('./transformData');\n\nvar isCancel = require('../cancel/isCancel');\n\nvar defaults = require('../defaults');\n\nvar CanceledError = require('../cancel/CanceledError');\n/**\n * Throws a `CanceledError` if cancellation has been requested.\n */\n\n\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new CanceledError();\n }\n}\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\n\n\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config); // Ensure headers exist\n\n config.headers = config.headers || {}; // Transform request data\n\n config.data = transformData.call(config, config.data, config.headers, config.transformRequest); // Flatten headers\n\n config.headers = utils.merge(config.headers.common || {}, config.headers[config.method] || {}, config.headers);\n utils.forEach(['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], function cleanHeaderConfig(method) {\n delete config.headers[method];\n });\n var adapter = config.adapter || defaults.adapter;\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config); // Transform response data\n\n response.data = transformData.call(config, response.data, response.headers, config.transformResponse);\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config); // Transform response data\n\n if (reason && reason.response) {\n reason.response.data = transformData.call(config, reason.response.data, reason.response.headers, config.transformResponse);\n }\n }\n\n return Promise.reject(reason);\n });\n};","map":{"version":3,"names":["utils","require","transformData","isCancel","defaults","CanceledError","throwIfCancellationRequested","config","cancelToken","throwIfRequested","signal","aborted","module","exports","dispatchRequest","headers","data","call","transformRequest","merge","common","method","forEach","cleanHeaderConfig","adapter","then","onAdapterResolution","response","transformResponse","onAdapterRejection","reason","Promise","reject"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/axios/lib/core/dispatchRequest.js"],"sourcesContent":["'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\nvar CanceledError = require('../cancel/CanceledError');\n\n/**\n * Throws a `CanceledError` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new CanceledError();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData.call(\n config,\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData.call(\n config,\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData.call(\n config,\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n"],"mappings":"AAAA;;AAEA,IAAIA,KAAK,GAAGC,OAAO,CAAC,YAAD,CAAnB;;AACA,IAAIC,aAAa,GAAGD,OAAO,CAAC,iBAAD,CAA3B;;AACA,IAAIE,QAAQ,GAAGF,OAAO,CAAC,oBAAD,CAAtB;;AACA,IAAIG,QAAQ,GAAGH,OAAO,CAAC,aAAD,CAAtB;;AACA,IAAII,aAAa,GAAGJ,OAAO,CAAC,yBAAD,CAA3B;AAEA;AACA;AACA;;;AACA,SAASK,4BAAT,CAAsCC,MAAtC,EAA8C;EAC5C,IAAIA,MAAM,CAACC,WAAX,EAAwB;IACtBD,MAAM,CAACC,WAAP,CAAmBC,gBAAnB;EACD;;EAED,IAAIF,MAAM,CAACG,MAAP,IAAiBH,MAAM,CAACG,MAAP,CAAcC,OAAnC,EAA4C;IAC1C,MAAM,IAAIN,aAAJ,EAAN;EACD;AACF;AAED;AACA;AACA;AACA;AACA;AACA;;;AACAO,MAAM,CAACC,OAAP,GAAiB,SAASC,eAAT,CAAyBP,MAAzB,EAAiC;EAChDD,4BAA4B,CAACC,MAAD,CAA5B,CADgD,CAGhD;;EACAA,MAAM,CAACQ,OAAP,GAAiBR,MAAM,CAACQ,OAAP,IAAkB,EAAnC,CAJgD,CAMhD;;EACAR,MAAM,CAACS,IAAP,GAAcd,aAAa,CAACe,IAAd,CACZV,MADY,EAEZA,MAAM,CAACS,IAFK,EAGZT,MAAM,CAACQ,OAHK,EAIZR,MAAM,CAACW,gBAJK,CAAd,CAPgD,CAchD;;EACAX,MAAM,CAACQ,OAAP,GAAiBf,KAAK,CAACmB,KAAN,CACfZ,MAAM,CAACQ,OAAP,CAAeK,MAAf,IAAyB,EADV,EAEfb,MAAM,CAACQ,OAAP,CAAeR,MAAM,CAACc,MAAtB,KAAiC,EAFlB,EAGfd,MAAM,CAACQ,OAHQ,CAAjB;EAMAf,KAAK,CAACsB,OAAN,CACE,CAAC,QAAD,EAAW,KAAX,EAAkB,MAAlB,EAA0B,MAA1B,EAAkC,KAAlC,EAAyC,OAAzC,EAAkD,QAAlD,CADF,EAEE,SAASC,iBAAT,CAA2BF,MAA3B,EAAmC;IACjC,OAAOd,MAAM,CAACQ,OAAP,CAAeM,MAAf,CAAP;EACD,CAJH;EAOA,IAAIG,OAAO,GAAGjB,MAAM,CAACiB,OAAP,IAAkBpB,QAAQ,CAACoB,OAAzC;EAEA,OAAOA,OAAO,CAACjB,MAAD,CAAP,CAAgBkB,IAAhB,CAAqB,SAASC,mBAAT,CAA6BC,QAA7B,EAAuC;IACjErB,4BAA4B,CAACC,MAAD,CAA5B,CADiE,CAGjE;;IACAoB,QAAQ,CAACX,IAAT,GAAgBd,aAAa,CAACe,IAAd,CACdV,MADc,EAEdoB,QAAQ,CAACX,IAFK,EAGdW,QAAQ,CAACZ,OAHK,EAIdR,MAAM,CAACqB,iBAJO,CAAhB;IAOA,OAAOD,QAAP;EACD,CAZM,EAYJ,SAASE,kBAAT,CAA4BC,MAA5B,EAAoC;IACrC,IAAI,CAAC3B,QAAQ,CAAC2B,MAAD,CAAb,EAAuB;MACrBxB,4BAA4B,CAACC,MAAD,CAA5B,CADqB,CAGrB;;MACA,IAAIuB,MAAM,IAAIA,MAAM,CAACH,QAArB,EAA+B;QAC7BG,MAAM,CAACH,QAAP,CAAgBX,IAAhB,GAAuBd,aAAa,CAACe,IAAd,CACrBV,MADqB,EAErBuB,MAAM,CAACH,QAAP,CAAgBX,IAFK,EAGrBc,MAAM,CAACH,QAAP,CAAgBZ,OAHK,EAIrBR,MAAM,CAACqB,iBAJc,CAAvB;MAMD;IACF;;IAED,OAAOG,OAAO,CAACC,MAAR,CAAeF,MAAf,CAAP;EACD,CA5BM,CAAP;AA6BD,CA3DD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2c969c6a67e6b621fa42ad4d9edae963.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2c969c6a67e6b621fa42ad4d9edae963.json deleted file mode 100644 index de476091..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2c969c6a67e6b621fa42ad4d9edae963.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1 m-5\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary p-5\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary m-5\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n\n Author: Created: \n \n Entry Title \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBAEE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF,eAGE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,2BAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,aAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,aAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAHF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAcH;KAfuBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2cdadc0c9ec9c3b4b913ef852d26272b.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2cdadc0c9ec9c3b4b913ef852d26272b.json deleted file mode 100644 index 753c6fa5..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2cdadc0c9ec9c3b4b913ef852d26272b.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { Route, Router, Routes } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"lab3/src/components/pages/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: /*#__PURE__*/_jsxDEV(Router, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 7\n }, this), /*#__PURE__*/_jsxDEV(Routes, {\n children: [/*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/\",\n children: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/login\",\n children: /*#__PURE__*/_jsxDEV(Login, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 24,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 23,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/register\",\n children: /*#__PURE__*/_jsxDEV(Register, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 27,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 26,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["Route","Router","Routes","BlogEntry","CreateEntry","Home","Login","Register","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n Route,\n Router,\n Routes,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"lab3/src/components/pages/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n return (\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,KADF,EAEEC,MAFF,EAGEC,MAHF,QAIO,kBAJP;AAMA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,KAAP,MAAkB,iCAAlB;AACA,OAAOC,QAAP,MAAqB,sCAArB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE;IAAA,uBACA,QAAC,MAAD;MAAA,wBACE,QAAC,MAAD;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,MAAD;QAAA,wBACE,QAAC,KAAD;UAAO,KAAK,MAAZ;UAAa,IAAI,EAAC,GAAlB;UAAA,uBACA,QAAC,IAAD;YAAA;YAAA;YAAA;UAAA;QADA;UAAA;UAAA;UAAA;QAAA,QADF,eAIE,QAAC,KAAD;UAAO,KAAK,MAAZ;UAAa,IAAI,EAAC,QAAlB;UAAA,uBACA,QAAC,KAAD;YAAA;YAAA;YAAA;UAAA;QADA;UAAA;UAAA;UAAA;QAAA,QAJF,eAOE,QAAC,KAAD;UAAO,KAAK,MAAZ;UAAa,IAAI,EAAC,WAAlB;UAAA,uBACA,QAAC,QAAD;YAAA;YAAA;YAAA;UAAA;QADA;UAAA;UAAA;UAAA;QAAA,QAPF;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF;IAAA;MAAA;MAAA;MAAA;IAAA;EADA;IAAA;IAAA;IAAA;EAAA,QADF;AAkBD;;KAnBQA,G;AAqBT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2d18992bdfa22df83199112bf0578aba.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2d18992bdfa22df83199112bf0578aba.json new file mode 100644 index 00000000..3a1e452c --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/2d18992bdfa22df83199112bf0578aba.json @@ -0,0 +1 @@ +{"ast":null,"code":"var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es-x/no-function-prototype-bind -- safe\n var test = function () {\n /* empty */\n }.bind(); // eslint-disable-next-line no-prototype-builtins -- safe\n\n\n return typeof test != 'function' || test.hasOwnProperty('prototype');\n});","map":{"version":3,"names":["fails","require","module","exports","test","bind","hasOwnProperty"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/core-js-pure/internals/function-bind-native.js"],"sourcesContent":["var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es-x/no-function-prototype-bind -- safe\n var test = (function () { /* empty */ }).bind();\n // eslint-disable-next-line no-prototype-builtins -- safe\n return typeof test != 'function' || test.hasOwnProperty('prototype');\n});\n"],"mappings":"AAAA,IAAIA,KAAK,GAAGC,OAAO,CAAC,oBAAD,CAAnB;;AAEAC,MAAM,CAACC,OAAP,GAAiB,CAACH,KAAK,CAAC,YAAY;EAClC;EACA,IAAII,IAAI,GAAI,YAAY;IAAE;EAAa,CAA5B,CAA8BC,IAA9B,EAAX,CAFkC,CAGlC;;;EACA,OAAO,OAAOD,IAAP,IAAe,UAAf,IAA6BA,IAAI,CAACE,cAAL,CAAoB,WAApB,CAApC;AACD,CALsB,CAAvB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2d1ea08f43ad0dc0ec55d4d5d4e2f859.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2d1ea08f43ad0dc0ec55d4d5d4e2f859.json deleted file mode 100644 index 6312dd01..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2d1ea08f43ad0dc0ec55d4d5d4e2f859.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center \",\n children: \" Author: Created: \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center display-1 m-5\",\n children: \" Entry Title \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Entry content\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary p-1\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary m-5 p-5\",\n children: \"Remove\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n\n Author: Created: \n \n Entry Title \n \n Entry content\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBAEE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,cAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF,eAGE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,2BAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,aAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,iBAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAHF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAcH;KAfuBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2de33040932d6805d23c45e5df5349bd.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2de33040932d6805d23c45e5df5349bd.json deleted file mode 100644 index c8301a02..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2de33040932d6805d23c45e5df5349bd.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function Blog() {\n return /*#__PURE__*/_jsxDEV(Card, {\n style: {\n width: '40rem',\n height: '40rem',\n margin: '2rem'\n },\n children: /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n children: \"Blog title\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n children: \"Blog text\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = Blog;\n\nvar _c;\n\n$RefreshReg$(_c, \"Blog\");","map":{"version":3,"names":["Button","Card","React","Blog","width","height","margin"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/blog/blog.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function Blog() {\n return (\n\n \n \n Blog title\n \n Blog text\n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,IAAT,GAAgB;EAC3B,oBACJ,QAAC,IAAD;IAAM,KAAK,EAAE;MAAEC,KAAK,EAAE,OAAT;MAAkBC,MAAM,EAAC,OAAzB;MAAkCC,MAAM,EAAC;IAAzC,CAAb;IAAA,uBAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF;IAAA;MAAA;MAAA;MAAA;IAAA;EAFF;IAAA;IAAA;IAAA;EAAA,QADI;AAYH;KAbuBH,I"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2ded5b440e27249e7eb6d15a3c8cfd41.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2ded5b440e27249e7eb6d15a3c8cfd41.json deleted file mode 100644 index dd65bb3d..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2ded5b440e27249e7eb6d15a3c8cfd41.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { Route, Router, Routes } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n return /*#__PURE__*/_jsxDEV(Router, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 7\n }, this), /*#__PURE__*/_jsxDEV(Routes, {\n children: [/*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/\",\n children: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/login\",\n children: /*#__PURE__*/_jsxDEV(Login, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 25,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 24,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/register\",\n children: /*#__PURE__*/_jsxDEV(Register, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 29,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 28,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["Route","Router","Routes","BlogEntry","CreateEntry","Home","Login","Register","TopBar","App"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n Route,\n Router,\n Routes,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n return (\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,KADF,EAEEC,MAFF,EAGEC,MAHF,QAIO,kBAJP;AAMA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,KAAP,MAAkB,gCAAlB;AACA,OAAOC,QAAP,MAAqB,sCAArB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,oBACE,QAAC,MAAD;IAAA,wBACE,QAAC,MAAD;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,MAAD;MAAA,wBAEE,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,GAAlB;QAAA,uBACA,QAAC,IAAD;UAAA;UAAA;UAAA;QAAA;MADA;QAAA;QAAA;QAAA;MAAA,QAFF,eAME,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,QAAlB;QAAA,uBACE,QAAC,KAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QANF,eAUE,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,WAAlB;QAAA,uBACE,QAAC,QAAD;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAVF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADF;AAoBD;;KArBQA,G;AAuBT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2e4aa4a2a9d8b17b82050e322c786cfd.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2e4aa4a2a9d8b17b82050e322c786cfd.json deleted file mode 100644 index 1155bd98..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2e4aa4a2a9d8b17b82050e322c786cfd.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"\"use strict\";\n\nif (process.env.NODE_ENV === \"production\") {\n module.exports = require(\"./cjs/react-router-dom.min.js\");\n} else {\n module.exports = require(\"./cjs/react-router-dom.js\");\n}","map":{"version":3,"names":["process","env","NODE_ENV","module","exports","require"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-router-dom/index.js"],"sourcesContent":["\"use strict\";\n\nif (process.env.NODE_ENV === \"production\") {\n module.exports = require(\"./cjs/react-router-dom.min.js\");\n} else {\n module.exports = require(\"./cjs/react-router-dom.js\");\n}\n"],"mappings":"AAAA;;AAEA,IAAIA,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;EACzCC,MAAM,CAACC,OAAP,GAAiBC,OAAO,CAAC,+BAAD,CAAxB;AACD,CAFD,MAEO;EACLF,MAAM,CAACC,OAAP,GAAiBC,OAAO,CAAC,2BAAD,CAAxB;AACD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2e91f8d46e8bfa12945a93e55d877130.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2e91f8d46e8bfa12945a93e55d877130.json deleted file mode 100644 index 254e88d1..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2e91f8d46e8bfa12945a93e55d877130.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"/**\n * React Router DOM v6.3.0\n *\n * Copyright (c) Remix Software Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE.md file in the root directory of this source tree.\n *\n * @license MIT\n */\nimport { useRef, useState, useLayoutEffect, createElement, forwardRef, useCallback, useMemo } from 'react';\nimport { createBrowserHistory, createHashHistory } from 'history';\nimport { Router, useHref, createPath, useLocation, useResolvedPath, useNavigate } from 'react-router';\nexport { MemoryRouter, Navigate, NavigationType, Outlet, Route, Router, Routes, UNSAFE_LocationContext, UNSAFE_NavigationContext, UNSAFE_RouteContext, createPath, createRoutesFromChildren, generatePath, matchPath, matchRoutes, parsePath, renderMatches, resolvePath, useHref, useInRouterContext, useLocation, useMatch, useNavigate, useNavigationType, useOutlet, useOutletContext, useParams, useResolvedPath, useRoutes } from 'react-router';\n\nfunction _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nfunction _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n\n return target;\n}\n\nconst _excluded = [\"onClick\", \"reloadDocument\", \"replace\", \"state\", \"target\", \"to\"],\n _excluded2 = [\"aria-current\", \"caseSensitive\", \"className\", \"end\", \"style\", \"to\", \"children\"];\n\nfunction warning(cond, message) {\n if (!cond) {\n // eslint-disable-next-line no-console\n if (typeof console !== \"undefined\") console.warn(message);\n\n try {\n // Welcome to debugging React Router!\n //\n // This error is thrown as a convenience so you can more easily\n // find the source for a warning that appears in the console by\n // enabling \"pause on exceptions\" in your JavaScript debugger.\n throw new Error(message); // eslint-disable-next-line no-empty\n } catch (e) {}\n }\n} ////////////////////////////////////////////////////////////////////////////////\n// COMPONENTS\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n * A `` for use in web browsers. Provides the cleanest URLs.\n */\n\n\nfunction BrowserRouter(_ref) {\n let {\n basename,\n children,\n window\n } = _ref;\n let historyRef = useRef();\n\n if (historyRef.current == null) {\n historyRef.current = createBrowserHistory({\n window\n });\n }\n\n let history = historyRef.current;\n let [state, setState] = useState({\n action: history.action,\n location: history.location\n });\n useLayoutEffect(() => history.listen(setState), [history]);\n return /*#__PURE__*/createElement(Router, {\n basename: basename,\n children: children,\n location: state.location,\n navigationType: state.action,\n navigator: history\n });\n}\n/**\n * A `` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\n\n\nfunction HashRouter(_ref2) {\n let {\n basename,\n children,\n window\n } = _ref2;\n let historyRef = useRef();\n\n if (historyRef.current == null) {\n historyRef.current = createHashHistory({\n window\n });\n }\n\n let history = historyRef.current;\n let [state, setState] = useState({\n action: history.action,\n location: history.location\n });\n useLayoutEffect(() => history.listen(setState), [history]);\n return /*#__PURE__*/createElement(Router, {\n basename: basename,\n children: children,\n location: state.location,\n navigationType: state.action,\n navigator: history\n });\n}\n/**\n * A `` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\n\n\nfunction HistoryRouter(_ref3) {\n let {\n basename,\n children,\n history\n } = _ref3;\n const [state, setState] = useState({\n action: history.action,\n location: history.location\n });\n useLayoutEffect(() => history.listen(setState), [history]);\n return /*#__PURE__*/createElement(Router, {\n basename: basename,\n children: children,\n location: state.location,\n navigationType: state.action,\n navigator: history\n });\n}\n\nif (process.env.NODE_ENV !== \"production\") {\n HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nfunction isModifiedEvent(event) {\n return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n/**\n * The public API for rendering a history-aware .\n */\n\n\nconst Link = /*#__PURE__*/forwardRef(function LinkWithRef(_ref4, ref) {\n let {\n onClick,\n reloadDocument,\n replace = false,\n state,\n target,\n to\n } = _ref4,\n rest = _objectWithoutPropertiesLoose(_ref4, _excluded);\n\n let href = useHref(to);\n let internalOnClick = useLinkClickHandler(to, {\n replace,\n state,\n target\n });\n\n function handleClick(event) {\n if (onClick) onClick(event);\n\n if (!event.defaultPrevented && !reloadDocument) {\n internalOnClick(event);\n }\n }\n\n return (\n /*#__PURE__*/\n // eslint-disable-next-line jsx-a11y/anchor-has-content\n createElement(\"a\", _extends({}, rest, {\n href: href,\n onClick: handleClick,\n ref: ref,\n target: target\n }))\n );\n});\n\nif (process.env.NODE_ENV !== \"production\") {\n Link.displayName = \"Link\";\n}\n/**\n * A wrapper that knows if it's \"active\" or not.\n */\n\n\nconst NavLink = /*#__PURE__*/forwardRef(function NavLinkWithRef(_ref5, ref) {\n let {\n \"aria-current\": ariaCurrentProp = \"page\",\n caseSensitive = false,\n className: classNameProp = \"\",\n end = false,\n style: styleProp,\n to,\n children\n } = _ref5,\n rest = _objectWithoutPropertiesLoose(_ref5, _excluded2);\n\n let location = useLocation();\n let path = useResolvedPath(to);\n let locationPathname = location.pathname;\n let toPathname = path.pathname;\n\n if (!caseSensitive) {\n locationPathname = locationPathname.toLowerCase();\n toPathname = toPathname.toLowerCase();\n }\n\n let isActive = locationPathname === toPathname || !end && locationPathname.startsWith(toPathname) && locationPathname.charAt(toPathname.length) === \"/\";\n let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n let className;\n\n if (typeof classNameProp === \"function\") {\n className = classNameProp({\n isActive\n });\n } else {\n // If the className prop is not a function, we use a default `active`\n // class for s that are active. In v5 `active` was the default\n // value for `activeClassName`, but we are removing that API and can still\n // use the old default behavior for a cleaner upgrade path and keep the\n // simple styling rules working as they currently do.\n className = [classNameProp, isActive ? \"active\" : null].filter(Boolean).join(\" \");\n }\n\n let style = typeof styleProp === \"function\" ? styleProp({\n isActive\n }) : styleProp;\n return /*#__PURE__*/createElement(Link, _extends({}, rest, {\n \"aria-current\": ariaCurrent,\n className: className,\n ref: ref,\n style: style,\n to: to\n }), typeof children === \"function\" ? children({\n isActive\n }) : children);\n});\n\nif (process.env.NODE_ENV !== \"production\") {\n NavLink.displayName = \"NavLink\";\n} ////////////////////////////////////////////////////////////////////////////////\n// HOOKS\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n * Handles the click behavior for router `` components. This is useful if\n * you need to create custom `` components with the same click behavior we\n * use in our exported ``.\n */\n\n\nfunction useLinkClickHandler(to, _temp) {\n let {\n target,\n replace: replaceProp,\n state\n } = _temp === void 0 ? {} : _temp;\n let navigate = useNavigate();\n let location = useLocation();\n let path = useResolvedPath(to);\n return useCallback(event => {\n if (event.button === 0 && ( // Ignore everything but left clicks\n !target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n !isModifiedEvent(event) // Ignore clicks with modifier keys\n ) {\n event.preventDefault(); // If the URL hasn't changed, a regular will do a replace instead of\n // a push, so do the same here.\n\n let replace = !!replaceProp || createPath(location) === createPath(path);\n navigate(to, {\n replace,\n state\n });\n }\n }, [location, navigate, path, replaceProp, state, target, to]);\n}\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\n\n\nfunction useSearchParams(defaultInit) {\n process.env.NODE_ENV !== \"production\" ? warning(typeof URLSearchParams !== \"undefined\", \"You cannot use the `useSearchParams` hook in a browser that does not \" + \"support the URLSearchParams API. If you need to support Internet \" + \"Explorer 11, we recommend you load a polyfill such as \" + \"https://github.com/ungap/url-search-params\\n\\n\" + \"If you're unsure how to load polyfills, we recommend you check out \" + \"https://polyfill.io/v3/ which provides some recommendations about how \" + \"to load polyfills only for users that need them, instead of for every \" + \"user.\") : void 0;\n let defaultSearchParamsRef = useRef(createSearchParams(defaultInit));\n let location = useLocation();\n let searchParams = useMemo(() => {\n let searchParams = createSearchParams(location.search);\n\n for (let key of defaultSearchParamsRef.current.keys()) {\n if (!searchParams.has(key)) {\n defaultSearchParamsRef.current.getAll(key).forEach(value => {\n searchParams.append(key, value);\n });\n }\n }\n\n return searchParams;\n }, [location.search]);\n let navigate = useNavigate();\n let setSearchParams = useCallback((nextInit, navigateOptions) => {\n navigate(\"?\" + createSearchParams(nextInit), navigateOptions);\n }, [navigate]);\n return [searchParams, setSearchParams];\n}\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n * let searchParams = new URLSearchParams([\n * ['sort', 'name'],\n * ['sort', 'price']\n * ]);\n *\n * you can do:\n *\n * let searchParams = createSearchParams({\n * sort: ['name', 'price']\n * });\n */\n\n\nfunction createSearchParams(init) {\n if (init === void 0) {\n init = \"\";\n }\n\n return new URLSearchParams(typeof init === \"string\" || Array.isArray(init) || init instanceof URLSearchParams ? init : Object.keys(init).reduce((memo, key) => {\n let value = init[key];\n return memo.concat(Array.isArray(value) ? value.map(v => [key, v]) : [[key, value]]);\n }, []));\n}\n\nexport { BrowserRouter, HashRouter, Link, NavLink, createSearchParams, HistoryRouter as unstable_HistoryRouter, useLinkClickHandler, useSearchParams };","map":{"version":3,"mappings":"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","names":["warning","cond","message","console","warn","Error","e","BrowserRouter","basename","children","window","_ref","historyRef","React","current","createBrowserHistory","history","state","setState","action","location","listen","React.createElement","Router","navigationType","navigator","HashRouter","_ref2","createHashHistory","HistoryRouter","_ref3","displayName","isModifiedEvent","event","metaKey","altKey","ctrlKey","shiftKey","Link","LinkWithRef","ref","onClick","reloadDocument","replace","target","to","_ref4","rest","href","useHref","internalOnClick","useLinkClickHandler","handleClick","defaultPrevented","createElement","NavLink","NavLinkWithRef","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","_ref5","useLocation","path","useResolvedPath","locationPathname","pathname","toPathname","toLowerCase","isActive","startsWith","charAt","length","ariaCurrent","undefined","filter","Boolean","join","replaceProp","_temp","navigate","useNavigate","button","preventDefault","createPath","useSearchParams","defaultInit","process","URLSearchParams","defaultSearchParamsRef","createSearchParams","searchParams","search","key","keys","has","getAll","forEach","value","append","setSearchParams","nextInit","navigateOptions","init","Array","isArray","Object","reduce","memo","concat","map","v"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/packages/react-router-dom/index.tsx"],"sourcesContent":["/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport type { BrowserHistory, HashHistory, History } from \"history\";\nimport { createBrowserHistory, createHashHistory } from \"history\";\nimport {\n MemoryRouter,\n Navigate,\n Outlet,\n Route,\n Router,\n Routes,\n createRoutesFromChildren,\n generatePath,\n matchRoutes,\n matchPath,\n createPath,\n parsePath,\n resolvePath,\n renderMatches,\n useHref,\n useInRouterContext,\n useLocation,\n useMatch,\n useNavigate,\n useNavigationType,\n useOutlet,\n useParams,\n useResolvedPath,\n useRoutes,\n useOutletContext,\n} from \"react-router\";\nimport type { To } from \"react-router\";\n\nfunction warning(cond: boolean, message: string): void {\n if (!cond) {\n // eslint-disable-next-line no-console\n if (typeof console !== \"undefined\") console.warn(message);\n\n try {\n // Welcome to debugging React Router!\n //\n // This error is thrown as a convenience so you can more easily\n // find the source for a warning that appears in the console by\n // enabling \"pause on exceptions\" in your JavaScript debugger.\n throw new Error(message);\n // eslint-disable-next-line no-empty\n } catch (e) {}\n }\n}\n\n////////////////////////////////////////////////////////////////////////////////\n// RE-EXPORTS\n////////////////////////////////////////////////////////////////////////////////\n\n// Note: Keep in sync with react-router exports!\nexport {\n MemoryRouter,\n Navigate,\n Outlet,\n Route,\n Router,\n Routes,\n createRoutesFromChildren,\n generatePath,\n matchRoutes,\n matchPath,\n createPath,\n parsePath,\n renderMatches,\n resolvePath,\n useHref,\n useInRouterContext,\n useLocation,\n useMatch,\n useNavigate,\n useNavigationType,\n useOutlet,\n useParams,\n useResolvedPath,\n useRoutes,\n useOutletContext,\n};\n\nexport { NavigationType } from \"react-router\";\nexport type {\n Hash,\n Location,\n Path,\n To,\n MemoryRouterProps,\n NavigateFunction,\n NavigateOptions,\n NavigateProps,\n Navigator,\n OutletProps,\n Params,\n PathMatch,\n RouteMatch,\n RouteObject,\n RouteProps,\n PathRouteProps,\n LayoutRouteProps,\n IndexRouteProps,\n RouterProps,\n Pathname,\n Search,\n RoutesProps,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n UNSAFE_NavigationContext,\n UNSAFE_LocationContext,\n UNSAFE_RouteContext,\n} from \"react-router\";\n\n////////////////////////////////////////////////////////////////////////////////\n// COMPONENTS\n////////////////////////////////////////////////////////////////////////////////\n\nexport interface BrowserRouterProps {\n basename?: string;\n children?: React.ReactNode;\n window?: Window;\n}\n\n/**\n * A `` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n basename,\n children,\n window,\n}: BrowserRouterProps) {\n let historyRef = React.useRef();\n if (historyRef.current == null) {\n historyRef.current = createBrowserHistory({ window });\n }\n\n let history = historyRef.current;\n let [state, setState] = React.useState({\n action: history.action,\n location: history.location,\n });\n\n React.useLayoutEffect(() => history.listen(setState), [history]);\n\n return (\n \n );\n}\n\nexport interface HashRouterProps {\n basename?: string;\n children?: React.ReactNode;\n window?: Window;\n}\n\n/**\n * A `` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({ basename, children, window }: HashRouterProps) {\n let historyRef = React.useRef();\n if (historyRef.current == null) {\n historyRef.current = createHashHistory({ window });\n }\n\n let history = historyRef.current;\n let [state, setState] = React.useState({\n action: history.action,\n location: history.location,\n });\n\n React.useLayoutEffect(() => history.listen(setState), [history]);\n\n return (\n \n );\n}\n\nexport interface HistoryRouterProps {\n basename?: string;\n children?: React.ReactNode;\n history: History;\n}\n\n/**\n * A `` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({ basename, children, history }: HistoryRouterProps) {\n const [state, setState] = React.useState({\n action: history.action,\n location: history.location,\n });\n\n React.useLayoutEffect(() => history.listen(setState), [history]);\n\n return (\n \n );\n}\n\nif (__DEV__) {\n HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nfunction isModifiedEvent(event: React.MouseEvent) {\n return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport interface LinkProps\n extends Omit, \"href\"> {\n reloadDocument?: boolean;\n replace?: boolean;\n state?: any;\n to: To;\n}\n\n/**\n * The public API for rendering a history-aware .\n */\nexport const Link = React.forwardRef(\n function LinkWithRef(\n { onClick, reloadDocument, replace = false, state, target, to, ...rest },\n ref\n ) {\n let href = useHref(to);\n let internalOnClick = useLinkClickHandler(to, { replace, state, target });\n function handleClick(\n event: React.MouseEvent\n ) {\n if (onClick) onClick(event);\n if (!event.defaultPrevented && !reloadDocument) {\n internalOnClick(event);\n }\n }\n\n return (\n // eslint-disable-next-line jsx-a11y/anchor-has-content\n \n );\n }\n);\n\nif (__DEV__) {\n Link.displayName = \"Link\";\n}\n\nexport interface NavLinkProps\n extends Omit {\n children?:\n | React.ReactNode\n | ((props: { isActive: boolean }) => React.ReactNode);\n caseSensitive?: boolean;\n className?: string | ((props: { isActive: boolean }) => string | undefined);\n end?: boolean;\n style?:\n | React.CSSProperties\n | ((props: { isActive: boolean }) => React.CSSProperties);\n}\n\n/**\n * A wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef(\n function NavLinkWithRef(\n {\n \"aria-current\": ariaCurrentProp = \"page\",\n caseSensitive = false,\n className: classNameProp = \"\",\n end = false,\n style: styleProp,\n to,\n children,\n ...rest\n },\n ref\n ) {\n let location = useLocation();\n let path = useResolvedPath(to);\n\n let locationPathname = location.pathname;\n let toPathname = path.pathname;\n if (!caseSensitive) {\n locationPathname = locationPathname.toLowerCase();\n toPathname = toPathname.toLowerCase();\n }\n\n let isActive =\n locationPathname === toPathname ||\n (!end &&\n locationPathname.startsWith(toPathname) &&\n locationPathname.charAt(toPathname.length) === \"/\");\n\n let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n let className: string | undefined;\n if (typeof classNameProp === \"function\") {\n className = classNameProp({ isActive });\n } else {\n // If the className prop is not a function, we use a default `active`\n // class for s that are active. In v5 `active` was the default\n // value for `activeClassName`, but we are removing that API and can still\n // use the old default behavior for a cleaner upgrade path and keep the\n // simple styling rules working as they currently do.\n className = [classNameProp, isActive ? \"active\" : null]\n .filter(Boolean)\n .join(\" \");\n }\n\n let style =\n typeof styleProp === \"function\" ? styleProp({ isActive }) : styleProp;\n\n return (\n \n {typeof children === \"function\" ? children({ isActive }) : children}\n \n );\n }\n);\n\nif (__DEV__) {\n NavLink.displayName = \"NavLink\";\n}\n\n////////////////////////////////////////////////////////////////////////////////\n// HOOKS\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n * Handles the click behavior for router `` components. This is useful if\n * you need to create custom `` components with the same click behavior we\n * use in our exported ``.\n */\nexport function useLinkClickHandler(\n to: To,\n {\n target,\n replace: replaceProp,\n state,\n }: {\n target?: React.HTMLAttributeAnchorTarget;\n replace?: boolean;\n state?: any;\n } = {}\n): (event: React.MouseEvent) => void {\n let navigate = useNavigate();\n let location = useLocation();\n let path = useResolvedPath(to);\n\n return React.useCallback(\n (event: React.MouseEvent) => {\n if (\n event.button === 0 && // Ignore everything but left clicks\n (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n !isModifiedEvent(event) // Ignore clicks with modifier keys\n ) {\n event.preventDefault();\n\n // If the URL hasn't changed, a regular will do a replace instead of\n // a push, so do the same here.\n let replace =\n !!replaceProp || createPath(location) === createPath(path);\n\n navigate(to, { replace, state });\n }\n },\n [location, navigate, path, replaceProp, state, target, to]\n );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(defaultInit?: URLSearchParamsInit) {\n warning(\n typeof URLSearchParams !== \"undefined\",\n `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n `support the URLSearchParams API. If you need to support Internet ` +\n `Explorer 11, we recommend you load a polyfill such as ` +\n `https://github.com/ungap/url-search-params\\n\\n` +\n `If you're unsure how to load polyfills, we recommend you check out ` +\n `https://polyfill.io/v3/ which provides some recommendations about how ` +\n `to load polyfills only for users that need them, instead of for every ` +\n `user.`\n );\n\n let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n\n let location = useLocation();\n let searchParams = React.useMemo(() => {\n let searchParams = createSearchParams(location.search);\n\n for (let key of defaultSearchParamsRef.current.keys()) {\n if (!searchParams.has(key)) {\n defaultSearchParamsRef.current.getAll(key).forEach((value) => {\n searchParams.append(key, value);\n });\n }\n }\n\n return searchParams;\n }, [location.search]);\n\n let navigate = useNavigate();\n let setSearchParams = React.useCallback(\n (\n nextInit: URLSearchParamsInit,\n navigateOptions?: { replace?: boolean; state?: any }\n ) => {\n navigate(\"?\" + createSearchParams(nextInit), navigateOptions);\n },\n [navigate]\n );\n\n return [searchParams, setSearchParams] as const;\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n | string\n | ParamKeyValuePair[]\n | Record\n | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n * let searchParams = new URLSearchParams([\n * ['sort', 'name'],\n * ['sort', 'price']\n * ]);\n *\n * you can do:\n *\n * let searchParams = createSearchParams({\n * sort: ['name', 'price']\n * });\n */\nexport function createSearchParams(\n init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n return new URLSearchParams(\n typeof init === \"string\" ||\n Array.isArray(init) ||\n init instanceof URLSearchParams\n ? init\n : Object.keys(init).reduce((memo, key) => {\n let value = init[key];\n return memo.concat(\n Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n );\n }, [] as ParamKeyValuePair[])\n );\n}\n"]},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2eaebd3668665f495b4a641acbc20e30.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2eaebd3668665f495b4a641acbc20e30.json deleted file mode 100644 index ef580b16..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2eaebd3668665f495b4a641acbc20e30.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.numericUnicodeMap = {\n 0: 65533,\n 128: 8364,\n 130: 8218,\n 131: 402,\n 132: 8222,\n 133: 8230,\n 134: 8224,\n 135: 8225,\n 136: 710,\n 137: 8240,\n 138: 352,\n 139: 8249,\n 140: 338,\n 142: 381,\n 145: 8216,\n 146: 8217,\n 147: 8220,\n 148: 8221,\n 149: 8226,\n 150: 8211,\n 151: 8212,\n 152: 732,\n 153: 8482,\n 154: 353,\n 155: 8250,\n 156: 339,\n 158: 382,\n 159: 376\n};","map":{"version":3,"names":["Object","defineProperty","exports","value","numericUnicodeMap"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/html-entities/lib/numeric-unicode-map.js"],"sourcesContent":["\"use strict\";Object.defineProperty(exports,\"__esModule\",{value:true});exports.numericUnicodeMap={0:65533,128:8364,130:8218,131:402,132:8222,133:8230,134:8224,135:8225,136:710,137:8240,138:352,139:8249,140:338,142:381,145:8216,146:8217,147:8220,148:8221,149:8226,150:8211,151:8212,152:732,153:8482,154:353,155:8250,156:339,158:382,159:376};"],"mappings":"AAAA;;AAAaA,MAAM,CAACC,cAAP,CAAsBC,OAAtB,EAA8B,YAA9B,EAA2C;EAACC,KAAK,EAAC;AAAP,CAA3C;AAAyDD,OAAO,CAACE,iBAAR,GAA0B;EAAC,GAAE,KAAH;EAAS,KAAI,IAAb;EAAkB,KAAI,IAAtB;EAA2B,KAAI,GAA/B;EAAmC,KAAI,IAAvC;EAA4C,KAAI,IAAhD;EAAqD,KAAI,IAAzD;EAA8D,KAAI,IAAlE;EAAuE,KAAI,GAA3E;EAA+E,KAAI,IAAnF;EAAwF,KAAI,GAA5F;EAAgG,KAAI,IAApG;EAAyG,KAAI,GAA7G;EAAiH,KAAI,GAArH;EAAyH,KAAI,IAA7H;EAAkI,KAAI,IAAtI;EAA2I,KAAI,IAA/I;EAAoJ,KAAI,IAAxJ;EAA6J,KAAI,IAAjK;EAAsK,KAAI,IAA1K;EAA+K,KAAI,IAAnL;EAAwL,KAAI,GAA5L;EAAgM,KAAI,IAApM;EAAyM,KAAI,GAA7M;EAAiN,KAAI,IAArN;EAA0N,KAAI,GAA9N;EAAkO,KAAI,GAAtO;EAA0O,KAAI;AAA9O,CAA1B"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2ee9020b895ac8fcbac88706f25fe154.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2ee9020b895ac8fcbac88706f25fe154.json deleted file mode 100644 index d0459835..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2ee9020b895ac8fcbac88706f25fe154.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Button from 'react-bootstrap/Button';\nimport Card from 'react-bootstrap/Card';\nimport React from \"react\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function BlogEntry() {\n return /*#__PURE__*/_jsxDEV(Card, {\n children: [/*#__PURE__*/_jsxDEV(Card.Header, {\n class: \"text-center\",\n children: \"Featured\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 3\n }, this), /*#__PURE__*/_jsxDEV(Card.Body, {\n children: [/*#__PURE__*/_jsxDEV(Card.Title, {\n class: \"text-center\",\n children: \"Special title treatment\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Card.Text, {\n class: \"text-center\",\n children: \"With supporting text below as a natural lead-in to additional content.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Edit\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Button, {\n variant: \"primary\",\n children: \"Go somewhere\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 1\n }, this);\n}\n_c = BlogEntry;\n\nvar _c;\n\n$RefreshReg$(_c, \"BlogEntry\");","map":{"version":3,"names":["Button","Card","React","BlogEntry"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/pages/blogEntry/BlogEntry.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Button from 'react-bootstrap/Button'\nimport Card from 'react-bootstrap/Card'\nimport React from \"react\";\n\nexport default function BlogEntry() {\n return (\n\n Featured\n \n Special title treatment\n \n With supporting text below as a natural lead-in to additional content.\n \n \n \n \n\n )\n}"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,MAAP,MAAmB,wBAAnB;AACA,OAAOC,IAAP,MAAiB,sBAAjB;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,eAAe,SAASC,SAAT,GAAqB;EAChC,oBACJ,QAAC,IAAD;IAAA,wBACE,QAAC,IAAD,CAAM,MAAN;MAAa,KAAK,EAAC,aAAnB;MAAA;IAAA;MAAA;MAAA;MAAA;IAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;MAAA,wBACE,QAAC,IAAD,CAAM,KAAN;QAAY,KAAK,EAAC,aAAlB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,IAAD,CAAM,IAAN;QAAW,KAAK,EAAC,aAAjB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QAFF,eAKE,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QALF,eAME,QAAC,MAAD;QAAQ,OAAO,EAAC,SAAhB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QANF;IAAA;MAAA;MAAA;MAAA;IAAA,QAFF;EAAA;IAAA;IAAA;IAAA;EAAA,QADI;AAaH;KAduBA,S"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2f6362c99d23473954927e2c65cebefc.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2f6362c99d23473954927e2c65cebefc.json deleted file mode 100644 index c065b1c5..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2f6362c99d23473954927e2c65cebefc.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import getWindow from \"./getWindow.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nexport default function getViewportRect(element) {\n var win = getWindow(element);\n var html = getDocumentElement(element);\n var visualViewport = win.visualViewport;\n var width = html.clientWidth;\n var height = html.clientHeight;\n var x = 0;\n var y = 0; // NB: This isn't supported on iOS <= 12. If the keyboard is open, the popper\n // can be obscured underneath it.\n // Also, `html.clientHeight` adds the bottom bar height in Safari iOS, even\n // if it isn't open, so if this isn't available, the popper will be detected\n // to overflow the bottom of the screen too early.\n\n if (visualViewport) {\n width = visualViewport.width;\n height = visualViewport.height; // Uses Layout Viewport (like Chrome; Safari does not currently)\n // In Chrome, it returns a value very close to 0 (+/-) but contains rounding\n // errors due to floating point numbers, so we need to check precision.\n // Safari returns a number <= 0, usually < -1 when pinch-zoomed\n // Feature detection fails in mobile emulation mode in Chrome.\n // Math.abs(win.innerWidth / visualViewport.scale - visualViewport.width) <\n // 0.001\n // Fallback here: \"Not Safari\" userAgent\n\n if (!/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {\n x = visualViewport.offsetLeft;\n y = visualViewport.offsetTop;\n }\n }\n\n return {\n width: width,\n height: height,\n x: x + getWindowScrollBarX(element),\n y: y\n };\n}","map":{"version":3,"names":["getWindow","getDocumentElement","getWindowScrollBarX","getViewportRect","element","win","html","visualViewport","width","clientWidth","height","clientHeight","x","y","test","navigator","userAgent","offsetLeft","offsetTop"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js"],"sourcesContent":["import getWindow from \"./getWindow.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nexport default function getViewportRect(element) {\n var win = getWindow(element);\n var html = getDocumentElement(element);\n var visualViewport = win.visualViewport;\n var width = html.clientWidth;\n var height = html.clientHeight;\n var x = 0;\n var y = 0; // NB: This isn't supported on iOS <= 12. If the keyboard is open, the popper\n // can be obscured underneath it.\n // Also, `html.clientHeight` adds the bottom bar height in Safari iOS, even\n // if it isn't open, so if this isn't available, the popper will be detected\n // to overflow the bottom of the screen too early.\n\n if (visualViewport) {\n width = visualViewport.width;\n height = visualViewport.height; // Uses Layout Viewport (like Chrome; Safari does not currently)\n // In Chrome, it returns a value very close to 0 (+/-) but contains rounding\n // errors due to floating point numbers, so we need to check precision.\n // Safari returns a number <= 0, usually < -1 when pinch-zoomed\n // Feature detection fails in mobile emulation mode in Chrome.\n // Math.abs(win.innerWidth / visualViewport.scale - visualViewport.width) <\n // 0.001\n // Fallback here: \"Not Safari\" userAgent\n\n if (!/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {\n x = visualViewport.offsetLeft;\n y = visualViewport.offsetTop;\n }\n }\n\n return {\n width: width,\n height: height,\n x: x + getWindowScrollBarX(element),\n y: y\n };\n}"],"mappings":"AAAA,OAAOA,SAAP,MAAsB,gBAAtB;AACA,OAAOC,kBAAP,MAA+B,yBAA/B;AACA,OAAOC,mBAAP,MAAgC,0BAAhC;AACA,eAAe,SAASC,eAAT,CAAyBC,OAAzB,EAAkC;EAC/C,IAAIC,GAAG,GAAGL,SAAS,CAACI,OAAD,CAAnB;EACA,IAAIE,IAAI,GAAGL,kBAAkB,CAACG,OAAD,CAA7B;EACA,IAAIG,cAAc,GAAGF,GAAG,CAACE,cAAzB;EACA,IAAIC,KAAK,GAAGF,IAAI,CAACG,WAAjB;EACA,IAAIC,MAAM,GAAGJ,IAAI,CAACK,YAAlB;EACA,IAAIC,CAAC,GAAG,CAAR;EACA,IAAIC,CAAC,GAAG,CAAR,CAP+C,CAOpC;EACX;EACA;EACA;EACA;;EAEA,IAAIN,cAAJ,EAAoB;IAClBC,KAAK,GAAGD,cAAc,CAACC,KAAvB;IACAE,MAAM,GAAGH,cAAc,CAACG,MAAxB,CAFkB,CAEc;IAChC;IACA;IACA;IACA;IACA;IACA;IACA;;IAEA,IAAI,CAAC,iCAAiCI,IAAjC,CAAsCC,SAAS,CAACC,SAAhD,CAAL,EAAiE;MAC/DJ,CAAC,GAAGL,cAAc,CAACU,UAAnB;MACAJ,CAAC,GAAGN,cAAc,CAACW,SAAnB;IACD;EACF;;EAED,OAAO;IACLV,KAAK,EAAEA,KADF;IAELE,MAAM,EAAEA,MAFH;IAGLE,CAAC,EAAEA,CAAC,GAAGV,mBAAmB,CAACE,OAAD,CAHrB;IAILS,CAAC,EAAEA;EAJE,CAAP;AAMD"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2f8b5d90fd8a144626d758d3f54f74bb.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2f8b5d90fd8a144626d758d3f54f74bb.json deleted file mode 100644 index 953c020c..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2f8b5d90fd8a144626d758d3f54f74bb.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = utils.isStandardBrowserEnv() ? // Standard browser envs support document.cookie\nfunction standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return match ? decodeURIComponent(match[3]) : null;\n },\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n}() : // Non standard browser env (web workers, react-native) lack needed support.\nfunction nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() {\n return null;\n },\n remove: function remove() {}\n };\n}();","map":{"version":3,"names":["utils","require","module","exports","isStandardBrowserEnv","standardBrowserEnv","write","name","value","expires","path","domain","secure","cookie","push","encodeURIComponent","isNumber","Date","toGMTString","isString","document","join","read","match","RegExp","decodeURIComponent","remove","now","nonStandardBrowserEnv"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/axios/lib/helpers/cookies.js"],"sourcesContent":["'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n"],"mappings":"AAAA;;AAEA,IAAIA,KAAK,GAAGC,OAAO,CAAC,YAAD,CAAnB;;AAEAC,MAAM,CAACC,OAAP,GACEH,KAAK,CAACI,oBAAN,KAEA;AACG,SAASC,kBAAT,GAA8B;EAC7B,OAAO;IACLC,KAAK,EAAE,SAASA,KAAT,CAAeC,IAAf,EAAqBC,KAArB,EAA4BC,OAA5B,EAAqCC,IAArC,EAA2CC,MAA3C,EAAmDC,MAAnD,EAA2D;MAChE,IAAIC,MAAM,GAAG,EAAb;MACAA,MAAM,CAACC,IAAP,CAAYP,IAAI,GAAG,GAAP,GAAaQ,kBAAkB,CAACP,KAAD,CAA3C;;MAEA,IAAIR,KAAK,CAACgB,QAAN,CAAeP,OAAf,CAAJ,EAA6B;QAC3BI,MAAM,CAACC,IAAP,CAAY,aAAa,IAAIG,IAAJ,CAASR,OAAT,EAAkBS,WAAlB,EAAzB;MACD;;MAED,IAAIlB,KAAK,CAACmB,QAAN,CAAeT,IAAf,CAAJ,EAA0B;QACxBG,MAAM,CAACC,IAAP,CAAY,UAAUJ,IAAtB;MACD;;MAED,IAAIV,KAAK,CAACmB,QAAN,CAAeR,MAAf,CAAJ,EAA4B;QAC1BE,MAAM,CAACC,IAAP,CAAY,YAAYH,MAAxB;MACD;;MAED,IAAIC,MAAM,KAAK,IAAf,EAAqB;QACnBC,MAAM,CAACC,IAAP,CAAY,QAAZ;MACD;;MAEDM,QAAQ,CAACP,MAAT,GAAkBA,MAAM,CAACQ,IAAP,CAAY,IAAZ,CAAlB;IACD,CAtBI;IAwBLC,IAAI,EAAE,SAASA,IAAT,CAAcf,IAAd,EAAoB;MACxB,IAAIgB,KAAK,GAAGH,QAAQ,CAACP,MAAT,CAAgBU,KAAhB,CAAsB,IAAIC,MAAJ,CAAW,eAAejB,IAAf,GAAsB,WAAjC,CAAtB,CAAZ;MACA,OAAQgB,KAAK,GAAGE,kBAAkB,CAACF,KAAK,CAAC,CAAD,CAAN,CAArB,GAAkC,IAA/C;IACD,CA3BI;IA6BLG,MAAM,EAAE,SAASA,MAAT,CAAgBnB,IAAhB,EAAsB;MAC5B,KAAKD,KAAL,CAAWC,IAAX,EAAiB,EAAjB,EAAqBU,IAAI,CAACU,GAAL,KAAa,QAAlC;IACD;EA/BI,CAAP;AAiCD,CAlCD,EAHF,GAuCA;AACG,SAASC,qBAAT,GAAiC;EAChC,OAAO;IACLtB,KAAK,EAAE,SAASA,KAAT,GAAiB,CAAE,CADrB;IAELgB,IAAI,EAAE,SAASA,IAAT,GAAgB;MAAE,OAAO,IAAP;IAAc,CAFjC;IAGLI,MAAM,EAAE,SAASA,MAAT,GAAkB,CAAE;EAHvB,CAAP;AAKD,CAND,EAzCJ"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/2fcf648165063e5ba1470304b17f94c4.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/2fcf648165063e5ba1470304b17f94c4.json deleted file mode 100644 index bd2bf878..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/2fcf648165063e5ba1470304b17f94c4.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"const reportWebVitals = onPerfEntry => {\n if (onPerfEntry && onPerfEntry instanceof Function) {\n import('web-vitals').then(_ref => {\n let {\n getCLS,\n getFID,\n getFCP,\n getLCP,\n getTTFB\n } = _ref;\n getCLS(onPerfEntry);\n getFID(onPerfEntry);\n getFCP(onPerfEntry);\n getLCP(onPerfEntry);\n getTTFB(onPerfEntry);\n });\n }\n};\n\nexport default reportWebVitals;","map":{"version":3,"names":["reportWebVitals","onPerfEntry","Function","then","getCLS","getFID","getFCP","getLCP","getTTFB"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/reportWebVitals.js"],"sourcesContent":["const reportWebVitals = onPerfEntry => {\n if (onPerfEntry && onPerfEntry instanceof Function) {\n import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {\n getCLS(onPerfEntry);\n getFID(onPerfEntry);\n getFCP(onPerfEntry);\n getLCP(onPerfEntry);\n getTTFB(onPerfEntry);\n });\n }\n};\n\nexport default reportWebVitals;\n"],"mappings":"AAAA,MAAMA,eAAe,GAAGC,WAAW,IAAI;EACrC,IAAIA,WAAW,IAAIA,WAAW,YAAYC,QAA1C,EAAoD;IAClD,OAAO,YAAP,EAAqBC,IAArB,CAA0B,QAAiD;MAAA,IAAhD;QAAEC,MAAF;QAAUC,MAAV;QAAkBC,MAAlB;QAA0BC,MAA1B;QAAkCC;MAAlC,CAAgD;MACzEJ,MAAM,CAACH,WAAD,CAAN;MACAI,MAAM,CAACJ,WAAD,CAAN;MACAK,MAAM,CAACL,WAAD,CAAN;MACAM,MAAM,CAACN,WAAD,CAAN;MACAO,OAAO,CAACP,WAAD,CAAP;IACD,CAND;EAOD;AACF,CAVD;;AAYA,eAAeD,eAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/300c09175e31bf06fe35dd816c1d7aad.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/300c09175e31bf06fe35dd816c1d7aad.json deleted file mode 100644 index ad762721..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/300c09175e31bf06fe35dd816c1d7aad.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var isObject = require('../internals/is-object');\n\nvar $String = String;\nvar $TypeError = TypeError; // `Assert: Type(argument) is Object`\n\nmodule.exports = function (argument) {\n if (isObject(argument)) return argument;\n throw $TypeError($String(argument) + ' is not an object');\n};","map":{"version":3,"names":["isObject","require","$String","String","$TypeError","TypeError","module","exports","argument"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/an-object.js"],"sourcesContent":["var isObject = require('../internals/is-object');\n\nvar $String = String;\nvar $TypeError = TypeError;\n\n// `Assert: Type(argument) is Object`\nmodule.exports = function (argument) {\n if (isObject(argument)) return argument;\n throw $TypeError($String(argument) + ' is not an object');\n};\n"],"mappings":"AAAA,IAAIA,QAAQ,GAAGC,OAAO,CAAC,wBAAD,CAAtB;;AAEA,IAAIC,OAAO,GAAGC,MAAd;AACA,IAAIC,UAAU,GAAGC,SAAjB,C,CAEA;;AACAC,MAAM,CAACC,OAAP,GAAiB,UAAUC,QAAV,EAAoB;EACnC,IAAIR,QAAQ,CAACQ,QAAD,CAAZ,EAAwB,OAAOA,QAAP;EACxB,MAAMJ,UAAU,CAACF,OAAO,CAACM,QAAD,CAAP,GAAoB,mBAArB,CAAhB;AACD,CAHD"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/3015f9ea6923352f2aabe1a62915ca37.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/3015f9ea6923352f2aabe1a62915ca37.json deleted file mode 100644 index 881dcf5c..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/3015f9ea6923352f2aabe1a62915ca37.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var global = require('../internals/global');\n\nvar defineGlobalProperty = require('../internals/define-global-property');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || defineGlobalProperty(SHARED, {});\nmodule.exports = store;","map":{"version":3,"names":["global","require","defineGlobalProperty","SHARED","store","module","exports"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/core-js-pure/internals/shared-store.js"],"sourcesContent":["var global = require('../internals/global');\nvar defineGlobalProperty = require('../internals/define-global-property');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || defineGlobalProperty(SHARED, {});\n\nmodule.exports = store;\n"],"mappings":"AAAA,IAAIA,MAAM,GAAGC,OAAO,CAAC,qBAAD,CAApB;;AACA,IAAIC,oBAAoB,GAAGD,OAAO,CAAC,qCAAD,CAAlC;;AAEA,IAAIE,MAAM,GAAG,oBAAb;AACA,IAAIC,KAAK,GAAGJ,MAAM,CAACG,MAAD,CAAN,IAAkBD,oBAAoB,CAACC,MAAD,EAAS,EAAT,CAAlD;AAEAE,MAAM,CAACC,OAAP,GAAiBF,KAAjB"},"metadata":{},"sourceType":"script"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/3032070b962c83c63c32ff22dca876cc.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/3032070b962c83c63c32ff22dca876cc.json new file mode 100644 index 00000000..4f1eb417 --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/3032070b962c83c63c32ff22dca876cc.json @@ -0,0 +1 @@ +{"ast":null,"code":"import addEventListener from './addEventListener';\nimport removeEventListener from './removeEventListener';\n\nfunction listen(node, eventName, handler, options) {\n addEventListener(node, eventName, handler, options);\n return function () {\n removeEventListener(node, eventName, handler, options);\n };\n}\n\nexport default listen;","map":{"version":3,"names":["addEventListener","removeEventListener","listen","node","eventName","handler","options"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/front/node_modules/dom-helpers/esm/listen.js"],"sourcesContent":["import addEventListener from './addEventListener';\nimport removeEventListener from './removeEventListener';\n\nfunction listen(node, eventName, handler, options) {\n addEventListener(node, eventName, handler, options);\n return function () {\n removeEventListener(node, eventName, handler, options);\n };\n}\n\nexport default listen;"],"mappings":"AAAA,OAAOA,gBAAP,MAA6B,oBAA7B;AACA,OAAOC,mBAAP,MAAgC,uBAAhC;;AAEA,SAASC,MAAT,CAAgBC,IAAhB,EAAsBC,SAAtB,EAAiCC,OAAjC,EAA0CC,OAA1C,EAAmD;EACjDN,gBAAgB,CAACG,IAAD,EAAOC,SAAP,EAAkBC,OAAlB,EAA2BC,OAA3B,CAAhB;EACA,OAAO,YAAY;IACjBL,mBAAmB,CAACE,IAAD,EAAOC,SAAP,EAAkBC,OAAlB,EAA2BC,OAA3B,CAAnB;EACD,CAFD;AAGD;;AAED,eAAeJ,MAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/3040e4d3f40d03d70bfab5d576d2bc1f.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/3040e4d3f40d03d70bfab5d576d2bc1f.json deleted file mode 100644 index 7d105dcd..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/3040e4d3f40d03d70bfab5d576d2bc1f.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"import classNames from 'classnames';\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst propTypes = {\n /**\n * Specify whether the feedback is for valid or invalid fields\n *\n * @type {('valid'|'invalid')}\n */\n type: PropTypes.string,\n\n /** Display feedback as a tooltip. */\n tooltip: PropTypes.bool,\n as: PropTypes.elementType\n};\nconst Feedback = /*#__PURE__*/React.forwardRef( // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n(_ref, ref) => {\n let {\n as: Component = 'div',\n className,\n type = 'valid',\n tooltip = false,\n ...props\n } = _ref;\n return /*#__PURE__*/_jsx(Component, { ...props,\n ref: ref,\n className: classNames(className, `${type}-${tooltip ? 'tooltip' : 'feedback'}`)\n });\n});\nFeedback.displayName = 'Feedback';\nFeedback.propTypes = propTypes;\nexport default Feedback;","map":{"version":3,"names":["classNames","React","PropTypes","jsx","_jsx","propTypes","type","string","tooltip","bool","as","elementType","Feedback","forwardRef","ref","Component","className","props","displayName"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/react-bootstrap/esm/Feedback.js"],"sourcesContent":["import classNames from 'classnames';\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst propTypes = {\n /**\n * Specify whether the feedback is for valid or invalid fields\n *\n * @type {('valid'|'invalid')}\n */\n type: PropTypes.string,\n\n /** Display feedback as a tooltip. */\n tooltip: PropTypes.bool,\n as: PropTypes.elementType\n};\nconst Feedback = /*#__PURE__*/React.forwardRef( // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n({\n as: Component = 'div',\n className,\n type = 'valid',\n tooltip = false,\n ...props\n}, ref) => /*#__PURE__*/_jsx(Component, { ...props,\n ref: ref,\n className: classNames(className, `${type}-${tooltip ? 'tooltip' : 'feedback'}`)\n}));\nFeedback.displayName = 'Feedback';\nFeedback.propTypes = propTypes;\nexport default Feedback;"],"mappings":"AAAA,OAAOA,UAAP,MAAuB,YAAvB;AACA,OAAO,KAAKC,KAAZ,MAAuB,OAAvB;AACA,OAAOC,SAAP,MAAsB,YAAtB;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,MAAMC,SAAS,GAAG;EAChB;AACF;AACA;AACA;AACA;EACEC,IAAI,EAAEJ,SAAS,CAACK,MANA;;EAQhB;EACAC,OAAO,EAAEN,SAAS,CAACO,IATH;EAUhBC,EAAE,EAAER,SAAS,CAACS;AAVE,CAAlB;AAYA,MAAMC,QAAQ,GAAG,aAAaX,KAAK,CAACY,UAAN,EAAkB;AAChD,OAMGC,GANH;EAAA,IAAC;IACCJ,EAAE,EAAEK,SAAS,GAAG,KADjB;IAECC,SAFD;IAGCV,IAAI,GAAG,OAHR;IAICE,OAAO,GAAG,KAJX;IAKC,GAAGS;EALJ,CAAD;EAAA,OAMW,aAAab,IAAI,CAACW,SAAD,EAAY,EAAE,GAAGE,KAAL;IACtCH,GAAG,EAAEA,GADiC;IAEtCE,SAAS,EAAEhB,UAAU,CAACgB,SAAD,EAAa,GAAEV,IAAK,IAAGE,OAAO,GAAG,SAAH,GAAe,UAAW,EAAxD;EAFiB,CAAZ,CAN5B;AAAA,CAD8B,CAA9B;AAWAI,QAAQ,CAACM,WAAT,GAAuB,UAAvB;AACAN,QAAQ,CAACP,SAAT,GAAqBA,SAArB;AACA,eAAeO,QAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/3046eb25ec46c7d8e1a9efdf33dee4ac.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/3046eb25ec46c7d8e1a9efdf33dee4ac.json deleted file mode 100644 index 75bfc010..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/3046eb25ec46c7d8e1a9efdf33dee4ac.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js\";\nimport { BrowserRouter, Route, Routes } from \"react-router-dom\";\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction App() {\n const logged = false;\n return /*#__PURE__*/_jsxDEV(BrowserRouter, {\n children: [/*#__PURE__*/_jsxDEV(TopBar, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Routes, {\n children: [/*#__PURE__*/_jsxDEV(Route, {\n path: \"/\",\n element: /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 32\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 20,\n columnNumber: 7\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"login\",\n element: logged ? /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 53\n }, this) : /*#__PURE__*/_jsxDEV(Login, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 62\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 21,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"/register\",\n element: logged ? /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 57\n }, this) : /*#__PURE__*/_jsxDEV(Register, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 67\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 22,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"createEntry\",\n element: logged ? /*#__PURE__*/_jsxDEV(CreateEntry, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 23,\n columnNumber: 59\n }, this) : /*#__PURE__*/_jsxDEV(Home, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 23,\n columnNumber: 77\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 23,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Route, {\n exact: true,\n path: \"blogEntry:entryId\",\n element: /*#__PURE__*/_jsxDEV(BlogEntry, {}, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 24,\n columnNumber: 56\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 24,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 5\n }, this);\n}\n\n_c = App;\nexport default App;\n\nvar _c;\n\n$RefreshReg$(_c, \"App\");","map":{"version":3,"names":["BrowserRouter","Route","Routes","BlogEntry","CreateEntry","Home","Login","Register","TopBar","App","logged"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/App.js"],"sourcesContent":["import {\n BrowserRouter,\n Route,\n Routes,\n} from \"react-router-dom\";\n\nimport BlogEntry from \"./components/pages/blogEntry/BlogEntry\";\nimport CreateEntry from \"./components/pages/createEntry/CreateEntry\";\nimport Home from \"./components/pages/home/Home\";\nimport Login from \"./components/pages/Login/Login\";\nimport Register from \"./components/pages/Register/Register\";\nimport TopBar from \"./components/topbar/TopBar\";\n\nfunction App() {\n const logged = false;\n return (\n \n \n \n } />\n :}/>\n : } />\n : } />\n } />\n\n \n \n );\n}\n\nexport default App;\n"],"mappings":";AAAA,SACEA,aADF,EAEEC,KAFF,EAGEC,MAHF,QAIO,kBAJP;AAMA,OAAOC,SAAP,MAAsB,wCAAtB;AACA,OAAOC,WAAP,MAAwB,4CAAxB;AACA,OAAOC,IAAP,MAAiB,8BAAjB;AACA,OAAOC,KAAP,MAAkB,gCAAlB;AACA,OAAOC,QAAP,MAAqB,sCAArB;AACA,OAAOC,MAAP,MAAmB,4BAAnB;;;AAEA,SAASC,GAAT,GAAe;EACb,MAAMC,MAAM,GAAG,KAAf;EACA,oBACE,QAAC,aAAD;IAAA,wBACA,QAAC,MAAD;MAAA;MAAA;MAAA;IAAA,QADA,eAEA,QAAC,MAAD;MAAA,wBACE,QAAC,KAAD;QAAO,IAAI,EAAC,GAAZ;QAAgB,OAAO,eAAE,QAAC,IAAD;UAAA;UAAA;UAAA;QAAA;MAAzB;QAAA;QAAA;QAAA;MAAA,QADF,eAEI,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,OAAlB;QAA0B,OAAO,EAAEA,MAAM,gBAAG,QAAC,IAAD;UAAA;UAAA;UAAA;QAAA,QAAH,gBAAY,QAAC,KAAD;UAAA;UAAA;UAAA;QAAA;MAArD;QAAA;QAAA;QAAA;MAAA,QAFJ,eAGI,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,WAAlB;QAA8B,OAAO,EAAEA,MAAM,gBAAG,QAAC,IAAD;UAAA;UAAA;UAAA;QAAA,QAAH,gBAAa,QAAC,QAAD;UAAA;UAAA;UAAA;QAAA;MAA1D;QAAA;QAAA;QAAA;MAAA,QAHJ,eAII,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,aAAlB;QAAgC,OAAO,EAAEA,MAAM,gBAAG,QAAC,WAAD;UAAA;UAAA;UAAA;QAAA,QAAH,gBAAqB,QAAC,IAAD;UAAA;UAAA;UAAA;QAAA;MAApE;QAAA;QAAA;QAAA;MAAA,QAJJ,eAKI,QAAC,KAAD;QAAO,KAAK,MAAZ;QAAa,IAAI,EAAC,mBAAlB;QAAsC,OAAO,eAAE,QAAC,SAAD;UAAA;UAAA;UAAA;QAAA;MAA/C;QAAA;QAAA;QAAA;MAAA,QALJ;IAAA;MAAA;MAAA;MAAA;IAAA,QAFA;EAAA;IAAA;IAAA;IAAA;EAAA,QADF;AAaD;;KAfQD,G;AAiBT,eAAeA,GAAf"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/30b410ba5775b4313fd8d2b51b178ab7.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/30b410ba5775b4313fd8d2b51b178ab7.json deleted file mode 100644 index 17490fb3..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/30b410ba5775b4313fd8d2b51b178ab7.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"const _excluded = [\"as\", \"onSelect\", \"activeKey\", \"role\", \"onKeyDown\"];\n\nfunction _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n\n return target;\n}\n\nimport qsa from 'dom-helpers/querySelectorAll';\nimport * as React from 'react';\nimport { useContext, useEffect, useRef } from 'react';\nimport useForceUpdate from '@restart/hooks/useForceUpdate';\nimport useMergedRefs from '@restart/hooks/useMergedRefs';\nimport NavContext from './NavContext';\nimport SelectableContext, { makeEventKey } from './SelectableContext';\nimport TabContext from './TabContext';\nimport { dataAttr, dataProp } from './DataKey';\nimport NavItem from './NavItem';\nimport { jsx as _jsx } from \"react/jsx-runtime\"; // eslint-disable-next-line @typescript-eslint/no-empty-function\n\nconst noop = () => {};\n\nconst EVENT_KEY_ATTR = dataAttr('event-key');\nconst Nav = /*#__PURE__*/React.forwardRef((_ref, ref) => {\n let {\n // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n as: Component = 'div',\n onSelect,\n activeKey,\n role,\n onKeyDown\n } = _ref,\n props = _objectWithoutPropertiesLoose(_ref, _excluded); // A ref and forceUpdate for refocus, b/c we only want to trigger when needed\n // and don't want to reset the set in the effect\n\n\n const forceUpdate = useForceUpdate();\n const needsRefocusRef = useRef(false);\n const parentOnSelect = useContext(SelectableContext);\n const tabContext = useContext(TabContext);\n let getControlledId, getControllerId;\n\n if (tabContext) {\n role = role || 'tablist';\n activeKey = tabContext.activeKey; // TODO: do we need to duplicate these?\n\n getControlledId = tabContext.getControlledId;\n getControllerId = tabContext.getControllerId;\n }\n\n const listNode = useRef(null);\n\n const getNextActiveTab = offset => {\n const currentListNode = listNode.current;\n if (!currentListNode) return null;\n const items = qsa(currentListNode, `[${EVENT_KEY_ATTR}]:not([aria-disabled=true])`);\n const activeChild = currentListNode.querySelector('[aria-selected=true]');\n if (!activeChild || activeChild !== document.activeElement) return null;\n const index = items.indexOf(activeChild);\n if (index === -1) return null;\n let nextIndex = index + offset;\n if (nextIndex >= items.length) nextIndex = 0;\n if (nextIndex < 0) nextIndex = items.length - 1;\n return items[nextIndex];\n };\n\n const handleSelect = (key, event) => {\n if (key == null) return;\n onSelect == null ? void 0 : onSelect(key, event);\n parentOnSelect == null ? void 0 : parentOnSelect(key, event);\n };\n\n const handleKeyDown = event => {\n onKeyDown == null ? void 0 : onKeyDown(event);\n\n if (!tabContext) {\n return;\n }\n\n let nextActiveChild;\n\n switch (event.key) {\n case 'ArrowLeft':\n case 'ArrowUp':\n nextActiveChild = getNextActiveTab(-1);\n break;\n\n case 'ArrowRight':\n case 'ArrowDown':\n nextActiveChild = getNextActiveTab(1);\n break;\n\n default:\n return;\n }\n\n if (!nextActiveChild) return;\n event.preventDefault();\n handleSelect(nextActiveChild.dataset[dataProp('EventKey')] || null, event);\n needsRefocusRef.current = true;\n forceUpdate();\n };\n\n useEffect(() => {\n if (listNode.current && needsRefocusRef.current) {\n const activeChild = listNode.current.querySelector(`[${EVENT_KEY_ATTR}][aria-selected=true]`);\n activeChild == null ? void 0 : activeChild.focus();\n }\n\n needsRefocusRef.current = false;\n });\n const mergedRef = useMergedRefs(ref, listNode);\n return /*#__PURE__*/_jsx(SelectableContext.Provider, {\n value: handleSelect,\n children: /*#__PURE__*/_jsx(NavContext.Provider, {\n value: {\n role,\n // used by NavLink to determine it's role\n activeKey: makeEventKey(activeKey),\n getControlledId: getControlledId || noop,\n getControllerId: getControllerId || noop\n },\n children: /*#__PURE__*/_jsx(Component, Object.assign({}, props, {\n onKeyDown: handleKeyDown,\n ref: mergedRef,\n role: role\n }))\n })\n });\n});\nNav.displayName = 'Nav';\nexport default Object.assign(Nav, {\n Item: NavItem\n});","map":{"version":3,"names":["_excluded","_objectWithoutPropertiesLoose","source","excluded","target","sourceKeys","Object","keys","key","i","length","indexOf","qsa","React","useContext","useEffect","useRef","useForceUpdate","useMergedRefs","NavContext","SelectableContext","makeEventKey","TabContext","dataAttr","dataProp","NavItem","jsx","_jsx","noop","EVENT_KEY_ATTR","Nav","forwardRef","_ref","ref","as","Component","onSelect","activeKey","role","onKeyDown","props","forceUpdate","needsRefocusRef","parentOnSelect","tabContext","getControlledId","getControllerId","listNode","getNextActiveTab","offset","currentListNode","current","items","activeChild","querySelector","document","activeElement","index","nextIndex","handleSelect","event","handleKeyDown","nextActiveChild","preventDefault","dataset","focus","mergedRef","Provider","value","children","assign","displayName","Item"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/node_modules/@restart/ui/esm/Nav.js"],"sourcesContent":["const _excluded = [\"as\", \"onSelect\", \"activeKey\", \"role\", \"onKeyDown\"];\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport qsa from 'dom-helpers/querySelectorAll';\nimport * as React from 'react';\nimport { useContext, useEffect, useRef } from 'react';\nimport useForceUpdate from '@restart/hooks/useForceUpdate';\nimport useMergedRefs from '@restart/hooks/useMergedRefs';\nimport NavContext from './NavContext';\nimport SelectableContext, { makeEventKey } from './SelectableContext';\nimport TabContext from './TabContext';\nimport { dataAttr, dataProp } from './DataKey';\nimport NavItem from './NavItem';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\n\n// eslint-disable-next-line @typescript-eslint/no-empty-function\nconst noop = () => {};\n\nconst EVENT_KEY_ATTR = dataAttr('event-key');\nconst Nav = /*#__PURE__*/React.forwardRef((_ref, ref) => {\n let {\n // Need to define the default \"as\" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595\n as: Component = 'div',\n onSelect,\n activeKey,\n role,\n onKeyDown\n } = _ref,\n props = _objectWithoutPropertiesLoose(_ref, _excluded);\n\n // A ref and forceUpdate for refocus, b/c we only want to trigger when needed\n // and don't want to reset the set in the effect\n const forceUpdate = useForceUpdate();\n const needsRefocusRef = useRef(false);\n const parentOnSelect = useContext(SelectableContext);\n const tabContext = useContext(TabContext);\n let getControlledId, getControllerId;\n\n if (tabContext) {\n role = role || 'tablist';\n activeKey = tabContext.activeKey; // TODO: do we need to duplicate these?\n\n getControlledId = tabContext.getControlledId;\n getControllerId = tabContext.getControllerId;\n }\n\n const listNode = useRef(null);\n\n const getNextActiveTab = offset => {\n const currentListNode = listNode.current;\n if (!currentListNode) return null;\n const items = qsa(currentListNode, `[${EVENT_KEY_ATTR}]:not([aria-disabled=true])`);\n const activeChild = currentListNode.querySelector('[aria-selected=true]');\n if (!activeChild || activeChild !== document.activeElement) return null;\n const index = items.indexOf(activeChild);\n if (index === -1) return null;\n let nextIndex = index + offset;\n if (nextIndex >= items.length) nextIndex = 0;\n if (nextIndex < 0) nextIndex = items.length - 1;\n return items[nextIndex];\n };\n\n const handleSelect = (key, event) => {\n if (key == null) return;\n onSelect == null ? void 0 : onSelect(key, event);\n parentOnSelect == null ? void 0 : parentOnSelect(key, event);\n };\n\n const handleKeyDown = event => {\n onKeyDown == null ? void 0 : onKeyDown(event);\n\n if (!tabContext) {\n return;\n }\n\n let nextActiveChild;\n\n switch (event.key) {\n case 'ArrowLeft':\n case 'ArrowUp':\n nextActiveChild = getNextActiveTab(-1);\n break;\n\n case 'ArrowRight':\n case 'ArrowDown':\n nextActiveChild = getNextActiveTab(1);\n break;\n\n default:\n return;\n }\n\n if (!nextActiveChild) return;\n event.preventDefault();\n handleSelect(nextActiveChild.dataset[dataProp('EventKey')] || null, event);\n needsRefocusRef.current = true;\n forceUpdate();\n };\n\n useEffect(() => {\n if (listNode.current && needsRefocusRef.current) {\n const activeChild = listNode.current.querySelector(`[${EVENT_KEY_ATTR}][aria-selected=true]`);\n activeChild == null ? void 0 : activeChild.focus();\n }\n\n needsRefocusRef.current = false;\n });\n const mergedRef = useMergedRefs(ref, listNode);\n return /*#__PURE__*/_jsx(SelectableContext.Provider, {\n value: handleSelect,\n children: /*#__PURE__*/_jsx(NavContext.Provider, {\n value: {\n role,\n // used by NavLink to determine it's role\n activeKey: makeEventKey(activeKey),\n getControlledId: getControlledId || noop,\n getControllerId: getControllerId || noop\n },\n children: /*#__PURE__*/_jsx(Component, Object.assign({}, props, {\n onKeyDown: handleKeyDown,\n ref: mergedRef,\n role: role\n }))\n })\n });\n});\nNav.displayName = 'Nav';\nexport default Object.assign(Nav, {\n Item: NavItem\n});"],"mappings":"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"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/30e941974c4a68b6ffd6e065adcca6a7.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/30e941974c4a68b6ffd6e065adcca6a7.json deleted file mode 100644 index 18021479..00000000 --- a/EGUI/lab3/front/node_modules/.cache/babel-loader/30e941974c4a68b6ffd6e065adcca6a7.json +++ /dev/null @@ -1 +0,0 @@ -{"ast":null,"code":"var _jsxFileName = \"/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/topbar/TopBar.jsx\";\nimport 'bootstrap/dist/css/bootstrap.min.css';\nimport Container from 'react-bootstrap/Container';\nimport Nav from 'react-bootstrap/Nav';\nimport Navbar from 'react-bootstrap/Navbar';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport default function TopBar() {\n const logged = false;\n return /*#__PURE__*/_jsxDEV(Navbar, {\n bg: \"light\",\n expand: \"lg\",\n children: /*#__PURE__*/_jsxDEV(Container, {\n children: [/*#__PURE__*/_jsxDEV(Navbar.Brand, {\n href: \"\",\n children: \"Lab 3 Blog\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 12,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Navbar.Toggle, {\n \"aria-controls\": \"basic-navbar-nav\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 13,\n columnNumber: 5\n }, this), /*#__PURE__*/_jsxDEV(Navbar.Collapse, {\n id: \"basic-navbar-nav\",\n children: /*#__PURE__*/_jsxDEV(Nav, {\n className: \"me-auto\",\n children: [/*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/\",\n children: \"Home\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 16,\n columnNumber: 9\n }, this), logged ? /*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/login\",\n children: \" Login \"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 17,\n columnNumber: 19\n }, this) : \"\", /*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/register\",\n children: logged ? \"\" : \"Register\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 9\n }, this), /*#__PURE__*/_jsxDEV(Nav.Link, {\n href: \"/createEntry\",\n children: [\" \", logged ? \"Create entry\" : \"\"]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 15,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 14,\n columnNumber: 5\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 3\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 1\n }, this);\n}\n_c = TopBar;\n\nvar _c;\n\n$RefreshReg$(_c, \"TopBar\");","map":{"version":3,"names":["Container","Nav","Navbar","TopBar","logged"],"sources":["/home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/egui_lab1_krzysztof_rudnicki/lab3/src/components/topbar/TopBar.jsx"],"sourcesContent":["import 'bootstrap/dist/css/bootstrap.min.css';\n\nimport Container from 'react-bootstrap/Container'\nimport Nav from 'react-bootstrap/Nav';\nimport Navbar from 'react-bootstrap/Navbar'\n\nexport default function TopBar() {\n const logged = false;\n return (\n\n \n Lab 3 Blog\n \n \n \n \n \n\n )\n}\n"],"mappings":";AAAA,OAAO,sCAAP;AAEA,OAAOA,SAAP,MAAsB,2BAAtB;AACA,OAAOC,GAAP,MAAgB,qBAAhB;AACA,OAAOC,MAAP,MAAmB,wBAAnB;;AAEA,eAAe,SAASC,MAAT,GAAkB;EAC/B,MAAMC,MAAM,GAAG,KAAf;EACE,oBACJ,QAAC,MAAD;IAAQ,EAAE,EAAC,OAAX;IAAmB,MAAM,EAAC,IAA1B;IAAA,uBACE,QAAC,SAAD;MAAA,wBACE,QAAC,MAAD,CAAQ,KAAR;QAAc,IAAI,EAAC,EAAnB;QAAA;MAAA;QAAA;QAAA;QAAA;MAAA,QADF,eAEE,QAAC,MAAD,CAAQ,MAAR;QAAe,iBAAc;MAA7B;QAAA;QAAA;QAAA;MAAA,QAFF,eAGE,QAAC,MAAD,CAAQ,QAAR;QAAiB,EAAE,EAAC,kBAApB;QAAA,uBACE,QAAC,GAAD;UAAK,SAAS,EAAC,SAAf;UAAA,wBACE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,GAAf;YAAA;UAAA;YAAA;YAAA;YAAA;UAAA,QADF,EAEGA,MAAM,gBAAG,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,QAAf;YAAA;UAAA;YAAA;YAAA;YAAA;UAAA,QAAH,GAAgD,EAFzD,eAGE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,WAAf;YAAA,UAA4BA,MAAM,GAAG,EAAH,GAAQ;UAA1C;YAAA;YAAA;YAAA;UAAA,QAHF,eAIE,QAAC,GAAD,CAAK,IAAL;YAAU,IAAI,EAAC,cAAf;YAAA,gBAAgCA,MAAM,GAAG,cAAH,GAAoB,EAA1D;UAAA;YAAA;YAAA;YAAA;UAAA,QAJF;QAAA;UAAA;UAAA;UAAA;QAAA;MADF;QAAA;QAAA;QAAA;MAAA,QAHF;IAAA;MAAA;MAAA;MAAA;IAAA;EADF;IAAA;IAAA;IAAA;EAAA,QADI;AAgBH;KAlBuBD,M"},"metadata":{},"sourceType":"module"} \ No newline at end of file diff --git a/EGUI/lab3/front/node_modules/.cache/babel-loader/30f4983425a26c2301d1aaf1bc14d2a4.json b/EGUI/lab3/front/node_modules/.cache/babel-loader/30f4983425a26c2301d1aaf1bc14d2a4.json new file mode 100644 index 00000000..ca37fb6e --- /dev/null +++ b/EGUI/lab3/front/node_modules/.cache/babel-loader/30f4983425a26c2301d1aaf1bc14d2a4.json @@ -0,0 +1 @@ +{"ast":null,"code":"/**\n * @license React\n * react-dom.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';\n\nif (process.env.NODE_ENV !== \"production\") {\n (function () {\n 'use strict';\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\n\n if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === 'function') {\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());\n }\n\n var React = require('react');\n\n var Scheduler = require('scheduler');\n\n var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n var suppressWarning = false;\n\n function setSuppressWarning(newSuppressWarning) {\n {\n suppressWarning = newSuppressWarning;\n }\n } // In DEV, calls to console.warn and console.error get replaced\n // by calls to these methods by a Babel plugin.\n //\n // In PROD (or in packages without access to React internals),\n // they are left as they are instead.\n\n\n function warn(format) {\n {\n if (!suppressWarning) {\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n printWarning('warn', format, args);\n }\n }\n }\n\n function error(format) {\n {\n if (!suppressWarning) {\n for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n args[_key2 - 1] = arguments[_key2];\n }\n\n printWarning('error', format, args);\n }\n }\n }\n\n function printWarning(level, format, args) {\n // When changing this logic, you might want to also\n // update consoleWithStackDev.www.js as well.\n {\n var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;\n var stack = ReactDebugCurrentFrame.getStackAddendum();\n\n if (stack !== '') {\n format += '%s';\n args = args.concat([stack]);\n } // eslint-disable-next-line react-internal/safe-string-coercion\n\n\n var argsWithFormat = args.map(function (item) {\n return String(item);\n }); // Careful: RN currently depends on this prefix\n\n argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it\n // breaks IE9: https://github.com/facebook/react/issues/13610\n // eslint-disable-next-line react-internal/no-production-logging\n\n Function.prototype.apply.call(console[level], console, argsWithFormat);\n }\n }\n\n var FunctionComponent = 0;\n var ClassComponent = 1;\n var IndeterminateComponent = 2; // Before we know whether it is function or class\n\n var HostRoot = 3; // Root of a host tree. Could be nested inside another node.\n\n var HostPortal = 4; // A subtree. Could be an entry point to a different renderer.\n\n var HostComponent = 5;\n var HostText = 6;\n var Fragment = 7;\n var Mode = 8;\n var ContextConsumer = 9;\n var ContextProvider = 10;\n var ForwardRef = 11;\n var Profiler = 12;\n var SuspenseComponent = 13;\n var MemoComponent = 14;\n var SimpleMemoComponent = 15;\n var LazyComponent = 16;\n var IncompleteClassComponent = 17;\n var DehydratedFragment = 18;\n var SuspenseListComponent = 19;\n var ScopeComponent = 21;\n var OffscreenComponent = 22;\n var LegacyHiddenComponent = 23;\n var CacheComponent = 24;\n var TracingMarkerComponent = 25; // -----------------------------------------------------------------------------\n\n var enableClientRenderFallbackOnTextMismatch = true; // TODO: Need to review this code one more time before landing\n // the react-reconciler package.\n\n var enableNewReconciler = false; // Support legacy Primer support on internal FB www\n\n var enableLazyContextPropagation = false; // FB-only usage. The new API has different semantics.\n\n var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber\n\n var enableSuspenseAvoidThisFallback = false; // Enables unstable_avoidThisFallback feature in Fizz\n // React DOM Chopping Block\n //\n // Similar to main Chopping Block but only flags related to React DOM. These are\n // grouped because we will likely batch all of them into a single major release.\n // -----------------------------------------------------------------------------\n // Disable support for comment nodes as React DOM containers. Already disabled\n // in open source, but www codebase still relies on it. Need to remove.\n\n var disableCommentsAsDOMContainers = true; // Disable javascript: URL strings in href for XSS protection.\n // and client rendering, mostly to allow JSX attributes to apply to the custom\n // element's object properties instead of only HTML attributes.\n // https://github.com/facebook/react/issues/11347\n\n var enableCustomElementPropertySupport = false; // Disables children for