[add] Jhipster base

This commit is contained in:
Jose Pabl Domingo Aramburo Sanchez 2018-08-06 21:49:34 -06:00
parent 1390427ec0
commit 11626e6efb
247 changed files with 145182 additions and 0 deletions

25
front-end/.editorconfig Normal file
View File

@ -0,0 +1,25 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
root = true
[*]
# Change these settings to your own preference
indent_style = space
indent_size = 4
max_line_length = 180
# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.{ts,tsx,js,jsx,json,css,scss,sql,ejs}]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false

1
front-end/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules/*

View File

@ -0,0 +1,2 @@
node_modules
target

12
front-end/.prettierrc Normal file
View File

@ -0,0 +1,12 @@
# Prettier configuration
printWidth: 140
singleQuote: true
tabWidth: 2
useTabs: false
# js and ts rules:
arrowParens: avoid
# jsx and tsx rules:
jsxBracketSameLine: false

25
front-end/.yo-rc.json Normal file
View File

@ -0,0 +1,25 @@
{
"generator-jhipster": {
"jhipsterVersion": "5.1.0",
"applicationType": "monolith",
"baseName": "payroll",
"clientFramework": "react",
"useSass": true,
"clientPackageManager": "yarn",
"authenticationType": "session",
"cacheProvider": "no",
"databaseType": "sql",
"devDatabaseType": "mysql",
"prodDatabaseType": "mysql",
"testFrameworks": [],
"jhiPrefix": "jhi",
"otherModules": [
{
"name": "generator-jhipster-docker",
"version": "2.5.0"
}
],
"enableTranslation": false,
"skipServer": true
}
}

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/util/pagination.constants.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/util/pagination.constants.ts","mtime":1533613273281},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["export var ITEMS_PER_PAGE = 20;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/util/pagination.constants.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/util/pagination.constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,cAAc,GAAG,EAAE,CAAC","sourcesContent":["export const ITEMS_PER_PAGE = 20;\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/reducers/application-profile.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/reducers/application-profile.ts","mtime":1533613271641},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import * as tslib_1 from \"tslib\";\nimport axios from 'axios';\nimport { SUCCESS } from 'app/shared/reducers/action-type.util';\nexport var ACTION_TYPES = {\n GET_PROFILE: 'applicationProfile/GET_PROFILE'\n};\nvar initialState = {\n ribbonEnv: '',\n inProduction: true,\n isSwaggerEnabled: false\n};\nexport default (function (state, action) {\n if (state === void 0) { state = initialState; }\n switch (action.type) {\n case SUCCESS(ACTION_TYPES.GET_PROFILE):\n var data = action.payload.data;\n return tslib_1.__assign({}, state, { ribbonEnv: data['display-ribbon-on-profiles'], inProduction: data.activeProfiles.includes('prod'), isSwaggerEnabled: data.activeProfiles.includes('swagger') });\n default:\n return state;\n }\n});\nexport var getProfile = function () { return ({\n type: ACTION_TYPES.GET_PROFILE,\n payload: axios.get('management/info')\n}); };\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/reducers/application-profile.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/reducers/application-profile.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAE/D,MAAM,CAAC,IAAM,YAAY,GAAG;IAC1B,WAAW,EAAE,gCAAgC;CAC9C,CAAC;AAEF,IAAM,YAAY,GAAG;IACnB,SAAS,EAAE,EAAE;IACb,YAAY,EAAE,IAAI;IAClB,gBAAgB,EAAE,KAAK;CACxB,CAAC;AAIF,gBAAe,UAAC,KAA6C,EAAE,MAAM;IAArD,sBAAA,EAAA,oBAA6C;IAC3D,QAAQ,MAAM,CAAC,IAAI,EAAE;QACnB,KAAK,OAAO,CAAC,YAAY,CAAC,WAAW,CAAC;YAC5B,IAAA,0BAAI,CAAoB;YAChC,4BACK,KAAK,IACR,SAAS,EAAE,IAAI,CAAC,4BAA4B,CAAC,EAC7C,YAAY,EAAE,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,MAAM,CAAC,EAClD,gBAAgB,EAAE,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,SAAS,CAAC,IACzD;QACJ;YACE,OAAO,KAAK,CAAC;KAChB;AACH,CAAC,EAAC;AAEF,MAAM,CAAC,IAAM,UAAU,GAAG,cAAM,OAAA,CAAC;IAC/B,IAAI,EAAE,YAAY,CAAC,WAAW;IAC9B,OAAO,EAAE,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC;CACtC,CAAC,EAH8B,CAG9B,CAAC","sourcesContent":["import axios from 'axios';\n\nimport { SUCCESS } from 'app/shared/reducers/action-type.util';\n\nexport const ACTION_TYPES = {\n GET_PROFILE: 'applicationProfile/GET_PROFILE'\n};\n\nconst initialState = {\n ribbonEnv: '',\n inProduction: true,\n isSwaggerEnabled: false\n};\n\nexport type ApplicationProfileState = Readonly<typeof initialState>;\n\nexport default (state: ApplicationProfileState = initialState, action): ApplicationProfileState => {\n switch (action.type) {\n case SUCCESS(ACTION_TYPES.GET_PROFILE):\n const { data } = action.payload;\n return {\n ...state,\n ribbonEnv: data['display-ribbon-on-profiles'],\n inProduction: data.activeProfiles.includes('prod'),\n isSwaggerEnabled: data.activeProfiles.includes('swagger')\n };\n default:\n return state;\n }\n};\n\nexport const getProfile = () => ({\n type: ACTION_TYPES.GET_PROFILE,\n payload: axios.get('management/info')\n});\n"]}]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/header/menus/index.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/header/menus/index.ts","mtime":1533613273189},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["export * from './account';\nexport * from './admin';\nexport * from './entities';\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/header/menus/index.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/header/menus/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC","sourcesContent":["export * from './account';\nexport * from './admin';\nexport * from './entities';\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/store.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/store.ts","mtime":1533613271013},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import { createStore, applyMiddleware, compose } from 'redux';\nimport promiseMiddleware from 'redux-promise-middleware';\nimport thunkMiddleware from 'redux-thunk';\nimport reducer from 'app/shared/reducers';\nimport DevTools from './devtools';\nimport errorMiddleware from './error-middleware';\nimport notificationMiddleware from './notification-middleware';\nimport loggerMiddleware from './logger-middleware';\nimport { loadingBarMiddleware } from 'react-redux-loading-bar';\nvar defaultMiddlewares = [\n thunkMiddleware,\n errorMiddleware,\n notificationMiddleware,\n promiseMiddleware(),\n loadingBarMiddleware(),\n loggerMiddleware\n];\nvar composedMiddlewares = function (middlewares) {\n return process.env.NODE_ENV === 'development'\n ? compose(applyMiddleware.apply(void 0, defaultMiddlewares.concat(middlewares)), DevTools.instrument())\n : compose(applyMiddleware.apply(void 0, defaultMiddlewares.concat(middlewares)));\n};\nvar initialize = function (initialState, middlewares) {\n if (middlewares === void 0) { middlewares = []; }\n return createStore(reducer, initialState, composedMiddlewares(middlewares));\n};\nexport default initialize;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/store.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/store.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAC9D,OAAO,iBAAiB,MAAM,0BAA0B,CAAC;AACzD,OAAO,eAAe,MAAM,aAAa,CAAC;AAC1C,OAAO,OAAuB,MAAM,qBAAqB,CAAC;AAC1D,OAAO,QAAQ,MAAM,YAAY,CAAC;AAClC,OAAO,eAAe,MAAM,oBAAoB,CAAC;AACjD,OAAO,sBAAsB,MAAM,2BAA2B,CAAC;AAC/D,OAAO,gBAAgB,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAE/D,IAAM,kBAAkB,GAAG;IACzB,eAAe;IACf,eAAe;IACf,sBAAsB;IACtB,iBAAiB,EAAE;IACnB,oBAAoB,EAAE;IACtB,gBAAgB;CACjB,CAAC;AACF,IAAM,mBAAmB,GAAG,UAAA,WAAW;IACrC,OAAA,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,aAAa;QACpC,CAAC,CAAC,OAAO,CACL,eAAe,eAAI,kBAAkB,QAAK,WAAW,IACrD,QAAQ,CAAC,UAAU,EAAE,CACtB;QACH,CAAC,CAAC,OAAO,CAAC,eAAe,eAAI,kBAAkB,QAAK,WAAW,GAAE;AALnE,CAKmE,CAAC;AAEtE,IAAM,UAAU,GAAG,UAAC,YAAyB,EAAE,WAAgB;IAAhB,4BAAA,EAAA,gBAAgB;IAAK,OAAA,WAAW,CAAC,OAAO,EAAE,YAAY,EAAE,mBAAmB,CAAC,WAAW,CAAC,CAAC;AAApE,CAAoE,CAAC;AAEzI,eAAe,UAAU,CAAC","sourcesContent":["import { createStore, applyMiddleware, compose } from 'redux';\nimport promiseMiddleware from 'redux-promise-middleware';\nimport thunkMiddleware from 'redux-thunk';\nimport reducer, { IRootState } from 'app/shared/reducers';\nimport DevTools from './devtools';\nimport errorMiddleware from './error-middleware';\nimport notificationMiddleware from './notification-middleware';\nimport loggerMiddleware from './logger-middleware';\nimport { loadingBarMiddleware } from 'react-redux-loading-bar';\n\nconst defaultMiddlewares = [\n thunkMiddleware,\n errorMiddleware,\n notificationMiddleware,\n promiseMiddleware(),\n loadingBarMiddleware(),\n loggerMiddleware\n];\nconst composedMiddlewares = middlewares =>\n process.env.NODE_ENV === 'development'\n ? compose(\n applyMiddleware(...defaultMiddlewares, ...middlewares),\n DevTools.instrument()\n )\n : compose(applyMiddleware(...defaultMiddlewares, ...middlewares));\n\nconst initialize = (initialState?: IRootState, middlewares = []) => createStore(reducer, initialState, composedMiddlewares(middlewares));\n\nexport default initialize;\n"]}]}

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/model/user.model.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/model/user.model.ts","mtime":1533613273393},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["export var defaultValue = {\n id: null,\n login: null,\n firstName: null,\n lastName: null,\n email: null,\n activated: false,\n langKey: null,\n authorities: null,\n createdBy: null,\n createdDate: null,\n lastModifiedBy: null,\n lastModifiedDate: null,\n password: null\n};\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/model/user.model.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/model/user.model.ts"],"names":[],"mappings":"AAgBA,MAAM,CAAC,IAAM,YAAY,GAAoB;IAC3C,EAAE,EAAE,IAAI;IACR,KAAK,EAAE,IAAI;IACX,SAAS,EAAE,IAAI;IACf,QAAQ,EAAE,IAAI;IACd,KAAK,EAAE,IAAI;IACX,SAAS,EAAE,KAAK;IAChB,OAAO,EAAE,IAAI;IACb,WAAW,EAAE,IAAI;IACjB,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,IAAI;IACjB,cAAc,EAAE,IAAI;IACpB,gBAAgB,EAAE,IAAI;IACtB,QAAQ,EAAE,IAAI;CACf,CAAC","sourcesContent":["export interface IUser {\n id?: any;\n login?: string;\n firstName?: string;\n lastName?: string;\n email?: string;\n activated?: boolean;\n langKey?: string;\n authorities?: any[];\n createdBy?: string;\n createdDate?: Date;\n lastModifiedBy?: string;\n lastModifiedDate?: Date;\n password?: string;\n}\n\nexport const defaultValue: Readonly<IUser> = {\n id: null,\n login: null,\n firstName: null,\n lastName: null,\n email: null,\n activated: false,\n langKey: null,\n authorities: null,\n createdBy: null,\n createdDate: null,\n lastModifiedBy: null,\n lastModifiedDate: null,\n password: null\n};\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/docs/docs.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/docs/docs.tsx","mtime":1533613272309},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import React from 'react';\nvar DocsPage = function () { return (React.createElement(\"div\", null,\n React.createElement(\"iframe\", { src: \"../swagger-ui/index.html\", width: \"100%\", height: \"800\", title: \"Swagger UI\", seamless: true, style: { border: 'none' } }))); };\nexport default DocsPage;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/docs/docs.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/docs/docs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,IAAM,QAAQ,GAAG,cAAM,OAAA,CACrB;IACE,gCAAQ,GAAG,EAAC,0BAA0B,EAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,KAAK,EAAC,KAAK,EAAC,YAAY,EAAC,QAAQ,QAAC,KAAK,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,GAAI,CACtH,CACP,EAJsB,CAItB,CAAC;AAEF,eAAe,QAAQ,CAAC","sourcesContent":["import React from 'react';\n\nconst DocsPage = () => (\n <div>\n <iframe src=\"../swagger-ui/index.html\" width=\"100%\" height=\"800\" title=\"Swagger UI\" seamless style={{ border: 'none' }} />\n </div>\n);\n\nexport default DocsPage;\n"]}]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/index.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/index.tsx","mtime":1533613271665},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import React from 'react';\nimport ErrorBoundaryRoute from 'app/shared/error/error-boundary-route';\nimport Settings from './settings/settings';\nimport Password from './password/password';\nimport Sessions from './sessions/sessions';\nvar Routes = function (_a) {\n var match = _a.match;\n return (React.createElement(\"div\", null,\n React.createElement(ErrorBoundaryRoute, { path: match.url + \"/settings\", component: Settings }),\n React.createElement(ErrorBoundaryRoute, { path: match.url + \"/password\", component: Password }),\n React.createElement(ErrorBoundaryRoute, { path: match.url + \"/sessions\", component: Sessions })));\n};\nexport default Routes;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/index.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,kBAAkB,MAAM,uCAAuC,CAAC;AAEvE,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAE3C,IAAM,MAAM,GAAG,UAAC,EAAS;QAAP,gBAAK;IAAO,OAAA,CAC5B;QACE,oBAAC,kBAAkB,IAAC,IAAI,EAAK,KAAK,CAAC,GAAG,cAAW,EAAE,SAAS,EAAE,QAAQ,GAAI;QAC1E,oBAAC,kBAAkB,IAAC,IAAI,EAAK,KAAK,CAAC,GAAG,cAAW,EAAE,SAAS,EAAE,QAAQ,GAAI;QAC1E,oBAAC,kBAAkB,IAAC,IAAI,EAAK,KAAK,CAAC,GAAG,cAAW,EAAE,SAAS,EAAE,QAAQ,GAAI,CACtE,CACP;AAN6B,CAM7B,CAAC;AAEF,eAAe,MAAM,CAAC","sourcesContent":["import React from 'react';\n\nimport ErrorBoundaryRoute from 'app/shared/error/error-boundary-route';\n\nimport Settings from './settings/settings';\nimport Password from './password/password';\nimport Sessions from './sessions/sessions';\n\nconst Routes = ({ match }) => (\n <div>\n <ErrorBoundaryRoute path={`${match.url}/settings`} component={Settings} />\n <ErrorBoundaryRoute path={`${match.url}/password`} component={Password} />\n <ErrorBoundaryRoute path={`${match.url}/sessions`} component={Sessions} />\n </div>\n);\n\nexport default Routes;\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/activate/activate.reducer.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/activate/activate.reducer.ts","mtime":1533613271985},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import * as tslib_1 from \"tslib\";\nimport axios from 'axios';\nimport { REQUEST, SUCCESS, FAILURE } from 'app/shared/reducers/action-type.util';\nexport var ACTION_TYPES = {\n ACTIVATE_ACCOUNT: 'activate/ACTIVATE_ACCOUNT',\n RESET: 'activate/RESET'\n};\nvar initialState = {\n activationSuccess: false,\n activationFailure: false\n};\n// Reducer\nexport default (function (state, action) {\n if (state === void 0) { state = initialState; }\n switch (action.type) {\n case REQUEST(ACTION_TYPES.ACTIVATE_ACCOUNT):\n return tslib_1.__assign({}, state);\n case FAILURE(ACTION_TYPES.ACTIVATE_ACCOUNT):\n return tslib_1.__assign({}, state, { activationFailure: true });\n case SUCCESS(ACTION_TYPES.ACTIVATE_ACCOUNT):\n return tslib_1.__assign({}, state, { activationSuccess: true });\n case ACTION_TYPES.RESET:\n return tslib_1.__assign({}, initialState);\n default:\n return state;\n }\n});\n// Actions\nexport var activateAction = function (key) { return ({\n type: ACTION_TYPES.ACTIVATE_ACCOUNT,\n payload: axios.get('api/activate?key=' + key)\n}); };\nexport var reset = function () { return ({\n type: ACTION_TYPES.RESET\n}); };\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/activate/activate.reducer.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/activate/activate.reducer.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAEjF,MAAM,CAAC,IAAM,YAAY,GAAG;IAC1B,gBAAgB,EAAE,2BAA2B;IAC7C,KAAK,EAAE,gBAAgB;CACxB,CAAC;AAEF,IAAM,YAAY,GAAG;IACnB,iBAAiB,EAAE,KAAK;IACxB,iBAAiB,EAAE,KAAK;CACzB,CAAC;AAIF,UAAU;AACV,gBAAe,UAAC,KAAmC,EAAE,MAAM;IAA3C,sBAAA,EAAA,oBAAmC;IACjD,QAAQ,MAAM,CAAC,IAAI,EAAE;QACnB,KAAK,OAAO,CAAC,YAAY,CAAC,gBAAgB,CAAC;YACzC,4BACK,KAAK,EACR;QACJ,KAAK,OAAO,CAAC,YAAY,CAAC,gBAAgB,CAAC;YACzC,4BACK,KAAK,IACR,iBAAiB,EAAE,IAAI,IACvB;QACJ,KAAK,OAAO,CAAC,YAAY,CAAC,gBAAgB,CAAC;YACzC,4BACK,KAAK,IACR,iBAAiB,EAAE,IAAI,IACvB;QACJ,KAAK,YAAY,CAAC,KAAK;YACrB,4BACK,YAAY,EACf;QACJ;YACE,OAAO,KAAK,CAAC;KAChB;AACH,CAAC,EAAC;AAEF,UAAU;AACV,MAAM,CAAC,IAAM,cAAc,GAAG,UAAA,GAAG,IAAI,OAAA,CAAC;IACpC,IAAI,EAAE,YAAY,CAAC,gBAAgB;IACnC,OAAO,EAAE,KAAK,CAAC,GAAG,CAAC,mBAAmB,GAAG,GAAG,CAAC;CAC9C,CAAC,EAHmC,CAGnC,CAAC;AAEH,MAAM,CAAC,IAAM,KAAK,GAAG,cAAM,OAAA,CAAC;IAC1B,IAAI,EAAE,YAAY,CAAC,KAAK;CACzB,CAAC,EAFyB,CAEzB,CAAC","sourcesContent":["import axios from 'axios';\n\nimport { REQUEST, SUCCESS, FAILURE } from 'app/shared/reducers/action-type.util';\n\nexport const ACTION_TYPES = {\n ACTIVATE_ACCOUNT: 'activate/ACTIVATE_ACCOUNT',\n RESET: 'activate/RESET'\n};\n\nconst initialState = {\n activationSuccess: false,\n activationFailure: false\n};\n\nexport type ActivateState = Readonly<typeof initialState>;\n\n// Reducer\nexport default (state: ActivateState = initialState, action): ActivateState => {\n switch (action.type) {\n case REQUEST(ACTION_TYPES.ACTIVATE_ACCOUNT):\n return {\n ...state\n };\n case FAILURE(ACTION_TYPES.ACTIVATE_ACCOUNT):\n return {\n ...state,\n activationFailure: true\n };\n case SUCCESS(ACTION_TYPES.ACTIVATE_ACCOUNT):\n return {\n ...state,\n activationSuccess: true\n };\n case ACTION_TYPES.RESET:\n return {\n ...initialState\n };\n default:\n return state;\n }\n};\n\n// Actions\nexport const activateAction = key => ({\n type: ACTION_TYPES.ACTIVATE_ACCOUNT,\n payload: axios.get('api/activate?key=' + key)\n});\n\nexport const reset = () => ({\n type: ACTION_TYPES.RESET\n});\n"]}]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/axios-interceptor.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/axios-interceptor.ts","mtime":1533613270825},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import axios from 'axios';\nimport { SERVER_API_URL } from 'app/config/constants';\nvar TIMEOUT = 1000000; // 10000\nvar setupAxiosInterceptors = function (onUnauthenticated) {\n var onRequestSuccess = function (config) {\n config.timeout = TIMEOUT;\n config.url = \"\" + SERVER_API_URL + config.url;\n return config;\n };\n var onResponseSuccess = function (response) { return response; };\n var onResponseError = function (err) {\n var status = err.status || err.response.status;\n if (status === 403 || status === 401) {\n onUnauthenticated();\n }\n return Promise.reject(err);\n };\n axios.interceptors.request.use(onRequestSuccess);\n axios.interceptors.response.use(onResponseSuccess, onResponseError);\n};\nexport default setupAxiosInterceptors;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/axios-interceptor.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/axios-interceptor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEtD,IAAM,OAAO,GAAG,OAAO,CAAC,CAAC,QAAQ;AACjC,IAAM,sBAAsB,GAAG,UAAA,iBAAiB;IAC9C,IAAM,gBAAgB,GAAG,UAAA,MAAM;QAC7B,MAAM,CAAC,OAAO,GAAG,OAAO,CAAC;QACzB,MAAM,CAAC,GAAG,GAAG,KAAG,cAAc,GAAG,MAAM,CAAC,GAAK,CAAC;QAC9C,OAAO,MAAM,CAAC;IAChB,CAAC,CAAC;IACF,IAAM,iBAAiB,GAAG,UAAA,QAAQ,IAAI,OAAA,QAAQ,EAAR,CAAQ,CAAC;IAC/C,IAAM,eAAe,GAAG,UAAA,GAAG;QACzB,IAAM,MAAM,GAAG,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC;QACjD,IAAI,MAAM,KAAK,GAAG,IAAI,MAAM,KAAK,GAAG,EAAE;YACpC,iBAAiB,EAAE,CAAC;SACrB;QACD,OAAO,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;IAC7B,CAAC,CAAC;IACF,KAAK,CAAC,YAAY,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;IACjD,KAAK,CAAC,YAAY,CAAC,QAAQ,CAAC,GAAG,CAAC,iBAAiB,EAAE,eAAe,CAAC,CAAC;AACtE,CAAC,CAAC;AAEF,eAAe,sBAAsB,CAAC","sourcesContent":["import axios from 'axios';\nimport { getBasePath, Storage } from 'react-jhipster';\n\nimport { SERVER_API_URL } from 'app/config/constants';\n\nconst TIMEOUT = 1000000; // 10000\nconst setupAxiosInterceptors = onUnauthenticated => {\n const onRequestSuccess = config => {\n config.timeout = TIMEOUT;\n config.url = `${SERVER_API_URL}${config.url}`;\n return config;\n };\n const onResponseSuccess = response => response;\n const onResponseError = err => {\n const status = err.status || err.response.status;\n if (status === 403 || status === 401) {\n onUnauthenticated();\n }\n return Promise.reject(err);\n };\n axios.interceptors.request.use(onRequestSuccess);\n axios.interceptors.response.use(onResponseSuccess, onResponseError);\n};\n\nexport default setupAxiosInterceptors;\n"]}]}

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/logger-middleware.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/logger-middleware.ts","mtime":1533613270897},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["export default (function () { return function (next) { return function (action) {\n if (process.env.NODE_ENV !== 'production') {\n var type = action.type, payload = action.payload, meta = action.meta;\n console.groupCollapsed(type);\n // tslint:disable-next-line\n console.log('Payload:', payload);\n // tslint:disable-next-line\n console.log('Meta:', meta);\n console.groupEnd();\n }\n return next(action);\n}; }; });\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/logger-middleware.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/logger-middleware.ts"],"names":[],"mappings":"AAAA,gBAAe,cAAM,OAAA,UAAA,IAAI,IAAI,OAAA,UAAA,MAAM;IACjC,IAAI,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,YAAY,EAAE;QACjC,IAAA,kBAAI,EAAE,wBAAO,EAAE,kBAAI,CAAY;QAEvC,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;QAC7B,2BAA2B;QAC3B,OAAO,CAAC,GAAG,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;QACjC,2BAA2B;QAC3B,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC3B,OAAO,CAAC,QAAQ,EAAE,CAAC;KACpB;IAED,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC;AACtB,CAAC,EAb4B,CAa5B,EAboB,CAapB,EAAC","sourcesContent":["export default () => next => action => {\n if (process.env.NODE_ENV !== 'production') {\n const { type, payload, meta } = action;\n\n console.groupCollapsed(type);\n // tslint:disable-next-line\n console.log('Payload:', payload);\n // tslint:disable-next-line\n console.log('Meta:', meta);\n console.groupEnd();\n }\n\n return next(action);\n};\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/error/error-boundary-route.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/error/error-boundary-route.tsx","mtime":1533613273381},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import * as tslib_1 from \"tslib\";\nimport React from 'react';\nimport { Route } from 'react-router-dom';\nimport ErrorBoundary from 'app/shared/error/error-boundary';\nexport var ErrorBoundaryRoute = function (_a) {\n var Component = _a.component, rest = tslib_1.__rest(_a, [\"component\"]);\n var encloseInErrorBoundary = function (props) { return (React.createElement(ErrorBoundary, null,\n React.createElement(Component, tslib_1.__assign({}, props)))); };\n if (!Component)\n throw new Error(\"A component needs to be specified for path \" + rest.path);\n return React.createElement(Route, tslib_1.__assign({}, rest, { render: encloseInErrorBoundary }));\n};\nexport default ErrorBoundaryRoute;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/error/error-boundary-route.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/error/error-boundary-route.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,KAAK,EAAc,MAAM,kBAAkB,CAAC;AACrD,OAAO,aAAa,MAAM,iCAAiC,CAAC;AAE5D,MAAM,CAAC,IAAM,kBAAkB,GAAG,UAAC,EAA6C;IAA3C,IAAA,wBAAoB,EAAE,wCAAO;IAChE,IAAM,sBAAsB,GAAG,UAAA,KAAK,IAAI,OAAA,CACtC,oBAAC,aAAa;QACZ,oBAAC,SAAS,uBAAK,KAAK,EAAI,CACV,CACjB,EAJuC,CAIvC,CAAC;IAEF,IAAI,CAAC,SAAS;QAAE,MAAM,IAAI,KAAK,CAAC,gDAA+C,IAAY,CAAC,IAAM,CAAC,CAAC;IAEpG,OAAO,oBAAC,KAAK,uBAAK,IAAI,IAAE,MAAM,EAAE,sBAAsB,IAAI,CAAC;AAC7D,CAAC,CAAC;AAEF,eAAe,kBAAkB,CAAC","sourcesContent":["import React from 'react';\nimport { Route, RouteProps } from 'react-router-dom';\nimport ErrorBoundary from 'app/shared/error/error-boundary';\n\nexport const ErrorBoundaryRoute = ({ component: Component, ...rest }: RouteProps) => {\n const encloseInErrorBoundary = props => (\n <ErrorBoundary>\n <Component {...props} />\n </ErrorBoundary>\n );\n\n if (!Component) throw new Error(`A component needs to be specified for path ${(rest as any).path}`);\n\n return <Route {...rest} render={encloseInErrorBoundary} />;\n};\n\nexport default ErrorBoundaryRoute;\n"]}]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/header/menus/entities.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/header/menus/entities.tsx","mtime":1533613273229},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import React from 'react';\nimport { NavDropdown } from '../header-components';\nexport var EntitiesMenu = function (props) { return (\n// tslint:disable-next-line:jsx-self-close\nReact.createElement(NavDropdown, { icon: \"th-list\", name: \"Entities\", id: \"entity-menu\" })); };\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/header/menus/entities.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/header/menus/entities.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEnD,MAAM,CAAC,IAAM,YAAY,GAAG,UAAA,KAAK,IAAI,OAAA;AACnC,0CAA0C;AAC1C,oBAAC,WAAW,IAAC,IAAI,EAAC,SAAS,EAAC,IAAI,EAAC,UAAU,EAAC,EAAE,EAAC,aAAa,GAE9C,CACf,EALoC,CAKpC,CAAC","sourcesContent":["import React from 'react';\nimport { DropdownItem } from 'reactstrap';\nimport { FontAwesomeIcon } from '@fortawesome/react-fontawesome';\n\nimport { NavLink as Link } from 'react-router-dom';\nimport { NavDropdown } from '../header-components';\n\nexport const EntitiesMenu = props => (\n // tslint:disable-next-line:jsx-self-close\n <NavDropdown icon=\"th-list\" name=\"Entities\" id=\"entity-menu\">\n {/* jhipster-needle-add-entity-to-menu - JHipster will add entities to the menu here */}\n </NavDropdown>\n);\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/reducers/action-type.util.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/reducers/action-type.util.ts","mtime":1533613271581},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["/**\n * Appends REQUEST asyc action type\n */\nexport var REQUEST = function (actionType) { return actionType + \"_PENDING\"; };\n/**\n * Appends SUCCESS asyc action type\n */\nexport var SUCCESS = function (actionType) { return actionType + \"_FULFILLED\"; };\n/**\n * Appends FAILURE asyc action type\n */\nexport var FAILURE = function (actionType) { return actionType + \"_REJECTED\"; };\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/reducers/action-type.util.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/reducers/action-type.util.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,CAAC,IAAM,OAAO,GAAG,UAAA,UAAU,IAAI,OAAG,UAAU,aAAU,EAAvB,CAAuB,CAAC;AAE7D;;GAEG;AAEH,MAAM,CAAC,IAAM,OAAO,GAAG,UAAA,UAAU,IAAI,OAAG,UAAU,eAAY,EAAzB,CAAyB,CAAC;AAE/D;;GAEG;AAEH,MAAM,CAAC,IAAM,OAAO,GAAG,UAAA,UAAU,IAAI,OAAG,UAAU,cAAW,EAAxB,CAAwB,CAAC","sourcesContent":["/**\n * Appends REQUEST asyc action type\n */\n\nexport const REQUEST = actionType => `${actionType}_PENDING`;\n\n/**\n * Appends SUCCESS asyc action type\n */\n\nexport const SUCCESS = actionType => `${actionType}_FULFILLED`;\n\n/**\n * Appends FAILURE asyc action type\n */\n\nexport const FAILURE = actionType => `${actionType}_REJECTED`;\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/entities/index.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/entities/index.tsx","mtime":1533613271345},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import React from 'react';\nimport { Switch } from 'react-router-dom';\n/* jhipster-needle-add-route-import - JHipster will add routes here */\nvar Routes = function (_a) {\n var match = _a.match;\n return (React.createElement(\"div\", null,\n React.createElement(Switch, null)));\n};\nexport default Routes;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/entities/index.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/entities/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAK1C,sEAAsE;AAEtE,IAAM,MAAM,GAAG,UAAC,EAAS;QAAP,gBAAK;IAAO,OAAA,CAC5B;QACE,oBAAC,MAAM,OAGE,CACL,CACP;AAP6B,CAO7B,CAAC;AAEF,eAAe,MAAM,CAAC","sourcesContent":["import React from 'react';\nimport { Switch } from 'react-router-dom';\n\n// tslint:disable-next-line:no-unused-variable\nimport ErrorBoundaryRoute from 'app/shared/error/error-boundary-route';\n\n/* jhipster-needle-add-route-import - JHipster will add routes here */\n\nconst Routes = ({ match }) => (\n <div>\n <Switch>\n {/* prettier-ignore */}\n {/* jhipster-needle-add-route-path - JHipster will routes here */}\n </Switch>\n </div>\n);\n\nexport default Routes;\n"]}]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/user-management/index.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/user-management/index.tsx","mtime":1533613272877},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import React from 'react';\nimport { Switch } from 'react-router-dom';\nimport ErrorBoundaryRoute from 'app/shared/error/error-boundary-route';\nimport UserManagement from './user-management';\nimport UserManagementDetail from './user-management-detail';\nimport UserManagementUpdate from './user-management-update';\nimport UserManagementDeleteDialog from './user-management-delete-dialog';\nvar Routes = function (_a) {\n var match = _a.match;\n return (React.createElement(React.Fragment, null,\n React.createElement(Switch, null,\n React.createElement(ErrorBoundaryRoute, { exact: true, path: match.url + \"/new\", component: UserManagementUpdate }),\n React.createElement(ErrorBoundaryRoute, { exact: true, path: match.url + \"/:login/edit\", component: UserManagementUpdate }),\n React.createElement(ErrorBoundaryRoute, { exact: true, path: match.url + \"/:login\", component: UserManagementDetail }),\n React.createElement(ErrorBoundaryRoute, { path: match.url, component: UserManagement })),\n React.createElement(ErrorBoundaryRoute, { path: match.url + \"/:login/delete\", component: UserManagementDeleteDialog })));\n};\nexport default Routes;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/user-management/index.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/user-management/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE1C,OAAO,kBAAkB,MAAM,uCAAuC,CAAC;AACvE,OAAO,cAAc,MAAM,mBAAmB,CAAC;AAC/C,OAAO,oBAAoB,MAAM,0BAA0B,CAAC;AAC5D,OAAO,oBAAoB,MAAM,0BAA0B,CAAC;AAC5D,OAAO,0BAA0B,MAAM,iCAAiC,CAAC;AAEzE,IAAM,MAAM,GAAG,UAAC,EAAS;QAAP,gBAAK;IAAO,OAAA,CAC5B;QACE,oBAAC,MAAM;YACL,oBAAC,kBAAkB,IAAC,KAAK,QAAC,IAAI,EAAK,KAAK,CAAC,GAAG,SAAM,EAAE,SAAS,EAAE,oBAAoB,GAAI;YACvF,oBAAC,kBAAkB,IAAC,KAAK,QAAC,IAAI,EAAK,KAAK,CAAC,GAAG,iBAAc,EAAE,SAAS,EAAE,oBAAoB,GAAI;YAC/F,oBAAC,kBAAkB,IAAC,KAAK,QAAC,IAAI,EAAK,KAAK,CAAC,GAAG,YAAS,EAAE,SAAS,EAAE,oBAAoB,GAAI;YAC1F,oBAAC,kBAAkB,IAAC,IAAI,EAAE,KAAK,CAAC,GAAG,EAAE,SAAS,EAAE,cAAc,GAAI,CAC3D;QACT,oBAAC,kBAAkB,IAAC,IAAI,EAAK,KAAK,CAAC,GAAG,mBAAgB,EAAE,SAAS,EAAE,0BAA0B,GAAI,CAChG,CACJ;AAV6B,CAU7B,CAAC;AAEF,eAAe,MAAM,CAAC","sourcesContent":["import React from 'react';\nimport { Switch } from 'react-router-dom';\n\nimport ErrorBoundaryRoute from 'app/shared/error/error-boundary-route';\nimport UserManagement from './user-management';\nimport UserManagementDetail from './user-management-detail';\nimport UserManagementUpdate from './user-management-update';\nimport UserManagementDeleteDialog from './user-management-delete-dialog';\n\nconst Routes = ({ match }) => (\n <>\n <Switch>\n <ErrorBoundaryRoute exact path={`${match.url}/new`} component={UserManagementUpdate} />\n <ErrorBoundaryRoute exact path={`${match.url}/:login/edit`} component={UserManagementUpdate} />\n <ErrorBoundaryRoute exact path={`${match.url}/:login`} component={UserManagementDetail} />\n <ErrorBoundaryRoute path={match.url} component={UserManagement} />\n </Switch>\n <ErrorBoundaryRoute path={`${match.url}/:login/delete`} component={UserManagementDeleteDialog} />\n </>\n);\n\nexport default Routes;\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/devtools.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/devtools.tsx","mtime":1533613270845},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import React from 'react';\nimport { createDevTools } from 'redux-devtools';\nimport LogMonitor from 'redux-devtools-log-monitor';\nimport DockMonitor from 'redux-devtools-dock-monitor';\n// You can toggle visibility of devTools with ctrl + H\n// and change their position with ctrl + Q\nexport default createDevTools(React.createElement(DockMonitor, { toggleVisibilityKey: \"ctrl-h\", changePositionKey: \"ctrl-q\", defaultIsVisible: false },\n React.createElement(LogMonitor, null)));\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/devtools.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/devtools.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAChD,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,WAAW,MAAM,6BAA6B,CAAC;AACtD,sDAAsD;AACtD,0CAA0C;AAC1C,eAAe,cAAc,CAC3B,oBAAC,WAAW,IAAC,mBAAmB,EAAC,QAAQ,EAAC,iBAAiB,EAAC,QAAQ,EAAC,gBAAgB,EAAE,KAAK;IAC1F,oBAAC,UAAU,OAAG,CACF,CACf,CAAC","sourcesContent":["import React from 'react';\nimport { createDevTools } from 'redux-devtools';\nimport LogMonitor from 'redux-devtools-log-monitor';\nimport DockMonitor from 'redux-devtools-dock-monitor';\n// You can toggle visibility of devTools with ctrl + H\n// and change their position with ctrl + Q\nexport default createDevTools(\n <DockMonitor toggleVisibilityKey=\"ctrl-h\" changePositionKey=\"ctrl-q\" defaultIsVisible={false}>\n <LogMonitor />\n </DockMonitor>\n);\n"]}]}

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/error/error-boundary.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/error/error-boundary.tsx","mtime":1533613273369},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import * as tslib_1 from \"tslib\";\nimport React from 'react';\nvar ErrorBoundary = /** @class */ (function (_super) {\n tslib_1.__extends(ErrorBoundary, _super);\n function ErrorBoundary() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.state = { error: undefined, errorInfo: undefined };\n return _this;\n }\n ErrorBoundary.prototype.componentDidCatch = function (error, errorInfo) {\n this.setState({\n error: error,\n errorInfo: errorInfo\n });\n };\n ErrorBoundary.prototype.render = function () {\n var _a = this.state, error = _a.error, errorInfo = _a.errorInfo;\n if (errorInfo) {\n var errorDetails = process.env.NODE_ENV === 'development' ? (React.createElement(\"details\", { className: \"preserve-space\" },\n error && error.toString(),\n React.createElement(\"br\", null),\n errorInfo.componentStack)) : (undefined);\n return (React.createElement(\"div\", null,\n React.createElement(\"h2\", { className: \"error\" }, \"An unexpected error has occurred.\"),\n errorDetails));\n }\n return this.props.children;\n };\n return ErrorBoundary;\n}(React.Component));\nexport default ErrorBoundary;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/error/error-boundary.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/error/error-boundary.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B;IAA4B,yCAAyD;IAArF;QAAA,qEAgCC;QA/BU,WAAK,GAAwB,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,CAAC;;IA+BnF,CAAC;IA7BC,yCAAiB,GAAjB,UAAkB,KAAK,EAAE,SAAS;QAChC,IAAI,CAAC,QAAQ,CAAC;YACZ,KAAK,OAAA;YACL,SAAS,WAAA;SACV,CAAC,CAAC;IACL,CAAC;IAED,8BAAM,GAAN;QACQ,IAAA,eAAiC,EAA/B,gBAAK,EAAE,wBAAS,CAAgB;QACxC,IAAI,SAAS,EAAE;YACb,IAAM,YAAY,GAChB,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,aAAa,CAAC,CAAC,CAAC,CACvC,iCAAS,SAAS,EAAC,gBAAgB;gBAChC,KAAK,IAAI,KAAK,CAAC,QAAQ,EAAE;gBAC1B,+BAAM;gBACL,SAAS,CAAC,cAAc,CACjB,CACX,CAAC,CAAC,CAAC,CACF,SAAS,CACV,CAAC;YACJ,OAAO,CACL;gBACE,4BAAI,SAAS,EAAC,OAAO,wCAAuC;gBAC3D,YAAY,CACT,CACP,CAAC;SACH;QACD,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC;IAC7B,CAAC;IACH,oBAAC;AAAD,CAAC,AAhCD,CAA4B,KAAK,CAAC,SAAS,GAgC1C;AAED,eAAe,aAAa,CAAC","sourcesContent":["import React from 'react';\n\ninterface IErrorBoundaryProps {\n readonly children: JSX.Element | JSX.Element[];\n}\n\ninterface IErrorBoundaryState {\n readonly error: any;\n readonly errorInfo: any;\n}\n\nclass ErrorBoundary extends React.Component<IErrorBoundaryProps, IErrorBoundaryState> {\n readonly state: IErrorBoundaryState = { error: undefined, errorInfo: undefined };\n\n componentDidCatch(error, errorInfo) {\n this.setState({\n error,\n errorInfo\n });\n }\n\n render() {\n const { error, errorInfo } = this.state;\n if (errorInfo) {\n const errorDetails =\n process.env.NODE_ENV === 'development' ? (\n <details className=\"preserve-space\">\n {error && error.toString()}\n <br />\n {errorInfo.componentStack}\n </details>\n ) : (\n undefined\n );\n return (\n <div>\n <h2 className=\"error\">An unexpected error has occurred.</h2>\n {errorDetails}\n </div>\n );\n }\n return this.props.children;\n }\n}\n\nexport default ErrorBoundary;\n"]}]}

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/footer/footer.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/footer/footer.tsx","mtime":1533613273125},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import './footer.scss';\nimport React from 'react';\nimport { Col, Row } from 'reactstrap';\nvar Footer = function (props) { return (React.createElement(\"div\", { className: \"footer page-content\" },\n React.createElement(Row, null,\n React.createElement(Col, { md: \"12\" },\n React.createElement(\"p\", null, \"Your footer\"))))); };\nexport default Footer;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/footer/footer.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/shared/layout/footer/footer.tsx"],"names":[],"mappings":"AAAA,OAAO,eAAe,CAAC;AAEvB,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AAEtC,IAAM,MAAM,GAAG,UAAA,KAAK,IAAI,OAAA,CACtB,6BAAK,SAAS,EAAC,qBAAqB;IAClC,oBAAC,GAAG;QACF,oBAAC,GAAG,IAAC,EAAE,EAAC,IAAI;YACV,6CAAkB,CACd,CACF,CACF,CACP,EARuB,CAQvB,CAAC;AAEF,eAAe,MAAM,CAAC","sourcesContent":["import './footer.scss';\n\nimport React from 'react';\n\nimport { Col, Row } from 'reactstrap';\n\nconst Footer = props => (\n <div className=\"footer page-content\">\n <Row>\n <Col md=\"12\">\n <p>Your footer</p>\n </Col>\n </Row>\n </div>\n);\n\nexport default Footer;\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/index.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/index.tsx","mtime":1533613272153},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import React from 'react';\nimport ErrorBoundaryRoute from 'app/shared/error/error-boundary-route';\nimport UserManagement from './user-management';\nimport Logs from './logs/logs';\nimport Health from './health/health';\nimport Metrics from './metrics/metrics';\nimport Configuration from './configuration/configuration';\nimport Audits from './audits/audits';\nimport Docs from './docs/docs';\nvar Routes = function (_a) {\n var match = _a.match;\n return (React.createElement(\"div\", null,\n React.createElement(ErrorBoundaryRoute, { path: match.url + \"/user-management\", component: UserManagement }),\n React.createElement(ErrorBoundaryRoute, { exact: true, path: match.url + \"/health\", component: Health }),\n React.createElement(ErrorBoundaryRoute, { exact: true, path: match.url + \"/metrics\", component: Metrics }),\n React.createElement(ErrorBoundaryRoute, { exact: true, path: match.url + \"/docs\", component: Docs }),\n React.createElement(ErrorBoundaryRoute, { exact: true, path: match.url + \"/configuration\", component: Configuration }),\n React.createElement(ErrorBoundaryRoute, { exact: true, path: match.url + \"/audits\", component: Audits }),\n React.createElement(ErrorBoundaryRoute, { exact: true, path: match.url + \"/logs\", component: Logs })));\n};\nexport default Routes;\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/index.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/administration/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,kBAAkB,MAAM,uCAAuC,CAAC;AACvE,OAAO,cAAc,MAAM,mBAAmB,CAAC;AAC/C,OAAO,IAAI,MAAM,aAAa,CAAC;AAC/B,OAAO,MAAM,MAAM,iBAAiB,CAAC;AACrC,OAAO,OAAO,MAAM,mBAAmB,CAAC;AACxC,OAAO,aAAa,MAAM,+BAA+B,CAAC;AAC1D,OAAO,MAAM,MAAM,iBAAiB,CAAC;AACrC,OAAO,IAAI,MAAM,aAAa,CAAC;AAE/B,IAAM,MAAM,GAAG,UAAC,EAAS;QAAP,gBAAK;IAAO,OAAA,CAC5B;QACE,oBAAC,kBAAkB,IAAC,IAAI,EAAK,KAAK,CAAC,GAAG,qBAAkB,EAAE,SAAS,EAAE,cAAc,GAAI;QACvF,oBAAC,kBAAkB,IAAC,KAAK,QAAC,IAAI,EAAK,KAAK,CAAC,GAAG,YAAS,EAAE,SAAS,EAAE,MAAM,GAAI;QAC5E,oBAAC,kBAAkB,IAAC,KAAK,QAAC,IAAI,EAAK,KAAK,CAAC,GAAG,aAAU,EAAE,SAAS,EAAE,OAAO,GAAI;QAC9E,oBAAC,kBAAkB,IAAC,KAAK,QAAC,IAAI,EAAK,KAAK,CAAC,GAAG,UAAO,EAAE,SAAS,EAAE,IAAI,GAAI;QACxE,oBAAC,kBAAkB,IAAC,KAAK,QAAC,IAAI,EAAK,KAAK,CAAC,GAAG,mBAAgB,EAAE,SAAS,EAAE,aAAa,GAAI;QAC1F,oBAAC,kBAAkB,IAAC,KAAK,QAAC,IAAI,EAAK,KAAK,CAAC,GAAG,YAAS,EAAE,SAAS,EAAE,MAAM,GAAI;QAC5E,oBAAC,kBAAkB,IAAC,KAAK,QAAC,IAAI,EAAK,KAAK,CAAC,GAAG,UAAO,EAAE,SAAS,EAAE,IAAI,GAAI,CACpE,CACP;AAV6B,CAU7B,CAAC;AAEF,eAAe,MAAM,CAAC","sourcesContent":["import React from 'react';\n\nimport ErrorBoundaryRoute from 'app/shared/error/error-boundary-route';\nimport UserManagement from './user-management';\nimport Logs from './logs/logs';\nimport Health from './health/health';\nimport Metrics from './metrics/metrics';\nimport Configuration from './configuration/configuration';\nimport Audits from './audits/audits';\nimport Docs from './docs/docs';\n\nconst Routes = ({ match }) => (\n <div>\n <ErrorBoundaryRoute path={`${match.url}/user-management`} component={UserManagement} />\n <ErrorBoundaryRoute exact path={`${match.url}/health`} component={Health} />\n <ErrorBoundaryRoute exact path={`${match.url}/metrics`} component={Metrics} />\n <ErrorBoundaryRoute exact path={`${match.url}/docs`} component={Docs} />\n <ErrorBoundaryRoute exact path={`${match.url}/configuration`} component={Configuration} />\n <ErrorBoundaryRoute exact path={`${match.url}/audits`} component={Audits} />\n <ErrorBoundaryRoute exact path={`${match.url}/logs`} component={Logs} />\n </div>\n);\n\nexport default Routes;\n"]}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/login/logout.tsx","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/login/logout.tsx","mtime":1533613271425},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["import * as tslib_1 from \"tslib\";\nimport React from 'react';\nimport { connect } from 'react-redux';\nimport { Redirect } from 'react-router-dom';\nimport { logout } from 'app/shared/reducers/authentication';\nvar Logout = /** @class */ (function (_super) {\n tslib_1.__extends(Logout, _super);\n function Logout() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Logout.prototype.componentDidMount = function () {\n this.props.logout();\n };\n Logout.prototype.render = function () {\n return (React.createElement(\"div\", { className: \"p-5\" },\n React.createElement(\"h4\", null, \"Logged out successfully!\"),\n React.createElement(Redirect, { to: {\n pathname: '/'\n } })));\n };\n return Logout;\n}(React.Component));\nexport { Logout };\nvar mapStateToProps = function (storeState) { return ({}); };\nvar mapDispatchToProps = { logout: logout };\nexport default connect(mapStateToProps, mapDispatchToProps)(Logout);\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/login/logout.tsx","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/login/logout.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAG5C,OAAO,EAAE,MAAM,EAAE,MAAM,oCAAoC,CAAC;AAI5D;IAA4B,kCAA6B;IAAzD;;IAiBA,CAAC;IAhBC,kCAAiB,GAAjB;QACE,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC;IACtB,CAAC;IAED,uBAAM,GAAN;QACE,OAAO,CACL,6BAAK,SAAS,EAAC,KAAK;YAClB,2DAAiC;YACjC,oBAAC,QAAQ,IACP,EAAE,EAAE;oBACF,QAAQ,EAAE,GAAG;iBACd,GACD,CACE,CACP,CAAC;IACJ,CAAC;IACH,aAAC;AAAD,CAAC,AAjBD,CAA4B,KAAK,CAAC,SAAS,GAiB1C;;AAED,IAAM,eAAe,GAAG,UAAC,UAAsB,IAAK,OAAA,CAAC,EAAE,CAAC,EAAJ,CAAI,CAAC;AAEzD,IAAM,kBAAkB,GAAG,EAAE,MAAM,QAAA,EAAE,CAAC;AAKtC,eAAe,OAAO,CACpB,eAAe,EACf,kBAAkB,CACnB,CAAC,MAAM,CAAC,CAAC","sourcesContent":["import React from 'react';\nimport { connect } from 'react-redux';\nimport { Redirect } from 'react-router-dom';\n\nimport { IRootState } from 'app/shared/reducers';\nimport { logout } from 'app/shared/reducers/authentication';\n\nexport interface ILogoutProps extends StateProps, DispatchProps {}\n\nexport class Logout extends React.Component<ILogoutProps> {\n componentDidMount() {\n this.props.logout();\n }\n\n render() {\n return (\n <div className=\"p-5\">\n <h4>Logged out successfully!</h4>\n <Redirect\n to={{\n pathname: '/'\n }}\n />\n </div>\n );\n }\n}\n\nconst mapStateToProps = (storeState: IRootState) => ({});\n\nconst mapDispatchToProps = { logout };\n\ntype StateProps = ReturnType<typeof mapStateToProps>;\ntype DispatchProps = typeof mapDispatchToProps;\n\nexport default connect(\n mapStateToProps,\n mapDispatchToProps\n)(Logout);\n"]}]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"remainingRequest":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js??ref--4-2!/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js??ref--4-3!/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/constants.ts","dependencies":[{"path":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/constants.ts","mtime":1533613270801},{"path":"/var/www/html/payroll_manager/front-end/node_modules/react-hot-loader/webpack.js","mtime":1505850161000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/cache-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/thread-loader/dist/cjs.js","mtime":0},{"path":"/var/www/html/payroll_manager/front-end/node_modules/ts-loader/index.js","mtime":1530127508000},{"path":"/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js","mtime":1519899048000}],"contextDependencies":[],"result":["var config = {\n VERSION: process.env.VERSION\n};\nexport default config;\nexport var SERVER_API_URL = process.env.SERVER_API_URL;\nexport var AUTHORITIES = {\n ADMIN: 'ROLE_ADMIN',\n USER: 'ROLE_USER'\n};\nexport var messages = {\n DATA_ERROR_ALERT: 'Internal Error'\n};\nexport var APP_DATE_FORMAT = 'DD/MM/YY HH:mm';\nexport var APP_TIMESTAMP_FORMAT = 'DD/MM/YY HH:mm:ss';\nexport var APP_LOCAL_DATE_FORMAT = 'DD/MM/YYYY';\nexport var APP_LOCAL_DATETIME_FORMAT = 'YYYY-MM-DDThh:mm';\nexport var APP_WHOLE_NUMBER_FORMAT = '0,0';\nexport var APP_TWO_DIGITS_AFTER_POINT_NUMBER_FORMAT = '0,0.[00]';\n",{"version":3,"file":"/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/constants.ts","sourceRoot":"","sources":["/var/www/html/payroll_manager/front-end/node_modules/tslint-loader/index.js!/var/www/html/payroll_manager/front-end/src/main/webapp/app/config/constants.ts"],"names":[],"mappings":"AAAA,IAAM,MAAM,GAAG;IACb,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC,OAAO;CAC7B,CAAC;AAEF,eAAe,MAAM,CAAC;AAEtB,MAAM,CAAC,IAAM,cAAc,GAAG,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC;AAEzD,MAAM,CAAC,IAAM,WAAW,GAAG;IACzB,KAAK,EAAE,YAAY;IACnB,IAAI,EAAE,WAAW;CAClB,CAAC;AAEF,MAAM,CAAC,IAAM,QAAQ,GAAG;IACtB,gBAAgB,EAAE,gBAAgB;CACnC,CAAC;AAEF,MAAM,CAAC,IAAM,eAAe,GAAG,gBAAgB,CAAC;AAChD,MAAM,CAAC,IAAM,oBAAoB,GAAG,mBAAmB,CAAC;AACxD,MAAM,CAAC,IAAM,qBAAqB,GAAG,YAAY,CAAC;AAClD,MAAM,CAAC,IAAM,yBAAyB,GAAG,kBAAkB,CAAC;AAC5D,MAAM,CAAC,IAAM,uBAAuB,GAAG,KAAK,CAAC;AAC7C,MAAM,CAAC,IAAM,wCAAwC,GAAG,UAAU,CAAC","sourcesContent":["const config = {\n VERSION: process.env.VERSION\n};\n\nexport default config;\n\nexport const SERVER_API_URL = process.env.SERVER_API_URL;\n\nexport const AUTHORITIES = {\n ADMIN: 'ROLE_ADMIN',\n USER: 'ROLE_USER'\n};\n\nexport const messages = {\n DATA_ERROR_ALERT: 'Internal Error'\n};\n\nexport const APP_DATE_FORMAT = 'DD/MM/YY HH:mm';\nexport const APP_TIMESTAMP_FORMAT = 'DD/MM/YY HH:mm:ss';\nexport const APP_LOCAL_DATE_FORMAT = 'DD/MM/YYYY';\nexport const APP_LOCAL_DATETIME_FORMAT = 'YYYY-MM-DDThh:mm';\nexport const APP_WHOLE_NUMBER_FORMAT = '0,0';\nexport const APP_TWO_DIGITS_AFTER_POINT_NUMBER_FORMAT = '0,0.[00]';\n"]}]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<coverage generated="1533613597650" clover="3.2.0">
<project timestamp="1533613597650" name="All files">
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0" elements="0" coveredelements="0" complexity="0" loc="0" ncloc="0" packages="0" files="0" classes="0">
</metrics>
</project>
</coverage>

View File

@ -0,0 +1 @@
{}

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<testExecutions version="1">
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/config/notification-middleware.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/modules/account/activate/activate.reducer.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/modules/account/settings/settings.reducer.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/modules/administration/administration.reducer.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/modules/administration/user-management/user-management.reducer.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/modules/account/password/password.reducer.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/shared/util/entity-utils.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/shared/error/error-boundary.spec.tsx">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/shared/reducers/application-profile.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/shared/error/error-boundary-route.spec.tsx">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/shared/auth/private-route.spec.tsx">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/modules/account/register/register.reducer.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/shared/layout/header/header.spec.tsx">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/config/axios-interceptor.spec.ts">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/shared/layout/header/menus/account.spec.tsx">
</file>
<file path="/var/www/html/payroll_manager/front-end/src/test/javascript/spec/app/shared/reducers/authentication.spec.ts">
</file>
</testExecutions>

View File

@ -0,0 +1,2 @@
<testsuites name="jest tests" tests="0" failures="0" time="2.559">
</testsuites>

View File

@ -0,0 +1,223 @@
body, html {
margin:0; padding: 0;
height: 100%;
}
body {
font-family: Helvetica Neue, Helvetica, Arial;
font-size: 14px;
color:#333;
}
.small { font-size: 12px; }
*, *:after, *:before {
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
}
h1 { font-size: 20px; margin: 0;}
h2 { font-size: 14px; }
pre {
font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
margin: 0;
padding: 0;
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2;
}
a { color:#0074D9; text-decoration:none; }
a:hover { text-decoration:underline; }
.strong { font-weight: bold; }
.space-top1 { padding: 10px 0 0 0; }
.pad2y { padding: 20px 0; }
.pad1y { padding: 10px 0; }
.pad2x { padding: 0 20px; }
.pad2 { padding: 20px; }
.pad1 { padding: 10px; }
.space-left2 { padding-left:55px; }
.space-right2 { padding-right:20px; }
.center { text-align:center; }
.clearfix { display:block; }
.clearfix:after {
content:'';
display:block;
height:0;
clear:both;
visibility:hidden;
}
.fl { float: left; }
@media only screen and (max-width:640px) {
.col3 { width:100%; max-width:100%; }
.hide-mobile { display:none!important; }
}
.quiet {
color: #7f7f7f;
color: rgba(0,0,0,0.5);
}
.quiet a { opacity: 0.7; }
.fraction {
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
font-size: 10px;
color: #555;
background: #E8E8E8;
padding: 4px 5px;
border-radius: 3px;
vertical-align: middle;
}
div.path a:link, div.path a:visited { color: #333; }
table.coverage {
border-collapse: collapse;
margin: 10px 0 0 0;
padding: 0;
}
table.coverage td {
margin: 0;
padding: 0;
vertical-align: top;
}
table.coverage td.line-count {
text-align: right;
padding: 0 5px 0 20px;
}
table.coverage td.line-coverage {
text-align: right;
padding-right: 10px;
min-width:20px;
}
table.coverage td span.cline-any {
display: inline-block;
padding: 0 5px;
width: 100%;
}
.missing-if-branch {
display: inline-block;
margin-right: 5px;
border-radius: 3px;
position: relative;
padding: 0 4px;
background: #333;
color: yellow;
}
.skip-if-branch {
display: none;
margin-right: 10px;
position: relative;
padding: 0 4px;
background: #ccc;
color: white;
}
.missing-if-branch .typ, .skip-if-branch .typ {
color: inherit !important;
}
.coverage-summary {
border-collapse: collapse;
width: 100%;
}
.coverage-summary tr { border-bottom: 1px solid #bbb; }
.keyline-all { border: 1px solid #ddd; }
.coverage-summary td, .coverage-summary th { padding: 10px; }
.coverage-summary tbody { border: 1px solid #bbb; }
.coverage-summary td { border-right: 1px solid #bbb; }
.coverage-summary td:last-child { border-right: none; }
.coverage-summary th {
text-align: left;
font-weight: normal;
white-space: nowrap;
}
.coverage-summary th.file { border-right: none !important; }
.coverage-summary th.pct { }
.coverage-summary th.pic,
.coverage-summary th.abs,
.coverage-summary td.pct,
.coverage-summary td.abs { text-align: right; }
.coverage-summary td.file { white-space: nowrap; }
.coverage-summary td.pic { min-width: 120px !important; }
.coverage-summary tfoot td { }
.coverage-summary .sorter {
height: 10px;
width: 7px;
display: inline-block;
margin-left: 0.5em;
background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
}
.coverage-summary .sorted .sorter {
background-position: 0 -20px;
}
.coverage-summary .sorted-desc .sorter {
background-position: 0 -10px;
}
.status-line { height: 10px; }
/* yellow */
.cbranch-no { background: yellow !important; color: #111; }
/* dark red */
.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
.low .chart { border:1px solid #C21F39 }
.highlighted,
.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
background: #C21F39 !important;
}
/* medium red */
.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
/* light red */
.low, .cline-no { background:#FCE1E5 }
/* light green */
.high, .cline-yes { background:rgb(230,245,208) }
/* medium green */
.cstat-yes { background:rgb(161,215,106) }
/* dark green */
.status-line.high, .high .cover-fill { background:rgb(77,146,33) }
.high .chart { border:1px solid rgb(77,146,33) }
.medium .chart { border:1px solid #666; }
.medium .cover-fill { background: #666; }
.cstat-skip { background: #ddd; color: #111; }
.fstat-skip { background: #ddd; color: #111 !important; }
.cbranch-skip { background: #ddd !important; color: #111; }
span.cline-neutral { background: #eaeaea; }
.medium { background: #eaeaea; }
.coverage-summary td.empty {
opacity: .5;
padding-top: 4px;
padding-bottom: 4px;
line-height: 1;
color: #888;
}
.cover-fill, .cover-empty {
display:inline-block;
height: 12px;
}
.chart {
line-height: 0;
}
.cover-empty {
background: white;
}
.cover-full {
border-right: none !important;
}
pre.prettyprint {
border: none !important;
padding: 0 !important;
margin: 0 !important;
}
.com { color: #999 !important; }
.ignore-none { color: #999; font-weight: normal; }
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -48px;
}
.footer, .push {
height: 48px;
}

View File

@ -0,0 +1,63 @@
var jumpToCode = (function init () {
// Classes of code we would like to highlight
var missingCoverageClasses = [ '.cbranch-no', '.cstat-no', '.fstat-no' ];
// We don't want to select elements that are direct descendants of another match
var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > `
// Selecter that finds elements on the page to which we can jump
var selector = notSelector + missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b`
// The NodeList of matching elements
var missingCoverageElements = document.querySelectorAll(selector);
var currentIndex;
function toggleClass(index) {
missingCoverageElements.item(currentIndex).classList.remove('highlighted');
missingCoverageElements.item(index).classList.add('highlighted');
}
function makeCurrent(index) {
toggleClass(index);
currentIndex = index;
missingCoverageElements.item(index)
.scrollIntoView({ behavior: 'smooth', block: 'center', inline: 'center' });
}
function goToPrevious() {
var nextIndex = 0;
if (typeof currentIndex !== 'number' || currentIndex === 0) {
nextIndex = missingCoverageElements.length - 1;
} else if (missingCoverageElements.length > 1) {
nextIndex = currentIndex - 1;
}
makeCurrent(nextIndex);
}
function goToNext() {
var nextIndex = 0;
if (typeof currentIndex === 'number' && currentIndex < (missingCoverageElements.length - 1)) {
nextIndex = currentIndex + 1;
}
makeCurrent(nextIndex);
}
return function jump(event) {
switch (event.which) {
case 78: // n
case 74: // j
goToNext();
break;
case 66: // b
case 75: // k
case 80: // p
goToPrevious();
break;
}
};
}());
window.addEventListener('keydown', jumpToCode);

View File

@ -0,0 +1,84 @@
<!doctype html>
<html lang="en">
<head>
<title>Code coverage report for All files</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="prettify.css" />
<link rel="stylesheet" href="base.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type='text/css'>
.coverage-summary .sorter {
background-image: url(sort-arrow-sprite.png);
}
</style>
</head>
<body>
<div class='wrapper'>
<div class='pad1'>
<h1>
All files
</h1>
<div class='clearfix'>
<div class='fl pad1y space-right2'>
<span class="strong">Unknown% </span>
<span class="quiet">Statements</span>
<span class='fraction'>0/0</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">Unknown% </span>
<span class="quiet">Branches</span>
<span class='fraction'>0/0</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">Unknown% </span>
<span class="quiet">Functions</span>
<span class='fraction'>0/0</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">Unknown% </span>
<span class="quiet">Lines</span>
<span class='fraction'>0/0</span>
</div>
</div>
<p class="quiet">
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
</p>
</div>
<div class='status-line medium'></div>
<div class="pad1">
<table class="coverage-summary">
<thead>
<tr>
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div><div class='push'></div><!-- for sticky footer -->
</div><!-- /wrapper -->
<div class='footer quiet pad2 space-top1 center small'>
Code coverage
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Aug 06 2018 21:46:37 GMT-0600 (MDT)
</div>
</div>
<script src="prettify.js"></script>
<script>
window.onload = function () {
if (typeof prettyPrint === 'function') {
prettyPrint();
}
};
</script>
<script src="sorter.js"></script>
<script src="block-navigation.js"></script>
</body>
</html>

View File

@ -0,0 +1 @@
.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

View File

@ -0,0 +1,158 @@
var addSorting = (function () {
"use strict";
var cols,
currentSort = {
index: 0,
desc: false
};
// returns the summary table element
function getTable() { return document.querySelector('.coverage-summary'); }
// returns the thead element of the summary table
function getTableHeader() { return getTable().querySelector('thead tr'); }
// returns the tbody element of the summary table
function getTableBody() { return getTable().querySelector('tbody'); }
// returns the th element for nth column
function getNthColumn(n) { return getTableHeader().querySelectorAll('th')[n]; }
// loads all columns
function loadColumns() {
var colNodes = getTableHeader().querySelectorAll('th'),
colNode,
cols = [],
col,
i;
for (i = 0; i < colNodes.length; i += 1) {
colNode = colNodes[i];
col = {
key: colNode.getAttribute('data-col'),
sortable: !colNode.getAttribute('data-nosort'),
type: colNode.getAttribute('data-type') || 'string'
};
cols.push(col);
if (col.sortable) {
col.defaultDescSort = col.type === 'number';
colNode.innerHTML = colNode.innerHTML + '<span class="sorter"></span>';
}
}
return cols;
}
// attaches a data attribute to every tr element with an object
// of data values keyed by column name
function loadRowData(tableRow) {
var tableCols = tableRow.querySelectorAll('td'),
colNode,
col,
data = {},
i,
val;
for (i = 0; i < tableCols.length; i += 1) {
colNode = tableCols[i];
col = cols[i];
val = colNode.getAttribute('data-value');
if (col.type === 'number') {
val = Number(val);
}
data[col.key] = val;
}
return data;
}
// loads all row data
function loadData() {
var rows = getTableBody().querySelectorAll('tr'),
i;
for (i = 0; i < rows.length; i += 1) {
rows[i].data = loadRowData(rows[i]);
}
}
// sorts the table using the data for the ith column
function sortByIndex(index, desc) {
var key = cols[index].key,
sorter = function (a, b) {
a = a.data[key];
b = b.data[key];
return a < b ? -1 : a > b ? 1 : 0;
},
finalSorter = sorter,
tableBody = document.querySelector('.coverage-summary tbody'),
rowNodes = tableBody.querySelectorAll('tr'),
rows = [],
i;
if (desc) {
finalSorter = function (a, b) {
return -1 * sorter(a, b);
};
}
for (i = 0; i < rowNodes.length; i += 1) {
rows.push(rowNodes[i]);
tableBody.removeChild(rowNodes[i]);
}
rows.sort(finalSorter);
for (i = 0; i < rows.length; i += 1) {
tableBody.appendChild(rows[i]);
}
}
// removes sort indicators for current column being sorted
function removeSortIndicators() {
var col = getNthColumn(currentSort.index),
cls = col.className;
cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, '');
col.className = cls;
}
// adds sort indicators for current column being sorted
function addSortIndicators() {
getNthColumn(currentSort.index).className += currentSort.desc ? ' sorted-desc' : ' sorted';
}
// adds event listeners for all sorter widgets
function enableUI() {
var i,
el,
ithSorter = function ithSorter(i) {
var col = cols[i];
return function () {
var desc = col.defaultDescSort;
if (currentSort.index === i) {
desc = !currentSort.desc;
}
sortByIndex(i, desc);
removeSortIndicators();
currentSort.index = i;
currentSort.desc = desc;
addSortIndicators();
};
};
for (i =0 ; i < cols.length; i += 1) {
if (cols[i].sortable) {
// add the click event handler on the th so users
// dont have to click on those tiny arrows
el = getNthColumn(i).querySelector('.sorter').parentElement;
if (el.addEventListener) {
el.addEventListener('click', ithSorter(i));
} else {
el.attachEvent('onclick', ithSorter(i));
}
}
}
}
// adds sorting functionality to the UI
return function () {
if (!getTable()) {
return;
}
cols = loadColumns();
loadData(cols);
addSortIndicators();
enableUI();
};
})();
window.addEventListener('load', addSorting);

View File

View File

@ -0,0 +1,325 @@
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([["account"],{
/***/ "./src/main/webapp/app/modules/account/index.tsx":
/*!*******************************************************!*\
!*** ./src/main/webapp/app/modules/account/index.tsx ***!
\*******************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* WEBPACK VAR INJECTION */(function(module) {/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var app_shared_error_error_boundary_route__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! app/shared/error/error-boundary-route */ "./src/main/webapp/app/shared/error/error-boundary-route.tsx");
/* harmony import */ var _settings_settings__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./settings/settings */ "./src/main/webapp/app/modules/account/settings/settings.tsx");
/* harmony import */ var _password_password__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./password/password */ "./src/main/webapp/app/modules/account/password/password.tsx");
/* harmony import */ var _sessions_sessions__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./sessions/sessions */ "./src/main/webapp/app/modules/account/sessions/sessions.tsx");
var Routes = function (_a) {
var match = _a.match;
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", null,
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(app_shared_error_error_boundary_route__WEBPACK_IMPORTED_MODULE_1__["default"], { path: match.url + "/settings", component: _settings_settings__WEBPACK_IMPORTED_MODULE_2__["default"] }),
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(app_shared_error_error_boundary_route__WEBPACK_IMPORTED_MODULE_1__["default"], { path: match.url + "/password", component: _password_password__WEBPACK_IMPORTED_MODULE_3__["default"] }),
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(app_shared_error_error_boundary_route__WEBPACK_IMPORTED_MODULE_1__["default"], { path: match.url + "/sessions", component: _sessions_sessions__WEBPACK_IMPORTED_MODULE_4__["default"] })));
};
/* harmony default export */ __webpack_exports__["default"] = (Routes);
;(function register() { /* react-hot-loader/webpack */ if (true) { if (typeof __REACT_HOT_LOADER__ === 'undefined') { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : module.exports; /* eslint-enable camelcase, no-undef */ if (typeof webpackExports === 'function') { __REACT_HOT_LOADER__.register(webpackExports, 'module.exports', "/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/index.tsx"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } __REACT_HOT_LOADER__.register(namedExport, key, "/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/index.tsx"); } } })();
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../node_modules/webpack/buildin/harmony-module.js */ "./node_modules/webpack/buildin/harmony-module.js")(module)))
/***/ }),
/***/ "./src/main/webapp/app/modules/account/password/password.tsx":
/*!*******************************************************************!*\
!*** ./src/main/webapp/app/modules/account/password/password.tsx ***!
\*******************************************************************/
/*! exports provided: PasswordPage, default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* WEBPACK VAR INJECTION */(function(module) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PasswordPage", function() { return PasswordPage; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "./node_modules/react/index.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-redux */ "./node_modules/react-redux/es/index.js");
/* harmony import */ var availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! availity-reactstrap-validation */ "./node_modules/availity-reactstrap-validation/lib/index.js");
/* harmony import */ var availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_3__);
/* harmony import */ var reactstrap__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! reactstrap */ "./node_modules/reactstrap/dist/reactstrap.es.js");
/* harmony import */ var app_shared_reducers_authentication__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! app/shared/reducers/authentication */ "./src/main/webapp/app/shared/reducers/authentication.ts");
/* harmony import */ var app_shared_layout_password_password_strength_bar__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! app/shared/layout/password/password-strength-bar */ "./src/main/webapp/app/shared/layout/password/password-strength-bar.tsx");
/* harmony import */ var _password_reducer__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./password.reducer */ "./src/main/webapp/app/modules/account/password/password.reducer.ts");
var PasswordPage = /** @class */ (function (_super) {
tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"](PasswordPage, _super);
function PasswordPage() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.state = {
password: ''
};
_this.handleValidSubmit = function (event, values) {
_this.props.savePassword(values.currentPassword, values.newPassword);
};
_this.updatePassword = function (event) {
_this.setState({ password: event.target.value });
};
return _this;
}
PasswordPage.prototype.componentDidMount = function () {
this.props.reset();
this.props.getSession();
};
PasswordPage.prototype.componentWillUnmount = function () {
this.props.reset();
};
PasswordPage.prototype.render = function () {
var account = this.props.account;
return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", null,
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_4__["Row"], { className: "justify-content-center" },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_4__["Col"], { md: "8" },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("h2", { id: "password-title" },
"Password for ",
account.login),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_3__["AvForm"], { id: "password-form", onValidSubmit: this.handleValidSubmit },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_3__["AvField"], { name: "currentPassword", label: "Current password", placeholder: "Current password", type: "password", validate: {
required: { value: true, errorMessage: 'Your password is required.' }
} }),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_3__["AvField"], { name: "newPassword", label: "New password", placeholder: "New password", type: "password", validate: {
required: { value: true, errorMessage: 'Your password is required.' },
minLength: { value: 4, errorMessage: 'Your password is required to be at least 4 characters.' },
maxLength: { value: 50, errorMessage: 'Your password cannot be longer than 50 characters.' }
}, onChange: this.updatePassword }),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(app_shared_layout_password_password_strength_bar__WEBPACK_IMPORTED_MODULE_6__["default"], { password: this.state.password }),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_3__["AvField"], { name: "confirmPassword", label: "New password confirmation", placeholder: "Confirm the new password", type: "password", validate: {
required: {
value: true,
errorMessage: 'Your confirmation password is required.'
},
minLength: {
value: 4,
errorMessage: 'Your confirmation password is required to be at least 4 characters.'
},
maxLength: {
value: 50,
errorMessage: 'Your confirmation password cannot be longer than 50 characters.'
},
match: {
value: 'newPassword',
errorMessage: 'The password and its confirmation do not match!'
}
} }),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_4__["Button"], { color: "success", type: "submit" }, "Save"))))));
};
return PasswordPage;
}(react__WEBPACK_IMPORTED_MODULE_1___default.a.Component));
var mapStateToProps = function (_a) {
var authentication = _a.authentication;
return ({
account: authentication.account,
isAuthenticated: authentication.isAuthenticated
});
};
var mapDispatchToProps = { getSession: app_shared_reducers_authentication__WEBPACK_IMPORTED_MODULE_5__["getSession"], savePassword: _password_reducer__WEBPACK_IMPORTED_MODULE_7__["savePassword"], reset: _password_reducer__WEBPACK_IMPORTED_MODULE_7__["reset"] };
/* harmony default export */ __webpack_exports__["default"] = (Object(react_redux__WEBPACK_IMPORTED_MODULE_2__["connect"])(mapStateToProps, mapDispatchToProps)(PasswordPage));
;(function register() { /* react-hot-loader/webpack */ if (true) { if (typeof __REACT_HOT_LOADER__ === 'undefined') { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : module.exports; /* eslint-enable camelcase, no-undef */ if (typeof webpackExports === 'function') { __REACT_HOT_LOADER__.register(webpackExports, 'module.exports', "/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/password/password.tsx"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } __REACT_HOT_LOADER__.register(namedExport, key, "/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/password/password.tsx"); } } })();
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../../node_modules/webpack/buildin/harmony-module.js */ "./node_modules/webpack/buildin/harmony-module.js")(module)))
/***/ }),
/***/ "./src/main/webapp/app/modules/account/sessions/sessions.tsx":
/*!*******************************************************************!*\
!*** ./src/main/webapp/app/modules/account/sessions/sessions.tsx ***!
\*******************************************************************/
/*! exports provided: SessionsPage, default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* WEBPACK VAR INJECTION */(function(module) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SessionsPage", function() { return SessionsPage; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "./node_modules/react/index.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-redux */ "./node_modules/react-redux/es/index.js");
/* harmony import */ var reactstrap__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! reactstrap */ "./node_modules/reactstrap/dist/reactstrap.es.js");
/* harmony import */ var app_shared_reducers_authentication__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! app/shared/reducers/authentication */ "./src/main/webapp/app/shared/reducers/authentication.ts");
/* harmony import */ var _sessions_reducer__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./sessions.reducer */ "./src/main/webapp/app/modules/account/sessions/sessions.reducer.ts");
var SessionsPage = /** @class */ (function (_super) {
tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"](SessionsPage, _super);
function SessionsPage() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.doSessionInvalidation = function (series) { return function () {
_this.props.invalidateSession(series);
_this.props.findAll();
}; };
_this.refreshList = function () {
_this.props.findAll();
};
return _this;
}
SessionsPage.prototype.componentDidMount = function () {
this.props.getSession();
this.props.findAll();
};
SessionsPage.prototype.render = function () {
var _this = this;
var _a = this.props, account = _a.account, sessions = _a.sessions, updateSuccess = _a.updateSuccess, updateFailure = _a.updateFailure;
return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", null,
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("h2", null,
"Active sessions for [",
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("b", null, account.login),
"]"),
updateSuccess ? (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_3__["Alert"], { color: "success" },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("strong", null, "Session invalidated!"))) : null,
updateFailure ? (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_3__["Alert"], { color: "danger" },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("span", null,
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("strong", null, "An error has occured!"),
" The session could not be invalidated."))) : null,
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_3__["Button"], { color: "primary", onClick: this.refreshList }, "Refresh"),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "table-responsive" },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_3__["Table"], { className: "table-striped" },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("thead", null,
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("tr", null,
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("th", null, "IP Address"),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("th", null, "User agent"),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("th", null, "Date"),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("th", null))),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("tbody", null, sessions.map(function (s) { return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("tr", null,
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("td", null, s.ipAddress),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("td", null, s.userAgent),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("td", null, s.tokenDate),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("td", null,
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_3__["Button"], { color: "primary", onClick: _this.doSessionInvalidation(s.series) }, "Invalidate")))); }))))));
};
return SessionsPage;
}(react__WEBPACK_IMPORTED_MODULE_1___default.a.Component));
var mapStateToProps = function (_a) {
var authentication = _a.authentication, sessions = _a.sessions;
return ({
account: authentication.account,
sessions: sessions.sessions,
updateSuccess: sessions.updateSuccess,
updateFailure: sessions.updateFailure
});
};
var mapDispatchToProps = { getSession: app_shared_reducers_authentication__WEBPACK_IMPORTED_MODULE_4__["getSession"], findAll: _sessions_reducer__WEBPACK_IMPORTED_MODULE_5__["findAll"], invalidateSession: _sessions_reducer__WEBPACK_IMPORTED_MODULE_5__["invalidateSession"] };
/* harmony default export */ __webpack_exports__["default"] = (Object(react_redux__WEBPACK_IMPORTED_MODULE_2__["connect"])(mapStateToProps, mapDispatchToProps)(SessionsPage));
;(function register() { /* react-hot-loader/webpack */ if (true) { if (typeof __REACT_HOT_LOADER__ === 'undefined') { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : module.exports; /* eslint-enable camelcase, no-undef */ if (typeof webpackExports === 'function') { __REACT_HOT_LOADER__.register(webpackExports, 'module.exports', "/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/sessions/sessions.tsx"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } __REACT_HOT_LOADER__.register(namedExport, key, "/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/sessions/sessions.tsx"); } } })();
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../../node_modules/webpack/buildin/harmony-module.js */ "./node_modules/webpack/buildin/harmony-module.js")(module)))
/***/ }),
/***/ "./src/main/webapp/app/modules/account/settings/settings.tsx":
/*!*******************************************************************!*\
!*** ./src/main/webapp/app/modules/account/settings/settings.tsx ***!
\*******************************************************************/
/*! exports provided: SettingsPage, default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* WEBPACK VAR INJECTION */(function(module) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SettingsPage", function() { return SettingsPage; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "./node_modules/react/index.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var reactstrap__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! reactstrap */ "./node_modules/reactstrap/dist/reactstrap.es.js");
/* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-redux */ "./node_modules/react-redux/es/index.js");
/* harmony import */ var availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! availity-reactstrap-validation */ "./node_modules/availity-reactstrap-validation/lib/index.js");
/* harmony import */ var availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_4__);
/* harmony import */ var app_shared_reducers_authentication__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! app/shared/reducers/authentication */ "./src/main/webapp/app/shared/reducers/authentication.ts");
/* harmony import */ var _settings_reducer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./settings.reducer */ "./src/main/webapp/app/modules/account/settings/settings.reducer.ts");
var SettingsPage = /** @class */ (function (_super) {
tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"](SettingsPage, _super);
function SettingsPage() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.handleValidSubmit = function (event, values) {
var account = tslib__WEBPACK_IMPORTED_MODULE_0__["__assign"]({}, _this.props.account, values);
_this.props.saveAccountSettings(account);
event.persist();
};
return _this;
}
SettingsPage.prototype.componentDidMount = function () {
this.props.getSession();
};
SettingsPage.prototype.componentWillUnmount = function () {
this.props.reset();
};
SettingsPage.prototype.render = function () {
var account = this.props.account;
return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", null,
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_2__["Row"], { className: "justify-content-center" },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_2__["Col"], { md: "8" },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("h2", { id: "settings-title" },
"User settings for ",
account.login),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_4__["AvForm"], { id: "settings-form", onValidSubmit: this.handleValidSubmit },
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_4__["AvField"], { className: "form-control", name: "firstName", label: "First Name", id: "firstName", placeholder: "Your first name", validate: {
required: { value: true, errorMessage: 'Your first name is required.' },
minLength: { value: 1, errorMessage: 'Your first name is required to be at least 1 character' },
maxLength: { value: 50, errorMessage: 'Your first name cannot be longer than 50 characters' }
}, value: account.firstName }),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_4__["AvField"], { className: "form-control", name: "lastName", label: "Last Name", id: "lastName", placeholder: "Your last name", validate: {
required: { value: true, errorMessage: 'Your last name is required.' },
minLength: { value: 1, errorMessage: 'Your last name is required to be at least 1 character' },
maxLength: { value: 50, errorMessage: 'Your last name cannot be longer than 50 characters' }
}, value: account.lastName }),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(availity_reactstrap_validation__WEBPACK_IMPORTED_MODULE_4__["AvField"], { name: "email", label: "Email", placeholder: "Your email", type: "email", validate: {
required: { value: true, errorMessage: 'Your email is required.' },
minLength: { value: 5, errorMessage: 'Your email is required to be at least 5 characters.' },
maxLength: { value: 254, errorMessage: 'Your email cannot be longer than 50 characters.' }
}, value: account.email }),
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(reactstrap__WEBPACK_IMPORTED_MODULE_2__["Button"], { color: "primary", type: "submit" }, "Save"))))));
};
return SettingsPage;
}(react__WEBPACK_IMPORTED_MODULE_1___default.a.Component));
var mapStateToProps = function (_a) {
var authentication = _a.authentication;
return ({
account: authentication.account,
isAuthenticated: authentication.isAuthenticated
});
};
var mapDispatchToProps = { getSession: app_shared_reducers_authentication__WEBPACK_IMPORTED_MODULE_5__["getSession"], saveAccountSettings: _settings_reducer__WEBPACK_IMPORTED_MODULE_6__["saveAccountSettings"], reset: _settings_reducer__WEBPACK_IMPORTED_MODULE_6__["reset"] };
/* harmony default export */ __webpack_exports__["default"] = (Object(react_redux__WEBPACK_IMPORTED_MODULE_3__["connect"])(mapStateToProps, mapDispatchToProps)(SettingsPage));
;(function register() { /* react-hot-loader/webpack */ if (true) { if (typeof __REACT_HOT_LOADER__ === 'undefined') { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : module.exports; /* eslint-enable camelcase, no-undef */ if (typeof webpackExports === 'function') { __REACT_HOT_LOADER__.register(webpackExports, 'module.exports', "/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/settings/settings.tsx"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } __REACT_HOT_LOADER__.register(namedExport, key, "/var/www/html/payroll_manager/front-end/src/main/webapp/app/modules/account/settings/settings.tsx"); } } })();
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../../node_modules/webpack/buildin/harmony-module.js */ "./node_modules/webpack/buildin/harmony-module.js")(module)))
/***/ })
}]);
//# sourceMappingURL=account.chunk.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,325 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
x="0px"
y="0px"
width="402.035px"
height="509.297px"
viewBox="0 0 402.035 509.297"
enable-background="new 0 0 402.035 509.297"
xml:space="preserve"
id="svg3336"
inkscape:version="0.91 r13725"
sodipodi:docname="logo-jhipster-react.svg"><metadata
id="metadata3377"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs3375" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1536"
inkscape:window-height="801"
id="namedview3373"
showgrid="false"
inkscape:zoom="3.5209766"
inkscape:cx="274.94343"
inkscape:cy="93.655725"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="head"
showguides="false" /><g
id="tie"><path
id="tie_5_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#3373AA"
d="M212.889,468.099c0,0-87.234-50.614-94.774-19.142 c-7.54,31.472-16.014,55.419,7.217,59.845S212.889,468.099,212.889,468.099z" /><path
id="tie_4_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M197.809,460.493 c25.041-12.944,74.474-35.103,80.132-11.637c7.616,31.586,16.143,55.613-7.032,60.124c-16.286,3.17-52.9-18.183-73.228-31.156 C197.66,462.481,197.831,475.611,197.809,460.493z" /></g><path
style="fill:#53c1de;fill-opacity:1"
d="m 257.81135,507.6133 c -12.32863,-3.35619 -31.56361,-12.5382 -50.20673,-23.96668 l -9.23803,-5.66304 -0.22612,-8.81602 -0.22613,-8.81601 12.27574,-5.62846 c 23.97948,-10.99465 38.92681,-15.62818 50.8345,-15.7582 7.74162,-0.0845 10.50482,0.80615 13.72705,4.42473 2.1905,2.45994 2.99224,4.69904 5.99577,16.74495 6.28312,25.199 6.42466,36.91738 0.52235,43.245 -4.89131,5.24377 -13.8252,6.85615 -23.4584,4.23373 z"
id="path3417"
inkscape:connector-curvature="0" /><path
style="fill:#2c89a0;fill-opacity:1"
d="m 124.02092,508.04228 c -8.91965,-2.40574 -12.64737,-7.12472 -13.39055,-16.95129 -0.51782,-6.84674 0.33189,-12.35107 4.66385,-30.21192 3.31922,-13.68528 4.87721,-17.41096 8.18798,-19.58026 9.19394,-6.0241 32.87383,-0.70518 65.06885,14.61563 l 9.46385,4.50361 -0.22581,8.79049 -0.22581,8.79049 -11.24631,6.74696 c -21.90798,13.14318 -43.75501,22.68202 -54.62491,23.85029 -2.2091,0.23743 -5.66111,-0.0119 -7.67114,-0.554 z"
id="path3423"
inkscape:connector-curvature="0" /><g
id="jacket_2_"><path
id="shoulders_2_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#495061"
d="M402.025,490.403 c0,0,1.275-34.418-24.249-56.648c-25.523-22.231-87.921-48.58-178.784-47.207c-90.862,1.373,35.346,101.803,35.346,101.803 L402.025,490.403z" /><path
id="shoulders_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#495061"
d="M0.011,490.403c0,0-1.275-34.464,24.255-56.724 c25.53-22.261,87.943-48.645,178.828-47.271c90.885,1.374-35.355,101.94-35.355,101.94s-56.796,0.696-104.288,1.278 C29.329,490.043,0.011,490.403,0.011,490.403z" /></g><g
id="head"><path
id="ear_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#EBCFC2"
d="M88.405,203.989c0,0-11.463-4.608-20.133,0.824 c-8.67,5.432-11.941,29.186-4.52,39.57c7.422,10.383,15.031,22.937,23.009,23.907c7.979,0.969,17.257-1.649,17.257-1.649 l-3.287-31.738L88.405,203.989z" /><path
id="ear"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#EBCFC2"
d="M307.924,203.903c0,0,11.469-4.595,20.144,0.822 c8.675,5.417,11.948,29.106,4.522,39.46c-7.426,10.355-15.039,22.874-23.022,23.841c-7.983,0.967-17.266-1.644-17.266-1.644 l3.289-31.651L307.924,203.903z" /><path
id="earring"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M316.968,260.216c4.087,0,7.4,3.313,7.4,7.399 c0,4.086-3.313,7.399-7.4,7.399c-4.087,0-7.4-3.313-7.4-7.399C309.569,263.529,312.882,260.216,316.968,260.216z" /><path
id="face"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#F5E0D4"
d="M192.816,45.238 c69.763-1.072,109.353,34.35,125.797,86.731c20.207,64.371-9.413,137.683-33.71,179.217c-9.957,17.021-18.84,33.648-34.532,44.804 c-10.57,7.515-25.525,12.109-40.699,14.798c-19.135,3.39-45.278-4-55.91-10.276c-37.977-22.419-67.749-96-78.931-146.744 c-5.022-22.79-4.018-55.379,2.056-76.044c11.928-40.586,34.336-69.057,71.942-83.854c9.257-3.643,19.697-5.377,30.421-7.399 C183.772,46.061,188.295,45.649,192.816,45.238z" /><path
id="eye"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#FFFFFF"
d="M146.979,189.927c12.828,0,23.227,10.398,23.227,23.224 c0,12.826-10.399,23.224-23.227,23.224c-12.828,0-23.227-10.398-23.227-23.224C123.751,200.325,134.151,189.927,146.979,189.927z" /><path
id="pupill"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#333333"
d="M156.233,212.945c0,5.45-4.42,9.87-9.87,9.87 c-4.04,0-7.51-2.43-9.03-5.9c0.6,0.35,1.3,0.55,2.04,0.55c2.27,0,4.11-1.84,4.11-4.11s-1.84-4.11-4.11-4.11 c-0.91,0-1.75,0.3-2.44,0.81c1.23-4.04,4.99-6.97,9.43-6.97C151.813,203.085,156.233,207.495,156.233,212.945z" /><path
id="eye_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#FFFFFF"
d="M251.979,189.927 c12.828,0,23.227,10.398,23.227,23.224c0,12.826-10.399,23.224-23.227,23.224c-12.828,0-23.227-10.398-23.227-23.224 C228.751,200.325,239.151,189.927,251.979,189.927z" /><path
id="pupill_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#333333"
d="M261.233,212.945c0,5.45-4.42,9.87-9.87,9.87 c-4.04,0-7.51-2.43-9.03-5.9c0.6,0.35,1.3,0.55,2.04,0.55c2.27,0,4.11-1.84,4.11-4.11s-1.84-4.11-4.11-4.11 c-0.91,0-1.75,0.3-2.44,0.81c1.23-4.04,4.99-6.97,9.43-6.97C256.813,203.085,261.233,207.495,261.233,212.945z" /><path
id="glasses"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M187.883,213.768h25.077v10.276h-25.077V213.768z" /><path
id="glasses_2_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M180.483,181.705h-66.6 c-4.54,0-8.22,3.68-8.22,8.22v50.97c0,4.54,3.68,8.22,8.22,8.22h66.6c4.54,0,8.22-3.68,8.22-8.22v-50.97 C188.703,185.385,185.023,181.705,180.483,181.705z M178.763,233.835c0,3.36-2.78,6.09-6.21,6.09h-50.35 c-3.44,0-6.22-2.73-6.22-6.09v-37.74c0-3.36,2.78-6.09,6.22-6.09h50.35c3.43,0,6.21,2.73,6.21,6.09V233.835z" /><path
id="glasses_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M284.483,181.705h-66.6 c-4.54,0-8.22,3.68-8.22,8.22v50.97c0,4.54,3.68,8.22,8.22,8.22h66.6c4.54,0,8.22-3.68,8.22-8.22v-50.97 C292.703,185.385,289.023,181.705,284.483,181.705z M282.763,233.835c0,3.36-2.78,6.09-6.21,6.09h-50.35 c-3.44,0-6.22-2.73-6.22-6.09v-37.74c0-3.36,2.78-6.09,6.22-6.09h50.35c3.43,0,6.21,2.73,6.21,6.09V233.835z" /><path
id="eyebrows_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#B08F7E"
d="M148.783,151.061 c-24.698,0.54-39.008,8.574-39.008,16.937c0,8.364,13.151,5.992,22.995,2.066c9.843-3.926,22.872-3.621,28.332,0.413 c5.46,4.034,17.164,5.165,17.656-3.305C179.25,158.702,157.203,150.878,148.783,151.061z" /><path
id="eyebrows"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#B08F7E"
d="M249.548,150.878 c24.728,0.537,39.055,8.531,39.055,16.853c0,8.322-13.166,5.962-23.022,2.055c-9.855-3.906-22.9-3.603-28.366,0.411 c-5.466,4.014-17.184,5.14-17.677-3.288C219.045,158.48,241.117,150.694,249.548,150.878z" /><path
id="neck"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#F5E0D4"
d="M253.253,348.185h-110.59v83.31l55.37,25l55.22-25 V348.185z" /><path
id="beard_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#B08F7E"
d="M311.503,253.395 c-7.69,22.29-17.52,42.26-26.6,57.79c-9.96,17.02-18.84,33.65-34.53,44.81c-10.57,7.51-25.53,12.1-40.7,14.79 c-19.14,3.39-45.28-4-55.91-10.27c-27.23-16.07-50.24-58.45-65.21-99.85c-0.05-2.84,0.14-5.52,0.67-7.85 c0.41-0.13,0.82-0.27,1.23-0.41c6.1-2.35,12.36,4.16,15.62,6.58c11.95,8.86,20.54,20.07,31.24,30 c-2.25-8.18,4.44-26.45,12.75-19.31c3.76,2.73,0.55,12.25,1.64,17.26c18.14,12.21,20-9.94,28.78-14.39 c5.9-1.13,11.45,3.89,17.27,4.94c9.49,1.7,14.05-4.87,22.2-5.35c8.17,4.72,8.23,20.15,22.61,17.27c3.57-0.72,5.17-0.5,6.57-3.29 c2.72-5.18-1.67-13.47,1.24-16.86c2.9-3.38,3.29-0.54,4.93-0.82c5.96,2.76,11.39,11.2,8.22,20.14c3.43-3.7,6.85-7.4,10.28-11.09 c10.42-10.56,19.89-18.84,34.12-25.9c0.82,0.14,1.65,0.27,2.47,0.41C310.763,252.465,311.133,252.925,311.503,253.395z" /><path
id="mounth"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#EBCFC2"
d="M167.739,303.787c0,0,8.352,14.478,31.655,13.976 c23.303-0.503,31.244-13.976,31.244-13.976s-15.235-4.932-27.544-4.932c-5.288,0-10.737,2.929-17.677,4.111 C178.476,304.147,167.739,303.787,167.739,303.787z" /><path
id="spring_boot"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#979A9B"
d="M169.389,370.317 c-5.438-1.343-13.797-0.763-20.371-0.691c-2.418,1.622-4.519,4.226-6.356,7.153c0,5.395,0.389,19.66,0.389,25.564 c1.694,2.451,3.467,4.492,4.93,5.609h20.371c3.173-1.492,4.192-5.293,5.87-8.287c1.84-3.108,3.684-6.215,5.524-9.323 C180.728,386.448,171.329,372.938,169.389,370.317z M157.304,376.187h1.726c0.231,0.345,0.459,0.691,0.691,1.036 c0.114,3.912,0.231,7.827,0.345,11.74c-1.105,0.68-1.088,0.932-2.417,0.691C155.65,388.195,156.21,378.313,157.304,376.187z M160.757,400.011c-13.487,3.308-15.351-11.377-11.74-19.336c0.805-0.691,1.612-1.381,2.417-2.072 c0.691,0.114,1.381,0.231,2.072,0.345c0.114,0.345,0.231,0.691,0.345,1.036c-3.474,5.203-7.758,14.308,2.072,16.919 c11.567,3.073,13.317-11.819,6.906-16.228v-1.381c0.459-0.345,0.922-0.691,1.381-1.036 C173.629,383.141,170.18,397.701,160.757,400.011z" /><path
id="collar"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#FFFFFF"
d="M142.662,389.696l59.609,69.878l-36.588,9.043 l-40.699-45.215c0,0,0.045-13.113,3.289-19.319C131.517,397.877,142.662,389.696,142.662,389.696z" /><path
id="hears"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#B08F7E"
d="M72.364,195.682c0,0,6.133-17.02,6.578-23.841 c0.445-6.821,5.171-46.943,19.733-67.001c9.368-14.438,23.076-17.432,36.588-14.387c13.512,3.046,29.166,11.175,45.221,9.043 c16.055-2.132,56.817-22.612,73.587-14.798c16.77,7.815,44.946,21.469,48.099,47.27c3.152,25.801,21.377,66.59,21.377,66.59 s9.441-65.867,9.455-83.443c0.014-17.576-45.749-69.159-55.087-79.332S238.363-0.89,220.36,0.023 c-18.003,0.914-42.247,15.528-51.799,16.442c-9.552,0.914-15.83-3.592-26.31-1.644c-10.48,1.948-21.592,1.371-53.443,34.528 c-31.85,33.157-28.534,82.852-26.31,110.572C64.722,187.641,72.364,195.682,72.364,195.682z" /><path
fill-rule="evenodd"
clip-rule="evenodd"
fill="#D5AD98"
d="M159.106,87.987c0,0-7.832-11.734,2.056-33.295 c9.887-21.561,10.277-31.651,10.277-31.651s-5.6,13.958-13.155,31.651C150.728,72.385,159.106,87.987,159.106,87.987z"
id="path3364" /><path
fill-rule="evenodd"
clip-rule="evenodd"
fill="#D5AD98"
d="M187.883,91.276c0,0,22.204-25.629,36.588-36.994 c14.384-11.365,32.066-24.252,32.066-24.252s-13.968,3.438-34.943,21.375C200.618,69.341,187.883,91.276,187.883,91.276z"
id="path3366" /><path
fill-rule="evenodd"
clip-rule="evenodd"
fill="#D5AD98"
d="M172.672,87.576c0,0-0.479-23.829,11.1-50.148 C195.35,11.11,218.716,7.011,218.716,7.011s-17.107,7.784-29.188,31.24C177.447,61.706,172.672,87.576,172.672,87.576z"
id="path3368" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 312.3204,272.66636 c -4.51917,-3.88722 -1.70389,-11.75206 4.20673,-11.75206 3.70932,0 5.04431,0.68418 6.38184,3.27068 1.74309,3.37077 1.44397,5.42056 -1.17288,8.03742 -2.92897,2.92897 -6.33974,3.08979 -9.41569,0.44396 z"
id="path3401"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 110.65207,248.05367 c -0.96834,-0.39005 -2.41429,-1.70706 -3.21323,-2.9267 -1.33113,-2.03205 -1.45262,-4.56059 -1.45262,-30.23338 l 0,-28.01586 2.62342,-2.34379 2.62342,-2.34378 36.19796,0 36.19796,0 2.34813,2.34813 2.34813,2.34813 0,13.71802 0,13.71802 10.84465,0 10.84466,0 0,-13.71802 0,-13.71802 2.34813,-2.34813 2.34812,-2.34813 36.19797,0 36.19796,0 2.62342,2.34402 2.62342,2.34403 0,28.01616 c 0,25.63889 -0.12285,28.20366 -1.4478,30.22579 -0.79629,1.21529 -2.35615,2.55497 -3.46635,2.97707 -3.11156,1.18301 -70.39953,1.00588 -73.02913,-0.19225 -3.55375,-1.61919 -4.39574,-4.42822 -4.39574,-14.6649 l 0,-9.27793 -10.84466,0 -10.84465,0 0,9.27793 c 0,10.23668 -0.84199,13.04571 -4.39574,14.6649 -2.52769,1.15169 -70.44524,1.2895 -73.27743,0.14869 z m 66.17427,-9.77201 c 1.85343,-1.74121 1.85921,-1.8134 1.85921,-23.20693 0,-19.92834 -0.10956,-21.59566 -1.53481,-23.35672 l -1.5348,-1.89643 -26.38013,-0.23527 c -14.50908,-0.12941 -27.20268,-0.0298 -28.20801,0.22126 -1.00533,0.25109 -2.54166,1.17031 -3.41406,2.04271 -1.50011,1.50012 -1.58618,2.74931 -1.58618,23.02289 0,20.90396 0.0434,21.4829 1.74664,23.29591 l 1.74665,1.85922 27.72313,0 c 27.3584,0 27.7476,-0.023 29.58236,-1.74664 z m 104.31744,-0.22511 1.97176,-1.97176 0,-20.87771 0,-20.87772 -1.93872,-2.25389 -1.93871,-2.25389 -27.85322,0 -27.85322,0 -1.93871,2.25389 -1.93872,2.25389 0,20.87772 0,20.87771 1.97176,1.97176 1.97175,1.97175 27.78714,0 27.78714,0 1.97175,-1.97175 z"
id="path3403"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 262.22954,508.59222 c -10.39484,-1.68386 -31.94745,-11.49721 -53.21913,-24.23178 l -11.04548,-6.61251 0.0266,-8.60585 0.0266,-8.60585 4.99411,-2.32258 c 31.29069,-14.55212 45.07685,-19.0602 58.53214,-19.14003 7.26131,-0.0431 11.39573,1.61033 14.06981,5.6267 1.72986,2.59819 7.31988,24.03681 9.05317,34.72037 1.0946,6.74682 1.07935,14.02552 -0.0378,18.04957 -2.19624,7.91096 -12.04244,12.79977 -22.39991,11.12196 z"
id="path3405"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 259.26788,507.92831 c -10.80922,-2.34956 -30.45468,-11.57966 -50.85995,-23.89572 l -10.04134,-6.06068 -0.19265,-8.71784 -0.19264,-8.71784 11.7795,-5.51573 c 36.57057,-17.12409 58.97972,-20.64491 65.83723,-10.34403 1.63367,2.45397 7.13614,23.2125 9.0873,34.28254 1.08953,6.18157 1.0645,14.47566 -0.0558,18.51125 -1.25882,4.53427 -5.83949,8.80857 -11.12073,10.37693 -5.11848,1.52002 -7.55726,1.53391 -14.24086,0.0811 l -3e-5,0 z"
id="path3407"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 259.26788,507.92831 c -10.74989,-2.33666 -30.77179,-11.73311 -51.10109,-23.98218 l -9.8002,-5.90494 -0.22571,-8.80014 -0.2257,-8.80015 11.83595,-5.46879 c 27.66619,-12.78314 46.26388,-17.93088 56.84472,-15.7343 7.103,1.47457 9.43656,4.02626 11.9361,13.05182 6.19449,22.36754 8.25225,37.21488 6.2046,44.76797 -1.33962,4.94143 -5.72469,9.15533 -11.22781,10.78959 -5.11848,1.52002 -7.55726,1.53391 -14.24086,0.0811 z"
id="path3409"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 124.98184,508.21104 c -11.5886,-2.074 -16.17419,-11.10774 -13.818,-27.2218 1.38857,-9.49652 7.5837,-34.0401 9.22411,-36.54369 6.55194,-9.99952 31.71528,-5.76564 68.13812,11.46463 l 9.43886,4.46517 0,8.68629 0,8.68629 -11.04548,6.60025 c -22.27381,13.30978 -44.77669,23.22365 -54.82574,24.15403 -1.98818,0.18407 -5.18853,0.053 -7.11187,-0.29117 z"
id="path3413"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 124.98184,508.21104 c -5.26675,-0.94259 -10.29526,-4.24117 -12.22158,-8.01708 -3.60371,-7.06385 -3.01708,-16.13449 2.54079,-39.28648 3.55393,-14.80432 5.10255,-18.02832 9.75598,-20.31051 9.64731,-4.73135 33.44509,1.00642 63.46904,15.30273 l 9.43886,4.49444 0,8.67926 0,8.67926 -12.25044,7.30848 c -15.80472,9.42893 -30.97138,16.84697 -41.572,20.33294 -9.35238,3.07549 -13.94411,3.75056 -19.16065,2.81696 z"
id="path3415"
inkscape:connector-curvature="0" /><g
id="g3395"
transform="matrix(0.18177964,0,0,0.18177964,215.66034,368.26855)"><path
id="path3383"
d="m 207.27414,76.61487 c -2.34402,-0.80681 -4.7729,-1.57019 -7.27378,-2.29214 0.41105,-1.67757 0.78831,-3.33343 1.12375,-4.96113 5.50611,-26.72736 1.90602,-48.25911 -10.38721,-55.34828 -11.78766,-6.7975797 -31.06548,0.28998 -50.53516,17.23384 -1.87224,1.62932 -3.74971,3.35435 -5.62637,5.16224 -1.25044,-1.19615 -2.49886,-2.35207 -3.74407,-3.45771 C 110.42651,14.83421 89.973858,7.1992503 77.692696,14.30893 65.916293,21.12622 62.428821,41.36811 67.385126,66.69784 c 0.478617,2.44658 1.038077,4.94504 1.670737,7.48533 -2.89463,0.82169 -5.689113,1.69769 -8.362935,2.62958 -23.922426,8.34041 -39.200377,21.4119 -39.200377,34.97044 0,14.00339 16.400892,28.049 41.317958,36.56557 1.966353,0.67208 4.006711,1.30755 6.10941,1.91085 -0.682532,2.74743 -1.276179,5.43975 -1.774504,8.06571 -4.725844,24.89012 -1.035262,44.6538 10.709769,51.42805 12.131545,6.99586 32.491686,-0.19507 52.317306,-17.52504 1.56697,-1.36989 3.13957,-2.82264 4.71499,-4.34536 2.04197,1.96635 4.08071,3.82733 6.1086,5.57287 19.20342,16.52517 38.16995,23.19807 49.90412,16.40492 12.11948,-7.01597 16.05822,-28.24688 10.94465,-54.07774 -0.39054,-1.97279 -0.84502,-3.98821 -1.35541,-6.03943 1.42982,-0.42271 2.83349,-0.8591 4.20218,-1.31278 25.90366,-8.58253 42.75743,-22.45721 42.75743,-36.64762 0,-13.60761 -15.77065,-26.76718 -40.17491,-35.16832 l 0,0 0,0 z"
inkscape:connector-curvature="0"
style="fill:#53c1de" /><path
id="path3385"
d="m 201.65582,139.20276 c -1.23556,0.40904 -2.50329,0.8044 -3.79516,1.1877 -2.85964,-9.05311 -6.71914,-18.67976 -11.44217,-28.62575 4.50705,-9.7091 8.21734,-19.212671 10.99694,-28.207061 2.31144,0.66886 4.55491,1.37432 6.71673,2.11879 20.90955,7.19816 33.6641,17.840771 33.6641,26.041211 0,8.73497 -13.77453,20.07418 -36.14044,27.48511 l 0,0 0,0 z m -9.28035,18.38937 c 2.26116,11.42206 2.58413,21.74894 1.08634,29.82189 -1.34576,7.25407 -4.05216,12.09052 -7.39846,14.02751 -7.12095,4.12174 -22.34902,-1.23596 -38.77204,-15.36844 -1.88269,-1.62006 -3.77907,-3.34992 -5.68147,-5.18074 6.36682,-6.96328 12.73002,-15.05835 18.94038,-24.04871 10.92334,-0.9693 21.24338,-2.55397 30.60216,-4.7174 0.46092,1.85937 0.87036,3.68294 1.22309,5.46589 l 0,0 0,0 z m -93.849237,43.13711 c -6.95725,2.45703 -12.49835,2.52742 -15.84787,0.59606 -7.12738,-4.11089 -10.09038,-19.97927 -6.04868,-41.26527 0.46293,-2.43774 1.01394,-4.94183 1.64902,-7.50143 9.25622,2.0468 19.50064,3.51965 30.450117,4.40731 6.2522,8.79731 12.7992,16.88353 19.39688,23.96385 -1.44148,1.39161 -2.87734,2.71645 -4.30514,3.96488 -8.76675,7.66311 -17.55199,13.10004 -25.294327,15.8346 l 0,0 0,0 z m -32.59385,-61.57997 c -11.01786,-3.76579 -20.11682,-8.66016 -26.35372,-14.00097 -5.60425,-4.79944 -8.43373,-9.5643 -8.43373,-13.43065 0,-8.22779 12.26669,-18.722391 32.72537,-25.855401 2.48238,-0.86553 5.08099,-1.68119 7.77774,-2.44738 2.82746,9.1975 6.53654,18.813691 11.01262,28.537671 -4.53399,9.86837 -8.29577,19.63779 -11.15098,28.94308 -1.92251,-0.55262 -3.7851,-1.1342 -5.5773,-1.74635 l 0,0 0,0 z m 10.92575,-74.370721 c -4.24642,-21.70188 -1.4262,-38.07301 5.67061,-42.18108 7.55934,-4.37633 24.275157,1.86339 41.893107,17.50695 1.12615,0.99986 2.25674,2.04639 3.39054,3.12911 -6.56511,7.04935 -13.05218,15.07484 -19.24887,23.82026 -10.626917,0.98499 -20.799347,2.56724 -30.152097,4.68603 -0.58801,-2.36533 -1.10886,-4.68924 -1.55329,-6.96127 l 0,0 0,0 z m 97.467417,24.06722 c -2.23582,-3.86192 -4.53118,-7.63254 -6.87117,-11.3002 7.20943,0.91139 14.1168,2.1212 20.60347,3.6017 -1.94745,6.24133 -4.37472,12.76702 -7.23195,19.456811 -2.0496,-3.891291 -4.21746,-7.814741 -6.50035,-11.758311 l 0,0 0,0 z m -39.74696,-38.71372 c 4.45235,4.82358 8.91113,10.20903 13.29672,16.05219 -4.41937,-0.20874 -8.89344,-0.31734 -13.40451,-0.31734 -4.46844,0 -8.90952,0.10618 -13.30154,0.31131 4.39001,-5.78886 8.8874,-11.16707 13.40933,-16.04616 l 0,0 0,0 z m -40.001557,38.78048 c -2.23341,3.87278 -4.36105,7.77492 -6.37848,11.684311 -2.81098,-6.666461 -5.21573,-13.221911 -7.18007,-19.551731 6.44686,-1.44269 13.32165,-2.62234 20.485227,-3.51643 -2.372977,3.70144 -4.687227,7.49981 -6.926677,11.38305 l 0,8e-4 0,0 z m 7.133007,57.682661 c -7.401277,-0.82572 -14.379437,-1.94463 -20.824687,-3.34751 1.99572,-6.44283 4.45356,-13.13825 7.32406,-19.94829 2.02266,3.90657 4.15874,7.81031 6.40583,11.69154 l 4e-4,0 c 2.28892,3.95402 4.66029,7.8272 7.094397,11.60426 l 0,0 0,0 z m 33.13561,27.38858 c -4.57502,-4.93619 -9.13838,-10.39645 -13.59515,-16.26977 4.32646,0.16972 8.73738,0.2566 13.2203,0.2566 4.60559,0 9.15848,-0.10377 13.63979,-0.30326 -4.40006,5.9791 -8.84276,11.44781 -13.26494,16.31643 l 0,0 0,0 z m 46.07236,-51.03148 c 3.02011,6.88365 5.56604,13.54407 7.58749,19.87711 -6.55143,1.49457 -13.62491,2.69835 -21.07767,3.59285 2.34563,-3.71713 4.66109,-7.55251 6.93634,-11.49768 2.30179,-3.99143 4.48734,-7.98889 6.55384,-11.97228 l 0,0 0,0 z m -14.91517,7.14991 c -3.53212,6.12429 -7.15835,11.97066 -10.83968,17.48924 -6.70507,0.47942 -13.63215,0.72637 -20.69236,0.72637 -7.03165,0 -13.87146,-0.21839 -20.45788,-0.64593 -3.82974,-5.59098 -7.5348,-11.45464 -11.0444,-17.517 l 8e-4,0 c -3.500337,-6.04586 -6.721957,-12.1428 -9.641117,-18.20556 2.91836,-6.07683 6.13153,-12.180611 9.611757,-18.215621 l -8e-4,0.001 c 3.48948,-6.05109 7.16197,-11.8862 10.95632,-17.44219 6.71995,-0.50797 13.61083,-0.77302 20.57492,-0.77302 l 4e-4,0 c 6.99546,0 13.89519,0.26706 20.61313,0.77946 3.73643,5.51536 7.38398,11.33157 10.88714,17.38347 3.54297,6.11986 6.79757,12.183021 9.74087,18.129541 -2.93445,6.04868 -6.18181,12.17297 -9.7091,18.29003 l 0,0 0,0 z m 19.9125,-107.791901 c 7.56658,4.36347 10.50907,21.9613 5.75507,45.0375 -0.30326,1.47245 -0.64473,2.97226 -1.01555,4.49217 -9.37447,-2.16303 -19.55414,-3.77263 -30.21203,-4.7725 -6.20875,-8.84155 -12.64274,-16.87951 -19.10085,-23.83837 1.73629,-1.67033 3.47017,-3.26304 5.19682,-4.76606 16.68162,-14.51739 32.27289,-20.24914 39.37654,-16.15274 l 0,0 0,0 z"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
id="path3387"
d="m 134.4708,91.540497 c 11.14334,0 20.17714,9.033403 20.17714,20.177143 0,11.14334 -9.0338,20.17715 -20.17714,20.17715 -11.14334,0 -20.17714,-9.03381 -20.17714,-20.17715 0,-11.14374 9.0338,-20.177143 20.17714,-20.177143"
inkscape:connector-curvature="0"
style="fill:#53c1de" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 246.9508,380.65979 -2.06233,-0.31304 -1.69816,-2.17902 -1.69817,-2.17903 1.77241,-1.34094 c 4.98535,-3.77172 7.44582,-3.10862 7.44523,2.00651 -1.4e-4,1.24983 -0.10018,2.75169 -0.2223,3.33747 -0.2504,1.2011 -0.14991,1.18212 -3.53668,0.66805 z"
id="path3425"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 247.40653,384.37484 c -0.57122,-0.9658 -1.00789,-1.78794 -0.97039,-1.82699 0.0375,-0.039 0.77955,0.0719 1.64897,0.24647 l 1.58077,0.31746 -0.43513,1.3156 c -0.23932,0.72358 -0.514,1.40287 -0.61039,1.50952 -0.0964,0.10666 -0.64262,-0.59627 -1.21383,-1.56206 z"
id="path3427"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 251.51946,393.05629 c -0.0957,-0.27336 -0.53836,-1.37164 -0.98375,-2.44061 l -0.80981,-1.9436 0.92167,-2.5139 c 0.87265,-2.38022 0.95942,-2.50465 1.6317,-2.33973 1.22763,0.30116 3.50442,1.40778 4.70903,2.28879 2.9516,2.15871 1.99151,4.41356 -2.80532,6.58855 -2.19894,0.99704 -2.4298,1.02829 -2.66352,0.3605 z"
id="path3429"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d=""
id="path3431"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 247.11107,393.3754 c 0.4587,-0.76128 0.96599,-1.63355 1.12731,-1.93836 0.26854,-0.5074 0.32879,-0.46932 0.71322,0.45075 0.98996,2.36932 1.01552,2.3184 -1.34119,2.67181 l -1.33333,0.19995 0.83399,-1.38415 z"
id="path3433"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 235.30461,393.1983 c -0.61649,-0.97629 -1.44974,-2.42415 -1.85166,-3.21747 l -0.73076,-1.44239 1.00086,-1.82375 c 0.55047,-1.00306 1.38558,-2.43082 1.85581,-3.1728 l 0.85494,-1.34906 3.66608,0 3.66608,0 0.94106,1.49106 c 0.51759,0.82009 1.36231,2.23678 1.87717,3.14821 1.08187,1.91518 1.13421,1.67213 -1.21728,5.6527 l -1.466,2.48164 -3.7377,0.003 -3.7377,0.003 -1.1209,-1.77508 z m 6.3271,-1.18996 c 2.79116,-1.16622 2.79116,-5.68425 0,-6.85047 -1.29784,-0.54228 -2.08488,-0.51564 -3.25152,0.11003 -2.65862,1.42584 -2.61376,5.23115 0.0774,6.56326 1.40276,0.69436 1.87349,0.72063 3.17415,0.17718 z"
id="path3435"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 239.0862,398.48464 c -0.58632,-0.70144 -1.00437,-1.33701 -0.92899,-1.41239 0.0754,-0.0754 1.04968,-0.0992 2.16511,-0.0529 l 2.02806,0.0841 -1.09907,1.32825 -1.09907,1.32824 -1.06604,-1.27532 z"
id="path3437"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 230.1562,404.04261 c -0.73339,-1.20595 -0.94452,-3.21713 -0.59583,-5.67568 0.16236,-1.14478 0.33746,-2.12369 0.38913,-2.17535 0.0517,-0.0517 0.71966,0.0286 1.48443,0.17838 0.76478,0.14978 1.96563,0.34909 2.66856,0.44292 1.15243,0.15383 1.42605,0.35243 2.78377,2.02061 0.82814,1.0175 1.56725,2.01039 1.64247,2.20641 0.16645,0.43375 -2.67498,2.60121 -4.37878,3.34017 -0.67683,0.29355 -1.7331,0.53373 -2.34728,0.53373 -0.94172,0 -1.19968,-0.13649 -1.64647,-0.87119 z"
id="path3439"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 227.54746,393.40046 c -2.81719,-0.97534 -5.11015,-2.55274 -5.78839,-3.98203 -0.43716,-0.92124 -0.43433,-1.03656 0.0453,-1.85064 0.63677,-1.08066 2.82516,-2.54327 5.02211,-3.35653 0.91873,-0.34009 1.70418,-0.5819 1.74546,-0.53735 0.17026,0.18375 1.83538,4.64754 1.83126,4.90919 -0.002,0.15621 -0.42048,1.3821 -0.92895,2.7242 l -0.92448,2.44018 -1.00236,-0.34702 z"
id="path3441"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 229.6599,379.74125 c -0.37535,-2.2835 -0.23952,-5.26227 0.28633,-6.27916 0.58055,-1.12265 1.49589,-1.39221 3.1525,-0.92839 1.32827,0.37189 4.2292,2.14039 5.11314,3.11713 0.52625,0.58151 0.52156,0.60377 -0.31802,1.50703 -0.46869,0.50424 -1.25386,1.44134 -1.74482,2.08246 -0.81598,1.06553 -1.0337,1.18117 -2.53464,1.34626 -0.9031,0.0993 -2.11117,0.26085 -2.68461,0.35893 l -1.04261,0.17831 -0.22727,-1.38257 z"
id="path3443"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 231.15471,384.86281 c -0.61061,-1.79204 -0.61875,-1.76548 0.60468,-1.97188 0.58578,-0.0988 1.30619,-0.24658 1.60092,-0.32835 0.45672,-0.12672 0.39799,0.0972 -0.39763,1.51586 -1.28978,2.29983 -1.29136,2.30052 -1.80797,0.78437 z"
id="path3445"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 238.27756,379.82061 c 0.32428,-0.54845 1.72854,-2.17197 1.87864,-2.17197 0.0694,0 0.5974,0.57512 1.1734,1.27805 l 1.04727,1.27806 -2.16322,0 c -1.74063,0 -2.11885,-0.075 -1.93609,-0.38414 z"
id="path3447"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 231.61738,394.48391 c -1.07788,-0.13376 -1.133,-0.4764 -0.3767,-2.34196 l 0.51459,-1.26937 0.64664,1.26937 c 0.35564,0.69815 0.83457,1.55692 1.06426,1.90839 0.46003,0.70388 0.41483,0.71448 -1.84879,0.43357 z"
id="path3449"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#979a9b;fill-opacity:1"
d="m 230.7671,406.61798 c -1.19471,-0.27448 -1.68388,-0.70029 -2.42536,-2.1112 -0.52166,-0.99262 -0.59933,-1.5744 -0.55231,-4.13717 0.0301,-1.64017 0.0889,-3.39937 0.13076,-3.90933 0.074,-0.90244 0.0177,-0.95263 -2.10698,-1.87963 -4.32456,-1.88675 -6.50475,-4.2592 -6.06553,-6.60041 0.37863,-2.01828 3.62447,-4.57006 7.34991,-5.77826 l 1.08944,-0.35332 -0.23741,-1.74499 c -0.65278,-4.79818 0.0553,-8.17916 1.91425,-9.14047 1.98011,-1.02395 4.98386,-0.13906 8.39015,2.47172 0.98567,0.75548 1.87301,1.3736 1.97185,1.3736 0.0989,0 0.76093,-0.5116 1.47129,-1.13688 1.85412,-1.63206 4.96532,-3.12331 6.51619,-3.12331 2.94115,0 4.16616,1.74307 4.19164,5.96426 0.009,1.48396 -0.0856,3.29328 -0.21016,4.02071 l -0.22644,1.3226 1.07848,0.3495 c 1.8651,0.60442 4.31764,1.95263 5.50745,3.02755 2.20783,1.99463 2.48694,3.50913 1.03826,5.63367 -1.0409,1.52652 -3.65408,3.2515 -6.08797,4.01872 l -1.49996,0.47282 0.20831,1.15666 c 0.11457,0.63617 0.20831,2.43473 0.20831,3.99679 0,2.32125 -0.10733,3.04473 -0.58751,3.96007 -1.68454,3.21116 -5.05654,2.99959 -9.82278,-0.61632 l -1.88993,-1.4338 -1.29925,1.07363 c -2.92388,2.41616 -5.97747,3.60003 -8.0547,3.12279 z m 4.07826,-2.41726 c 1.07539,-0.54839 2.45815,-1.43091 3.07282,-1.96114 1.26736,-1.09327 1.35856,-0.76631 -1.04542,-3.74819 l -1.3479,-1.67194 -2.77027,-0.45677 c -1.52365,-0.25123 -2.8134,-0.42111 -2.86611,-0.37752 -0.289,0.23901 -0.60151,2.53594 -0.60742,4.46457 -0.0144,4.69073 1.5946,5.77537 5.5643,3.75099 z m 15.3469,-0.0823 c 0.81745,-1.21695 1.09314,-3.53722 0.71944,-6.05502 -0.16412,-1.10581 -0.34145,-2.05361 -0.39406,-2.10622 -0.0526,-0.0526 -1.37118,0.10286 -2.93017,0.34548 l -2.83453,0.44112 -1.42006,1.85106 c -0.78103,1.01808 -1.54786,2.03291 -1.70407,2.25518 -0.37694,0.53634 1.64834,2.32244 3.97617,3.5066 2.2888,1.1643 3.69421,1.09132 4.58728,-0.2382 z m -8.63226,-5.67954 1.06723,-1.33543 -2.30957,-0.0831 c -1.27026,-0.0457 -2.37075,-0.0219 -2.44554,0.0529 -0.19652,0.19652 1.97477,2.73084 2.32577,2.71463 0.16218,-0.007 0.77513,-0.61456 1.36211,-1.34906 z m 3.52351,-5.09859 c 0.6442,-1.0544 1.49509,-2.56556 1.89086,-3.35814 l 0.71959,-1.44105 -1.14442,-2.1091 c -0.62943,-1.16 -1.48775,-2.62032 -1.90738,-3.24515 l -0.76297,-1.13605 -3.8233,0 -3.82331,0 -1.77507,2.98058 c -0.9763,1.63931 -1.77508,3.2246 -1.77508,3.52286 0,0.57767 1.54065,3.49882 2.8987,5.49608 l 0.82075,1.20705 3.75518,0 3.75517,0 1.17128,-1.91708 z m -10.98102,1.46971 c 0,-0.46442 -2.3855,-4.09399 -2.56267,-3.89915 -0.34701,0.38162 -1.19904,3.23558 -1.01955,3.41507 0.36386,0.36387 3.58222,0.79877 3.58222,0.48408 z m 14.12433,-0.15295 c 1.12872,-0.19655 1.77287,-0.43847 1.70152,-0.63902 -0.0631,-0.1775 -0.35283,-0.9957 -0.64372,-1.81823 -0.29089,-0.82252 -0.63551,-1.45996 -0.76582,-1.41652 -0.31438,0.10479 -2.56436,4.19008 -2.3077,4.19008 0.10967,0 1.01674,-0.14234 2.01572,-0.31631 z m -18.48581,-3.47506 1.00698,-2.51331 -1.00218,-2.5989 c -1.16772,-3.02819 -1.11951,-3.01158 -4.332,-1.49208 -4.11901,1.94829 -5.11027,3.98102 -2.9801,6.11119 1.19855,1.19855 4.9549,3.19588 5.78942,3.07836 0.35361,-0.0498 0.82092,-0.84572 1.51788,-2.58526 z m 24.60691,1.68886 c 2.04226,-0.91921 3.78599,-2.25793 4.34229,-3.33371 0.42456,-0.82099 0.42713,-0.98699 0.0282,-1.82345 -0.55101,-1.15547 -1.81968,-2.13072 -4.17437,-3.20892 -3.12941,-1.43293 -2.85322,-1.53626 -4.05803,1.5183 l -1.06257,2.69396 0.53295,1.06908 c 0.29312,0.58799 0.77169,1.74694 1.06349,2.57546 0.60176,1.70864 0.64771,1.71567 3.32799,0.50928 l 10e-6,0 z m -21.25167,-8.58295 c 0.56809,-1.03351 0.99494,-1.91299 0.94856,-1.9544 -0.0464,-0.0414 -0.89517,0.0574 -1.8862,0.21951 -1.73575,0.28399 -1.79636,0.32188 -1.6515,1.03235 0.25447,1.24801 1.04275,2.89901 1.30636,2.73609 0.13744,-0.0849 0.71469,-1.00004 1.28278,-2.03355 z m 16.27896,0.4493 c 0.45589,-1.26706 0.52641,-1.7467 0.26964,-1.834 -0.54561,-0.1855 -3.46337,-0.66847 -3.54642,-0.58703 -0.12736,0.12488 2.2669,4.13682 2.46878,4.13682 0.10485,0 0.46846,-0.7721 0.808,-1.71579 z m -16.57033,-3.82205 c 1.3951,-0.22863 2.62446,-0.51396 2.73191,-0.63407 0.10745,-0.1201 0.93769,-1.10391 1.84498,-2.18624 l 1.64962,-1.96788 -1.1662,-1.03492 c -0.64142,-0.56921 -1.91018,-1.4302 -2.81947,-1.91333 -4.43092,-2.35423 -5.99435,-1.13586 -5.69881,4.44107 0.13964,2.63501 0.35662,3.72641 0.73879,3.71604 0.10045,-0.003 1.32408,-0.19203 2.71918,-0.42067 z m 17.95765,-1.20745 c 0.67824,-4.85336 -0.24821,-7.73933 -2.48447,-7.73933 -1.02555,0 -4.39695,1.75539 -5.86478,3.05363 l -1.20362,1.06455 1.24892,1.4883 c 0.6869,0.81856 1.48597,1.81372 1.77571,2.21147 0.43222,0.59335 0.93397,0.79158 2.79482,1.10419 3.68924,0.61977 3.4719,0.68863 3.73342,-1.18281 z m -8.13968,0.60744 c 0,-0.32717 -2.34421,-2.97384 -2.56075,-2.89114 -0.3367,0.12858 -2.26745,2.51928 -2.26745,2.8076 0,0.14142 1.08634,0.25714 2.4141,0.25714 1.32776,0 2.4141,-0.0781 2.4141,-0.1736 z"
id="path3451"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#979a9b;fill-opacity:1"
d="m 238.76553,391.85809 c -1.1148,-0.45098 -2.10693,-1.94933 -2.10693,-3.18195 0,-3.53721 4.46078,-4.98604 6.37176,-2.06951 0.6419,0.97966 0.63389,2.98551 -0.0159,3.97718 -0.832,1.26978 -2.80064,1.86019 -4.24896,1.27428 z"
id="path3453"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 246.03615,404.32394 c -1.47595,-0.66949 -4.26533,-2.70692 -4.26533,-3.11551 0,-0.15335 0.56372,-0.97093 1.25272,-1.81683 0.68899,-0.8459 1.36663,-1.74155 1.50586,-1.99034 0.28495,-0.50917 5.4539,-1.42083 5.84857,-1.03153 0.12584,0.12413 0.30303,1.37158 0.39377,2.77212 0.17164,2.64936 -0.13763,4.30308 -0.9865,5.27493 -0.58298,0.66743 -2.15904,0.6284 -3.74909,-0.0928 z"
id="path3455"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /></g><path
style="fill:#495061;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 254.19084,388.30784 3.69216,6.53228 5.68024,-4.5442 z"
id="path4232"
inkscape:connector-curvature="0" /><path
id="collar_1_"
d="m 253.659,387.696 -59.609,69.878 36.588,9.043 40.699,-45.215 c 0,0 -0.045,-13.113 -3.289,-19.319 -3.244,-6.206 -14.389,-14.387 -14.389,-14.387 z"
inkscape:connector-curvature="0"
style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 257.71965,507.54949 c -11.7271,-3.07475 -31.52506,-12.5196 -50.12157,-23.91107 l -9.23149,-5.65484 -0.22612,-8.81602 -0.22613,-8.81601 12.27574,-5.62846 c 28.60892,-13.11726 47.66107,-18.13171 57.74858,-15.19919 6.06909,1.76433 8.24174,4.33656 10.62374,12.5776 6.24237,21.59679 8.4615,39.22323 5.81165,46.16175 -1.74464,4.56828 -5.74849,8.0644 -11.03269,9.63364 -5.32762,1.58214 -8.53444,1.51082 -15.62171,-0.3474 z"
id="path3411"
inkscape:connector-curvature="0" /></g><path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 253.63473,368.41507 -0.28401,19.59684 8.80438,1.98808 0,-18.17677 z"
id="path3414"
inkscape:connector-curvature="0" /></svg>

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

View File

@ -0,0 +1,325 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
x="0px"
y="0px"
width="402.035px"
height="509.297px"
viewBox="0 0 402.035 509.297"
enable-background="new 0 0 402.035 509.297"
xml:space="preserve"
id="svg3336"
inkscape:version="0.91 r13725"
sodipodi:docname="logo-jhipster-react.svg"><metadata
id="metadata3377"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs3375" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1536"
inkscape:window-height="801"
id="namedview3373"
showgrid="false"
inkscape:zoom="3.5209766"
inkscape:cx="274.94343"
inkscape:cy="93.655725"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="head"
showguides="false" /><g
id="tie"><path
id="tie_5_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#3373AA"
d="M212.889,468.099c0,0-87.234-50.614-94.774-19.142 c-7.54,31.472-16.014,55.419,7.217,59.845S212.889,468.099,212.889,468.099z" /><path
id="tie_4_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M197.809,460.493 c25.041-12.944,74.474-35.103,80.132-11.637c7.616,31.586,16.143,55.613-7.032,60.124c-16.286,3.17-52.9-18.183-73.228-31.156 C197.66,462.481,197.831,475.611,197.809,460.493z" /></g><path
style="fill:#53c1de;fill-opacity:1"
d="m 257.81135,507.6133 c -12.32863,-3.35619 -31.56361,-12.5382 -50.20673,-23.96668 l -9.23803,-5.66304 -0.22612,-8.81602 -0.22613,-8.81601 12.27574,-5.62846 c 23.97948,-10.99465 38.92681,-15.62818 50.8345,-15.7582 7.74162,-0.0845 10.50482,0.80615 13.72705,4.42473 2.1905,2.45994 2.99224,4.69904 5.99577,16.74495 6.28312,25.199 6.42466,36.91738 0.52235,43.245 -4.89131,5.24377 -13.8252,6.85615 -23.4584,4.23373 z"
id="path3417"
inkscape:connector-curvature="0" /><path
style="fill:#2c89a0;fill-opacity:1"
d="m 124.02092,508.04228 c -8.91965,-2.40574 -12.64737,-7.12472 -13.39055,-16.95129 -0.51782,-6.84674 0.33189,-12.35107 4.66385,-30.21192 3.31922,-13.68528 4.87721,-17.41096 8.18798,-19.58026 9.19394,-6.0241 32.87383,-0.70518 65.06885,14.61563 l 9.46385,4.50361 -0.22581,8.79049 -0.22581,8.79049 -11.24631,6.74696 c -21.90798,13.14318 -43.75501,22.68202 -54.62491,23.85029 -2.2091,0.23743 -5.66111,-0.0119 -7.67114,-0.554 z"
id="path3423"
inkscape:connector-curvature="0" /><g
id="jacket_2_"><path
id="shoulders_2_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#495061"
d="M402.025,490.403 c0,0,1.275-34.418-24.249-56.648c-25.523-22.231-87.921-48.58-178.784-47.207c-90.862,1.373,35.346,101.803,35.346,101.803 L402.025,490.403z" /><path
id="shoulders_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#495061"
d="M0.011,490.403c0,0-1.275-34.464,24.255-56.724 c25.53-22.261,87.943-48.645,178.828-47.271c90.885,1.374-35.355,101.94-35.355,101.94s-56.796,0.696-104.288,1.278 C29.329,490.043,0.011,490.403,0.011,490.403z" /></g><g
id="head"><path
id="ear_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#EBCFC2"
d="M88.405,203.989c0,0-11.463-4.608-20.133,0.824 c-8.67,5.432-11.941,29.186-4.52,39.57c7.422,10.383,15.031,22.937,23.009,23.907c7.979,0.969,17.257-1.649,17.257-1.649 l-3.287-31.738L88.405,203.989z" /><path
id="ear"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#EBCFC2"
d="M307.924,203.903c0,0,11.469-4.595,20.144,0.822 c8.675,5.417,11.948,29.106,4.522,39.46c-7.426,10.355-15.039,22.874-23.022,23.841c-7.983,0.967-17.266-1.644-17.266-1.644 l3.289-31.651L307.924,203.903z" /><path
id="earring"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M316.968,260.216c4.087,0,7.4,3.313,7.4,7.399 c0,4.086-3.313,7.399-7.4,7.399c-4.087,0-7.4-3.313-7.4-7.399C309.569,263.529,312.882,260.216,316.968,260.216z" /><path
id="face"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#F5E0D4"
d="M192.816,45.238 c69.763-1.072,109.353,34.35,125.797,86.731c20.207,64.371-9.413,137.683-33.71,179.217c-9.957,17.021-18.84,33.648-34.532,44.804 c-10.57,7.515-25.525,12.109-40.699,14.798c-19.135,3.39-45.278-4-55.91-10.276c-37.977-22.419-67.749-96-78.931-146.744 c-5.022-22.79-4.018-55.379,2.056-76.044c11.928-40.586,34.336-69.057,71.942-83.854c9.257-3.643,19.697-5.377,30.421-7.399 C183.772,46.061,188.295,45.649,192.816,45.238z" /><path
id="eye"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#FFFFFF"
d="M146.979,189.927c12.828,0,23.227,10.398,23.227,23.224 c0,12.826-10.399,23.224-23.227,23.224c-12.828,0-23.227-10.398-23.227-23.224C123.751,200.325,134.151,189.927,146.979,189.927z" /><path
id="pupill"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#333333"
d="M156.233,212.945c0,5.45-4.42,9.87-9.87,9.87 c-4.04,0-7.51-2.43-9.03-5.9c0.6,0.35,1.3,0.55,2.04,0.55c2.27,0,4.11-1.84,4.11-4.11s-1.84-4.11-4.11-4.11 c-0.91,0-1.75,0.3-2.44,0.81c1.23-4.04,4.99-6.97,9.43-6.97C151.813,203.085,156.233,207.495,156.233,212.945z" /><path
id="eye_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#FFFFFF"
d="M251.979,189.927 c12.828,0,23.227,10.398,23.227,23.224c0,12.826-10.399,23.224-23.227,23.224c-12.828,0-23.227-10.398-23.227-23.224 C228.751,200.325,239.151,189.927,251.979,189.927z" /><path
id="pupill_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#333333"
d="M261.233,212.945c0,5.45-4.42,9.87-9.87,9.87 c-4.04,0-7.51-2.43-9.03-5.9c0.6,0.35,1.3,0.55,2.04,0.55c2.27,0,4.11-1.84,4.11-4.11s-1.84-4.11-4.11-4.11 c-0.91,0-1.75,0.3-2.44,0.81c1.23-4.04,4.99-6.97,9.43-6.97C256.813,203.085,261.233,207.495,261.233,212.945z" /><path
id="glasses"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M187.883,213.768h25.077v10.276h-25.077V213.768z" /><path
id="glasses_2_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M180.483,181.705h-66.6 c-4.54,0-8.22,3.68-8.22,8.22v50.97c0,4.54,3.68,8.22,8.22,8.22h66.6c4.54,0,8.22-3.68,8.22-8.22v-50.97 C188.703,185.385,185.023,181.705,180.483,181.705z M178.763,233.835c0,3.36-2.78,6.09-6.21,6.09h-50.35 c-3.44,0-6.22-2.73-6.22-6.09v-37.74c0-3.36,2.78-6.09,6.22-6.09h50.35c3.43,0,6.21,2.73,6.21,6.09V233.835z" /><path
id="glasses_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#4189C6"
d="M284.483,181.705h-66.6 c-4.54,0-8.22,3.68-8.22,8.22v50.97c0,4.54,3.68,8.22,8.22,8.22h66.6c4.54,0,8.22-3.68,8.22-8.22v-50.97 C292.703,185.385,289.023,181.705,284.483,181.705z M282.763,233.835c0,3.36-2.78,6.09-6.21,6.09h-50.35 c-3.44,0-6.22-2.73-6.22-6.09v-37.74c0-3.36,2.78-6.09,6.22-6.09h50.35c3.43,0,6.21,2.73,6.21,6.09V233.835z" /><path
id="eyebrows_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#B08F7E"
d="M148.783,151.061 c-24.698,0.54-39.008,8.574-39.008,16.937c0,8.364,13.151,5.992,22.995,2.066c9.843-3.926,22.872-3.621,28.332,0.413 c5.46,4.034,17.164,5.165,17.656-3.305C179.25,158.702,157.203,150.878,148.783,151.061z" /><path
id="eyebrows"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#B08F7E"
d="M249.548,150.878 c24.728,0.537,39.055,8.531,39.055,16.853c0,8.322-13.166,5.962-23.022,2.055c-9.855-3.906-22.9-3.603-28.366,0.411 c-5.466,4.014-17.184,5.14-17.677-3.288C219.045,158.48,241.117,150.694,249.548,150.878z" /><path
id="neck"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#F5E0D4"
d="M253.253,348.185h-110.59v83.31l55.37,25l55.22-25 V348.185z" /><path
id="beard_1_"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#B08F7E"
d="M311.503,253.395 c-7.69,22.29-17.52,42.26-26.6,57.79c-9.96,17.02-18.84,33.65-34.53,44.81c-10.57,7.51-25.53,12.1-40.7,14.79 c-19.14,3.39-45.28-4-55.91-10.27c-27.23-16.07-50.24-58.45-65.21-99.85c-0.05-2.84,0.14-5.52,0.67-7.85 c0.41-0.13,0.82-0.27,1.23-0.41c6.1-2.35,12.36,4.16,15.62,6.58c11.95,8.86,20.54,20.07,31.24,30 c-2.25-8.18,4.44-26.45,12.75-19.31c3.76,2.73,0.55,12.25,1.64,17.26c18.14,12.21,20-9.94,28.78-14.39 c5.9-1.13,11.45,3.89,17.27,4.94c9.49,1.7,14.05-4.87,22.2-5.35c8.17,4.72,8.23,20.15,22.61,17.27c3.57-0.72,5.17-0.5,6.57-3.29 c2.72-5.18-1.67-13.47,1.24-16.86c2.9-3.38,3.29-0.54,4.93-0.82c5.96,2.76,11.39,11.2,8.22,20.14c3.43-3.7,6.85-7.4,10.28-11.09 c10.42-10.56,19.89-18.84,34.12-25.9c0.82,0.14,1.65,0.27,2.47,0.41C310.763,252.465,311.133,252.925,311.503,253.395z" /><path
id="mounth"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#EBCFC2"
d="M167.739,303.787c0,0,8.352,14.478,31.655,13.976 c23.303-0.503,31.244-13.976,31.244-13.976s-15.235-4.932-27.544-4.932c-5.288,0-10.737,2.929-17.677,4.111 C178.476,304.147,167.739,303.787,167.739,303.787z" /><path
id="spring_boot"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#979A9B"
d="M169.389,370.317 c-5.438-1.343-13.797-0.763-20.371-0.691c-2.418,1.622-4.519,4.226-6.356,7.153c0,5.395,0.389,19.66,0.389,25.564 c1.694,2.451,3.467,4.492,4.93,5.609h20.371c3.173-1.492,4.192-5.293,5.87-8.287c1.84-3.108,3.684-6.215,5.524-9.323 C180.728,386.448,171.329,372.938,169.389,370.317z M157.304,376.187h1.726c0.231,0.345,0.459,0.691,0.691,1.036 c0.114,3.912,0.231,7.827,0.345,11.74c-1.105,0.68-1.088,0.932-2.417,0.691C155.65,388.195,156.21,378.313,157.304,376.187z M160.757,400.011c-13.487,3.308-15.351-11.377-11.74-19.336c0.805-0.691,1.612-1.381,2.417-2.072 c0.691,0.114,1.381,0.231,2.072,0.345c0.114,0.345,0.231,0.691,0.345,1.036c-3.474,5.203-7.758,14.308,2.072,16.919 c11.567,3.073,13.317-11.819,6.906-16.228v-1.381c0.459-0.345,0.922-0.691,1.381-1.036 C173.629,383.141,170.18,397.701,160.757,400.011z" /><path
id="collar"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#FFFFFF"
d="M142.662,389.696l59.609,69.878l-36.588,9.043 l-40.699-45.215c0,0,0.045-13.113,3.289-19.319C131.517,397.877,142.662,389.696,142.662,389.696z" /><path
id="hears"
fill-rule="evenodd"
clip-rule="evenodd"
fill="#B08F7E"
d="M72.364,195.682c0,0,6.133-17.02,6.578-23.841 c0.445-6.821,5.171-46.943,19.733-67.001c9.368-14.438,23.076-17.432,36.588-14.387c13.512,3.046,29.166,11.175,45.221,9.043 c16.055-2.132,56.817-22.612,73.587-14.798c16.77,7.815,44.946,21.469,48.099,47.27c3.152,25.801,21.377,66.59,21.377,66.59 s9.441-65.867,9.455-83.443c0.014-17.576-45.749-69.159-55.087-79.332S238.363-0.89,220.36,0.023 c-18.003,0.914-42.247,15.528-51.799,16.442c-9.552,0.914-15.83-3.592-26.31-1.644c-10.48,1.948-21.592,1.371-53.443,34.528 c-31.85,33.157-28.534,82.852-26.31,110.572C64.722,187.641,72.364,195.682,72.364,195.682z" /><path
fill-rule="evenodd"
clip-rule="evenodd"
fill="#D5AD98"
d="M159.106,87.987c0,0-7.832-11.734,2.056-33.295 c9.887-21.561,10.277-31.651,10.277-31.651s-5.6,13.958-13.155,31.651C150.728,72.385,159.106,87.987,159.106,87.987z"
id="path3364" /><path
fill-rule="evenodd"
clip-rule="evenodd"
fill="#D5AD98"
d="M187.883,91.276c0,0,22.204-25.629,36.588-36.994 c14.384-11.365,32.066-24.252,32.066-24.252s-13.968,3.438-34.943,21.375C200.618,69.341,187.883,91.276,187.883,91.276z"
id="path3366" /><path
fill-rule="evenodd"
clip-rule="evenodd"
fill="#D5AD98"
d="M172.672,87.576c0,0-0.479-23.829,11.1-50.148 C195.35,11.11,218.716,7.011,218.716,7.011s-17.107,7.784-29.188,31.24C177.447,61.706,172.672,87.576,172.672,87.576z"
id="path3368" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 312.3204,272.66636 c -4.51917,-3.88722 -1.70389,-11.75206 4.20673,-11.75206 3.70932,0 5.04431,0.68418 6.38184,3.27068 1.74309,3.37077 1.44397,5.42056 -1.17288,8.03742 -2.92897,2.92897 -6.33974,3.08979 -9.41569,0.44396 z"
id="path3401"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 110.65207,248.05367 c -0.96834,-0.39005 -2.41429,-1.70706 -3.21323,-2.9267 -1.33113,-2.03205 -1.45262,-4.56059 -1.45262,-30.23338 l 0,-28.01586 2.62342,-2.34379 2.62342,-2.34378 36.19796,0 36.19796,0 2.34813,2.34813 2.34813,2.34813 0,13.71802 0,13.71802 10.84465,0 10.84466,0 0,-13.71802 0,-13.71802 2.34813,-2.34813 2.34812,-2.34813 36.19797,0 36.19796,0 2.62342,2.34402 2.62342,2.34403 0,28.01616 c 0,25.63889 -0.12285,28.20366 -1.4478,30.22579 -0.79629,1.21529 -2.35615,2.55497 -3.46635,2.97707 -3.11156,1.18301 -70.39953,1.00588 -73.02913,-0.19225 -3.55375,-1.61919 -4.39574,-4.42822 -4.39574,-14.6649 l 0,-9.27793 -10.84466,0 -10.84465,0 0,9.27793 c 0,10.23668 -0.84199,13.04571 -4.39574,14.6649 -2.52769,1.15169 -70.44524,1.2895 -73.27743,0.14869 z m 66.17427,-9.77201 c 1.85343,-1.74121 1.85921,-1.8134 1.85921,-23.20693 0,-19.92834 -0.10956,-21.59566 -1.53481,-23.35672 l -1.5348,-1.89643 -26.38013,-0.23527 c -14.50908,-0.12941 -27.20268,-0.0298 -28.20801,0.22126 -1.00533,0.25109 -2.54166,1.17031 -3.41406,2.04271 -1.50011,1.50012 -1.58618,2.74931 -1.58618,23.02289 0,20.90396 0.0434,21.4829 1.74664,23.29591 l 1.74665,1.85922 27.72313,0 c 27.3584,0 27.7476,-0.023 29.58236,-1.74664 z m 104.31744,-0.22511 1.97176,-1.97176 0,-20.87771 0,-20.87772 -1.93872,-2.25389 -1.93871,-2.25389 -27.85322,0 -27.85322,0 -1.93871,2.25389 -1.93872,2.25389 0,20.87772 0,20.87771 1.97176,1.97176 1.97175,1.97175 27.78714,0 27.78714,0 1.97175,-1.97175 z"
id="path3403"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 262.22954,508.59222 c -10.39484,-1.68386 -31.94745,-11.49721 -53.21913,-24.23178 l -11.04548,-6.61251 0.0266,-8.60585 0.0266,-8.60585 4.99411,-2.32258 c 31.29069,-14.55212 45.07685,-19.0602 58.53214,-19.14003 7.26131,-0.0431 11.39573,1.61033 14.06981,5.6267 1.72986,2.59819 7.31988,24.03681 9.05317,34.72037 1.0946,6.74682 1.07935,14.02552 -0.0378,18.04957 -2.19624,7.91096 -12.04244,12.79977 -22.39991,11.12196 z"
id="path3405"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 259.26788,507.92831 c -10.80922,-2.34956 -30.45468,-11.57966 -50.85995,-23.89572 l -10.04134,-6.06068 -0.19265,-8.71784 -0.19264,-8.71784 11.7795,-5.51573 c 36.57057,-17.12409 58.97972,-20.64491 65.83723,-10.34403 1.63367,2.45397 7.13614,23.2125 9.0873,34.28254 1.08953,6.18157 1.0645,14.47566 -0.0558,18.51125 -1.25882,4.53427 -5.83949,8.80857 -11.12073,10.37693 -5.11848,1.52002 -7.55726,1.53391 -14.24086,0.0811 l -3e-5,0 z"
id="path3407"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 259.26788,507.92831 c -10.74989,-2.33666 -30.77179,-11.73311 -51.10109,-23.98218 l -9.8002,-5.90494 -0.22571,-8.80014 -0.2257,-8.80015 11.83595,-5.46879 c 27.66619,-12.78314 46.26388,-17.93088 56.84472,-15.7343 7.103,1.47457 9.43656,4.02626 11.9361,13.05182 6.19449,22.36754 8.25225,37.21488 6.2046,44.76797 -1.33962,4.94143 -5.72469,9.15533 -11.22781,10.78959 -5.11848,1.52002 -7.55726,1.53391 -14.24086,0.0811 z"
id="path3409"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 124.98184,508.21104 c -11.5886,-2.074 -16.17419,-11.10774 -13.818,-27.2218 1.38857,-9.49652 7.5837,-34.0401 9.22411,-36.54369 6.55194,-9.99952 31.71528,-5.76564 68.13812,11.46463 l 9.43886,4.46517 0,8.68629 0,8.68629 -11.04548,6.60025 c -22.27381,13.30978 -44.77669,23.22365 -54.82574,24.15403 -1.98818,0.18407 -5.18853,0.053 -7.11187,-0.29117 z"
id="path3413"
inkscape:connector-curvature="0" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 124.98184,508.21104 c -5.26675,-0.94259 -10.29526,-4.24117 -12.22158,-8.01708 -3.60371,-7.06385 -3.01708,-16.13449 2.54079,-39.28648 3.55393,-14.80432 5.10255,-18.02832 9.75598,-20.31051 9.64731,-4.73135 33.44509,1.00642 63.46904,15.30273 l 9.43886,4.49444 0,8.67926 0,8.67926 -12.25044,7.30848 c -15.80472,9.42893 -30.97138,16.84697 -41.572,20.33294 -9.35238,3.07549 -13.94411,3.75056 -19.16065,2.81696 z"
id="path3415"
inkscape:connector-curvature="0" /><g
id="g3395"
transform="matrix(0.18177964,0,0,0.18177964,215.66034,368.26855)"><path
id="path3383"
d="m 207.27414,76.61487 c -2.34402,-0.80681 -4.7729,-1.57019 -7.27378,-2.29214 0.41105,-1.67757 0.78831,-3.33343 1.12375,-4.96113 5.50611,-26.72736 1.90602,-48.25911 -10.38721,-55.34828 -11.78766,-6.7975797 -31.06548,0.28998 -50.53516,17.23384 -1.87224,1.62932 -3.74971,3.35435 -5.62637,5.16224 -1.25044,-1.19615 -2.49886,-2.35207 -3.74407,-3.45771 C 110.42651,14.83421 89.973858,7.1992503 77.692696,14.30893 65.916293,21.12622 62.428821,41.36811 67.385126,66.69784 c 0.478617,2.44658 1.038077,4.94504 1.670737,7.48533 -2.89463,0.82169 -5.689113,1.69769 -8.362935,2.62958 -23.922426,8.34041 -39.200377,21.4119 -39.200377,34.97044 0,14.00339 16.400892,28.049 41.317958,36.56557 1.966353,0.67208 4.006711,1.30755 6.10941,1.91085 -0.682532,2.74743 -1.276179,5.43975 -1.774504,8.06571 -4.725844,24.89012 -1.035262,44.6538 10.709769,51.42805 12.131545,6.99586 32.491686,-0.19507 52.317306,-17.52504 1.56697,-1.36989 3.13957,-2.82264 4.71499,-4.34536 2.04197,1.96635 4.08071,3.82733 6.1086,5.57287 19.20342,16.52517 38.16995,23.19807 49.90412,16.40492 12.11948,-7.01597 16.05822,-28.24688 10.94465,-54.07774 -0.39054,-1.97279 -0.84502,-3.98821 -1.35541,-6.03943 1.42982,-0.42271 2.83349,-0.8591 4.20218,-1.31278 25.90366,-8.58253 42.75743,-22.45721 42.75743,-36.64762 0,-13.60761 -15.77065,-26.76718 -40.17491,-35.16832 l 0,0 0,0 z"
inkscape:connector-curvature="0"
style="fill:#53c1de" /><path
id="path3385"
d="m 201.65582,139.20276 c -1.23556,0.40904 -2.50329,0.8044 -3.79516,1.1877 -2.85964,-9.05311 -6.71914,-18.67976 -11.44217,-28.62575 4.50705,-9.7091 8.21734,-19.212671 10.99694,-28.207061 2.31144,0.66886 4.55491,1.37432 6.71673,2.11879 20.90955,7.19816 33.6641,17.840771 33.6641,26.041211 0,8.73497 -13.77453,20.07418 -36.14044,27.48511 l 0,0 0,0 z m -9.28035,18.38937 c 2.26116,11.42206 2.58413,21.74894 1.08634,29.82189 -1.34576,7.25407 -4.05216,12.09052 -7.39846,14.02751 -7.12095,4.12174 -22.34902,-1.23596 -38.77204,-15.36844 -1.88269,-1.62006 -3.77907,-3.34992 -5.68147,-5.18074 6.36682,-6.96328 12.73002,-15.05835 18.94038,-24.04871 10.92334,-0.9693 21.24338,-2.55397 30.60216,-4.7174 0.46092,1.85937 0.87036,3.68294 1.22309,5.46589 l 0,0 0,0 z m -93.849237,43.13711 c -6.95725,2.45703 -12.49835,2.52742 -15.84787,0.59606 -7.12738,-4.11089 -10.09038,-19.97927 -6.04868,-41.26527 0.46293,-2.43774 1.01394,-4.94183 1.64902,-7.50143 9.25622,2.0468 19.50064,3.51965 30.450117,4.40731 6.2522,8.79731 12.7992,16.88353 19.39688,23.96385 -1.44148,1.39161 -2.87734,2.71645 -4.30514,3.96488 -8.76675,7.66311 -17.55199,13.10004 -25.294327,15.8346 l 0,0 0,0 z m -32.59385,-61.57997 c -11.01786,-3.76579 -20.11682,-8.66016 -26.35372,-14.00097 -5.60425,-4.79944 -8.43373,-9.5643 -8.43373,-13.43065 0,-8.22779 12.26669,-18.722391 32.72537,-25.855401 2.48238,-0.86553 5.08099,-1.68119 7.77774,-2.44738 2.82746,9.1975 6.53654,18.813691 11.01262,28.537671 -4.53399,9.86837 -8.29577,19.63779 -11.15098,28.94308 -1.92251,-0.55262 -3.7851,-1.1342 -5.5773,-1.74635 l 0,0 0,0 z m 10.92575,-74.370721 c -4.24642,-21.70188 -1.4262,-38.07301 5.67061,-42.18108 7.55934,-4.37633 24.275157,1.86339 41.893107,17.50695 1.12615,0.99986 2.25674,2.04639 3.39054,3.12911 -6.56511,7.04935 -13.05218,15.07484 -19.24887,23.82026 -10.626917,0.98499 -20.799347,2.56724 -30.152097,4.68603 -0.58801,-2.36533 -1.10886,-4.68924 -1.55329,-6.96127 l 0,0 0,0 z m 97.467417,24.06722 c -2.23582,-3.86192 -4.53118,-7.63254 -6.87117,-11.3002 7.20943,0.91139 14.1168,2.1212 20.60347,3.6017 -1.94745,6.24133 -4.37472,12.76702 -7.23195,19.456811 -2.0496,-3.891291 -4.21746,-7.814741 -6.50035,-11.758311 l 0,0 0,0 z m -39.74696,-38.71372 c 4.45235,4.82358 8.91113,10.20903 13.29672,16.05219 -4.41937,-0.20874 -8.89344,-0.31734 -13.40451,-0.31734 -4.46844,0 -8.90952,0.10618 -13.30154,0.31131 4.39001,-5.78886 8.8874,-11.16707 13.40933,-16.04616 l 0,0 0,0 z m -40.001557,38.78048 c -2.23341,3.87278 -4.36105,7.77492 -6.37848,11.684311 -2.81098,-6.666461 -5.21573,-13.221911 -7.18007,-19.551731 6.44686,-1.44269 13.32165,-2.62234 20.485227,-3.51643 -2.372977,3.70144 -4.687227,7.49981 -6.926677,11.38305 l 0,8e-4 0,0 z m 7.133007,57.682661 c -7.401277,-0.82572 -14.379437,-1.94463 -20.824687,-3.34751 1.99572,-6.44283 4.45356,-13.13825 7.32406,-19.94829 2.02266,3.90657 4.15874,7.81031 6.40583,11.69154 l 4e-4,0 c 2.28892,3.95402 4.66029,7.8272 7.094397,11.60426 l 0,0 0,0 z m 33.13561,27.38858 c -4.57502,-4.93619 -9.13838,-10.39645 -13.59515,-16.26977 4.32646,0.16972 8.73738,0.2566 13.2203,0.2566 4.60559,0 9.15848,-0.10377 13.63979,-0.30326 -4.40006,5.9791 -8.84276,11.44781 -13.26494,16.31643 l 0,0 0,0 z m 46.07236,-51.03148 c 3.02011,6.88365 5.56604,13.54407 7.58749,19.87711 -6.55143,1.49457 -13.62491,2.69835 -21.07767,3.59285 2.34563,-3.71713 4.66109,-7.55251 6.93634,-11.49768 2.30179,-3.99143 4.48734,-7.98889 6.55384,-11.97228 l 0,0 0,0 z m -14.91517,7.14991 c -3.53212,6.12429 -7.15835,11.97066 -10.83968,17.48924 -6.70507,0.47942 -13.63215,0.72637 -20.69236,0.72637 -7.03165,0 -13.87146,-0.21839 -20.45788,-0.64593 -3.82974,-5.59098 -7.5348,-11.45464 -11.0444,-17.517 l 8e-4,0 c -3.500337,-6.04586 -6.721957,-12.1428 -9.641117,-18.20556 2.91836,-6.07683 6.13153,-12.180611 9.611757,-18.215621 l -8e-4,0.001 c 3.48948,-6.05109 7.16197,-11.8862 10.95632,-17.44219 6.71995,-0.50797 13.61083,-0.77302 20.57492,-0.77302 l 4e-4,0 c 6.99546,0 13.89519,0.26706 20.61313,0.77946 3.73643,5.51536 7.38398,11.33157 10.88714,17.38347 3.54297,6.11986 6.79757,12.183021 9.74087,18.129541 -2.93445,6.04868 -6.18181,12.17297 -9.7091,18.29003 l 0,0 0,0 z m 19.9125,-107.791901 c 7.56658,4.36347 10.50907,21.9613 5.75507,45.0375 -0.30326,1.47245 -0.64473,2.97226 -1.01555,4.49217 -9.37447,-2.16303 -19.55414,-3.77263 -30.21203,-4.7725 -6.20875,-8.84155 -12.64274,-16.87951 -19.10085,-23.83837 1.73629,-1.67033 3.47017,-3.26304 5.19682,-4.76606 16.68162,-14.51739 32.27289,-20.24914 39.37654,-16.15274 l 0,0 0,0 z"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
id="path3387"
d="m 134.4708,91.540497 c 11.14334,0 20.17714,9.033403 20.17714,20.177143 0,11.14334 -9.0338,20.17715 -20.17714,20.17715 -11.14334,0 -20.17714,-9.03381 -20.17714,-20.17715 0,-11.14374 9.0338,-20.177143 20.17714,-20.177143"
inkscape:connector-curvature="0"
style="fill:#53c1de" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 246.9508,380.65979 -2.06233,-0.31304 -1.69816,-2.17902 -1.69817,-2.17903 1.77241,-1.34094 c 4.98535,-3.77172 7.44582,-3.10862 7.44523,2.00651 -1.4e-4,1.24983 -0.10018,2.75169 -0.2223,3.33747 -0.2504,1.2011 -0.14991,1.18212 -3.53668,0.66805 z"
id="path3425"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 247.40653,384.37484 c -0.57122,-0.9658 -1.00789,-1.78794 -0.97039,-1.82699 0.0375,-0.039 0.77955,0.0719 1.64897,0.24647 l 1.58077,0.31746 -0.43513,1.3156 c -0.23932,0.72358 -0.514,1.40287 -0.61039,1.50952 -0.0964,0.10666 -0.64262,-0.59627 -1.21383,-1.56206 z"
id="path3427"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 251.51946,393.05629 c -0.0957,-0.27336 -0.53836,-1.37164 -0.98375,-2.44061 l -0.80981,-1.9436 0.92167,-2.5139 c 0.87265,-2.38022 0.95942,-2.50465 1.6317,-2.33973 1.22763,0.30116 3.50442,1.40778 4.70903,2.28879 2.9516,2.15871 1.99151,4.41356 -2.80532,6.58855 -2.19894,0.99704 -2.4298,1.02829 -2.66352,0.3605 z"
id="path3429"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d=""
id="path3431"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 247.11107,393.3754 c 0.4587,-0.76128 0.96599,-1.63355 1.12731,-1.93836 0.26854,-0.5074 0.32879,-0.46932 0.71322,0.45075 0.98996,2.36932 1.01552,2.3184 -1.34119,2.67181 l -1.33333,0.19995 0.83399,-1.38415 z"
id="path3433"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 235.30461,393.1983 c -0.61649,-0.97629 -1.44974,-2.42415 -1.85166,-3.21747 l -0.73076,-1.44239 1.00086,-1.82375 c 0.55047,-1.00306 1.38558,-2.43082 1.85581,-3.1728 l 0.85494,-1.34906 3.66608,0 3.66608,0 0.94106,1.49106 c 0.51759,0.82009 1.36231,2.23678 1.87717,3.14821 1.08187,1.91518 1.13421,1.67213 -1.21728,5.6527 l -1.466,2.48164 -3.7377,0.003 -3.7377,0.003 -1.1209,-1.77508 z m 6.3271,-1.18996 c 2.79116,-1.16622 2.79116,-5.68425 0,-6.85047 -1.29784,-0.54228 -2.08488,-0.51564 -3.25152,0.11003 -2.65862,1.42584 -2.61376,5.23115 0.0774,6.56326 1.40276,0.69436 1.87349,0.72063 3.17415,0.17718 z"
id="path3435"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 239.0862,398.48464 c -0.58632,-0.70144 -1.00437,-1.33701 -0.92899,-1.41239 0.0754,-0.0754 1.04968,-0.0992 2.16511,-0.0529 l 2.02806,0.0841 -1.09907,1.32825 -1.09907,1.32824 -1.06604,-1.27532 z"
id="path3437"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 230.1562,404.04261 c -0.73339,-1.20595 -0.94452,-3.21713 -0.59583,-5.67568 0.16236,-1.14478 0.33746,-2.12369 0.38913,-2.17535 0.0517,-0.0517 0.71966,0.0286 1.48443,0.17838 0.76478,0.14978 1.96563,0.34909 2.66856,0.44292 1.15243,0.15383 1.42605,0.35243 2.78377,2.02061 0.82814,1.0175 1.56725,2.01039 1.64247,2.20641 0.16645,0.43375 -2.67498,2.60121 -4.37878,3.34017 -0.67683,0.29355 -1.7331,0.53373 -2.34728,0.53373 -0.94172,0 -1.19968,-0.13649 -1.64647,-0.87119 z"
id="path3439"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 227.54746,393.40046 c -2.81719,-0.97534 -5.11015,-2.55274 -5.78839,-3.98203 -0.43716,-0.92124 -0.43433,-1.03656 0.0453,-1.85064 0.63677,-1.08066 2.82516,-2.54327 5.02211,-3.35653 0.91873,-0.34009 1.70418,-0.5819 1.74546,-0.53735 0.17026,0.18375 1.83538,4.64754 1.83126,4.90919 -0.002,0.15621 -0.42048,1.3821 -0.92895,2.7242 l -0.92448,2.44018 -1.00236,-0.34702 z"
id="path3441"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 229.6599,379.74125 c -0.37535,-2.2835 -0.23952,-5.26227 0.28633,-6.27916 0.58055,-1.12265 1.49589,-1.39221 3.1525,-0.92839 1.32827,0.37189 4.2292,2.14039 5.11314,3.11713 0.52625,0.58151 0.52156,0.60377 -0.31802,1.50703 -0.46869,0.50424 -1.25386,1.44134 -1.74482,2.08246 -0.81598,1.06553 -1.0337,1.18117 -2.53464,1.34626 -0.9031,0.0993 -2.11117,0.26085 -2.68461,0.35893 l -1.04261,0.17831 -0.22727,-1.38257 z"
id="path3443"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 231.15471,384.86281 c -0.61061,-1.79204 -0.61875,-1.76548 0.60468,-1.97188 0.58578,-0.0988 1.30619,-0.24658 1.60092,-0.32835 0.45672,-0.12672 0.39799,0.0972 -0.39763,1.51586 -1.28978,2.29983 -1.29136,2.30052 -1.80797,0.78437 z"
id="path3445"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 238.27756,379.82061 c 0.32428,-0.54845 1.72854,-2.17197 1.87864,-2.17197 0.0694,0 0.5974,0.57512 1.1734,1.27805 l 1.04727,1.27806 -2.16322,0 c -1.74063,0 -2.11885,-0.075 -1.93609,-0.38414 z"
id="path3447"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 231.61738,394.48391 c -1.07788,-0.13376 -1.133,-0.4764 -0.3767,-2.34196 l 0.51459,-1.26937 0.64664,1.26937 c 0.35564,0.69815 0.83457,1.55692 1.06426,1.90839 0.46003,0.70388 0.41483,0.71448 -1.84879,0.43357 z"
id="path3449"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#979a9b;fill-opacity:1"
d="m 230.7671,406.61798 c -1.19471,-0.27448 -1.68388,-0.70029 -2.42536,-2.1112 -0.52166,-0.99262 -0.59933,-1.5744 -0.55231,-4.13717 0.0301,-1.64017 0.0889,-3.39937 0.13076,-3.90933 0.074,-0.90244 0.0177,-0.95263 -2.10698,-1.87963 -4.32456,-1.88675 -6.50475,-4.2592 -6.06553,-6.60041 0.37863,-2.01828 3.62447,-4.57006 7.34991,-5.77826 l 1.08944,-0.35332 -0.23741,-1.74499 c -0.65278,-4.79818 0.0553,-8.17916 1.91425,-9.14047 1.98011,-1.02395 4.98386,-0.13906 8.39015,2.47172 0.98567,0.75548 1.87301,1.3736 1.97185,1.3736 0.0989,0 0.76093,-0.5116 1.47129,-1.13688 1.85412,-1.63206 4.96532,-3.12331 6.51619,-3.12331 2.94115,0 4.16616,1.74307 4.19164,5.96426 0.009,1.48396 -0.0856,3.29328 -0.21016,4.02071 l -0.22644,1.3226 1.07848,0.3495 c 1.8651,0.60442 4.31764,1.95263 5.50745,3.02755 2.20783,1.99463 2.48694,3.50913 1.03826,5.63367 -1.0409,1.52652 -3.65408,3.2515 -6.08797,4.01872 l -1.49996,0.47282 0.20831,1.15666 c 0.11457,0.63617 0.20831,2.43473 0.20831,3.99679 0,2.32125 -0.10733,3.04473 -0.58751,3.96007 -1.68454,3.21116 -5.05654,2.99959 -9.82278,-0.61632 l -1.88993,-1.4338 -1.29925,1.07363 c -2.92388,2.41616 -5.97747,3.60003 -8.0547,3.12279 z m 4.07826,-2.41726 c 1.07539,-0.54839 2.45815,-1.43091 3.07282,-1.96114 1.26736,-1.09327 1.35856,-0.76631 -1.04542,-3.74819 l -1.3479,-1.67194 -2.77027,-0.45677 c -1.52365,-0.25123 -2.8134,-0.42111 -2.86611,-0.37752 -0.289,0.23901 -0.60151,2.53594 -0.60742,4.46457 -0.0144,4.69073 1.5946,5.77537 5.5643,3.75099 z m 15.3469,-0.0823 c 0.81745,-1.21695 1.09314,-3.53722 0.71944,-6.05502 -0.16412,-1.10581 -0.34145,-2.05361 -0.39406,-2.10622 -0.0526,-0.0526 -1.37118,0.10286 -2.93017,0.34548 l -2.83453,0.44112 -1.42006,1.85106 c -0.78103,1.01808 -1.54786,2.03291 -1.70407,2.25518 -0.37694,0.53634 1.64834,2.32244 3.97617,3.5066 2.2888,1.1643 3.69421,1.09132 4.58728,-0.2382 z m -8.63226,-5.67954 1.06723,-1.33543 -2.30957,-0.0831 c -1.27026,-0.0457 -2.37075,-0.0219 -2.44554,0.0529 -0.19652,0.19652 1.97477,2.73084 2.32577,2.71463 0.16218,-0.007 0.77513,-0.61456 1.36211,-1.34906 z m 3.52351,-5.09859 c 0.6442,-1.0544 1.49509,-2.56556 1.89086,-3.35814 l 0.71959,-1.44105 -1.14442,-2.1091 c -0.62943,-1.16 -1.48775,-2.62032 -1.90738,-3.24515 l -0.76297,-1.13605 -3.8233,0 -3.82331,0 -1.77507,2.98058 c -0.9763,1.63931 -1.77508,3.2246 -1.77508,3.52286 0,0.57767 1.54065,3.49882 2.8987,5.49608 l 0.82075,1.20705 3.75518,0 3.75517,0 1.17128,-1.91708 z m -10.98102,1.46971 c 0,-0.46442 -2.3855,-4.09399 -2.56267,-3.89915 -0.34701,0.38162 -1.19904,3.23558 -1.01955,3.41507 0.36386,0.36387 3.58222,0.79877 3.58222,0.48408 z m 14.12433,-0.15295 c 1.12872,-0.19655 1.77287,-0.43847 1.70152,-0.63902 -0.0631,-0.1775 -0.35283,-0.9957 -0.64372,-1.81823 -0.29089,-0.82252 -0.63551,-1.45996 -0.76582,-1.41652 -0.31438,0.10479 -2.56436,4.19008 -2.3077,4.19008 0.10967,0 1.01674,-0.14234 2.01572,-0.31631 z m -18.48581,-3.47506 1.00698,-2.51331 -1.00218,-2.5989 c -1.16772,-3.02819 -1.11951,-3.01158 -4.332,-1.49208 -4.11901,1.94829 -5.11027,3.98102 -2.9801,6.11119 1.19855,1.19855 4.9549,3.19588 5.78942,3.07836 0.35361,-0.0498 0.82092,-0.84572 1.51788,-2.58526 z m 24.60691,1.68886 c 2.04226,-0.91921 3.78599,-2.25793 4.34229,-3.33371 0.42456,-0.82099 0.42713,-0.98699 0.0282,-1.82345 -0.55101,-1.15547 -1.81968,-2.13072 -4.17437,-3.20892 -3.12941,-1.43293 -2.85322,-1.53626 -4.05803,1.5183 l -1.06257,2.69396 0.53295,1.06908 c 0.29312,0.58799 0.77169,1.74694 1.06349,2.57546 0.60176,1.70864 0.64771,1.71567 3.32799,0.50928 l 10e-6,0 z m -21.25167,-8.58295 c 0.56809,-1.03351 0.99494,-1.91299 0.94856,-1.9544 -0.0464,-0.0414 -0.89517,0.0574 -1.8862,0.21951 -1.73575,0.28399 -1.79636,0.32188 -1.6515,1.03235 0.25447,1.24801 1.04275,2.89901 1.30636,2.73609 0.13744,-0.0849 0.71469,-1.00004 1.28278,-2.03355 z m 16.27896,0.4493 c 0.45589,-1.26706 0.52641,-1.7467 0.26964,-1.834 -0.54561,-0.1855 -3.46337,-0.66847 -3.54642,-0.58703 -0.12736,0.12488 2.2669,4.13682 2.46878,4.13682 0.10485,0 0.46846,-0.7721 0.808,-1.71579 z m -16.57033,-3.82205 c 1.3951,-0.22863 2.62446,-0.51396 2.73191,-0.63407 0.10745,-0.1201 0.93769,-1.10391 1.84498,-2.18624 l 1.64962,-1.96788 -1.1662,-1.03492 c -0.64142,-0.56921 -1.91018,-1.4302 -2.81947,-1.91333 -4.43092,-2.35423 -5.99435,-1.13586 -5.69881,4.44107 0.13964,2.63501 0.35662,3.72641 0.73879,3.71604 0.10045,-0.003 1.32408,-0.19203 2.71918,-0.42067 z m 17.95765,-1.20745 c 0.67824,-4.85336 -0.24821,-7.73933 -2.48447,-7.73933 -1.02555,0 -4.39695,1.75539 -5.86478,3.05363 l -1.20362,1.06455 1.24892,1.4883 c 0.6869,0.81856 1.48597,1.81372 1.77571,2.21147 0.43222,0.59335 0.93397,0.79158 2.79482,1.10419 3.68924,0.61977 3.4719,0.68863 3.73342,-1.18281 z m -8.13968,0.60744 c 0,-0.32717 -2.34421,-2.97384 -2.56075,-2.89114 -0.3367,0.12858 -2.26745,2.51928 -2.26745,2.8076 0,0.14142 1.08634,0.25714 2.4141,0.25714 1.32776,0 2.4141,-0.0781 2.4141,-0.1736 z"
id="path3451"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#979a9b;fill-opacity:1"
d="m 238.76553,391.85809 c -1.1148,-0.45098 -2.10693,-1.94933 -2.10693,-3.18195 0,-3.53721 4.46078,-4.98604 6.37176,-2.06951 0.6419,0.97966 0.63389,2.98551 -0.0159,3.97718 -0.832,1.26978 -2.80064,1.86019 -4.24896,1.27428 z"
id="path3453"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /><path
style="fill:#f5e0d4;fill-opacity:1"
d="m 246.03615,404.32394 c -1.47595,-0.66949 -4.26533,-2.70692 -4.26533,-3.11551 0,-0.15335 0.56372,-0.97093 1.25272,-1.81683 0.68899,-0.8459 1.36663,-1.74155 1.50586,-1.99034 0.28495,-0.50917 5.4539,-1.42083 5.84857,-1.03153 0.12584,0.12413 0.30303,1.37158 0.39377,2.77212 0.17164,2.64936 -0.13763,4.30308 -0.9865,5.27493 -0.58298,0.66743 -2.15904,0.6284 -3.74909,-0.0928 z"
id="path3455"
inkscape:connector-curvature="0"
transform="matrix(5.5011661,0,0,5.5011661,-1186.3834,-2025.9065)" /></g><path
style="fill:#495061;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 254.19084,388.30784 3.69216,6.53228 5.68024,-4.5442 z"
id="path4232"
inkscape:connector-curvature="0" /><path
id="collar_1_"
d="m 253.659,387.696 -59.609,69.878 36.588,9.043 40.699,-45.215 c 0,0 -0.045,-13.113 -3.289,-19.319 -3.244,-6.206 -14.389,-14.387 -14.389,-14.387 z"
inkscape:connector-curvature="0"
style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" /><path
style="fill:#53c1de;fill-opacity:1"
d="m 257.71965,507.54949 c -11.7271,-3.07475 -31.52506,-12.5196 -50.12157,-23.91107 l -9.23149,-5.65484 -0.22612,-8.81602 -0.22613,-8.81601 12.27574,-5.62846 c 28.60892,-13.11726 47.66107,-18.13171 57.74858,-15.19919 6.06909,1.76433 8.24174,4.33656 10.62374,12.5776 6.24237,21.59679 8.4615,39.22323 5.81165,46.16175 -1.74464,4.56828 -5.74849,8.0644 -11.03269,9.63364 -5.32762,1.58214 -8.53444,1.51082 -15.62171,-0.3474 z"
id="path3411"
inkscape:connector-curvature="0" /></g><path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 253.63473,368.41507 -0.28401,19.59684 8.80438,1.98808 0,-18.17677 z"
id="path3414"
inkscape:connector-curvature="0" /></svg>

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -0,0 +1,42 @@
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<base href="./" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>payroll</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="shortcut icon" href="favicon.ico" />
<link rel="manifest" href="manifest.webapp" />
<!-- jhipster-needle-add-resources-to-root - JHipster will add new resources here -->
</head>
<body>
<!--[if lt IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="root"></div>
<noscript>
<h1>You must enable javascript to view this page.</h1>
</noscript>
<!-- uncomment this for adding service worker
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('./service-worker.js')
.then(function() { console.log('Service Worker Registered'); });
}
</script>
-->
<!-- Google Analytics: uncomment and change UA-XXXXX-X to be your site's ID.
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X');ga('send','pageview');
</script>-->
<script type="text/javascript" src="app/vendors.chunk.js"></script><script type="text/javascript" src="app/main.bundle.js"></script></body>
</html>

Some files were not shown because too many files have changed in this diff Show More