├── .gitignore
├── LICENSE
├── README.md
└── Source
├── SimpleInputDataValidator.Test
├── SimpleInputDataValidator.Test.Android
│ ├── Assets
│ │ ├── 3541-error.json
│ │ └── AboutAssets.txt
│ ├── MainActivity.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── Resource.designer.cs
│ │ ├── layout
│ │ │ ├── Tabbar.axml
│ │ │ └── Toolbar.axml
│ │ ├── mipmap-anydpi-v26
│ │ │ ├── icon.xml
│ │ │ └── icon_round.xml
│ │ ├── mipmap-hdpi
│ │ │ ├── icon.png
│ │ │ └── launcher_foreground.png
│ │ ├── mipmap-mdpi
│ │ │ ├── icon.png
│ │ │ └── launcher_foreground.png
│ │ ├── mipmap-xhdpi
│ │ │ ├── icon.png
│ │ │ └── launcher_foreground.png
│ │ ├── mipmap-xxhdpi
│ │ │ ├── icon.png
│ │ │ └── launcher_foreground.png
│ │ ├── mipmap-xxxhdpi
│ │ │ ├── icon.png
│ │ │ └── launcher_foreground.png
│ │ └── values
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ └── SimpleInputDataValidator.Test.Android.csproj
├── SimpleInputDataValidator.Test.UWP
│ ├── 3541-error.json
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── LargeTile.scale-100.png
│ │ ├── LargeTile.scale-200.png
│ │ ├── LargeTile.scale-400.png
│ │ ├── SmallTile.scale-100.png
│ │ ├── SmallTile.scale-200.png
│ │ ├── SmallTile.scale-400.png
│ │ ├── SplashScreen.scale-100.png
│ │ ├── SplashScreen.scale-200.png
│ │ ├── SplashScreen.scale-400.png
│ │ ├── Square150x150Logo.scale-100.png
│ │ ├── Square150x150Logo.scale-200.png
│ │ ├── Square150x150Logo.scale-400.png
│ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png
│ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png
│ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png
│ │ ├── Square44x44Logo.scale-100.png
│ │ ├── Square44x44Logo.scale-200.png
│ │ ├── Square44x44Logo.scale-400.png
│ │ ├── Square44x44Logo.targetsize-16.png
│ │ ├── Square44x44Logo.targetsize-256.png
│ │ ├── Square44x44Logo.targetsize-48.png
│ │ ├── StoreLogo.backup.png
│ │ ├── StoreLogo.scale-100.png
│ │ ├── StoreLogo.scale-200.png
│ │ ├── StoreLogo.scale-400.png
│ │ ├── Wide310x150Logo.scale-100.png
│ │ ├── Wide310x150Logo.scale-200.png
│ │ └── Wide310x150Logo.scale-400.png
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Package.appxmanifest
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── Default.rd.xml
│ └── SimpleInputDataValidator.Test.UWP.csproj
├── SimpleInputDataValidator.Test.iOS
│ ├── AppDelegate.cs
│ ├── Assets.xcassets
│ │ └── AppIcon.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── Icon1024.png
│ │ │ ├── Icon120.png
│ │ │ ├── Icon152.png
│ │ │ ├── Icon167.png
│ │ │ ├── Icon180.png
│ │ │ ├── Icon20.png
│ │ │ ├── Icon29.png
│ │ │ ├── Icon40.png
│ │ │ ├── Icon58.png
│ │ │ ├── Icon60.png
│ │ │ ├── Icon76.png
│ │ │ ├── Icon80.png
│ │ │ └── Icon87.png
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Main.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── 3541-error.json
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Default-Portrait@2x.png
│ │ ├── Default.png
│ │ ├── Default@2x.png
│ │ └── LaunchScreen.storyboard
│ └── SimpleInputDataValidator.Test.iOS.csproj
└── SimpleInputDataValidator.Test
│ ├── AnimationViewPlayAt.cs
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── AssemblyInfo.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── MainPageViewModel.cs
│ └── SimpleInputDataValidator.Test.csproj
├── SimpleInputDataValidator.sln
└── SimpleInputDataValidator
├── DefaultTemplates.xaml
├── DefaultTemplates.xaml.cs
├── ErrorState.cs
├── ErrorStateManager.cs
├── ErrorSummaryView.xaml
├── ErrorSummaryView.xaml.cs
├── ErrorView.xaml
├── ErrorView.xaml.cs
├── IValidator.cs
├── SimpleInputDataValidator.csproj
├── ValidationViewModelBase.cs
└── Validators
├── NotNullValidator.cs
├── RegexValidator.cs
├── StringNotNullOrEmptyValidator.cs
└── ValidatorBase.cs
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 | ##
4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5 |
6 | # User-specific files
7 | *.suo
8 | *.user
9 | *.userosscache
10 | *.sln.docstates
11 |
12 | # User-specific files (MonoDevelop/Xamarin Studio)
13 | *.userprefs
14 |
15 | # Build results
16 | [Dd]ebug/
17 | [Dd]ebugPublic/
18 | [Rr]elease/
19 | [Rr]eleases/
20 | x64/
21 | x86/
22 | bld/
23 | [Bb]in/
24 | [Oo]bj/
25 | [Ll]og/
26 |
27 | # Visual Studio 2015/2017 cache/options directory
28 | .vs/
29 | # Uncomment if you have tasks that create the project's static files in wwwroot
30 | #wwwroot/
31 |
32 | # Visual Studio 2017 auto generated files
33 | Generated\ Files/
34 |
35 | # MSTest test Results
36 | [Tt]est[Rr]esult*/
37 | [Bb]uild[Ll]og.*
38 |
39 | # NUNIT
40 | *.VisualState.xml
41 | TestResult.xml
42 |
43 | # Build Results of an ATL Project
44 | [Dd]ebugPS/
45 | [Rr]eleasePS/
46 | dlldata.c
47 |
48 | # Benchmark Results
49 | BenchmarkDotNet.Artifacts/
50 |
51 | # .NET Core
52 | project.lock.json
53 | project.fragment.lock.json
54 | artifacts/
55 | **/Properties/launchSettings.json
56 |
57 | # StyleCop
58 | StyleCopReport.xml
59 |
60 | # Files built by Visual Studio
61 | *_i.c
62 | *_p.c
63 | *_i.h
64 | *.ilk
65 | *.meta
66 | *.obj
67 | *.iobj
68 | *.pch
69 | *.pdb
70 | *.ipdb
71 | *.pgc
72 | *.pgd
73 | *.rsp
74 | *.sbr
75 | *.tlb
76 | *.tli
77 | *.tlh
78 | *.tmp
79 | *.tmp_proj
80 | *.log
81 | *.vspscc
82 | *.vssscc
83 | .builds
84 | *.pidb
85 | *.svclog
86 | *.scc
87 |
88 | # Chutzpah Test files
89 | _Chutzpah*
90 |
91 | # Visual C++ cache files
92 | ipch/
93 | *.aps
94 | *.ncb
95 | *.opendb
96 | *.opensdf
97 | *.sdf
98 | *.cachefile
99 | *.VC.db
100 | *.VC.VC.opendb
101 |
102 | # Visual Studio profiler
103 | *.psess
104 | *.vsp
105 | *.vspx
106 | *.sap
107 |
108 | # Visual Studio Trace Files
109 | *.e2e
110 |
111 | # TFS 2012 Local Workspace
112 | $tf/
113 |
114 | # Guidance Automation Toolkit
115 | *.gpState
116 |
117 | # ReSharper is a .NET coding add-in
118 | _ReSharper*/
119 | *.[Rr]e[Ss]harper
120 | *.DotSettings.user
121 |
122 | # JustCode is a .NET coding add-in
123 | .JustCode
124 |
125 | # TeamCity is a build add-in
126 | _TeamCity*
127 |
128 | # DotCover is a Code Coverage Tool
129 | *.dotCover
130 |
131 | # AxoCover is a Code Coverage Tool
132 | .axoCover/*
133 | !.axoCover/settings.json
134 |
135 | # Visual Studio code coverage results
136 | *.coverage
137 | *.coveragexml
138 |
139 | # NCrunch
140 | _NCrunch_*
141 | .*crunch*.local.xml
142 | nCrunchTemp_*
143 |
144 | # MightyMoose
145 | *.mm.*
146 | AutoTest.Net/
147 |
148 | # Web workbench (sass)
149 | .sass-cache/
150 |
151 | # Installshield output folder
152 | [Ee]xpress/
153 |
154 | # DocProject is a documentation generator add-in
155 | DocProject/buildhelp/
156 | DocProject/Help/*.HxT
157 | DocProject/Help/*.HxC
158 | DocProject/Help/*.hhc
159 | DocProject/Help/*.hhk
160 | DocProject/Help/*.hhp
161 | DocProject/Help/Html2
162 | DocProject/Help/html
163 |
164 | # Click-Once directory
165 | publish/
166 |
167 | # Publish Web Output
168 | *.[Pp]ublish.xml
169 | *.azurePubxml
170 | # Note: Comment the next line if you want to checkin your web deploy settings,
171 | # but database connection strings (with potential passwords) will be unencrypted
172 | *.pubxml
173 | *.publishproj
174 |
175 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
176 | # checkin your Azure Web App publish settings, but sensitive information contained
177 | # in these scripts will be unencrypted
178 | PublishScripts/
179 |
180 | # NuGet Packages
181 | *.nupkg
182 | # The packages folder can be ignored because of Package Restore
183 | **/[Pp]ackages/*
184 | # except build/, which is used as an MSBuild target.
185 | !**/[Pp]ackages/build/
186 | # Uncomment if necessary however generally it will be regenerated when needed
187 | #!**/[Pp]ackages/repositories.config
188 | # NuGet v3's project.json files produces more ignorable files
189 | *.nuget.props
190 | *.nuget.targets
191 |
192 | # Microsoft Azure Build Output
193 | csx/
194 | *.build.csdef
195 |
196 | # Microsoft Azure Emulator
197 | ecf/
198 | rcf/
199 |
200 | # Windows Store app package directories and files
201 | AppPackages/
202 | BundleArtifacts/
203 | Package.StoreAssociation.xml
204 | _pkginfo.txt
205 | *.appx
206 |
207 | # Visual Studio cache files
208 | # files ending in .cache can be ignored
209 | *.[Cc]ache
210 | # but keep track of directories ending in .cache
211 | !*.[Cc]ache/
212 |
213 | # Others
214 | ClientBin/
215 | ~$*
216 | *~
217 | *.dbmdl
218 | *.dbproj.schemaview
219 | *.jfm
220 | *.pfx
221 | *.publishsettings
222 | orleans.codegen.cs
223 |
224 | # Including strong name files can present a security risk
225 | # (https://github.com/github/gitignore/pull/2483#issue-259490424)
226 | #*.snk
227 |
228 | # Since there are multiple workflows, uncomment next line to ignore bower_components
229 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
230 | #bower_components/
231 |
232 | # RIA/Silverlight projects
233 | Generated_Code/
234 |
235 | # Backup & report files from converting an old project file
236 | # to a newer Visual Studio version. Backup files are not needed,
237 | # because we have git ;-)
238 | _UpgradeReport_Files/
239 | Backup*/
240 | UpgradeLog*.XML
241 | UpgradeLog*.htm
242 | ServiceFabricBackup/
243 | *.rptproj.bak
244 |
245 | # SQL Server files
246 | *.mdf
247 | *.ldf
248 | *.ndf
249 |
250 | # Business Intelligence projects
251 | *.rdl.data
252 | *.bim.layout
253 | *.bim_*.settings
254 | *.rptproj.rsuser
255 |
256 | # Microsoft Fakes
257 | FakesAssemblies/
258 |
259 | # GhostDoc plugin setting file
260 | *.GhostDoc.xml
261 |
262 | # Node.js Tools for Visual Studio
263 | .ntvs_analysis.dat
264 | node_modules/
265 |
266 | # Visual Studio 6 build log
267 | *.plg
268 |
269 | # Visual Studio 6 workspace options file
270 | *.opt
271 |
272 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
273 | *.vbw
274 |
275 | # Visual Studio LightSwitch build output
276 | **/*.HTMLClient/GeneratedArtifacts
277 | **/*.DesktopClient/GeneratedArtifacts
278 | **/*.DesktopClient/ModelManifest.xml
279 | **/*.Server/GeneratedArtifacts
280 | **/*.Server/ModelManifest.xml
281 | _Pvt_Extensions
282 |
283 | # Paket dependency manager
284 | .paket/paket.exe
285 | paket-files/
286 |
287 | # FAKE - F# Make
288 | .fake/
289 |
290 | # JetBrains Rider
291 | .idea/
292 | *.sln.iml
293 |
294 | # CodeRush
295 | .cr/
296 |
297 | # Python Tools for Visual Studio (PTVS)
298 | __pycache__/
299 | *.pyc
300 |
301 | # Cake - Uncomment if you are using it
302 | # tools/**
303 | # !tools/packages.config
304 |
305 | # Tabs Studio
306 | *.tss
307 |
308 | # Telerik's JustMock configuration file
309 | *.jmconfig
310 |
311 | # BizTalk build output
312 | *.btp.cs
313 | *.btm.cs
314 | *.odx.cs
315 | *.xsd.cs
316 |
317 | # OpenCover UI analysis results
318 | OpenCover/
319 |
320 | # Azure Stream Analytics local run output
321 | ASALocalRun/
322 |
323 | # MSBuild Binary and Structured Log
324 | *.binlog
325 |
326 | # NVidia Nsight GPU debugger configuration file
327 | *.nvuser
328 |
329 | # MFractors (Xamarin productivity tool) working folder
330 | .mfractor/
331 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Pieter Nijs
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # SimpleDataValidator
2 | User input data validation in Xamarin Forms. Simple and elegant in ViewModels and in XAML. Default UI out of the box, easily customizable.
3 |
4 | More info about this control can be found on [my blog](https://blog.pieeatingninjas.be/2019/07/27/simple-data-validation-in-xamarin-forms).
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Assets/3541-error.json:
--------------------------------------------------------------------------------
1 | {"v":"5.4.1","fr":24,"ip":0,"op":72,"w":800,"h":600,"nm":"Error","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"bikkuri","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.106],"y":[0.824]},"o":{"x":[0.4],"y":[0]},"n":["0p106_0p824_0p4_0"],"t":36,"s":[-30],"e":[10]},{"i":{"x":[0.575],"y":[1]},"o":{"x":[0.529],"y":[-0.166]},"n":["0p575_1_0p529_-0p166"],"t":41,"s":[10],"e":[0]},{"t":43}],"ix":10},"p":{"a":0,"k":[400,327.477,0],"ix":2},"a":{"a":0,"k":[0,27.454,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.4,0.4,0.4],"y":[0,0,0]},"n":["0_1_0p4_0","0_1_0p4_0","0_1_0p4_0"],"t":35,"s":[0,0,100],"e":[100,100,100]},{"t":40}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.077,12.14],[-3.145,12.14],[-7.035,-27.5],[7.035,-27.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,-3.077],[3.074,0],[0,3.077],[-3.08,0]],"o":[[0,3.077],[-3.08,0],[0,-3.077],[3.074,0]],"v":[[5.525,21.929],[0.003,27.454],[-5.525,21.929],[0.003,16.407]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.121568627656,0.164705887437,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,272.773,0],"ix":2},"a":{"a":0,"k":[0,-27.227,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,-33.488],[0,-20.966]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882354081,0.105882354081,0.105882354081,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":12,"op":132,"st":12,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[413.614,276.42,0],"ix":2},"a":{"a":0,"k":[13.614,-23.58,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[16.744,-29.002],[10.483,-18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":14,"op":134,"st":12,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[423.58,286.386,0],"ix":2},"a":{"a":0,"k":[23.58,-13.614,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[29.002,-16.744],[18.157,-10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":16,"op":136,"st":12,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[427.227,300,0],"ix":2},"a":{"a":0,"k":[27.227,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[33.488,0],[20.966,0]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":18,"op":138,"st":12,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[423.58,313.614,0],"ix":2},"a":{"a":0,"k":[23.58,13.614,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[29.002,16.744],[18.157,10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":20,"op":140,"st":12,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[413.614,323.58,0],"ix":2},"a":{"a":0,"k":[13.614,23.58,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[16.744,29.002],[10.483,18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":22,"op":142,"st":12,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,327.227,0],"ix":2},"a":{"a":0,"k":[0,27.227,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,33.488],[0,20.966]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":24,"op":144,"st":12,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[386.386,323.58,0],"ix":2},"a":{"a":0,"k":[-13.614,23.58,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-16.744,29.002],[-10.483,18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":26,"op":146,"st":12,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[376.42,313.614,0],"ix":2},"a":{"a":0,"k":[-23.58,13.614,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-29.002,16.744],[-18.157,10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":28,"op":148,"st":12,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[372.773,300,0],"ix":2},"a":{"a":0,"k":[-27.227,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-33.488,0],[-20.966,0]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":30,"op":150,"st":12,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[376.42,286.386,0],"ix":2},"a":{"a":0,"k":[-23.58,-13.614,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-29.002,-16.744],[-18.157,-10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":32,"op":152,"st":12,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[386.386,276.42,0],"ix":2},"a":{"a":0,"k":[-13.614,-23.58,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-16.744,-29.002],[-10.483,-18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":34,"op":154,"st":12,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"レイヤー 12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-16.744,29.002],[-10.483,18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"レイヤー 11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[10.483,-18.157],[16.744,-29.002]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"レイヤー 10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-29.002,16.744],[-18.157,10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"レイヤー 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[18.157,-10.483],[29.002,-16.744]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"レイヤー 8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-33.488,0],[-20.966,0]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"レイヤー 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[20.966,0],[33.488,0]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"レイヤー 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-29.002,-16.744],[-18.157,-10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"レイヤー 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[18.157,10.483],[29.002,16.744]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"レイヤー 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-16.744,-29.002],[-10.483,-18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"レイヤー 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[10.483,18.157],[16.744,29.002]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"レイヤー 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,-33.488],[0,-20.966]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"レイヤー 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,20.966],[0,33.488]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0}],"markers":[]}
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | using Android.App;
4 | using Android.Content.PM;
5 | using Android.Runtime;
6 | using Android.Views;
7 | using Android.Widget;
8 | using Android.OS;
9 | using Lottie.Forms.Droid;
10 |
11 | namespace SimpleInputDataValidator.Test.Droid
12 | {
13 | [Activity(Label = "SimpleInputDataValidator.Test", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
14 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
15 | {
16 | protected override void OnCreate(Bundle savedInstanceState)
17 | {
18 | TabLayoutResource = Resource.Layout.Tabbar;
19 | ToolbarResource = Resource.Layout.Toolbar;
20 |
21 | base.OnCreate(savedInstanceState);
22 |
23 | Xamarin.Essentials.Platform.Init(this, savedInstanceState);
24 | global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
25 | AnimationViewRenderer.Init();
26 | LoadApplication(new App());
27 | }
28 | public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Android.Content.PM.Permission[] grantResults)
29 | {
30 | Xamarin.Essentials.Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults);
31 |
32 | base.OnRequestPermissionsResult(requestCode, permissions, grantResults);
33 | }
34 | }
35 | }
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 | using Android.App;
5 |
6 | // General Information about an assembly is controlled through the following
7 | // set of attributes. Change these attribute values to modify the information
8 | // associated with an assembly.
9 | [assembly: AssemblyTitle("SimpleInputDataValidator.Test.Android")]
10 | [assembly: AssemblyDescription("")]
11 | [assembly: AssemblyConfiguration("")]
12 | [assembly: AssemblyCompany("")]
13 | [assembly: AssemblyProduct("SimpleInputDataValidator.Test.Android")]
14 | [assembly: AssemblyCopyright("Copyright © 2014")]
15 | [assembly: AssemblyTrademark("")]
16 | [assembly: AssemblyCulture("")]
17 | [assembly: ComVisible(false)]
18 |
19 | // Version information for an assembly consists of the following four values:
20 | //
21 | // Major Version
22 | // Minor Version
23 | // Build Number
24 | // Revision
25 | //
26 | // You can specify all the values or you can default the Build and Revision Numbers
27 | // by using the '*' as shown below:
28 | // [assembly: AssemblyVersion("1.0.*")]
29 | [assembly: AssemblyVersion("1.0.0.0")]
30 | [assembly: AssemblyFileVersion("1.0.0.0")]
31 |
32 | // Add some common permissions, these can be removed if not needed
33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)]
34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]
35 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/AboutResources.txt:
--------------------------------------------------------------------------------
1 | Images, layout descriptions, binary blobs and string dictionaries can be included
2 | in your application as resource files. Various Android APIs are designed to
3 | operate on the resource IDs instead of dealing with images, strings or binary blobs
4 | directly.
5 |
6 | For example, a sample Android app that contains a user interface layout (main.xml),
7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
8 | would keep its resources in the "Resources" directory of the application:
9 |
10 | Resources/
11 | drawable-hdpi/
12 | icon.png
13 |
14 | drawable-ldpi/
15 | icon.png
16 |
17 | drawable-mdpi/
18 | icon.png
19 |
20 | layout/
21 | main.xml
22 |
23 | values/
24 | strings.xml
25 |
26 | In order to get the build system to recognize Android resources, set the build action to
27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but
28 | instead operate on resource IDs. When you compile an Android application that uses resources,
29 | the build system will package the resources for distribution and generate a class called
30 | "Resource" that contains the tokens for each one of the resources included. For example,
31 | for the above Resources layout, this is what the Resource class would expose:
32 |
33 | public class Resource {
34 | public class drawable {
35 | public const int icon = 0x123;
36 | }
37 |
38 | public class layout {
39 | public const int main = 0x456;
40 | }
41 |
42 | public class strings {
43 | public const int first_string = 0xabc;
44 | public const int second_string = 0xbcd;
45 | }
46 | }
47 |
48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main
49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first
50 | string in the dictionary file values/strings.xml.
51 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/layout/Tabbar.axml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/layout/Toolbar.axml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-anydpi-v26/icon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-anydpi-v26/icon_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-hdpi/icon.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-hdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-hdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-mdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-mdpi/icon.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-mdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-mdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xhdpi/icon.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xhdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xhdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xxhdpi/icon.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xxhdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xxhdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xxxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xxxhdpi/icon.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFFFFF
4 | #3F51B5
5 | #303F9F
6 | #FF4081
7 |
8 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/Resources/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
26 |
27 |
30 |
31 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.Android/SimpleInputDataValidator.Test.Android.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | AnyCPU
6 | {D19C445A-DB86-4BC5-AB73-2549DA762671}
7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
8 | {c9e5eea5-ca05-42a1-839b-61506e0a37df}
9 | Library
10 | SimpleInputDataValidator.Test.Droid
11 | SimpleInputDataValidator.Test.Android
12 | True
13 | Resources\Resource.designer.cs
14 | Resource
15 | Properties\AndroidManifest.xml
16 | Resources
17 | Assets
18 | false
19 | v9.0
20 | true
21 | Xamarin.Android.Net.AndroidClientHandler
22 |
23 |
24 |
25 |
26 | true
27 | portable
28 | false
29 | bin\Debug
30 | DEBUG;
31 | prompt
32 | 4
33 | None
34 |
35 |
36 | true
37 | portable
38 | true
39 | bin\Release
40 | prompt
41 | 4
42 | true
43 | false
44 |
45 |
46 | True
47 | C:\temp
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 | {24C72BA3-9DB9-4450-B1C5-C9817BD92BBE}
108 | SimpleInputDataValidator.Test
109 |
110 |
111 |
112 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/3541-error.json:
--------------------------------------------------------------------------------
1 | {"v":"5.4.1","fr":24,"ip":0,"op":72,"w":800,"h":600,"nm":"Error","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"bikkuri","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.106],"y":[0.824]},"o":{"x":[0.4],"y":[0]},"n":["0p106_0p824_0p4_0"],"t":36,"s":[-30],"e":[10]},{"i":{"x":[0.575],"y":[1]},"o":{"x":[0.529],"y":[-0.166]},"n":["0p575_1_0p529_-0p166"],"t":41,"s":[10],"e":[0]},{"t":43}],"ix":10},"p":{"a":0,"k":[400,327.477,0],"ix":2},"a":{"a":0,"k":[0,27.454,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.4,0.4,0.4],"y":[0,0,0]},"n":["0_1_0p4_0","0_1_0p4_0","0_1_0p4_0"],"t":35,"s":[0,0,100],"e":[100,100,100]},{"t":40}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.077,12.14],[-3.145,12.14],[-7.035,-27.5],[7.035,-27.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,-3.077],[3.074,0],[0,3.077],[-3.08,0]],"o":[[0,3.077],[-3.08,0],[0,-3.077],[3.074,0]],"v":[[5.525,21.929],[0.003,27.454],[-5.525,21.929],[0.003,16.407]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.121568627656,0.164705887437,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,272.773,0],"ix":2},"a":{"a":0,"k":[0,-27.227,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,-33.488],[0,-20.966]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882354081,0.105882354081,0.105882354081,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":12,"op":132,"st":12,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[413.614,276.42,0],"ix":2},"a":{"a":0,"k":[13.614,-23.58,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[16.744,-29.002],[10.483,-18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":14,"op":134,"st":12,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[423.58,286.386,0],"ix":2},"a":{"a":0,"k":[23.58,-13.614,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[29.002,-16.744],[18.157,-10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":16,"op":136,"st":12,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[427.227,300,0],"ix":2},"a":{"a":0,"k":[27.227,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[33.488,0],[20.966,0]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":18,"op":138,"st":12,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[423.58,313.614,0],"ix":2},"a":{"a":0,"k":[23.58,13.614,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[29.002,16.744],[18.157,10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":20,"op":140,"st":12,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[413.614,323.58,0],"ix":2},"a":{"a":0,"k":[13.614,23.58,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[16.744,29.002],[10.483,18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":22,"op":142,"st":12,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,327.227,0],"ix":2},"a":{"a":0,"k":[0,27.227,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,33.488],[0,20.966]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":24,"op":144,"st":12,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[386.386,323.58,0],"ix":2},"a":{"a":0,"k":[-13.614,23.58,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-16.744,29.002],[-10.483,18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":26,"op":146,"st":12,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[376.42,313.614,0],"ix":2},"a":{"a":0,"k":[-23.58,13.614,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-29.002,16.744],[-18.157,10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":28,"op":148,"st":12,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[372.773,300,0],"ix":2},"a":{"a":0,"k":[-27.227,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-33.488,0],[-20.966,0]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":30,"op":150,"st":12,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[376.42,286.386,0],"ix":2},"a":{"a":0,"k":[-23.58,-13.614,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-29.002,-16.744],[-18.157,-10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":32,"op":152,"st":12,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[386.386,276.42,0],"ix":2},"a":{"a":0,"k":[-13.614,-23.58,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-16.744,-29.002],[-10.483,-18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.105882352941,0.105882352941,0.105882352941,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":1,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.4],"y":[0]},"n":["0_1_0p4_0"],"t":34,"s":[100],"e":[0]},{"t":37}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":34,"op":154,"st":12,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"レイヤー 12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-16.744,29.002],[-10.483,18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"レイヤー 11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[10.483,-18.157],[16.744,-29.002]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"レイヤー 10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-29.002,16.744],[-18.157,10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"レイヤー 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[18.157,-10.483],[29.002,-16.744]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"レイヤー 8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-33.488,0],[-20.966,0]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"レイヤー 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[20.966,0],[33.488,0]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"レイヤー 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-29.002,-16.744],[-18.157,-10.483]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"レイヤー 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[18.157,10.483],[29.002,16.744]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"レイヤー 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-16.744,-29.002],[-10.483,-18.157]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"レイヤー 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[10.483,18.157],[16.744,29.002]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"レイヤー 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,-33.488],[0,-20.966]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"レイヤー 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,20.966],[0,33.488]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.901960790157,0.901960790157,0.901960790157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0}],"markers":[]}
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/App.xaml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using Lottie.Forms.UWP.Renderers;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.IO;
5 | using System.Linq;
6 | using System.Runtime.InteropServices.WindowsRuntime;
7 | using Windows.ApplicationModel;
8 | using Windows.ApplicationModel.Activation;
9 | using Windows.Foundation;
10 | using Windows.Foundation.Collections;
11 | using Windows.UI.Xaml;
12 | using Windows.UI.Xaml.Controls;
13 | using Windows.UI.Xaml.Controls.Primitives;
14 | using Windows.UI.Xaml.Data;
15 | using Windows.UI.Xaml.Input;
16 | using Windows.UI.Xaml.Media;
17 | using Windows.UI.Xaml.Navigation;
18 |
19 | namespace SimpleInputDataValidator.Test.UWP
20 | {
21 | ///
22 | /// Provides application-specific behavior to supplement the default Application class.
23 | ///
24 | sealed partial class App : Application
25 | {
26 | ///
27 | /// Initializes the singleton application object. This is the first line of authored code
28 | /// executed, and as such is the logical equivalent of main() or WinMain().
29 | ///
30 | public App()
31 | {
32 | this.InitializeComponent();
33 | this.Suspending += OnSuspending;
34 | }
35 |
36 | ///
37 | /// Invoked when the application is launched normally by the end user. Other entry points
38 | /// will be used such as when the application is launched to open a specific file.
39 | ///
40 | /// Details about the launch request and process.
41 | protected override void OnLaunched(LaunchActivatedEventArgs e)
42 | {
43 |
44 |
45 | Frame rootFrame = Window.Current.Content as Frame;
46 |
47 | // Do not repeat app initialization when the Window already has content,
48 | // just ensure that the window is active
49 | if (rootFrame == null)
50 | {
51 | // Create a Frame to act as the navigation context and navigate to the first page
52 | rootFrame = new Frame();
53 |
54 | rootFrame.NavigationFailed += OnNavigationFailed;
55 |
56 |
57 | Xamarin.Forms.Forms.Init(e);
58 | AnimationViewRenderer.Init();
59 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
60 | {
61 | //TODO: Load state from previously suspended application
62 | }
63 |
64 | // Place the frame in the current Window
65 | Window.Current.Content = rootFrame;
66 | }
67 |
68 | if (rootFrame.Content == null)
69 | {
70 | // When the navigation stack isn't restored navigate to the first page,
71 | // configuring the new page by passing required information as a navigation
72 | // parameter
73 | rootFrame.Navigate(typeof(MainPage), e.Arguments);
74 | }
75 | // Ensure the current window is active
76 | Window.Current.Activate();
77 | }
78 |
79 | ///
80 | /// Invoked when Navigation to a certain page fails
81 | ///
82 | /// The Frame which failed navigation
83 | /// Details about the navigation failure
84 | void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
85 | {
86 | throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
87 | }
88 |
89 | ///
90 | /// Invoked when application execution is being suspended. Application state is saved
91 | /// without knowing whether the application will be terminated or resumed with the contents
92 | /// of memory still intact.
93 | ///
94 | /// The source of the suspend request.
95 | /// Details about the suspend request.
96 | private void OnSuspending(object sender, SuspendingEventArgs e)
97 | {
98 | var deferral = e.SuspendingOperation.GetDeferral();
99 | //TODO: Save application state and stop any background activity
100 | deferral.Complete();
101 | }
102 | }
103 | }
104 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/LargeTile.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/LargeTile.scale-100.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/LargeTile.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/LargeTile.scale-200.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/LargeTile.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/LargeTile.scale-400.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SmallTile.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SmallTile.scale-100.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SmallTile.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SmallTile.scale-200.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SmallTile.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SmallTile.scale-400.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.targetsize-16.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.targetsize-256.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Square44x44Logo.targetsize-48.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/StoreLogo.backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/StoreLogo.backup.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/StoreLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/StoreLogo.scale-200.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/StoreLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/StoreLogo.scale-400.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Assets/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.IO;
4 | using System.Linq;
5 | using System.Runtime.InteropServices.WindowsRuntime;
6 | using Windows.Foundation;
7 | using Windows.Foundation.Collections;
8 | using Windows.UI.Xaml;
9 | using Windows.UI.Xaml.Controls;
10 | using Windows.UI.Xaml.Controls.Primitives;
11 | using Windows.UI.Xaml.Data;
12 | using Windows.UI.Xaml.Input;
13 | using Windows.UI.Xaml.Media;
14 | using Windows.UI.Xaml.Navigation;
15 |
16 | namespace SimpleInputDataValidator.Test.UWP
17 | {
18 | public sealed partial class MainPage
19 | {
20 | public MainPage()
21 | {
22 | this.InitializeComponent();
23 |
24 | LoadApplication(new SimpleInputDataValidator.Test.App());
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Package.appxmanifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
13 |
14 |
15 |
16 |
17 | SimpleInputDataValidator.Test.UWP
18 | 7183870b-ff01-46a9-8a8f-19d9e022ab91
19 | Assets\StoreLogo.png
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
34 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("SimpleInputDataValidator.Test.UWP")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("SimpleInputDataValidator.Test.UWP")]
13 | [assembly: AssemblyCopyright("Copyright © 2015")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Version information for an assembly consists of the following four values:
18 | //
19 | // Major Version
20 | // Minor Version
21 | // Build Number
22 | // Revision
23 | //
24 | // You can specify all the values or you can default the Build and Revision Numbers
25 | // by using the '*' as shown below:
26 | // [assembly: AssemblyVersion("1.0.*")]
27 | [assembly: AssemblyVersion("1.0.0.0")]
28 | [assembly: AssemblyFileVersion("1.0.0.0")]
29 | [assembly: ComVisible(false)]
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/Properties/Default.rd.xml:
--------------------------------------------------------------------------------
1 |
17 |
18 |
19 |
20 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.UWP/SimpleInputDataValidator.Test.UWP.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | x86
7 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}
8 | AppContainerExe
9 | Properties
10 | SimpleInputDataValidator.Test.UWP
11 | SimpleInputDataValidator.Test.UWP
12 | en-US
13 | UAP
14 | 10.0.16299.0
15 | 10.0.16299.0
16 | 14
17 | true
18 | 512
19 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
20 | SimpleInputDataValidator.Test.UWP_TemporaryKey.pfx
21 |
22 |
23 | true
24 | bin\ARM\Debug\
25 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
26 | ;2008
27 | full
28 | ARM
29 | false
30 | prompt
31 | true
32 |
33 |
34 | bin\ARM\Release\
35 | TRACE;NETFX_CORE;WINDOWS_UWP
36 | true
37 | ;2008
38 | pdbonly
39 | ARM
40 | false
41 | prompt
42 | true
43 | true
44 |
45 |
46 | true
47 | bin\x64\Debug\
48 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
49 | ;2008
50 | full
51 | x64
52 | false
53 | prompt
54 | true
55 |
56 |
57 | bin\x64\Release\
58 | TRACE;NETFX_CORE;WINDOWS_UWP
59 | true
60 | ;2008
61 | pdbonly
62 | x64
63 | false
64 | prompt
65 | true
66 | true
67 |
68 |
69 | true
70 | bin\x86\Debug\
71 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
72 | ;2008
73 | full
74 | x86
75 | false
76 | prompt
77 | true
78 |
79 |
80 | bin\x86\Release\
81 | TRACE;NETFX_CORE;WINDOWS_UWP
82 | true
83 | ;2008
84 | pdbonly
85 | x86
86 | false
87 | prompt
88 | true
89 | true
90 |
91 |
92 |
93 | App.xaml
94 |
95 |
96 | MainPage.xaml
97 |
98 |
99 |
100 |
101 |
102 | Designer
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 | MSBuild:Compile
138 | Designer
139 |
140 |
141 | MSBuild:Compile
142 | Designer
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 | {ccce46f7-c8b2-495a-8fc3-5d8e2abb09e3}
153 | SimpleInputDataValidator
154 |
155 |
156 | {24C72BA3-9DB9-4450-B1C5-C9817BD92BBE}
157 | SimpleInputDataValidator.Test
158 |
159 |
160 |
161 |
162 |
163 |
164 | 14.0
165 |
166 |
167 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/AppDelegate.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using Lottie.Forms.iOS.Renderers;
7 | using UIKit;
8 |
9 | namespace SimpleInputDataValidator.Test.iOS
10 | {
11 | // The UIApplicationDelegate for the application. This class is responsible for launching the
12 | // User Interface of the application, as well as listening (and optionally responding) to
13 | // application events from iOS.
14 | [Register("AppDelegate")]
15 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
16 | {
17 | //
18 | // This method is invoked when the application has loaded and is ready to run. In this
19 | // method you should instantiate the window, load the UI into it and then make the window
20 | // visible.
21 | //
22 | // You have 17 seconds to return from this method, or iOS will terminate your application.
23 | //
24 | public override bool FinishedLaunching(UIApplication app, NSDictionary options)
25 | {
26 | global::Xamarin.Forms.Forms.Init();
27 | AnimationViewRenderer.Init();
28 | LoadApplication(new App());
29 |
30 | return base.FinishedLaunching(app, options);
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images": [
3 | {
4 | "scale": "2x",
5 | "size": "20x20",
6 | "idiom": "iphone",
7 | "filename": "Icon40.png"
8 | },
9 | {
10 | "scale": "3x",
11 | "size": "20x20",
12 | "idiom": "iphone",
13 | "filename": "Icon60.png"
14 | },
15 | {
16 | "scale": "2x",
17 | "size": "29x29",
18 | "idiom": "iphone",
19 | "filename": "Icon58.png"
20 | },
21 | {
22 | "scale": "3x",
23 | "size": "29x29",
24 | "idiom": "iphone",
25 | "filename": "Icon87.png"
26 | },
27 | {
28 | "scale": "2x",
29 | "size": "40x40",
30 | "idiom": "iphone",
31 | "filename": "Icon80.png"
32 | },
33 | {
34 | "scale": "3x",
35 | "size": "40x40",
36 | "idiom": "iphone",
37 | "filename": "Icon120.png"
38 | },
39 | {
40 | "scale": "2x",
41 | "size": "60x60",
42 | "idiom": "iphone",
43 | "filename": "Icon120.png"
44 | },
45 | {
46 | "scale": "3x",
47 | "size": "60x60",
48 | "idiom": "iphone",
49 | "filename": "Icon180.png"
50 | },
51 | {
52 | "scale": "1x",
53 | "size": "20x20",
54 | "idiom": "ipad",
55 | "filename": "Icon20.png"
56 | },
57 | {
58 | "scale": "2x",
59 | "size": "20x20",
60 | "idiom": "ipad",
61 | "filename": "Icon40.png"
62 | },
63 | {
64 | "scale": "1x",
65 | "size": "29x29",
66 | "idiom": "ipad",
67 | "filename": "Icon29.png"
68 | },
69 | {
70 | "scale": "2x",
71 | "size": "29x29",
72 | "idiom": "ipad",
73 | "filename": "Icon58.png"
74 | },
75 | {
76 | "scale": "1x",
77 | "size": "40x40",
78 | "idiom": "ipad",
79 | "filename": "Icon40.png"
80 | },
81 | {
82 | "scale": "2x",
83 | "size": "40x40",
84 | "idiom": "ipad",
85 | "filename": "Icon80.png"
86 | },
87 | {
88 | "scale": "1x",
89 | "size": "76x76",
90 | "idiom": "ipad",
91 | "filename": "Icon76.png"
92 | },
93 | {
94 | "scale": "2x",
95 | "size": "76x76",
96 | "idiom": "ipad",
97 | "filename": "Icon152.png"
98 | },
99 | {
100 | "scale": "2x",
101 | "size": "83.5x83.5",
102 | "idiom": "ipad",
103 | "filename": "Icon167.png"
104 | },
105 | {
106 | "scale": "1x",
107 | "size": "1024x1024",
108 | "idiom": "ios-marketing",
109 | "filename": "Icon1024.png"
110 | }
111 | ],
112 | "properties": {},
113 | "info": {
114 | "version": 1,
115 | "author": "xcode"
116 | }
117 | }
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | UIDeviceFamily
6 |
7 | 1
8 | 2
9 |
10 | UISupportedInterfaceOrientations
11 |
12 | UIInterfaceOrientationPortrait
13 | UIInterfaceOrientationLandscapeLeft
14 | UIInterfaceOrientationLandscapeRight
15 |
16 | UISupportedInterfaceOrientations~ipad
17 |
18 | UIInterfaceOrientationPortrait
19 | UIInterfaceOrientationPortraitUpsideDown
20 | UIInterfaceOrientationLandscapeLeft
21 | UIInterfaceOrientationLandscapeRight
22 |
23 | MinimumOSVersion
24 | 8.0
25 | CFBundleDisplayName
26 | SimpleInputDataValidator.Test
27 | CFBundleIdentifier
28 | com.companyname.SimpleInputDataValidator.Test
29 | CFBundleVersion
30 | 1.0
31 | UILaunchStoryboardName
32 | LaunchScreen
33 | CFBundleName
34 | SimpleInputDataValidator.Test
35 | XSAppIconAssets
36 | Assets.xcassets/AppIcon.appiconset
37 |
38 |
39 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace SimpleInputDataValidator.Test.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("SimpleInputDataValidator.Test.iOS")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("SimpleInputDataValidator.Test.iOS")]
13 | [assembly: AssemblyCopyright("Copyright © 2014")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Setting ComVisible to false makes the types in this assembly not visible
18 | // to COM components. If you need to access a type in this assembly from
19 | // COM, set the ComVisible attribute to true on that type.
20 | [assembly: ComVisible(false)]
21 |
22 | // The following GUID is for the ID of the typelib if this project is exposed to COM
23 | [assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")]
24 |
25 | // Version information for an assembly consists of the following four values:
26 | //
27 | // Major Version
28 | // Minor Version
29 | // Build Number
30 | // Revision
31 | //
32 | // You can specify all the values or you can default the Build and Revision Numbers
33 | // by using the '*' as shown below:
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PieEatingNinjas/SimpleDataValidator/0b781931a64de726b4dfe4eb05da7d8337a5e0d5/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/Resources/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.iOS/SimpleInputDataValidator.Test.iOS.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | iPhoneSimulator
6 | 8.0.30703
7 | 2.0
8 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}
9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
10 | {6143fdea-f3c2-4a09-aafa-6e230626515e}
11 | Exe
12 | SimpleInputDataValidator.Test.iOS
13 | Resources
14 | SimpleInputDataValidator.Test.iOS
15 | true
16 | NSUrlSessionHandler
17 |
18 |
19 | true
20 | full
21 | false
22 | bin\iPhoneSimulator\Debug
23 | DEBUG
24 | prompt
25 | 4
26 | false
27 | x86_64
28 | None
29 | true
30 |
31 |
32 | none
33 | true
34 | bin\iPhoneSimulator\Release
35 | prompt
36 | 4
37 | None
38 | x86_64
39 | false
40 |
41 |
42 | true
43 | full
44 | false
45 | bin\iPhone\Debug
46 | DEBUG
47 | prompt
48 | 4
49 | false
50 | ARM64
51 | iPhone Developer
52 | true
53 | Entitlements.plist
54 |
55 |
56 | none
57 | true
58 | bin\iPhone\Release
59 | prompt
60 | 4
61 | ARM64
62 | false
63 | iPhone Developer
64 | Entitlements.plist
65 |
66 |
67 | True
68 | C:\temp
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 | false
82 |
83 |
84 | false
85 |
86 |
87 | false
88 |
89 |
90 | false
91 |
92 |
93 | false
94 |
95 |
96 | false
97 |
98 |
99 | false
100 |
101 |
102 | false
103 |
104 |
105 | false
106 |
107 |
108 | false
109 |
110 |
111 | false
112 |
113 |
114 | false
115 |
116 |
117 | false
118 |
119 |
120 | false
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 | {24C72BA3-9DB9-4450-B1C5-C9817BD92BBE}
139 | SimpleInputDataValidator.Test
140 |
141 |
142 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test/AnimationViewPlayAt.cs:
--------------------------------------------------------------------------------
1 | using Lottie.Forms;
2 | using Xamarin.Forms;
3 |
4 | namespace SimpleInputDataValidator.Test
5 | {
6 | public class AnimationViewPlayAt
7 | {
8 | public static readonly BindableProperty PlayAtProgressToProperty =
9 | BindableProperty.CreateAttached("PlayAtProgressTo", typeof(float), typeof(AnimationView), 1f, propertyChanged: OnPlayAtProgressToChanged);
10 |
11 | private static void OnPlayAtProgressToChanged(BindableObject bindable, object oldValue, object newValue)
12 | {
13 | SetPlayAtProgressTo(bindable, (float)newValue);
14 | }
15 |
16 | public static float GetPlayAtProgressTo(BindableObject view)
17 | {
18 | return (float)view.GetValue(PlayAtProgressToProperty);
19 | }
20 |
21 | public static void SetPlayAtProgressTo(BindableObject view, float value)
22 | {
23 | view.SetValue(PlayAtProgressToProperty, value);
24 | }
25 |
26 |
27 | public static readonly BindableProperty PlayAtProgressFromProperty =
28 | BindableProperty.CreateAttached("PlayAtProgressFrom", typeof(float), typeof(AnimationView), 0f, propertyChanged: OnPlayAtProgressFromChanged);
29 |
30 | private static void OnPlayAtProgressFromChanged(BindableObject bindable, object oldValue, object newValue)
31 | {
32 | SetPlayAtProgressFrom(bindable, (float)newValue);
33 | }
34 |
35 | public static float GetPlayAtProgressFrom(BindableObject view)
36 | {
37 | return (float)view.GetValue(PlayAtProgressFromProperty);
38 | }
39 |
40 | public static void SetPlayAtProgressFrom(BindableObject view, float value)
41 | {
42 | view.SetValue(PlayAtProgressFromProperty, value);
43 | }
44 |
45 |
46 | public static readonly BindableProperty StartPlayAtProgressSegmentProperty =
47 | BindableProperty.CreateAttached("StartPlayAtProgressSegment", typeof(bool), typeof(AnimationView), false, propertyChanged: OnStartPlayAtProgressSegmentChanged);
48 |
49 | private static void OnStartPlayAtProgressSegmentChanged(BindableObject bindable, object oldValue, object newValue)
50 | {
51 | SetStartPlayAtProgressSegment(bindable, (bool)newValue);
52 | }
53 |
54 | public static bool GetStartPlayAtProgressSegment(BindableObject view)
55 | {
56 | return (bool)view.GetValue(StartPlayAtProgressSegmentProperty);
57 | }
58 |
59 | public static void SetStartPlayAtProgressSegment(BindableObject view, bool value)
60 | {
61 | view.SetValue(StartPlayAtProgressSegmentProperty, value);
62 |
63 | if(value)
64 | (view as AnimationView).PlayProgressSegment(
65 | GetPlayAtProgressFrom(view),
66 | GetPlayAtProgressTo(view));
67 | }
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test/App.xaml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
32 |
33 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using Lottie.Forms;
2 | using System;
3 | using Xamarin.Forms;
4 | using Xamarin.Forms.Xaml;
5 |
6 | namespace SimpleInputDataValidator.Test
7 | {
8 | public partial class App : Application
9 | {
10 | public App()
11 | {
12 | InitializeComponent();
13 | AnimationView view = new AnimationView();
14 | MainPage = new MainPage();
15 | }
16 |
17 | protected override void OnStart()
18 | {
19 | // Handle when your app starts
20 | }
21 |
22 | protected override void OnSleep()
23 | {
24 | // Handle when your app sleeps
25 | }
26 |
27 | protected override void OnResume()
28 | {
29 | // Handle when your app resumes
30 | }
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms.Xaml;
2 |
3 | [assembly: XamlCompilation(XamlCompilationOptions.Compile)]
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.ComponentModel;
4 | using System.Linq;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 | using Xamarin.Forms;
8 |
9 | namespace SimpleInputDataValidator.Test
10 | {
11 | // Learn more about making custom code visible in the Xamarin.Forms previewer
12 | // by visiting https://aka.ms/xamarinforms-previewer
13 | [DesignTimeVisible(false)]
14 | public partial class MainPage : ContentPage
15 | {
16 | public MainPage()
17 | {
18 | BindingContext = new MainPageViewModel();
19 | InitializeComponent();
20 | }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test/MainPageViewModel.cs:
--------------------------------------------------------------------------------
1 | using SimpleInputDataValidator.Validators;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Windows.Input;
5 | using Xamarin.Forms;
6 |
7 | namespace SimpleInputDataValidator.Test
8 | {
9 | public class MainPageViewModel : ValidationViewModelBase
10 | {
11 | private string _input;
12 |
13 | public string Input
14 | {
15 | get { return _input; }
16 | set
17 | {
18 | _input = value;
19 | RaisePropertyChanged();
20 | Validate();
21 | Validate(nameof(Input2));
22 | }
23 | }
24 |
25 | private string _input2;
26 |
27 | public string Input2
28 | {
29 | get { return _input2; }
30 | set
31 | {
32 | _input2 = value;
33 | RaisePropertyChanged();
34 | Validate();
35 | }
36 | }
37 |
38 | private string _input3;
39 |
40 | public string Input3
41 | {
42 | get { return _input3; }
43 | set
44 | {
45 | _input3 = value;
46 | RaisePropertyChanged();
47 | Validate();
48 | }
49 | }
50 |
51 | private bool _showValidationSummary;
52 |
53 | public bool ShowValidationSummary
54 | {
55 | get { return _showValidationSummary; }
56 | set { _showValidationSummary = value; RaisePropertyChanged(); }
57 | }
58 |
59 |
60 | ICommand _submitCommand;
61 | public ICommand SubmitCommand
62 | {
63 | get => _submitCommand ?? (_submitCommand = new Command(ValidateAndSave));
64 | }
65 |
66 | public MainPageViewModel()
67 | {
68 | Validators = new List()
69 | {
70 | new StringNotNullOrEmptyValidator(nameof(Input), () => Input, "Value cannot be null or empty"),
71 | new ValidatorBase(nameof(Input), InputShouldBeInterger, "Value should be a valid number"),
72 | new ValidatorBase(nameof(Input2), InputsShouldBeDifferent, "Value should not be the same as the previous one"),
73 | new RegexValidator(nameof(Input3), () => Input3, @"^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$", "Not a valid email address")
74 | };
75 | }
76 |
77 | private void ValidateAndSave(object obj)
78 | {
79 | ValidateAll();
80 | if (ErrorStateManager.HasError)
81 | {
82 | ShowValidationSummary = true;
83 | }
84 | else
85 | {
86 | ShowValidationSummary = false;
87 | }
88 | }
89 |
90 | private bool InputsShouldBeDifferent()
91 | => Input != Input2;
92 |
93 | private bool InputShouldBeInterger()
94 | => int.TryParse(Input, out int _);
95 | }
96 | }
97 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test/SimpleInputDataValidator.Test.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 | true
6 |
7 |
8 |
9 | pdbonly
10 | true
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 16
4 | VisualStudioVersion = 16.0.29009.5
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleInputDataValidator.Test.UWP", "SimpleInputDataValidator.Test\SimpleInputDataValidator.Test.UWP\SimpleInputDataValidator.Test.UWP.csproj", "{8144026A-0D0B-4338-BFBC-50FDFBF827C5}"
7 | EndProject
8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleInputDataValidator.Test.Android", "SimpleInputDataValidator.Test\SimpleInputDataValidator.Test.Android\SimpleInputDataValidator.Test.Android.csproj", "{D19C445A-DB86-4BC5-AB73-2549DA762671}"
9 | EndProject
10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleInputDataValidator.Test.iOS", "SimpleInputDataValidator.Test\SimpleInputDataValidator.Test.iOS\SimpleInputDataValidator.Test.iOS.csproj", "{E6B5A92A-0D39-4052-81FD-F5827FC45595}"
11 | EndProject
12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleInputDataValidator.Test", "SimpleInputDataValidator.Test\SimpleInputDataValidator.Test\SimpleInputDataValidator.Test.csproj", "{569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}"
13 | EndProject
14 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleInputDataValidator", "SimpleInputDataValidator\SimpleInputDataValidator.csproj", "{CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}"
15 | EndProject
16 | Global
17 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
18 | Debug|Any CPU = Debug|Any CPU
19 | Debug|ARM = Debug|ARM
20 | Debug|iPhone = Debug|iPhone
21 | Debug|iPhoneSimulator = Debug|iPhoneSimulator
22 | Debug|x64 = Debug|x64
23 | Debug|x86 = Debug|x86
24 | Release|Any CPU = Release|Any CPU
25 | Release|ARM = Release|ARM
26 | Release|iPhone = Release|iPhone
27 | Release|iPhoneSimulator = Release|iPhoneSimulator
28 | Release|x64 = Release|x64
29 | Release|x86 = Release|x86
30 | EndGlobalSection
31 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
32 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|Any CPU.ActiveCfg = Debug|x86
33 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|Any CPU.Build.0 = Debug|x86
34 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|Any CPU.Deploy.0 = Debug|x86
35 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|ARM.ActiveCfg = Debug|ARM
36 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|ARM.Build.0 = Debug|ARM
37 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|ARM.Deploy.0 = Debug|ARM
38 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|iPhone.ActiveCfg = Debug|x86
39 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|iPhone.Build.0 = Debug|x86
40 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|iPhone.Deploy.0 = Debug|x86
41 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86
42 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|iPhoneSimulator.Build.0 = Debug|x86
43 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|iPhoneSimulator.Deploy.0 = Debug|x86
44 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|x64.ActiveCfg = Debug|x64
45 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|x64.Build.0 = Debug|x64
46 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|x64.Deploy.0 = Debug|x64
47 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|x86.ActiveCfg = Debug|x86
48 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|x86.Build.0 = Debug|x86
49 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Debug|x86.Deploy.0 = Debug|x86
50 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|Any CPU.ActiveCfg = Release|x86
51 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|Any CPU.Build.0 = Release|x86
52 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|Any CPU.Deploy.0 = Release|x86
53 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|ARM.ActiveCfg = Release|ARM
54 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|ARM.Build.0 = Release|ARM
55 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|ARM.Deploy.0 = Release|ARM
56 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|iPhone.ActiveCfg = Release|x86
57 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|iPhone.Build.0 = Release|x86
58 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|iPhone.Deploy.0 = Release|x86
59 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|iPhoneSimulator.ActiveCfg = Release|x86
60 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|iPhoneSimulator.Build.0 = Release|x86
61 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|iPhoneSimulator.Deploy.0 = Release|x86
62 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|x64.ActiveCfg = Release|x64
63 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|x64.Build.0 = Release|x64
64 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|x64.Deploy.0 = Release|x64
65 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|x86.ActiveCfg = Release|x86
66 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|x86.Build.0 = Release|x86
67 | {8144026A-0D0B-4338-BFBC-50FDFBF827C5}.Release|x86.Deploy.0 = Release|x86
68 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
69 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|Any CPU.Build.0 = Debug|Any CPU
70 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
71 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|ARM.ActiveCfg = Debug|Any CPU
72 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|ARM.Build.0 = Debug|Any CPU
73 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|ARM.Deploy.0 = Debug|Any CPU
74 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|iPhone.ActiveCfg = Debug|Any CPU
75 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|iPhone.Build.0 = Debug|Any CPU
76 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|iPhone.Deploy.0 = Debug|Any CPU
77 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
78 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
79 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
80 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|x64.ActiveCfg = Debug|Any CPU
81 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|x64.Build.0 = Debug|Any CPU
82 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|x64.Deploy.0 = Debug|Any CPU
83 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|x86.ActiveCfg = Debug|Any CPU
84 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|x86.Build.0 = Debug|Any CPU
85 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Debug|x86.Deploy.0 = Debug|Any CPU
86 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|Any CPU.ActiveCfg = Release|Any CPU
87 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|Any CPU.Build.0 = Release|Any CPU
88 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|Any CPU.Deploy.0 = Release|Any CPU
89 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|ARM.ActiveCfg = Release|Any CPU
90 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|ARM.Build.0 = Release|Any CPU
91 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|ARM.Deploy.0 = Release|Any CPU
92 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|iPhone.ActiveCfg = Release|Any CPU
93 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|iPhone.Build.0 = Release|Any CPU
94 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|iPhone.Deploy.0 = Release|Any CPU
95 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
96 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
97 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
98 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|x64.ActiveCfg = Release|Any CPU
99 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|x64.Build.0 = Release|Any CPU
100 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|x64.Deploy.0 = Release|Any CPU
101 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|x86.ActiveCfg = Release|Any CPU
102 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|x86.Build.0 = Release|Any CPU
103 | {D19C445A-DB86-4BC5-AB73-2549DA762671}.Release|x86.Deploy.0 = Release|Any CPU
104 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|Any CPU.ActiveCfg = Debug|iPhone
105 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|Any CPU.Build.0 = Debug|iPhone
106 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|Any CPU.Deploy.0 = Debug|iPhone
107 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|ARM.ActiveCfg = Debug|iPhoneSimulator
108 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|ARM.Build.0 = Debug|iPhoneSimulator
109 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|ARM.Deploy.0 = Debug|iPhoneSimulator
110 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|iPhone.ActiveCfg = Debug|iPhone
111 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|iPhone.Build.0 = Debug|iPhone
112 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|iPhone.Deploy.0 = Debug|iPhone
113 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
114 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
115 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|iPhoneSimulator.Deploy.0 = Debug|iPhoneSimulator
116 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|x64.ActiveCfg = Debug|iPhone
117 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|x64.Build.0 = Debug|iPhone
118 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|x64.Deploy.0 = Debug|iPhone
119 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|x86.ActiveCfg = Debug|iPhone
120 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|x86.Build.0 = Debug|iPhone
121 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Debug|x86.Deploy.0 = Debug|iPhone
122 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|Any CPU.ActiveCfg = Release|iPhone
123 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|Any CPU.Build.0 = Release|iPhone
124 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|Any CPU.Deploy.0 = Release|iPhone
125 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|ARM.ActiveCfg = Release|iPhone
126 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|ARM.Build.0 = Release|iPhone
127 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|ARM.Deploy.0 = Release|iPhone
128 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|iPhone.ActiveCfg = Release|iPhone
129 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|iPhone.Build.0 = Release|iPhone
130 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|iPhone.Deploy.0 = Release|iPhone
131 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
132 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
133 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|iPhoneSimulator.Deploy.0 = Release|iPhoneSimulator
134 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|x64.ActiveCfg = Release|iPhone
135 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|x64.Build.0 = Release|iPhone
136 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|x64.Deploy.0 = Release|iPhone
137 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|x86.ActiveCfg = Release|iPhone
138 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|x86.Build.0 = Release|iPhone
139 | {E6B5A92A-0D39-4052-81FD-F5827FC45595}.Release|x86.Deploy.0 = Release|iPhone
140 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
141 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|Any CPU.Build.0 = Debug|Any CPU
142 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
143 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|ARM.ActiveCfg = Debug|Any CPU
144 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|ARM.Build.0 = Debug|Any CPU
145 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|ARM.Deploy.0 = Debug|Any CPU
146 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|iPhone.ActiveCfg = Debug|Any CPU
147 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|iPhone.Build.0 = Debug|Any CPU
148 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|iPhone.Deploy.0 = Debug|Any CPU
149 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
150 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
151 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
152 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|x64.ActiveCfg = Debug|Any CPU
153 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|x64.Build.0 = Debug|Any CPU
154 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|x64.Deploy.0 = Debug|Any CPU
155 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|x86.ActiveCfg = Debug|Any CPU
156 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|x86.Build.0 = Debug|Any CPU
157 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Debug|x86.Deploy.0 = Debug|Any CPU
158 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|Any CPU.ActiveCfg = Release|Any CPU
159 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|Any CPU.Build.0 = Release|Any CPU
160 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|Any CPU.Deploy.0 = Release|Any CPU
161 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|ARM.ActiveCfg = Release|Any CPU
162 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|ARM.Build.0 = Release|Any CPU
163 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|ARM.Deploy.0 = Release|Any CPU
164 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|iPhone.ActiveCfg = Release|Any CPU
165 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|iPhone.Build.0 = Release|Any CPU
166 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|iPhone.Deploy.0 = Release|Any CPU
167 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
168 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
169 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
170 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|x64.ActiveCfg = Release|Any CPU
171 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|x64.Build.0 = Release|Any CPU
172 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|x64.Deploy.0 = Release|Any CPU
173 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|x86.ActiveCfg = Release|Any CPU
174 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|x86.Build.0 = Release|Any CPU
175 | {569CB0CB-F4CA-4C0B-A733-7C09DCF6BABA}.Release|x86.Deploy.0 = Release|Any CPU
176 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
177 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
178 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|ARM.ActiveCfg = Debug|Any CPU
179 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|ARM.Build.0 = Debug|Any CPU
180 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|iPhone.ActiveCfg = Debug|Any CPU
181 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|iPhone.Build.0 = Debug|Any CPU
182 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
183 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
184 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|x64.ActiveCfg = Debug|Any CPU
185 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|x64.Build.0 = Debug|Any CPU
186 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|x86.ActiveCfg = Debug|Any CPU
187 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Debug|x86.Build.0 = Debug|Any CPU
188 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
189 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|Any CPU.Build.0 = Release|Any CPU
190 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|ARM.ActiveCfg = Release|Any CPU
191 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|ARM.Build.0 = Release|Any CPU
192 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|iPhone.ActiveCfg = Release|Any CPU
193 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|iPhone.Build.0 = Release|Any CPU
194 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
195 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
196 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|x64.ActiveCfg = Release|Any CPU
197 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|x64.Build.0 = Release|Any CPU
198 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|x86.ActiveCfg = Release|Any CPU
199 | {CCCE46F7-C8B2-495A-8FC3-5D8E2ABB09E3}.Release|x86.Build.0 = Release|Any CPU
200 | EndGlobalSection
201 | GlobalSection(SolutionProperties) = preSolution
202 | HideSolutionNode = FALSE
203 | EndGlobalSection
204 | GlobalSection(ExtensibilityGlobals) = postSolution
205 | SolutionGuid = {7E1B9008-8E4E-462D-AE01-516DC0C5D5E7}
206 | EndGlobalSection
207 | EndGlobal
208 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/DefaultTemplates.xaml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
34 |
37 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/DefaultTemplates.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 | using Xamarin.Forms.Xaml;
9 |
10 | namespace SimpleInputDataValidator
11 | {
12 | [XamlCompilation(XamlCompilationOptions.Compile)]
13 |
14 | public partial class DefaultTemplates : ResourceDictionary
15 | {
16 | public DefaultTemplates()
17 | {
18 | InitializeComponent();
19 | }
20 | }
21 | }
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/ErrorState.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using System.ComponentModel;
3 | using System.Linq;
4 | using System.Runtime.CompilerServices;
5 |
6 | namespace SimpleInputDataValidator
7 | {
8 | public class ErrorState : INotifyPropertyChanged
9 | {
10 | public IReadOnlyCollection Messages { get; private set; }
11 | readonly List messages;
12 |
13 | public ErrorState()
14 | {
15 | messages = new List();
16 | Messages = messages.AsReadOnly();
17 | }
18 |
19 | public ErrorState(string message)
20 | {
21 | messages = new List
22 | {
23 | message
24 | };
25 | Messages = messages.AsReadOnly();
26 | UpdateHasError();
27 | }
28 |
29 | public void Append(string message)
30 | {
31 | messages.Add(message);
32 | Messages = messages.AsReadOnly();
33 | RaisePropertyChanged(nameof(Messages));
34 | UpdateHasError();
35 | }
36 |
37 | private void UpdateHasError()
38 | => HasError = messages?.Any() ?? false;
39 |
40 | bool _hasError;
41 | public bool HasError
42 | {
43 | get => _hasError;
44 | set
45 | {
46 | if (_hasError != value)
47 | {
48 | _hasError = value;
49 | RaisePropertyChanged();
50 | }
51 | }
52 | }
53 |
54 | public void RaisePropertyChanged([CallerMemberName]string property = null)
55 | => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(property));
56 |
57 | public event PropertyChangedEventHandler PropertyChanged;
58 |
59 | internal void Remove(string message)
60 | {
61 | if (messages.Contains(message))
62 | {
63 | messages.Remove(message);
64 | Messages = messages.AsReadOnly();
65 | RaisePropertyChanged(nameof(Messages));
66 | UpdateHasError();
67 | }
68 | }
69 | }
70 | }
71 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/ErrorStateManager.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using System.ComponentModel;
3 | using System.Linq;
4 |
5 | namespace SimpleInputDataValidator
6 | {
7 | public class ErrorStateManager : INotifyPropertyChanged
8 | {
9 | Dictionary states = new Dictionary();
10 |
11 | public event PropertyChangedEventHandler PropertyChanged;
12 |
13 | public void Add(string key, string description)
14 | {
15 | if (states.ContainsKey(key))
16 | {
17 | if (!states[key].Messages.Contains(description))
18 | {
19 | states[key].Append(description);
20 | NotifyMessagesChanged();
21 | }
22 | }
23 | else
24 | {
25 | states.Add(key, new ErrorState(description));
26 | NotifyErrorStateCollectionChanged();
27 | NotifyMessagesChanged();
28 | }
29 | }
30 |
31 | public void Clear()
32 | {
33 | states = new Dictionary();
34 | NotifyErrorStateCollectionChanged();
35 | NotifyMessagesChanged();
36 | }
37 |
38 | public void Clear(string propertyName)
39 | {
40 | if (states.ContainsKey(propertyName))
41 | {
42 | states.Remove(propertyName);
43 | NotifyErrorStateCollectionChanged();
44 | NotifyMessagesChanged();
45 | }
46 | }
47 |
48 |
49 | public ErrorState this[string key]
50 | {
51 | get
52 | {
53 | if (states.ContainsKey(key))
54 | {
55 | return states[key];
56 | }
57 | return null;
58 | }
59 | }
60 |
61 | public IReadOnlyList AllMessages
62 | {
63 | get
64 | {
65 | return states.SelectMany(s => s.Value.Messages).ToList().AsReadOnly();
66 | }
67 | }
68 |
69 | public bool HasError
70 | {
71 | get => states.Any();
72 | }
73 |
74 | internal void Remove(string propertyName, string message)
75 | {
76 | if (states.ContainsKey(propertyName) && states[propertyName].Messages.Contains(message))
77 | {
78 | states[propertyName].Remove(message);
79 | NotifyMessagesChanged();
80 |
81 | if (!states[propertyName].HasError)
82 | Clear(propertyName);
83 | }
84 | }
85 |
86 | private void NotifyMessagesChanged()
87 | => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(AllMessages)));
88 |
89 | private void NotifyErrorStateCollectionChanged()
90 | => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Item"));
91 | }
92 | }
93 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/ErrorSummaryView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/ErrorSummaryView.xaml.cs:
--------------------------------------------------------------------------------
1 |
2 | using Xamarin.Forms;
3 | using Xamarin.Forms.Xaml;
4 |
5 | namespace SimpleInputDataValidator
6 | {
7 | [XamlCompilation(XamlCompilationOptions.Compile)]
8 | public partial class ErrorSummaryView : ContentView
9 | {
10 | public ErrorSummaryView()
11 | {
12 | InitializeComponent();
13 | }
14 |
15 | public static readonly BindableProperty ErrorStateManagerProperty =
16 | BindableProperty.Create(nameof(ErrorStateManager), typeof(ErrorStateManager),
17 | typeof(ErrorSummaryView), null, BindingMode.OneWay,
18 | null, null, null, null, null);
19 |
20 | public ErrorStateManager ErrorStateManager
21 | {
22 | get { return (ErrorStateManager)GetValue(ErrorStateManagerProperty); }
23 | set { SetValue(ErrorStateManagerProperty, value); }
24 | }
25 | }
26 | }
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/ErrorView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/ErrorView.xaml.cs:
--------------------------------------------------------------------------------
1 |
2 | using System;
3 | using Xamarin.Forms;
4 | using Xamarin.Forms.Xaml;
5 |
6 | namespace SimpleInputDataValidator
7 | {
8 | [XamlCompilation(XamlCompilationOptions.Compile)]
9 | public partial class ErrorView : ContentView
10 | {
11 | public static readonly BindableProperty ErrorStateProperty =
12 | BindableProperty.Create(nameof(ErrorState), typeof(ErrorState),
13 | typeof(ErrorView), null, BindingMode.OneWay,
14 | null, null, null, null, null);
15 |
16 |
17 | public ErrorState ErrorState
18 | {
19 | get { return (ErrorState)GetValue(ErrorStateProperty); }
20 | set
21 | {
22 | SetValue(ErrorStateProperty, value);
23 | }
24 | }
25 |
26 | public ErrorView()
27 | {
28 | InitializeComponent();
29 | }
30 | }
31 | }
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/IValidator.cs:
--------------------------------------------------------------------------------
1 | namespace SimpleInputDataValidator
2 | {
3 | public interface IValidator
4 | {
5 | string PropertyName { get; }
6 | string Message { get; }
7 | bool Validate();
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/SimpleInputDataValidator.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | MSBuild:UpdateDesignTimeXaml
14 |
15 |
16 | MSBuild:UpdateDesignTimeXaml
17 |
18 |
19 | MSBuild:UpdateDesignTimeXaml
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/ValidationViewModelBase.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using System.ComponentModel;
3 | using System.Linq;
4 | using System.Runtime.CompilerServices;
5 |
6 | namespace SimpleInputDataValidator
7 | {
8 | public abstract class ValidationViewModelBase : INotifyPropertyChanged
9 | {
10 | public ErrorStateManager ErrorStateManager { get; }
11 | public IEnumerable Validators { get; protected set; } = new List();
12 |
13 | public ValidationViewModelBase()
14 | {
15 | ErrorStateManager = new ErrorStateManager();
16 | }
17 |
18 | public virtual void ValidateAll()
19 | {
20 | ErrorStateManager.Clear();
21 |
22 | Validate(Validators);
23 | }
24 |
25 | public virtual void Validate([CallerMemberName]string propertyName = null)
26 | {
27 | var existingErrorMessages = ErrorStateManager[propertyName]?.Messages;
28 |
29 | Validate(Validators
30 | .Where(v => v.PropertyName == propertyName));
31 | }
32 |
33 | private void Validate(IEnumerable validators)
34 | {
35 | foreach (var validator in validators)
36 | Validate(validator);
37 | }
38 |
39 | private void Validate(IValidator validator)
40 | {
41 | if (!validator.Validate())
42 | ErrorStateManager.Add(validator.PropertyName, validator.Message);
43 | else
44 | ErrorStateManager.Remove(validator.PropertyName, validator.Message);
45 | }
46 |
47 | public event PropertyChangedEventHandler PropertyChanged;
48 |
49 | public void RaisePropertyChanged([CallerMemberName]string property = null)
50 | => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(property));
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/Validators/NotNullValidator.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SimpleInputDataValidator.Validators
4 | {
5 | public class NotNullValidator : ValidatorBase
6 | {
7 | public NotNullValidator(string propertyName, Func propertyValueFunc, string message)
8 | : base(propertyName, propertyValueFunc, message)
9 | {
10 | }
11 |
12 | protected override bool Validate(T value)
13 | => value != null;
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/Validators/RegexValidator.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Text.RegularExpressions;
3 |
4 | namespace SimpleInputDataValidator.Validators
5 | {
6 | public class RegexValidator : ValidatorBase
7 | {
8 | string regexPattern;
9 |
10 | public RegexValidator(string propertyName, Func propertyValueFunc, string regexPattern, string message)
11 | : base(propertyName, propertyValueFunc, message)
12 | {
13 | this.regexPattern = regexPattern;
14 | }
15 |
16 | protected override bool Validate(string value)
17 | => Regex.IsMatch(value ?? "", regexPattern);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/Validators/StringNotNullOrEmptyValidator.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SimpleInputDataValidator.Validators
4 | {
5 | public class StringNotNullOrEmptyValidator : ValidatorBase
6 | {
7 | public StringNotNullOrEmptyValidator(string propertyName, Func propertyValueFunc, string message)
8 | : base(propertyName, propertyValueFunc, message)
9 | { }
10 |
11 | protected override bool Validate(string value)
12 | => !string.IsNullOrEmpty(value);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/Source/SimpleInputDataValidator/Validators/ValidatorBase.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SimpleInputDataValidator
4 | {
5 | public class ValidatorBase : IValidator
6 | {
7 | private Func validationFunc;
8 | public string Message { get; }
9 | public string PropertyName { get; }
10 |
11 | public ValidatorBase(string propertyName, Func validationFunc, string message)
12 | {
13 | this.PropertyName = propertyName;
14 | this.validationFunc = validationFunc;
15 | this.Message = message;
16 | }
17 |
18 | public bool Validate()
19 | => validationFunc();
20 | }
21 |
22 | public abstract class ValidatorBase : IValidator
23 | {
24 | private Func propertyValueFunc;
25 | public string Message { get; }
26 | public string PropertyName { get; }
27 |
28 | public ValidatorBase(string propertyName, Func propertyValueFunc, string message)
29 | {
30 | PropertyName = propertyName;
31 | Message = message;
32 | this.propertyValueFunc = propertyValueFunc;
33 | }
34 |
35 | public bool Validate()
36 | => Validate(propertyValueFunc());
37 |
38 | protected abstract bool Validate(T value);
39 |
40 | }
41 | }
42 |
--------------------------------------------------------------------------------