[add] Jhipster base

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

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>

View File

@@ -0,0 +1,31 @@
{
"name": "payroll",
"short_name": "payroll",
"icons": [
{
"src": "./content/images/hipster192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "./content/images/hipster256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "./content/images/hipster384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "./content/images/hipster512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#000000",
"background_color": "#e0e0e0",
"start_url": "/index.html",
"display": "standalone",
"orientation": "portrait"
}

View File

@@ -0,0 +1,11 @@
# robotstxt.org/
User-agent: *
Disallow: /api/account
Disallow: /api/account/change-password
Disallow: /api/account/sessions
Disallow: /api/audits/
Disallow: /api/logs/
Disallow: /api/users/
Disallow: /management/
Disallow: /v2/api-docs/

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
.swagger-section #header a#logo{font-size:1.5em;font-weight:700;text-decoration:none;padding:20px 0 20px 40px}#text-head{font-size:80px;font-family:Roboto,sans-serif;color:#fff;float:right;margin-right:20%}.navbar-fixed-top .navbar-brand,.navbar-fixed-top .navbar-nav,.navbar-header{height:auto}.navbar-inverse{background-color:#000;border-color:#000}#navbar-brand{margin-left:20%}.navtext{font-size:10px}.h1,h1{font-size:60px}.navbar-default .navbar-header .navbar-brand{color:#a2dfee}.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a{color:#393939;font-family:Arvo,serif;font-size:1.5em}.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a:hover{color:#000}.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2{color:#525252;padding-left:0;display:block;clear:none;float:left;font-family:Arvo,serif;font-weight:700}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#0a0a0a}.container1{width:1500px;margin:auto;margin-top:0;background-repeat:no-repeat;background-position:-40px -20px;margin-bottom:210px}.container-inner{width:1200px;margin:auto;background-color:hsla(192,8%,88%,.75);padding-bottom:40px;padding-top:40px;border-radius:15px}.header-content{padding:0;width:1000px}.title1{font-size:80px;font-family:Vollkorn,serif;color:#404040;text-align:center;padding-top:40px;padding-bottom:100px}#icon{margin-top:-18px}.subtext{font-size:25px;font-style:italic;color:#08b;text-align:right;padding-right:250px}.bg-primary{background-color:#00468b}.navbar-default .nav>li>a,.navbar-default .nav>li>a:focus,.navbar-default .nav>li>a:focus:hover,.navbar-default .nav>li>a:hover{color:#08b}.text-faded{font-size:25px;font-family:Vollkorn,serif}.section-heading{font-family:Vollkorn,serif;font-size:45px;padding-bottom:10px}hr{border-color:#00468b;padding-bottom:10px}.description{margin-top:20px;padding-bottom:200px}.description li{font-family:Vollkorn,serif;font-size:25px;color:#525252;margin-left:28%;padding-top:5px}.gap{margin-top:200px}.troubleshootingtext{color:hsla(0,0%,100%,.7);padding-left:30%}.troubleshootingtext li{list-style-type:circle;font-size:25px;padding-bottom:5px}.overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.block.response_body.json:hover{cursor:pointer}.backdrop{color:blue}#myModal{height:100%}.modal-backdrop{bottom:0;position:fixed}.curl{padding:10px;font-family:Anonymous Pro,Menlo,Consolas,Bitstream Vera Sans Mono,Courier New,monospace;font-size:.9em;max-height:400px;margin-top:5px;overflow-y:auto;background-color:#fcf6db;border:1px solid #e5e0c6;border-radius:4px}.curl_title{font-size:1.1em;margin:0;padding:15px 0 5px;font-family:Open Sans,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1}.footer{display:none}.swagger-section .swagger-ui-wrap h2{padding:0}h2{margin:0;margin-bottom:5px}.markdown p,.swagger-section .swagger-ui-wrap .code{font-size:15px;font-family:Arvo,serif}.swagger-section .swagger-ui-wrap b{font-family:Arvo,serif}#signin:hover{cursor:pointer}.dropdown-menu{padding:15px}.navbar-right .dropdown-menu{left:0;right:auto}#signinbutton{width:100%;height:32px;font-size:13px;font-weight:700;color:#08b}.navbar-default .nav>li .details{color:#000;text-transform:none;font-size:15px;font-weight:400;font-family:Open Sans,sans-serif;font-style:italic;line-height:20px;top:-2px}.navbar-default .nav>li .details:hover{color:#000}#signout{width:100%;height:32px;font-size:13px;font-weight:700;color:#08b}

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

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 @@
"use strict";!function(){var h,l;h=hljs.configure,hljs.configure=function(l){var i=l.highlightSizeThreshold;hljs.highlightSizeThreshold=i===+i?i:null,h.call(this,l)},l=hljs.highlightBlock,hljs.highlightBlock=function(h){var i=h.innerHTML,g=hljs.highlightSizeThreshold;(null==g||g>i.length)&&l.call(hljs,h)}}();

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
!function(e,t){function n(e){return"string"==typeof e}function r(e){var t=g.call(arguments,1);return function(){return e.apply(this,t.concat(g.call(arguments)))}}function o(e){return e.replace(/^[^#]*#?(.*)$/,"$1")}function a(e){return e.replace(/(?:^[^?#]*\?([^#]*).*$)?.*/,"$1")}function i(r,o,a,i,c){var u,s,p,h,d;return i!==f?(p=a.match(r?/^([^#]*)\#?(.*)$/:/^([^#?]*)\??([^#]*)(#?.*)/),d=p[3]||"",2===c&&n(i)?s=i.replace(r?R:E,""):(h=l(p[2]),i=n(i)?l[r?A:w](i):i,s=2===c?i:1===c?e.extend({},i,h):e.extend({},h,i),s=b(s),r&&(s=s.replace(m,y))),u=p[1]+(r?"#":s||!p[1]?"?":"")+s+d):u=o(a!==f?a:t[S][q]),u}function c(e,t,r){return t===f||"boolean"==typeof t?(r=t,t=b[e?A:w]()):t=n(t)?t.replace(e?R:E,""):t,l(t,r)}function u(t,r,o,a){return n(o)||"object"==typeof o||(a=o,o=r,r=f),this.each(function(){var n=e(this),i=r||v()[(this.nodeName||"").toLowerCase()]||"",c=i&&n.attr(i)||"";n.attr(i,b[t](c,o,a))})}var f,s,l,p,h,d,v,m,g=Array.prototype.slice,y=decodeURIComponent,b=e.param,$=e.bbq=e.bbq||{},x=e.event.special,j="hashchange",w="querystring",A="fragment",N="elemUrlAttr",S="location",q="href",C="src",E=/^.*\?|#.*$/g,R=/^.*\#/,U={};b[w]=r(i,0,a),b[A]=s=r(i,1,o),s.noEscape=function(t){t=t||"";var n=e.map(t.split(""),encodeURIComponent);m=new RegExp(n.join("|"),"g")},s.noEscape(",/"),e.deparam=l=function(t,n){var r={},o={"true":!0,"false":!1,"null":null};return e.each(t.replace(/\+/g," ").split("&"),function(t,a){var i,c=a.split("="),u=y(c[0]),s=r,l=0,p=u.split("]["),h=p.length-1;if(/\[/.test(p[0])&&/\]$/.test(p[h])?(p[h]=p[h].replace(/\]$/,""),p=p.shift().split("[").concat(p),h=p.length-1):h=0,2===c.length)if(i=y(c[1]),n&&(i=i&&!isNaN(i)?+i:"undefined"===i?f:o[i]!==f?o[i]:i),h)for(;l<=h;l++)u=""===p[l]?s.length:p[l],s=s[u]=l<h?s[u]||(p[l+1]&&isNaN(p[l+1])?{}:[]):i;else e.isArray(r[u])?r[u].push(i):r[u]!==f?r[u]=[r[u],i]:r[u]=i;else u&&(r[u]=n?f:"")}),r},l[w]=r(c,0),l[A]=p=r(c,1),e[N]||(e[N]=function(t){return e.extend(U,t)})({a:q,base:q,iframe:C,img:C,input:C,form:"action",link:q,script:C}),v=e[N],e.fn[w]=r(u,w),e.fn[A]=r(u,A),$.pushState=h=function(e,r){n(e)&&/^#/.test(e)&&r===f&&(r=2);var o=e!==f,a=s(t[S][q],o?e:{},o?r:2);t[S][q]=a+(/#/.test(a)?"":"#")},$.getState=d=function(e,t){return e===f||"boolean"==typeof e?p(e):p(t)[e]},$.removeState=function(t){var n={};t!==f&&(n=d(),e.each(e.isArray(t)?t:arguments,function(e,t){delete n[t]})),h(n,2)},x[j]=e.extend(x[j],{add:function(t){function n(e){var t=e[A]=s();e.getState=function(e,n){return e===f||"boolean"==typeof e?l(t,e):l(t,n)[e]},r.apply(this,arguments)}var r;return e.isFunction(t)?(r=t,n):(r=t.handler,void(t.handler=n))}})}(jQuery,this),function(e,t,n){function r(e){return e=e||t[i][u],e.replace(/^[^#]*#?(.*)$/,"$1")}var o,a=e.event.special,i="location",c="hashchange",u="href",f=e.browser,s=document.documentMode,l=f.msie&&(s===n||s<8),p="on"+c in t&&!l;e[c+"Delay"]=100,a[c]=e.extend(a[c],{setup:function(){return!p&&void e(o.start)},teardown:function(){return!p&&void e(o.stop)}}),o=function(){function n(){f=s=function(e){return e},l&&(a=e('<iframe src="javascript:0"/>').hide().insertAfter("body")[0].contentWindow,s=function(){return r(a.document[i][u])},(f=function(e,t){if(e!==t){var n=a.document;n.open().close(),n[i].hash="#"+e}})(r()))}var o,a,f,s,p={};return p.start=function(){if(!o){var a=r();f||n(),function l(){var n=r(),p=s(a);n!==a?(f(a=n,p),e(t).trigger(c)):p!==a&&(t[i][u]=t[i][u].replace(/#.*/,"")+"#"+p),o=setTimeout(l,e[c+"Delay"])}()}},p.stop=function(){a||(o&&clearTimeout(o),o=0)},p}()}(jQuery,this);

View File

@@ -0,0 +1 @@
!function(i){i.fn.slideto=function(o){return o=i.extend({slide_duration:"slow",highlight_duration:3e3,highlight:!0,highlight_color:"#FFFF99"},o),this.each(function(){obj=i(this),i("body").animate({scrollTop:obj.offset().top},o.slide_duration,function(){o.highlight&&i.ui.version&&obj.effect("highlight",{color:o.highlight_color},o.highlight_duration)})})}}(jQuery);

View File

@@ -0,0 +1 @@
jQuery.fn.wiggle=function(e){var a={speed:50,wiggles:3,travel:5,callback:null},e=jQuery.extend(a,e);return this.each(function(){var a=this,l=(jQuery(this).wrap('<div class="wiggle-wrap"></div>').css("position","relative"),0);for(i=1;i<=e.wiggles;i++)jQuery(this).animate({left:"-="+e.travel},e.speed).animate({left:"+="+2*e.travel},2*e.speed).animate({left:"-="+e.travel},e.speed,function(){l++,jQuery(a).parent().hasClass("wiggle-wrap")&&jQuery(a).parent().replaceWith(a),l==e.wiggles&&jQuery.isFunction(e.callback)&&e.callback()})})};

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 @@
"function"!=typeof Object.assign&&!function(){Object.assign=function(n){"use strict";if(void 0===n||null===n)throw new TypeError("Cannot convert undefined or null to object");for(var t=Object(n),o=1;o<arguments.length;o++){var r=arguments[o];if(void 0!==r&&null!==r)for(var e in r)Object.prototype.hasOwnProperty.call(r,e)&&(t[e]=r[e])}return t}}();

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,175 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" />
<link href='./dist/css/typography.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='./dist/css/reset.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='./dist/css/screen.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='./dist/css/reset.css' media='print' rel='stylesheet' type='text/css'/>
<link href='./dist/css/print.css' media='print' rel='stylesheet' type='text/css'/>
<script src='./dist/lib/object-assign-pollyfill.js' type='text/javascript'></script>
<script src='./dist/lib/jquery-1.8.0.min.js' type='text/javascript'></script>
<script src='./dist/lib/jquery.slideto.min.js' type='text/javascript'></script>
<script src='./dist/lib/jquery.wiggle.min.js' type='text/javascript'></script>
<script src='./dist/lib/jquery.ba-bbq.min.js' type='text/javascript'></script>
<script src='./dist/lib/handlebars-4.0.5.js' type='text/javascript'></script>
<script src='./dist/lib/lodash.min.js' type='text/javascript'></script>
<script src='./dist/lib/backbone-min.js' type='text/javascript'></script>
<script src='./dist/swagger-ui.min.js' type='text/javascript'></script>
<script src='./dist/lib/highlight.9.1.0.pack.js' type='text/javascript'></script>
<script src='./dist/lib/jsoneditor.min.js' type='text/javascript'></script>
<script src='./dist/lib/marked.js' type='text/javascript'></script>
<script src='./dist/lib/swagger-oauth.js' type='text/javascript'></script>
<!-- Some basic translations -->
<!-- <script src='lang/translator.js' type='text/javascript'></script> -->
<!-- <script src='lang/ru.js' type='text/javascript'></script> -->
<!-- <script src='lang/en.js' type='text/javascript'></script> -->
<script type="text/javascript">
$(function() {
var springfox = {
"baseUrl": function() {
var urlMatches = /(.*)\/swagger-ui\/index.html.*/.exec(window.location.href);
return urlMatches[1];
},
"securityConfig": function(cb) {
$.getJSON(this.baseUrl() + "/swagger-resources/configuration/security", function(data) {
cb(data);
});
},
"uiConfig": function(cb) {
$.getJSON(this.baseUrl() + "/swagger-resources/configuration/ui", function(data) {
cb(data);
});
}
};
window.springfox = springfox;
window.oAuthRedirectUrl = springfox.baseUrl() + './dist/o2c.html'
window.springfox.uiConfig(function(data) {
window.swaggerUi = new SwaggerUi({
dom_id: "swagger-ui-container",
validatorUrl: data.validatorUrl,
supportedSubmitMethods: ['get', 'post', 'put', 'delete', 'patch'],
onComplete: function(swaggerApi, swaggerUi) {
initializeSpringfox();
if (window.SwaggerTranslator) {
window.SwaggerTranslator.translate();
}
$('pre code').each(function(i, e) {
hljs.highlightBlock(e)
});
},
onFailure: function(data) {
log("Unable to Load SwaggerUI");
},
docExpansion: "none",
apisSorter: "alpha",
showRequestHeaders: false
});
initializeBaseUrl();
$('#select_baseUrl').change(function() {
window.swaggerUi.headerView.trigger('update-swagger-ui', {
url: $('#select_baseUrl').val()
});
addApiKeyAuthorization();
});
function addApiKeyAuthorization() {
var apiKeyAuth = new SwaggerClient.ApiKeyAuthorization("X-XSRF-TOKEN", getCSRF(), "header");
window.swaggerUi.api.clientAuthorizations.add("key", apiKeyAuth);
}
function getCSRF() {
var name = "XSRF-TOKEN=";
var ca = document.cookie.split(';');
for(var i=0; i<ca.length; i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1);
if (c.indexOf(name) != -1) return c.substring(name.length,c.length);
}
return "";
}
function log() {
if ('console' in window) {
console.log.apply(console, arguments);
}
}
function oAuthIsDefined(security) {
return security.clientId
&& security.clientSecret
&& security.appName
&& security.realm;
}
function initializeSpringfox() {
var security = {};
window.springfox.securityConfig(function(data) {
security = data;
if (typeof initOAuth == "function" && oAuthIsDefined(security)) {
initOAuth(security);
}
});
}
});
function maybePrefix(location, withRelativePath) {
var pat = /^https?:\/\//i;
if (pat.test(location)) {
return location;
}
return withRelativePath + location;
}
function initializeBaseUrl() {
var relativeLocation = springfox.baseUrl();
$('#input_baseUrl').hide();
$.getJSON(relativeLocation + "/swagger-resources", function(data) {
var $urlDropdown = $('#select_baseUrl');
$urlDropdown.empty();
$.each(data, function(i, resource) {
var option = $('<option></option>')
.attr("value", maybePrefix(resource.location, relativeLocation))
.text(resource.name + " (" + resource.location + ")");
$urlDropdown.append(option);
});
$urlDropdown.change();
});
}
});
</script>
</head>
<body class="swagger-section">
<div id='header'>
<div class="swagger-ui-wrap">
<a id="logo" href="http://swagger.io">swagger</a>
<form id='api_selector'>
<div class='input'>
<select id="select_baseUrl" name="select_baseUrl"></select>
</div>
<div class='input'><input placeholder="http://example.com/api" id="input_baseUrl" name="baseUrl" type="text"/>
</div>
</form>
</div>
</div>
<div id="message-bar" class="swagger-ui-wrap" data-sw-translate>&nbsp;</div>
<div id="swagger-ui-container" class="swagger-ui-wrap"></div>
</body>
</html>