neoagent 2.4.1-beta.15 → 2.4.1-beta.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +111 -56
- package/README.md +4 -0
- package/docs/index.md +4 -0
- package/extensions/chrome-browser/icons/icon128.png +0 -0
- package/extensions/chrome-browser/icons/icon16.png +0 -0
- package/extensions/chrome-browser/icons/icon48.png +0 -0
- package/extensions/chrome-browser/icons/logo.svg +3 -12
- package/flutter_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/flutter_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/flutter_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/flutter_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/flutter_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/flutter_app/assets/branding/app_icon_1024.png +0 -0
- package/flutter_app/assets/branding/app_icon_128.png +0 -0
- package/flutter_app/assets/branding/app_icon_192.png +0 -0
- package/flutter_app/assets/branding/app_icon_256.png +0 -0
- package/flutter_app/assets/branding/app_icon_32.png +0 -0
- package/flutter_app/assets/branding/app_icon_512.png +0 -0
- package/flutter_app/assets/branding/app_icon_64.png +0 -0
- package/flutter_app/assets/branding/tray_icon_template.png +0 -0
- package/flutter_app/lib/main_shared.dart +6 -57
- package/flutter_app/linux/runner/resources/app_icon.png +0 -0
- package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/flutter_app/pubspec.yaml +1 -0
- package/flutter_app/web/favicon.png +0 -0
- package/flutter_app/web/favicon.svg +2 -11
- package/flutter_app/web/icons/Icon-192.png +0 -0
- package/flutter_app/web/icons/Icon-512.png +0 -0
- package/flutter_app/web/icons/Icon-maskable-192.png +0 -0
- package/flutter_app/web/icons/Icon-maskable-512.png +0 -0
- package/package.json +1 -1
- package/server/public/.last_build_id +1 -1
- package/server/public/app_icon.png +0 -0
- package/server/public/assets/AssetManifest.bin +1 -1
- package/server/public/assets/AssetManifest.bin.json +1 -1
- package/server/public/assets/assets/branding/app_icon_256.png +0 -0
- package/server/public/assets/assets/branding/app_icon_512.png +0 -0
- package/server/public/assets/assets/branding/tray_icon_template.png +0 -0
- package/server/public/assets/web/icons/Icon-192.png +0 -0
- package/server/public/favicon.png +0 -0
- package/server/public/favicon.svg +2 -11
- package/server/public/flutter_bootstrap.js +1 -1
- package/server/public/icons/Icon-192.png +0 -0
- package/server/public/icons/Icon-512.png +0 -0
- package/server/public/icons/Icon-maskable-192.png +0 -0
- package/server/public/icons/Icon-maskable-512.png +0 -0
- package/server/public/main.dart.js +24364 -24400
package/LICENSE
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
GNU
|
|
2
|
-
Version 3,
|
|
1
|
+
GNU GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 29 June 2007
|
|
3
3
|
|
|
4
4
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
5
5
|
Everyone is permitted to copy and distribute verbatim copies
|
|
@@ -7,15 +7,17 @@
|
|
|
7
7
|
|
|
8
8
|
Preamble
|
|
9
9
|
|
|
10
|
-
The GNU
|
|
11
|
-
software and other kinds of works
|
|
12
|
-
cooperation with the community in the case of network server software.
|
|
10
|
+
The GNU General Public License is a free, copyleft license for
|
|
11
|
+
software and other kinds of works.
|
|
13
12
|
|
|
14
13
|
The licenses for most software and other practical works are designed
|
|
15
14
|
to take away your freedom to share and change the works. By contrast,
|
|
16
|
-
|
|
15
|
+
the GNU General Public License is intended to guarantee your freedom to
|
|
17
16
|
share and change all versions of a program--to make sure it remains free
|
|
18
|
-
software for all its users.
|
|
17
|
+
software for all its users. We, the Free Software Foundation, use the
|
|
18
|
+
GNU General Public License for most of our software; it applies also to
|
|
19
|
+
any other work released this way by its authors. You can apply it to
|
|
20
|
+
your programs, too.
|
|
19
21
|
|
|
20
22
|
When we speak of free software, we are referring to freedom, not
|
|
21
23
|
price. Our General Public Licenses are designed to make sure that you
|
|
@@ -24,34 +26,44 @@ them if you wish), that you receive source code or can get it if you
|
|
|
24
26
|
want it, that you can change the software or use pieces of it in new
|
|
25
27
|
free programs, and that you know you can do these things.
|
|
26
28
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
this
|
|
29
|
+
To protect your rights, we need to prevent others from denying you
|
|
30
|
+
these rights or asking you to surrender the rights. Therefore, you have
|
|
31
|
+
certain responsibilities if you distribute copies of the software, or if
|
|
32
|
+
you modify it: responsibilities to respect the freedom of others.
|
|
33
|
+
|
|
34
|
+
For example, if you distribute copies of such a program, whether
|
|
35
|
+
gratis or for a fee, you must pass on to the recipients the same
|
|
36
|
+
freedoms that you received. You must make sure that they, too, receive
|
|
37
|
+
or can get the source code. And you must show them these terms so they
|
|
38
|
+
know their rights.
|
|
39
|
+
|
|
40
|
+
Developers that use the GNU GPL protect your rights with two steps:
|
|
41
|
+
(1) assert copyright on the software, and (2) offer you this License
|
|
42
|
+
giving you legal permission to copy, distribute and/or modify it.
|
|
43
|
+
|
|
44
|
+
For the developers' and authors' protection, the GPL clearly explains
|
|
45
|
+
that there is no warranty for this free software. For both users' and
|
|
46
|
+
authors' sake, the GPL requires that modified versions be marked as
|
|
47
|
+
changed, so that their problems will not be attributed erroneously to
|
|
48
|
+
authors of previous versions.
|
|
49
|
+
|
|
50
|
+
Some devices are designed to deny users access to install or run
|
|
51
|
+
modified versions of the software inside them, although the manufacturer
|
|
52
|
+
can do so. This is fundamentally incompatible with the aim of
|
|
53
|
+
protecting users' freedom to change the software. The systematic
|
|
54
|
+
pattern of such abuse occurs in the area of products for individuals to
|
|
55
|
+
use, which is precisely where it is most unacceptable. Therefore, we
|
|
56
|
+
have designed this version of the GPL to prohibit the practice for those
|
|
57
|
+
products. If such problems arise substantially in other domains, we
|
|
58
|
+
stand ready to extend this provision to those domains in future versions
|
|
59
|
+
of the GPL, as needed to protect the freedom of users.
|
|
60
|
+
|
|
61
|
+
Finally, every program is threatened constantly by software patents.
|
|
62
|
+
States should not allow patents to restrict development and use of
|
|
63
|
+
software on general-purpose computers, but in those that do, we wish to
|
|
64
|
+
avoid the special danger that patents applied to a free program could
|
|
65
|
+
make it effectively proprietary. To prevent this, the GPL assures that
|
|
66
|
+
patents cannot be used to render the program non-free.
|
|
55
67
|
|
|
56
68
|
The precise terms and conditions for copying, distribution and
|
|
57
69
|
modification follow.
|
|
@@ -60,7 +72,7 @@ modification follow.
|
|
|
60
72
|
|
|
61
73
|
0. Definitions.
|
|
62
74
|
|
|
63
|
-
"This License" refers to version 3 of the GNU
|
|
75
|
+
"This License" refers to version 3 of the GNU General Public License.
|
|
64
76
|
|
|
65
77
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
66
78
|
works, such as semiconductor masks.
|
|
@@ -537,45 +549,35 @@ to collect a royalty for further conveying from those to whom you convey
|
|
|
537
549
|
the Program, the only way you could satisfy both those terms and this
|
|
538
550
|
License would be to refrain entirely from conveying the Program.
|
|
539
551
|
|
|
540
|
-
13.
|
|
541
|
-
|
|
542
|
-
Notwithstanding any other provision of this License, if you modify the
|
|
543
|
-
Program, your modified version must prominently offer all users
|
|
544
|
-
interacting with it remotely through a computer network (if your version
|
|
545
|
-
supports such interaction) an opportunity to receive the Corresponding
|
|
546
|
-
Source of your version by providing access to the Corresponding Source
|
|
547
|
-
from a network server at no charge, through some standard or customary
|
|
548
|
-
means of facilitating copying of software. This Corresponding Source
|
|
549
|
-
shall include the Corresponding Source for any work covered by version 3
|
|
550
|
-
of the GNU General Public License that is incorporated pursuant to the
|
|
551
|
-
following paragraph.
|
|
552
|
+
13. Use with the GNU Affero General Public License.
|
|
552
553
|
|
|
553
554
|
Notwithstanding any other provision of this License, you have
|
|
554
555
|
permission to link or combine any covered work with a work licensed
|
|
555
|
-
under version 3 of the GNU General Public License into a single
|
|
556
|
+
under version 3 of the GNU Affero General Public License into a single
|
|
556
557
|
combined work, and to convey the resulting work. The terms of this
|
|
557
558
|
License will continue to apply to the part which is the covered work,
|
|
558
|
-
but the
|
|
559
|
-
|
|
559
|
+
but the special requirements of the GNU Affero General Public License,
|
|
560
|
+
section 13, concerning interaction through a network will apply to the
|
|
561
|
+
combination as such.
|
|
560
562
|
|
|
561
563
|
14. Revised Versions of this License.
|
|
562
564
|
|
|
563
565
|
The Free Software Foundation may publish revised and/or new versions of
|
|
564
|
-
the GNU
|
|
565
|
-
|
|
566
|
+
the GNU General Public License from time to time. Such new versions will
|
|
567
|
+
be similar in spirit to the present version, but may differ in detail to
|
|
566
568
|
address new problems or concerns.
|
|
567
569
|
|
|
568
570
|
Each version is given a distinguishing version number. If the
|
|
569
|
-
Program specifies that a certain numbered version of the GNU
|
|
571
|
+
Program specifies that a certain numbered version of the GNU General
|
|
570
572
|
Public License "or any later version" applies to it, you have the
|
|
571
573
|
option of following the terms and conditions either of that numbered
|
|
572
574
|
version or of any later version published by the Free Software
|
|
573
575
|
Foundation. If the Program does not specify a version number of the
|
|
574
|
-
GNU
|
|
576
|
+
GNU General Public License, you may choose any version ever published
|
|
575
577
|
by the Free Software Foundation.
|
|
576
578
|
|
|
577
579
|
If the Program specifies that a proxy can decide which future
|
|
578
|
-
versions of the GNU
|
|
580
|
+
versions of the GNU General Public License can be used, that proxy's
|
|
579
581
|
public statement of acceptance of a version permanently authorizes you
|
|
580
582
|
to choose that version for the Program.
|
|
581
583
|
|
|
@@ -617,3 +619,56 @@ Program, unless a warranty or assumption of liability accompanies a
|
|
|
617
619
|
copy of the Program in return for a fee.
|
|
618
620
|
|
|
619
621
|
END OF TERMS AND CONDITIONS
|
|
622
|
+
|
|
623
|
+
How to Apply These Terms to Your New Programs
|
|
624
|
+
|
|
625
|
+
If you develop a new program, and you want it to be of the greatest
|
|
626
|
+
possible use to the public, the best way to achieve this is to make it
|
|
627
|
+
free software which everyone can redistribute and change under these terms.
|
|
628
|
+
|
|
629
|
+
To do so, attach the following notices to the program. It is safest
|
|
630
|
+
to attach them to the start of each source file to most effectively
|
|
631
|
+
state the exclusion of warranty; and each file should have at least
|
|
632
|
+
the "copyright" line and a pointer to where the full notice is found.
|
|
633
|
+
|
|
634
|
+
<one line to give the program's name and a brief idea of what it does.>
|
|
635
|
+
Copyright (C) <year> <name of author>
|
|
636
|
+
|
|
637
|
+
This program is free software: you can redistribute it and/or modify
|
|
638
|
+
it under the terms of the GNU General Public License as published by
|
|
639
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
640
|
+
(at your option) any later version.
|
|
641
|
+
|
|
642
|
+
This program is distributed in the hope that it will be useful,
|
|
643
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
644
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
645
|
+
GNU General Public License for more details.
|
|
646
|
+
|
|
647
|
+
You should have received a copy of the GNU General Public License
|
|
648
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
649
|
+
|
|
650
|
+
Also add information on how to contact you by electronic and paper mail.
|
|
651
|
+
|
|
652
|
+
If the program does terminal interaction, make it output a short
|
|
653
|
+
notice like this when it starts in an interactive mode:
|
|
654
|
+
|
|
655
|
+
<program> Copyright (C) <year> <name of author>
|
|
656
|
+
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
657
|
+
This is free software, and you are welcome to redistribute it
|
|
658
|
+
under certain conditions; type `show c' for details.
|
|
659
|
+
|
|
660
|
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
661
|
+
parts of the General Public License. Of course, your program's commands
|
|
662
|
+
might be different; for a GUI interface, you would use an "about box".
|
|
663
|
+
|
|
664
|
+
You should also get your employer (if you work as a programmer) or school,
|
|
665
|
+
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
666
|
+
For more information on this, and how to apply and follow the GNU GPL, see
|
|
667
|
+
<https://www.gnu.org/licenses/>.
|
|
668
|
+
|
|
669
|
+
The GNU General Public License does not permit incorporating your program
|
|
670
|
+
into proprietary programs. If your program is a subroutine library, you
|
|
671
|
+
may consider it more useful to permit linking proprietary applications with
|
|
672
|
+
the library. If this is what you want to do, use the GNU Lesser General
|
|
673
|
+
Public License instead of this License. But first, please read
|
|
674
|
+
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
package/README.md
CHANGED
package/docs/index.md
CHANGED
|
@@ -4,6 +4,10 @@ title: NeoAgent
|
|
|
4
4
|
sidebar_label: Overview
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
<p align="center">
|
|
8
|
+
<img src="/img/app_icon.png" width="72" alt="NeoAgent" />
|
|
9
|
+
</p>
|
|
10
|
+
|
|
7
11
|
# NeoAgent
|
|
8
12
|
|
|
9
13
|
Self-hosted AI agent server. Runs as a system service, keeps all credentials on your machine, and provides a full operator UI for chat, automation, Android device control, recordings, integrations, and memory.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
<stop offset="0%" stop-color="#8f6d3e"/>
|
|
5
|
-
<stop offset="100%" stop-color="#2f7d6e"/>
|
|
6
|
-
</linearGradient>
|
|
7
|
-
</defs>
|
|
8
|
-
<rect x="5.76" y="5.76" width="20.48" height="20.48" rx="6.96" fill="url(#bg)" stroke="#ffffff" stroke-opacity="0.16" stroke-width="1"/>
|
|
9
|
-
<polygon points="16,9.76 9.35,13.12 16,16.48 22.65,13.12" fill="white"/>
|
|
10
|
-
<polyline points="9.35,16.48 16,19.68 22.65,16.48" fill="none" stroke="white" stroke-width="1.44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
-
<polyline points="9.35,19.68 16,22.72 22.65,19.68" fill="none" stroke="white" stroke-width="1.44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 32 32">
|
|
2
|
+
<image width="32" height="32" xlink:href="data:image/png;base64,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"/>
|
|
3
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -970,28 +970,14 @@ class _LogoBadge extends StatelessWidget {
|
|
|
970
970
|
|
|
971
971
|
@override
|
|
972
972
|
Widget build(BuildContext context) {
|
|
973
|
-
return
|
|
973
|
+
return SizedBox(
|
|
974
974
|
width: size,
|
|
975
975
|
height: size,
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
),
|
|
982
|
-
borderRadius: BorderRadius.circular(size * 0.34),
|
|
983
|
-
boxShadow: <BoxShadow>[
|
|
984
|
-
BoxShadow(
|
|
985
|
-
color: _brandAccent.withValues(alpha: 0.32),
|
|
986
|
-
blurRadius: 36,
|
|
987
|
-
offset: const Offset(0, 10),
|
|
988
|
-
),
|
|
989
|
-
],
|
|
990
|
-
border: Border.all(color: Colors.white.withValues(alpha: 0.12)),
|
|
991
|
-
),
|
|
992
|
-
child: Padding(
|
|
993
|
-
padding: EdgeInsets.all(size * 0.18),
|
|
994
|
-
child: CustomPaint(painter: _NeoAgentLogoPainter()),
|
|
976
|
+
child: Image.asset(
|
|
977
|
+
'assets/branding/app_icon_512.png',
|
|
978
|
+
width: size,
|
|
979
|
+
height: size,
|
|
980
|
+
filterQuality: FilterQuality.high,
|
|
995
981
|
),
|
|
996
982
|
);
|
|
997
983
|
}
|
|
@@ -1047,43 +1033,6 @@ class _BrandLockup extends StatelessWidget {
|
|
|
1047
1033
|
}
|
|
1048
1034
|
}
|
|
1049
1035
|
|
|
1050
|
-
class _NeoAgentLogoPainter extends CustomPainter {
|
|
1051
|
-
@override
|
|
1052
|
-
void paint(Canvas canvas, Size size) {
|
|
1053
|
-
final fillPaint = Paint()
|
|
1054
|
-
..color = Colors.white
|
|
1055
|
-
..style = PaintingStyle.fill;
|
|
1056
|
-
final strokePaint = Paint()
|
|
1057
|
-
..color = Colors.white
|
|
1058
|
-
..style = PaintingStyle.stroke
|
|
1059
|
-
..strokeWidth = size.width * 0.08
|
|
1060
|
-
..strokeCap = StrokeCap.round
|
|
1061
|
-
..strokeJoin = StrokeJoin.round;
|
|
1062
|
-
|
|
1063
|
-
final top = Path()
|
|
1064
|
-
..moveTo(size.width * 0.5, size.height * 0.08)
|
|
1065
|
-
..lineTo(size.width * 0.1, size.height * 0.3)
|
|
1066
|
-
..lineTo(size.width * 0.5, size.height * 0.52)
|
|
1067
|
-
..lineTo(size.width * 0.9, size.height * 0.3)
|
|
1068
|
-
..close();
|
|
1069
|
-
canvas.drawPath(top, fillPaint);
|
|
1070
|
-
|
|
1071
|
-
final middle = Path()
|
|
1072
|
-
..moveTo(size.width * 0.1, size.height * 0.52)
|
|
1073
|
-
..lineTo(size.width * 0.5, size.height * 0.74)
|
|
1074
|
-
..lineTo(size.width * 0.9, size.height * 0.52);
|
|
1075
|
-
canvas.drawPath(middle, strokePaint);
|
|
1076
|
-
|
|
1077
|
-
final bottom = Path()
|
|
1078
|
-
..moveTo(size.width * 0.1, size.height * 0.72)
|
|
1079
|
-
..lineTo(size.width * 0.5, size.height * 0.94)
|
|
1080
|
-
..lineTo(size.width * 0.9, size.height * 0.72);
|
|
1081
|
-
canvas.drawPath(bottom, strokePaint);
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1084
|
-
@override
|
|
1085
|
-
bool shouldRepaint(covariant CustomPainter oldDelegate) => false;
|
|
1086
|
-
}
|
|
1087
1036
|
|
|
1088
1037
|
class _EmptyState extends StatelessWidget {
|
|
1089
1038
|
const _EmptyState({required this.title, required this.subtitle});
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/flutter_app/pubspec.yaml
CHANGED
|
Binary file
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
2
|
-
<
|
|
3
|
-
<linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
-
<stop offset="0%" stop-color="#8f6d3e"/>
|
|
5
|
-
<stop offset="100%" stop-color="#2f7d6e"/>
|
|
6
|
-
</linearGradient>
|
|
7
|
-
</defs>
|
|
8
|
-
<rect x="2.5" y="2.5" width="27" height="27" rx="9" ry="9" fill="url(#bg)" stroke="#ffffff" stroke-opacity="0.16" stroke-width="1"/>
|
|
9
|
-
<polygon points="16,5.7 5.2,11.6 16,17.6 26.8,11.6" fill="white"/>
|
|
10
|
-
<polyline points="5.2,17.6 16,23.5 26.8,17.6" fill="none" stroke="white" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
-
<polyline points="5.2,22.7 16,28.1 26.8,22.7" fill="none" stroke="white" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 32 32">
|
|
2
|
+
<image width="32" height="32" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAHo0lEQVR4nG1XTW8cxxF9Vd0zu8tdcUmKsqAolg1akS4KCEOADOQSXwIIPvkiH3zwwf/DsAP/Cx989ME65GbokEMEw0igOHCM6CJBkilQdqxYXnIp7e58dHcF1T2znJU0YHOHw95+Va+qXtUQVi8GEPTm6uVX36hreh+Qq721/CKx2aw92AXAe6AOQAiAE0YQxCUgiB5BCGXlDorK3/Eh3CDhL/b3791/HkMvam+uAeY64P+4O94oi9FHAfShF94onWBeBSiwfqsFS4BpQRQ4XRLvCEwE5mgMIHIowOfVnD6dTh8eAjAA/NKAFvzK787uBqIvA/jCvPKoPXwQUAAofkZgOfZWP/UXugYcWxJ/1Dwiw2wgEu76IO8d/vLj960R1FJyeee3v/csf3OBtgontRfYEIR81+Ol583REVieA6bVv3WX2irimE0GyERAbx/879F/FDsacOX8+VERFt/VQjtlLS5ArA8vobvxKd2vetwFbP/XvYhiLByxsRB5QH7w5mRy71n0fh7mn3jwzqJWz8VqvGOyBaVbQdOKxjSGREiK3q0mU+ePyFRjXJCghtngfU1sdsQUn+hj2n3t9OsF7O3KY+CCrMS69XTpdYx89KTDSgJMudZhgpqdzTnJrmiZMJOAzEKIL9naZB94T0MXvPcCXoJ3aGxjbplAylkqtYio+5WpNmTKSPxqaOoh2dukR3oSggRjachEH1gI3nFeRL2PSdbxWr9cuYDMMtbXTHwQwXwKTYjlBhg1jFLYijpSvQyJGqV72qihMUKzEkzvWJvxxapwCbxDazpQcO7MCMMe4acnBeaFg/Np3zE7S8aRW8Kwb1BUAbULUQuWSRmNSCHUuhQR4sxe5F6ejbXmFDPVeEod9bSXMy5f3MSsEkye1tFDRWLLsLlF1s/jMrmFxmZRC2ZlQJ4ZZJkqZJs5x9nZFK0aAOrlYxukQ31LWxBYa3DmZB9/vfUTjhYSD42UWwObq4Y0QhQzwiBkAlLlqh3mpUcvN1GqvQ9NpXSSob0joljvSU479UuE7XGOJwclFqXEGCvttmdB1kDFiYwFR88JvnIIVQ3OssiELyuUlYtOKJMvykIqGw2IVSvbmOtD5wWbowyL0mNRBRBTTDqbZ4DRA4HexhCjk330ck1ExqxizH5doD58pqUCChahqmIOsRqvIFEO21JMS8+2vhWaZoMmjmb9r0cVrNWGQhCvHidvepsjnDzbx7lBjbODxN5eYXC/t44pCP7gCGQt4BykqUtKtfuCUIEZmgONUqWatgaonXYhROBhxmDTVFCeY/DKEOeGJf50Lsel1/oQIXz7sMCzfYf59hh+tgDKOhosdR1BiBnBuRUL1Ht1Ooaga5R+1i4ZpeFwAgwGFvNKkA96sH2Ls+sOu+eHuPCHtyG+RoWv8Y+DGntVH9TvI5QJuPUySXdTq8p0awcz+PmmErS3Nx1P988WDnlu41KWfNZHbTN4IYS6gLgKnhh1liHYLHq11GVjwJmFtF4uvVclVQUzsCttsxMKzYX2f0dPS2ye2cJRJZg5g3vYwD9/niH861acgP7+hLBvNuG14SjtjQDZQR/B+QgYjWiNa9kwMQea+C6nm0S9YaDyiUlXOxxOZhj/5hQKB/zgx/jLfB3fPqrhQNjzJ/CEBP7xPY1fPCcbDeBmRfSypf64BJvFDLsiDI1hCpxZgtFDm1JyiwIH//0FJ5TWYgP75Qj7QeNL8EdzuPv7qB5PYAxjtD7GYjKN3htloSiO67wFb0PgQ0NAp+3qPk1Ea5W6JM8UAkJR4fCHR+hNn6J/ehsuM6ieLeAPn8IXJU7vvAIKhIMHP6KeLWBPDJXOZUeiDhPx3rDYonJTItrQ7hR1ohEltcv5ANZYNLOfaDwBlE8OUE6msL08KmOWGYy2T2B7e4iH/95DcTRLwmUt/PRpimMDHoF1HsgyEu+ntvbhDgFX2vbdTrUxLJr1LoAMxwk3ZnjsoulArW0W7RABxc8T3L77KH7TWANS6mfzpcwuvdfeTCSqKcH7O1oFX4HoLUBirbRTTGybTWaE2FAaamJ9twMD4EpBraqlwM0YTv0eQlFCapeEqG1GLQvMygAL0Vc0Pn36dTi+LZBBxH0JC2p9t6WuDIDduLIBad2rDGvv1rg3gpPwWXuFUJYLRsMFbQwv8fTx4z0CPqOoDuKen3PTNPsSHe9MpLpHwfVRKCuIMtZMSUmKG/Exem8cra0xDH02vXlTscFbW1ujmvLvCLQjElR9m/JcBW96+IoBy9g2Ta2h+JidFjwtx4OBDb3egyzfenNy6604lmMymRyFEN4VyATECq5y9pLp/nka2pE95QAbs5RZTdy0jNa7kOFawdHvTUK//+7k1o0jfHx8UnxNWts4tctsvmTmCyqdkhqxBrJ1t5MdnaRaikubE5F2VTABacJZQ2sDiDF32dr3Dm998z2uXTO4fj2+mrVXNGI8Hm+IXftICB8y8Ub7RhQTv8nmJGodZUuldVwlGnf1PM9jC5fMHMLYz2lgP53evHnYgr8Y5M6r8/qpV99gQ++D+Krp5ReFaDOmcQckLhUqq6OajZ9xoMiygCw7cFV5R3y4gWHvi6MbN5rX848Z+POyPf4fP4V5OLgtxuUAAAAASUVORK5CYII="/>
|
|
12
3
|
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
72189bf4d150a4da4a92c438127a86e9
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"
|
|
1
|
+
"DQkHIGFzc2V0cy9icmFuZGluZy9hcHBfaWNvbl8yNTYucG5nDAENAQcFYXNzZXQHIGFzc2V0cy9icmFuZGluZy9hcHBfaWNvbl8yNTYucG5nByBhc3NldHMvYnJhbmRpbmcvYXBwX2ljb25fNTEyLnBuZwwBDQEHBWFzc2V0ByBhc3NldHMvYnJhbmRpbmcvYXBwX2ljb25fNTEyLnBuZwckYXNzZXRzL2JyYW5kaW5nL29uYm9hcmRpbmdfaW50cm8ubXA0DAENAQcFYXNzZXQHJGFzc2V0cy9icmFuZGluZy9vbmJvYXJkaW5nX2ludHJvLm1wNAcmYXNzZXRzL2JyYW5kaW5nL3RyYXlfaWNvbl90ZW1wbGF0ZS5wbmcMAQ0BBwVhc3NldAcmYXNzZXRzL2JyYW5kaW5nL3RyYXlfaWNvbl90ZW1wbGF0ZS5wbmcHMnBhY2thZ2VzL2N1cGVydGlub19pY29ucy9hc3NldHMvQ3VwZXJ0aW5vSWNvbnMudHRmDAENAQcFYXNzZXQHMnBhY2thZ2VzL2N1cGVydGlub19pY29ucy9hc3NldHMvQ3VwZXJ0aW5vSWNvbnMudHRmByxwYWNrYWdlcy9taXhwYW5lbF9mbHV0dGVyL2Fzc2V0cy9taXhwYW5lbC5qcwwBDQEHBWFzc2V0ByxwYWNrYWdlcy9taXhwYW5lbF9mbHV0dGVyL2Fzc2V0cy9taXhwYW5lbC5qcwc3cGFja2FnZXMvcmVjb3JkX3dlYi9hc3NldHMvanMvcmVjb3JkLmZpeHdlYm1kdXJhdGlvbi5qcwwBDQEHBWFzc2V0BzdwYWNrYWdlcy9yZWNvcmRfd2ViL2Fzc2V0cy9qcy9yZWNvcmQuZml4d2VibWR1cmF0aW9uLmpzBy9wYWNrYWdlcy9yZWNvcmRfd2ViL2Fzc2V0cy9qcy9yZWNvcmQud29ya2xldC5qcwwBDQEHBWFzc2V0By9wYWNrYWdlcy9yZWNvcmRfd2ViL2Fzc2V0cy9qcy9yZWNvcmQud29ya2xldC5qcwcWd2ViL2ljb25zL0ljb24tMTkyLnBuZwwBDQEHBWFzc2V0BxZ3ZWIvaWNvbnMvSWNvbi0xOTIucG5n"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
2
|
-
<
|
|
3
|
-
<linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
-
<stop offset="0%" stop-color="#8f6d3e"/>
|
|
5
|
-
<stop offset="100%" stop-color="#2f7d6e"/>
|
|
6
|
-
</linearGradient>
|
|
7
|
-
</defs>
|
|
8
|
-
<rect x="2.5" y="2.5" width="27" height="27" rx="9" ry="9" fill="url(#bg)" stroke="#ffffff" stroke-opacity="0.16" stroke-width="1"/>
|
|
9
|
-
<polygon points="16,5.7 5.2,11.6 16,17.6 26.8,11.6" fill="white"/>
|
|
10
|
-
<polyline points="5.2,17.6 16,23.5 26.8,17.6" fill="none" stroke="white" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
-
<polyline points="5.2,22.7 16,28.1 26.8,22.7" fill="none" stroke="white" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 32 32">
|
|
2
|
+
<image width="32" height="32" xlink:href="data:image/png;base64,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"/>
|
|
12
3
|
</svg>
|
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"4c525dac5ebe5971c5708ef73558ed8edcf4a3
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "3470618702" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|