Added first uno control image.

This commit is contained in:
依瑪貓 2016-12-07 01:50:28 +08:00
parent 296cfe3baa
commit a8787c38f0
21 changed files with 683 additions and 7 deletions

View File

@ -1,3 +1,17 @@
' Copyright (c) 2016 imacat.
'
' Licensed under the Apache License, Version 2.0 (the "License");
' you may not use this file except in compliance with the License.
' You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
' 0Main: The main module for the Pokémon GO IV calculator ' 0Main: The main module for the Pokémon GO IV calculator
' by imacat <imacat@mail.imacat.idv.tw>, 2016-11-27 ' by imacat <imacat@mail.imacat.idv.tw>, 2016-11-27
@ -79,6 +93,9 @@ Function fnAskParam As aFindIVParam
oDialog.getControl ("cbxBest3").setVisible (False) oDialog.getControl ("cbxBest3").setVisible (False)
oDialog.getControl ("lstApprasal2").setVisible (False) oDialog.getControl ("lstApprasal2").setVisible (False)
' TODO: To be removed.
oDialog.getControl ("imgTeam").getModel.setPropertyValue ("ImageURL", fnGetImageUrl ("TeamValor"))
If oDialog.execute = 0 Then If oDialog.execute = 0 Then
aQuery.bIsCancelled = True aQuery.bIsCancelled = True
fnAskParam = aQuery fnAskParam = aQuery

View File

@ -1,3 +1,17 @@
' Copyright (c) 2016 imacat.
'
' Licensed under the Apache License, Version 2.0 (the "License");
' you may not use this file except in compliance with the License.
' You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
' 1Data: The Pokémon GO data for IV calculation ' 1Data: The Pokémon GO data for IV calculation
' by imacat <imacat@mail.imacat.idv.tw>, 2016-12-06 ' by imacat <imacat@mail.imacat.idv.tw>, 2016-12-06
' Generated with 9Load.subReadDataSheets () ' Generated with 9Load.subReadDataSheets ()

55
PokemonGoIV/8Registry.vb Normal file
View File

@ -0,0 +1,55 @@
' 8Registry: Utilities used from other modules to access to PokemonGoIV private configuration
' Taken from TextToColumns, 2016-12-07
Option Explicit
Const BASE_KEY As String = "/org.openoffice.Office.Addons.PokemonGoIV.AddonConfiguration/"
' fnGetImageUrl: Returns the image URL for the UNO image controls.
Function fnGetImageUrl (sName As String) As String
Dim oRegKey As Object
oRegKey = fnGetRegistryKeyContent (BASE_KEY & "FileResources/" & sName)
fnGetImageUrl = fnExpandMacroFieldExpression (oRegKey.Url)
End Function
' fnGetRegistryKeyContent: Returns the registry key content
Function fnGetRegistryKeyContent (sKeyName as string, Optional bforUpdate as Boolean)
Dim oConfigProvider As Object
Dim aNodePath (0) As New com.sun.star.beans.PropertyValue
oConfigProvider = createUnoService ( _
"com.sun.star.configuration.ConfigurationProvider")
aNodePath(0).Name = "nodepath"
aNodePath(0).Value = sKeyName
If IsMissing (bForUpdate) Then
fnGetRegistryKeyContent = oConfigProvider.createInstanceWithArguments ("com.sun.star.configuration.ConfigurationAccess", aNodePath())
Else
If bForUpdate Then
fnGetRegistryKeyContent = oConfigProvider.createInstanceWithArguments ("com.sun.star.configuration.ConfigurationUpdateAccess", aNodePath())
Else
fnGetRegistryKeyContent = oConfigProvider.createInstanceWithArguments ("com.sun.star.configuration.ConfigurationAccess", aNodePath())
End If
End If
End Function
' fnExpandMacroFieldExpression
Function fnExpandMacroFieldExpression (sURL As String) As String
Dim sTemp As String
Dim oSM As Object
Dim oMacroExpander As Object
' Gets the service manager
oSM = getProcessServiceManager
' Gets the macro expander
oMacroExpander = oSM.DefaultContext.getValueByName ( _
"/singletons/com.sun.star.util.theMacroExpander")
'cut the vnd.sun.star.expand: part
sTemp = Join (Split (sURL, "vnd.sun.star.expand:"))
'Expand the macrofield expression
sTemp = oMacroExpander.ExpandMacros (sTemp)
sTemp = Trim (sTemp)
fnExpandMacroFieldExpression = sTemp
End Function

View File

@ -1,3 +1,17 @@
' Copyright (c) 2016 imacat.
'
' Licensed under the Apache License, Version 2.0 (the "License");
' you may not use this file except in compliance with the License.
' You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
' 9Load: The Pokémon GO data sheets loader ' 9Load: The Pokémon GO data sheets loader
' by imacat <imacat@mail.imacat.idv.tw>, 2016-11-28 ' by imacat <imacat@mail.imacat.idv.tw>, 2016-11-28
@ -9,6 +23,20 @@ Sub subReadDataSheets
Dim sOutput as String, mData As Variant Dim sOutput as String, mData As Variant
sOutput = "" _ sOutput = "" _
& "' Copyright (c) 2016 imacat." & Chr (10) _
& "' " & Chr (10) _
& "' Licensed under the Apache License, Version 2.0 (the ""License"");" & Chr (10) _
& "' you may not use this file except in compliance with the License." & Chr (10) _
& "' You may obtain a copy of the License at" & Chr (10) _
& "' " & Chr (10) _
& "' http://www.apache.org/licenses/LICENSE-2.0" & Chr (10) _
& "' " & Chr (10) _
& "' Unless required by applicable law or agreed to in writing, software" & Chr (10) _
& "' distributed under the License is distributed on an ""AS IS"" BASIS," & Chr (10) _
& "' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied." & Chr (10) _
& "' See the License for the specific language governing permissions and" & Chr (10) _
& "' limitations under the License." & Chr (10) _
& Chr (10) _
& "' 1Data: The Pokémon GO data for IV calculation" & Chr (10) _ & "' 1Data: The Pokémon GO data for IV calculation" & Chr (10) _
& "' by imacat <imacat@mail.imacat.idv.tw>, " & Format (Date (), "yyyy-mm-dd") & Chr (10) _ & "' by imacat <imacat@mail.imacat.idv.tw>, " & Format (Date (), "yyyy-mm-dd") & Chr (10) _
& "' Generated with 9Load.subReadDataSheets ()" & Chr (10) _ & "' Generated with 9Load.subReadDataSheets ()" & Chr (10) _

View File

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 2071 1915" style="enable-background:new 0 0 2071 1915;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F4E8A1;}
.st1{fill:#FBD208;}
</style>
<g>
<path class="st0" d="M999,1878.2c-21.1-36.2-51.7-88.6-121-207.2c-44.6-76.4-80.1-137.2-125-214c-19.4-33.3-47.6-81.4-62.5-107
c-14.9-25.6-43.1-73.7-62.5-107c-19.4-33.3-49.1-84.1-66-113c-16.9-28.9-45-77-62.5-107s-46.4-79.4-64.2-109.9
c-17.8-30.5-32.2-56-31.9-56.8c0.4-0.8,1.4-1.1,2.8-0.8c8.3,2,62.2,12.4,62.5,12.1c0.2-0.2-27.3-55.8-61.1-123.5
C346.3,621.7,346,621,348.3,619.6c1.2-0.7,4.4-2.2,7-3.1c4.1-1.6,5-1.6,6.1-0.4c0.7,0.8,26.3,44.8,56.9,97.9
c30.5,53.1,71.4,124,90.7,157.5c34.3,59.4,73.4,127.2,145.5,252c19.4,33.6,44.5,77.1,55.9,96.7c11.3,19.7,29.9,51.9,41.2,71.5
c11.4,19.7,29.8,51.6,40.9,70.8c11.1,19.3,32.8,56.8,48.2,83.5c15.4,26.7,37.2,64.5,48.5,84s30.8,53.3,43.3,75
c54.3,94,63.3,109.6,74.8,129.7c6.7,11.7,12.4,21.2,12.7,21.2s37.7-63.7,83.1-141.7c329.7-565.8,577.5-990,579.1-991.4
c1.6-1.4,3.8-1.8,9.9-1.8c4.3,0,8.1,0.5,8.4,1c0.4,0.6-7.3,16.2-17.1,34.8c-9.7,18.5-29.4,56-43.7,83.2
c-54.3,103.3-67,127.5-67.8,129.1c-0.6,1.2,6.4-0.7,24.9-6.8c40-13,41.2-13.4,41.8-11.9c0.3,0.7-17.5,32.3-39.4,70.2
c-21.9,37.9-66.6,115-99.2,171.4s-74,127.9-92,159s-56.9,98.4-86.5,149.5c-29.6,51.2-74.5,128.8-99.8,172.5
c-25.3,43.7-63.3,109.4-84.5,146c-108,186.6-113.5,196-115.1,196C1021,1915,1013.4,1902.8,999,1878.2z"/>
<path class="st0" d="M1323.2,251.9c-2.1-5.6-8.5-42-7.6-42.9c1-1,737.2-205.6,748.7-208.1c3.1-0.7,6-0.9,6.3-0.6
c0.4,0.4,0.1,2.1-0.7,3.9c-2,5-58,112.1-59.3,113.5c-1.2,1.3-38.6,4.9-41.1,3.9c-1.2-0.4,1.3-6.2,12.5-28.6
c7.7-15.4,14-28.1,14-28.3c0-0.2-19.7,5.2-43.7,12c-24.1,6.8-66.7,18.9-94.8,26.8c-28,7.9-93.3,26.4-145,41
c-51.7,14.6-108.2,30.6-125.5,35.5c-38.6,10.9-105.3,29.8-192,54.3c-36,10.2-66.7,18.9-68.2,19.2
C1324.5,254.1,1323.9,253.8,1323.2,251.9z"/>
<path class="st0" d="M667.5,229.5c-8.1-2.3-252.3-68.3-488-132c-69.8-18.9-127.2-34.2-127.4-34c-0.2,0.3,6,17.4,13.9,38.1
c8.7,23,13.8,38,13.2,38.6c-1.2,1.2-35-4.5-36.6-6.3c-0.7-0.8-5.2-13.1-10.1-27.4C27.7,92.2,18.9,66.3,13.1,49
C2.3,17.2-0.9,6.5,0.3,5.4C0.7,5,15.2,8.9,32.7,14C84.2,29,118.6,39,168,53.4c93.2,27.1,199.1,57.9,225.5,65.6
c28,8.2,160.3,46.7,220.5,64.2c62,18,74.3,21.7,75.1,22.5c0.7,0.7-5.9,18.3-9,24.1C678.7,232.4,677.9,232.4,667.5,229.5z"/>
</g>
<g>
<path class="st1" d="M1028,1370.4c-0.6-1.5-7.1-23.2-14.6-48.3c-22.4-75.7-24.4-82.3-26.9-90.6c-1.3-4.4-6.2-20.8-10.8-36.5
c-4.7-15.7-13.2-44.5-19-64s-10.9-36.7-11.3-38.2c-0.3-1.6-0.9-2.8-1.3-2.8c-0.3,0-2.6,1.2-5.1,2.6c-3.8,2.2-60,33.8-133.5,75.2
c-9.3,5.2-17.6,9.9-18.2,10.5c-4.8,3.6,1.3-10.9,28.5-68.3c1.7-3.6,10.7-22.7,20-42.6l16.8-36l-7.6,1.2
c-54.9,9.2-143.4,22.4-144.2,21.6c-1.1-1.1,0.8-2.5,56.7-38.5c17.1-11,41.6-26.8,54.5-35.2c12.9-8.3,41.5-26.8,63.5-41
s47-30.3,55.5-35.8c8.5-5.6,16.2-10.1,17-10.1s19,10,40.4,22.2l38.8,22.2l41.4-22.6l41.3-22.5l11.8,7.1
c6.5,3.9,18.8,11.4,27.3,16.6c8.5,5.2,17.8,10.9,20.5,12.5c2.8,1.6,12,7.3,20.5,12.5c8.5,5.2,17.8,10.9,20.5,12.5
c6.2,3.7,17.8,10.8,44.7,27.2c11.5,7,30.1,18.4,41.5,25.4c11.5,7,30,18.3,41.3,25.1c11.3,6.8,21.8,13.3,23.3,14.4
c5.9,4.2,5.6,4.2-55.3-1.7c-8.5-0.8-32.8-3-54-5c-21.2-1.9-40.2-3.7-42.2-4l-3.7-0.5l2.4,5.8c6.9,17.2,23.9,58.5,26,63.2
c1.3,3,5.7,13.8,9.9,24c4.1,10.2,10.4,25.7,14,34.4c4.1,9.9,6.3,16.3,5.7,16.9c-0.6,0.6-4.3-1.1-9.8-4.6
c-4.8-3-17.3-10.7-27.8-17.2c-10.4-6.4-22.8-14.1-27.5-17c-4.7-2.9-16.1-10-25.5-15.7c-9.3-5.8-27.3-16.9-39.9-24.7
c-12.6-7.8-23.1-13.9-23.4-13.7c-0.2,0.3-1.5,4.4-2.8,9.3c-6.4,22.8-10.5,37.9-13.8,49.8c-3.6,13.2-22.3,81.2-27.6,100.5
c-4,14.5-24.3,88.4-29.2,106c-2.2,8-4.3,15.8-4.7,17.4C1031.2,1373.3,1029.3,1373.8,1028,1370.4z"/>
<path class="st1" d="M1017.5,898.9c-4.9-2.8-11-6.2-13.5-7.6c-160.2-89.4-334-187-335.3-188.3c-2-1.9-4.7-0.2,59-38.4
c8.9-5.4,9.9-6.2,8-6.9c-4.9-1.9-136.9-50.6-148.2-54.7c-2.7-1-39.9-14.7-82.5-30.5c-42.6-15.7-88.7-32.7-102.5-37.7
c-25.4-9.2-28.2-10.5-26.8-11.9c0.7-0.7,124.4-5.6,188.3-7.5c11.3-0.3,21.1-0.8,21.8-1c1.4-0.4-2.9-4.1-14.8-12.6
c-3.6-2.6-16.2-11.7-28-20.2c-11.8-8.6-31.8-22.9-44.3-31.8c-12.5-9-26.7-19.1-31.5-22.5c-4.8-3.5-15.9-11.4-24.7-17.6
c-8.8-6.2-28.6-20.2-44-31.2c-31.6-22.4-32.9-23.3-44.2-31.2c-14.6-10.2-54.7-38.5-58.8-41.5c-2.2-1.6-16.1-11.5-31-21.9
c-14.8-10.5-33.1-23.3-40.5-28.5c-26.2-18.5-56.8-39.9-81.5-57.2c-33.9-23.8-35.8-25.3-34.8-26.3c0.5-0.5,3.3-0.1,6.9,1
c3.2,1.1,21.4,7,40.4,13.1c37.4,12.1,53.6,17.3,84.5,27.3c24.6,8,62.3,20.2,147.5,47.7c36,11.6,80.6,26,99,32
c52.3,16.9,97.9,31.7,142.5,46.1c22.6,7.2,41.5,13.4,42.2,13.6c0.7,0.3-0.2-4.6-2.4-13.2c-2.2-8.3-3.2-14-2.7-14.5
c0.8-0.8,28.1,16,63.9,39.4c4.4,2.9,28.2,18.3,53,34.2c24.7,15.9,49.9,32.1,56,36.1c6,3.9,14.7,9.5,19.3,12.3
c4.5,2.8,8.2,5.3,8.2,5.5c0,0.4-8.5,9.8-44.4,49.4c-7.2,8-15.6,17.2-18.6,20.6c-3,3.4-11.6,12.8-19,21
c-27.4,30.2-45.9,50.9-45.7,51.1c0.1,0.1,39.6-7.7,87.6-17.3c76.7-15.3,87.6-17.3,88.6-16c0.6,0.9,5.3,16.8,10.5,35.4
c5.1,18.6,9.5,34.2,9.7,34.6c0.3,0.4,2.9-3.2,5.8-8c2.9-4.8,9.8-16.2,15.3-25.3c5.5-9.1,12.9-21.2,16.4-27s6.6-11,7-11.6
c0.4-0.6-8.3,2.5-19.3,6.9c-17,6.8-20.2,7.8-21.3,6.6c-0.7-0.8-4-9.2-7.2-18.6c-3.2-9.5-6.4-17.3-6.9-17.3
c-1.2,0-70.4,10.5-96.8,14.6c-9.9,1.6-17.2,2.3-17.7,1.8s19.6-22.4,47.6-51.8l48.3-50.9l-5.3-4.1c-2.9-2.3-15.1-11.6-27.2-20.8
c-12-9.3-41.8-32-66.1-50.5c-24.2-18.6-50-38.3-57.2-43.7c-9-6.9-12.8-10.3-12.1-11s22.9,4.4,70.3,16.4c38,9.5,69.7,17.5,70.4,17.7
c1.1,0.4-0.5-6.1-8.7-36.2c-2.3-8.3-3.5-14.4-3-14.9c0.8-0.8,3.2,0,17.5,6.5c19.9,8.9,47.9,20.8,48.3,20.4c0.3-0.3-3-12.1-7.3-26.2
c-4.3-14.2-8.6-28.5-9.6-31.8c-0.9-3.3-3.3-11.4-5.4-18c-2-6.6-5.8-19.2-8.5-28s-14.6-48.2-26.5-87.5c-12-39.3-21.8-71.9-21.9-72.4
c0-0.5,0.4-1,1.1-1.3c1.4-0.5,0.5-1.7,45.8,60.8c12.7,17.4,34.9,48,49.5,68c14.6,19.9,27.2,37.3,28,38.5
c1.2,1.7,40.4,55.8,41.6,57.2c0.1,0.2,3.3-4.1,7.2-9.5c29.3-41.5,52.6-74.4,58.9-83.3c41.3-58.3,79.5-113,98.1-140.5
c10.7-15.7,13.9-19.4,13.6-15.5c-0.1,0.8-9.2,29.9-20.3,64.5c-11.2,34.7-22.5,70-25.2,78.5c-2.8,8.5-7.7,23.8-10.9,34
c-3.3,10.2-12.4,38.8-20.4,63.5c-7.9,24.8-14.3,45.1-14.2,45.3c0.2,0.1,14.2-5.2,31.2-11.8s31.4-11.8,32.1-11.6
c0.7,0.3-0.9,8.4-5.3,25.8c-3.5,13.9-6.4,25.8-6.4,26.4c0,1.2,6.6-0.4,74.5-17.1c64.6-15.9,62.6-15.5,63.2-13.9
c0.2,0.6-36.1,28.5-80.7,61.9l-81.1,60.8l10.9,11.1c45,45.8,85,86.9,88.4,90.8c3.5,4.2,3.8,4.9,2.2,5.5c-2.7,1-38.7-5.3-107.7-19
c-16.7-3.4-16.7-3.4-17.2-1.3c-0.3,1.2-2.3,13.1-4.5,26.5c-2.2,13.5-4.3,24.8-4.8,25.3s-9-5.2-19-12.7c-10-7.4-18.2-13.2-18.2-12.9
c0,0.9,46.2,74.6,46.5,74.2c0.1-0.2,4.6-16.7,10-36.8c5.4-20.1,10.1-36.9,10.5-37.3c0.4-0.5,41.8,8.4,92,19.8
c50.2,11.3,91.4,20.4,91.6,20.2c0.3-0.2-113.1-118.1-139.9-145.4c-5.7-5.8-6-6.4-4.5-7.9c0.9-0.9,10.2-7.1,20.7-13.8
c10.4-6.6,27-17.3,36.8-23.6c23.2-14.9,64.3-41.2,106.8-68.4c18.7-12,35.1-22.6,36.5-23.5c4.1-2.9,7-4.2,7.9-3.7
c0.4,0.3-0.7,7.6-2.5,16.3c-1.8,8.7-3.3,16.4-3.4,17.2c0,1.7-4,2.8,42.5-12.4c21.5-6.9,58.4-19,82-26.7c23.7-7.6,61.7-20,84.5-27.4
c62-20.2,73.5-24,121-39.4c56.4-18.3,116.1-37.8,163-53.1c20.6-6.7,38.2-12.2,39-12.3c2.4-0.2,1.7,2.3-1.2,4.2
c-1.5,0.9-17.7,12.7-35.9,26.2c-18.3,13.5-34.3,25.2-35.5,26c-2.1,1.3-50.9,37.1-79.9,58.5c-6,4.5-16.2,11.9-22.5,16.5
c-6.3,4.6-15.5,11.4-20.5,15c-4.9,3.7-20.9,15.4-35.5,26c-14.6,10.7-30.5,22.4-35.5,26c-4.9,3.7-20.9,15.4-35.5,26
c-14.6,10.7-30.5,22.4-35.5,26c-4.9,3.7-28.6,21-52.5,38.5s-49.7,36.4-57.3,41.9l-13.7,10.1l35.2,0.6c160.5,2.9,175.7,3.4,176,5.4
c0.1,0.6-5,3.2-11.3,5.8c-55.2,23.4-99.8,42.3-106.9,45.2c-3,1.3-19,8-35.5,15s-40.1,17-52.5,22.2s-32.6,13.8-45,19
c-58,24.6-67.8,28.7-71.9,30.3l-4.4,1.7l9.2,5.9c34.8,22.3,46.5,30,46.8,31c0.4,1.1-354.3,204.4-356.3,204.4
C1026.9,904,1022.5,901.7,1017.5,898.9z M1039.4,644.5l13.2-149l-12-16.5c-6.6-9.1-13-18-14.2-19.8l-2.3-3.3l-2.5,3.3
c-14.1,17.9-27.6,37.4-27.6,39.7c0,1.4,1.1,13,2.5,25.6c1.3,12.7,3.1,29.8,4,38c3.2,30.7,6.6,62.5,8.5,80.5
c1.1,10.2,3.1,29.5,4.5,43c1.5,13.5,3.9,36.7,5.5,51.5c1.6,14.9,3.7,34.9,4.7,44.5c1,9.6,1.9,16.2,2.1,14.5
C1026,794.9,1032.1,726.5,1039.4,644.5z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1728 1710" style="enable-background:new 0 0 1728 1710;" xml:space="preserve">
<style type="text/css">
.st0{fill:#0677EE;}
</style>
<g>
<path class="st0" d="M361.3,1703.5c-9.8-2.7-21.9-10.3-30.6-19.3c-3-3-3.5-4.1-2.5-4.9c0.7-0.6,6.7-2.4,13.3-4
c29.2-7.3,46.8-19,55.9-37.2c7.1-14,8.2-21.2,10.1-66.6c1.9-44.8,4-59.6,11.5-82.7c19.4-59.2,65.9-98.6,133.5-113.3
c19.6-4.2,35.4-5.8,58-5.8c23.1-0.1,33.7,1,55.5,5.3c30.6,6.1,52.8,14.1,90.3,32.4c71.3,34.9,149.1,70.5,166.3,76.1
c31.1,10.2,82.8,6,131.2-10.6c24.2-8.3,31.8-12.9,77.6-46.4c63.8-46.7,79.6-62.2,116.9-114.5c15.2-21.2,27.1-40.1,29.7-46.8
c4.5-12.1,13-20,23.9-22.3c11-2.3,34.9,0.9,52.8,7.2c34.4,12,56.9,36.1,69.3,73.9c13,39.6,13.4,79.9,1.3,117.5
c-5.8,17.9-24.5,57.8-35.9,76.6c-40,66.1-95,116.4-164.3,150.3c-21.6,10.6-29,13-55.3,18c-30.4,5.8-41.2,7-57.8,6.3
c-12.5-0.5-29.8-2.9-32.3-4.4c-0.6-0.4-2.3-0.8-3.7-1c-5.7-0.6-28.1-5.5-36.5-7.9c-11.1-3.3-32.9-11.7-45.5-17.6
c-7.7-3.6-207.8-128.4-239.8-149.5c-10.8-7.2-47-25.5-61.5-31.1c-32.8-12.8-63.3-18.6-98.2-18.6c-20.9,0-29.5,1-45,5.6
c-60,17.4-85.6,77.1-69.9,162.8c1.4,7.4,3.6,17.7,4.8,22.8c1.5,5.8,2,9.4,1.4,9.8c-1.5,1-9.9-7.8-19.6-20.3
c-4.7-6.2-8.9-11.3-9.3-11.3c-0.4,0-1,1.2-1.3,2.6c-0.4,1.5-2.7,6.9-5.1,12.1c-10.2,21.8-25.7,39.9-40.1,46.8
c-11.3,5.4-19,8.1-27.7,9.9C373.5,1705.3,368.2,1705.3,361.3,1703.5z"/>
<path class="st0" d="M766.1,1410.6c-0.7-0.8-0.8-1.7-0.3-2c0.6-0.3,1.5,0.1,2.1,0.8c0.7,0.8,0.8,1.7,0.3,2
C767.6,1411.7,766.7,1411.3,766.1,1410.6z"/>
<path class="st0" d="M1452.3,1343.4c-0.6-1-2.3-6.2-3.8-11.4c-10.1-34.9-21.3-55.2-40.9-73.7c-21.5-20.4-46.4-31.2-81.2-35.5
c-13.5-1.6-65-1.6-78.9,0c-27.8,3.2-48.4,7.5-73,15.2c-15,4.7-40.9,10.1-61,12.7c-18.9,2.4-62,2.4-77.8,0
c-25.9-4-50.7-11.3-71.2-21.1c-9.1-4.3-14.1-7.7-28.5-19.3c-31.2-25-39.3-32.5-46.9-43.1c-20-28.1-59.2-97.2-68.5-120.8
c-3.7-9.3-4.4-13.8-2.6-14.9c0.6-0.4,11.5,9.5,24.2,22c18.8,18.6,23.3,22.4,24.3,21.3c12.3-13.3,61.2-63.4,62.2-63.6
c2.4-0.6,4.1,1.7,12.7,16.2c9.3,15.7,15.9,24.9,21.2,29.5c1.9,1.7,8.1,5.3,13.7,8c31.6,15.1,61.8,18.3,98.7,10.5
c6.3-1.3,32.2-8.9,57.5-16.8c25.3-7.9,50.5-15.2,56-16.2c7.8-1.5,14.9-1.9,32-1.9c21.9,0,22.1,0,37,3.7c20.6,5,34.6,9.8,50.3,17.3
c23.4,11.3,40.3,23.4,60.3,43.4c22.9,23,40.6,48.6,59,85.2c16.8,33.6,24.2,54,29.6,81.8c2.3,12,2.7,16.1,2.7,34.6
c0.1,17.3-0.2,22.3-1.7,28.2c-1.1,3.9-2.5,8-3.2,8.9C1453.3,1345.3,1453.2,1345.3,1452.3,1343.4z"/>
<path class="st0" d="M858.2,1045.3c-2.1-1-20.3-21.4-51-57c-60.2-69.9-56.3-65-62.2-76.8c-10.6-21.4-12.3-43.4-5.4-71.3
c2.5-10.2,25.1-71.9,33.9-92.7c2.6-6,8.8-19.5,14-30c14.9-30.4,19.2-45,20.2-69.1c1-24.8-3.9-51-15-79.7c-2-5.2-2.3-6.9-1.3-7.3
c1.4-0.5,43.7,13.5,62.1,20.6c6.1,2.3,11.5,4.2,12,4.2c0.6,0.1,15.3-5.4,32.7-12.1c17.5-6.8,32.1-12,32.6-11.7s0.5,2.6,0.1,5.3
c-0.4,2.6-1.4,16.6-2,31.1c-1.9,39,0.5,82.7,5.6,102.3c2,7.7,6,16.6,23.5,52.9c24.1,49.9,34.9,74.8,40.6,93.6
c2.5,8.1,2.8,10.4,2.8,24.9c0,14.7-0.2,16.6-2.7,24c-3.4,10.2-7.2,16.8-14,24.2c-2.9,3.2-27.7,30.6-55.1,60.8
c-27.4,30.3-51.4,56.5-53.4,58.3c-3.9,3.5-10.6,7.2-13.2,7.2C862.2,1047,860,1046.2,858.2,1045.3z M880.7,614.4
c-4.6-4.4-23.3-4.5-28.9-0.2c-1.5,1.2-0.8,2.7,6,14.3c4.3,7.2,8.1,13.6,8.6,14.4c0.7,1,2.9-2.5,8.2-13
C880,619,881.5,615.2,880.7,614.4z"/>
<path class="st0" d="M622,847.4c-19-5.1-26.4-13.2-26.3-28.9c0-11.7,3.3-17.9,22.9-44.2c6.2-8.3,11.9-16.4,12.7-18
c1.7-3.3,0.7-6.3-2.1-6.3c-0.9,0-15.6,14.1-32.7,31.4c-35,35.5-32.3,33.6-49.2,33.6c-22.4,0-49.6-10.6-61.5-23.8
c-8.7-9.7-4.4-16.5,30.5-48.6c6.8-6.3,11.7-11.5,11.5-12.4c-0.8-4.2-3.3-3.6-18.6,4.7c-20.2,11-37.6,19.2-50.3,23.7
c-8.9,3.2-11.7,3.7-19.4,3.8l-9,0.1l-19.6-14.2c-19.9-14.5-22.9-17.5-21.5-22.1c1.2-3.5,5-6,30.6-19.5
c38.7-20.4,55.4-30.6,54.8-33.4c-0.7-3.9-3-3.6-35.8,4.5c-17.9,4.5-39,10.2-47,12.8c-21.8,7.1-32.6,7.2-43.2,0.5
c-4.7-3-10-10.1-24.3-32.9c-7.4-11.9-9-16.3-7.5-20.8c2-5.8,5.2-7.2,28.6-12c44.1-8.9,70.1-15.9,71.1-19.1
c0.8-2.4-12.3-4.9-46.2-8.7c-29.4-3.4-68.4-6.8-70-6.3c-4.6,1.8-28.1-30.5-40.7-55.9c-8.3-16.9-9.6-23.4-5.5-27.2
c1.4-1.3,4.2-2.6,6.4-2.8c2.1-0.3,21.8,1.5,43.8,4s49.3,5.3,60.8,6.2c19.6,1.7,20.8,1.7,22.4,0.1c3.4-3.4,0.6-5-11.8-7
c-23.4-3.7-74.9-12.8-89-15.6c-32-6.5-35.1-7.9-50.1-22c-30.7-28.9-80.7-100.7-80.8-116.2c0-4.5,3.3-7.9,7.8-7.9
c1.8,0,36.6,11.5,77.4,25.5c56.8,19.5,74.4,25.2,75.5,24.4c3.7-3.1,1.6-4.5-22.4-15.4c-33.2-15.1-57.5-25.4-73.8-31.4
c-51.9-19.1-77.8-35.3-97-60.9C113.6,276,107,262,96.4,231.6C91.7,218,92.2,211,97.9,211c8.5,0,73.7,26.5,169.6,69
c43.3,19.2,39.5,17.8,41,15.6c2.8-3.7,10.9,0.8-112-62.1c-80.8-41.4-91.9-47.7-110.8-62.3c-32.1-24.7-48.3-47.5-65.1-91.5
C11.5,56,5.8,35.2,5.6,25l-0.1-8.5l3.2-0.3c7.7-0.8,42.4,16.4,197.8,97.8c93.2,48.8,122.2,63.8,154.3,79.9
c22.5,11.3,27,13.2,30.3,12.9l4-0.3l-6-9.2c-10.2-15.7-21.2-25.3-42.6-37c-4.9-2.7-14.8-8.3-22-12.3c-7.1-4-21.1-11.1-31-15.7
c-9.9-4.5-19.6-9.1-21.5-10c-7.3-3.7-5.9-12.3,1.9-12.3c12.9,0,74.5,29.2,106.7,50.5c17.9,11.9,28.8,24.8,62.5,74.5
c20.5,30.3,28.7,44.9,43.9,78.5c17.4,38.3,39.5,90.7,62.2,147.5c15.8,39.5,21.2,49.3,34.3,62.6c7.8,7.9,10.3,9.8,18.5,13.7
c5.2,2.5,14.1,5.7,19.7,7.1c46.9,12.1,85.1,32.5,118,63c16,14.9,25.2,29.6,29.4,47.2c2.7,11.4,2.3,29-0.8,36.9
c-3.7,9.5-87.4,136.7-94.8,144c-4.6,4.7-14.3,9.8-22.5,12C644,849.4,629.1,849.3,622,847.4z"/>
<path class="st0" d="M1077.6,833.5c-7.3-1.9-19-8-23-12c-5.3-5.3-43.4-62.2-81.8-122c-14.9-23.3-15.3-24.4-15.3-41.5
c0-15.3,1.4-21.9,7.1-33.9c5.1-10.9,10.9-18.5,23.3-30.3c29.5-28.3,64-47.7,107.2-60.3c24.7-7.3,28.9-8.8,35-12.3
c9-5.3,18.1-14.2,25-24.5c8.4-12.6,9.7-15.4,27.2-58.7c34.7-85.9,57.5-138.4,75.6-173.5c13.8-26.9,54.2-85.3,71.6-103.4
c12-12.6,29.6-23.6,67-42.3c21.6-10.8,43.1-20,52.4-22.3c5.7-1.5,6.4-1.5,8.6-0.1c2.9,1.9,4.1,5.6,2.6,8.3
c-0.6,1.1-6.6,4.5-13.8,7.8c-17.6,8-38.4,18.4-48.4,24.3c-4.6,2.7-12,6.8-16.4,9.2c-22.8,12.4-35.4,24-46,42.3l-2.7,4.7h3.2
c1.7,0,6.3-1.3,10.2-3c10.2-4.3,80.3-40.5,174.8-90c88.2-46.3,170.8-88.4,185.5-94.4c5.9-2.4,10.1-3.6,12.5-3.4
c3.4,0.3,3.5,0.4,3.8,5.1c0.5,7.4-2.3,19.2-9.8,41.7c-14.8,44.5-25.8,64.5-48.4,87.8c-15.9,16.4-30.9,27.8-54.3,41.3
c-4.8,2.8-42.5,22.5-83.8,43.6c-112.4,57.7-107.5,55.1-107.5,57.8c0,3.7,2.4,3.7,10.7-0.1c4.3-2,22.4-10,40.3-17.9
c88.6-38.9,146-62.4,158.7-64.8c7.1-1.4,8,6.8,2.4,22.1c-1.6,4.2-4.5,12.2-6.5,17.7c-5.5,14.9-11.8,27.2-18.7,36.6
c-18.7,25.3-46.5,43.8-89.6,59.4c-20.4,7.4-39.7,15.5-73.8,30.8c-29.1,13.1-32,14.6-32,16.8c0,1.7,0.6,2.5,2,2.7
c1.2,0.2,35.6-11.2,76.5-25.3c49.5-17,75.2-25.4,76.8-25c3.9,1,6.2,4.1,6.2,8.4c0,14.3-46.1,81.3-77.5,112.6
c-14.6,14.6-19.6,17.6-35.2,21.4c-16.8,4-42,8.7-83.8,15.6c-34.8,5.8-38.1,6.7-35.8,10.3c0.9,1.4,2.4,1.7,8.4,1.5
c11.7-0.4,29.4-2.1,72.7-6.9c44.8-4.9,47.1-5,51.1-2.9c4.9,2.5,5.4,7.1,1.7,16.7c-5.5,14.7-16.4,33.5-29.2,50.5
c-12.5,16.5-13,16.8-25.5,17.7c-16.3,1.1-67,6.3-82.4,8.5c-23.8,3.4-27.8,4.7-23.9,7.6c4.2,3,29.2,9.4,68.9,17.5
c11,2.2,21.2,4.5,22.7,5.1c4.6,1.9,7.3,5.6,7.2,10c-0.2,5-2.5,9.4-16,30.3c-9.1,14.1-11.6,17.4-15.9,20.2
c-10.4,6.9-21.7,6.9-42.8,0c-13.4-4.5-76.4-20.6-80.4-20.6c-2.2,0-3.6,2.1-2.8,4.3c1.2,2.9,26.4,17.6,59.6,34.8
c18.4,9.5,25.9,14.9,25.9,18.7c0,1.1-1.1,3.4-2.5,5c-2.7,3.3-32.7,25.5-38.5,28.5c-6.3,3.3-18.8,1.3-37.2-6.1
c-8.4-3.4-34.9-16.5-48-23.7c-8.7-4.9-12.1-5.4-12.6-1.9c-0.2,1.6,3.3,5.4,15.2,16.3c24.6,22.5,30.6,29.9,30.6,37.8
c0,3.3-0.7,4.4-5.9,9.3c-16.7,15.6-49.7,25.2-71.7,20.8l-5.8-1.2l-31-31.3c-17-17.2-31.7-31.3-32.7-31.3c-0.9,0-2.2,0.6-2.8,1.4
c-1.7,2-0.1,4.9,11.5,20.3c20.7,27.5,24.6,34.7,24.8,45.7c0.2,14.4-6.4,23-21.6,28.1C1100.6,834.9,1086.6,835.8,1077.6,833.5z"/>
<path class="st0" d="M785.6,538c-34.1-18.1-62.3-33.5-62.7-34.2c-0.8-1.5-32.7-91.6-33.1-93.7c-0.2-0.8,0.4-1.6,1.2-1.8
c0.8-0.2,23.5,7.7,50.4,17.5l49,17.9l29.8,62.8c16.4,34.5,29.5,63.1,29.2,63.6s-0.8,0.9-1.2,0.8C847.8,570.9,819.6,556.1,785.6,538
z"/>
<path class="st0" d="M879.5,570c-0.5-0.8,57.3-121,60.9-126.5c0.9-1.3,4-3.1,7.3-4.3c55.5-19.3,90.7-31.1,91.4-30.6
c0.5,0.3,0.9,1,0.9,1.6c0,2.5-30.5,84-35.9,96c-1.5,3.5-3.7,7.1-4.7,8c-1.1,0.9-12.9,6.9-26.4,13.3c-30.9,14.8-92,43.5-92.5,43.5
C880.3,571,879.8,570.6,879.5,570z"/>
<path class="st0" d="M860.7,558.3c-14.7-29.2-57.8-120.9-57.4-122.2c0.6-2,58.4-136.6,59.8-139.3c0.9-1.7,1.3-1.8,2.4-0.7
c1.1,1.2,62.5,140.9,62.5,142.3c0,1.3-61.9,125.4-62.8,126C864.5,564.8,862.8,562.5,860.7,558.3z"/>
</g>
<g>
<path class="st0" d="M856.5,1607c-2.2-1-8-3.5-13-5.5c-4.9-2.1-10.1-4.3-11.5-5c-1.4-0.7-4.3-1.8-6.5-2.5c-2.2-0.7-4.4-1.6-5-2
c-0.5-0.5-3.9-1.8-7.5-3.1c-3.6-1.2-7.4-2.8-8.5-3.4c-1.1-0.7-3.1-1.6-4.5-2c-2.6-0.8-3-0.9-17.5-7c-11.5-4.9-17.8-7.5-29-12
c-4.9-2-12.7-5.2-17.2-7.1s-8.6-3.4-9.1-3.4c-0.6,0-2.3-0.7-3.9-1.5c-3.8-1.9-10.4-4.8-18.3-7.8c-3.6-1.4-7.9-3.3-9.5-4.1
c-1.7-0.9-3.7-1.6-4.6-1.6c-0.8,0-1.9-0.4-2.5-0.8c-0.5-0.4-3.6-1.9-6.9-3.1c-3.3-1.3-8.2-3.4-11-4.6c-2.7-1.2-9.3-3.9-14.5-5.9
c-5.2-2.1-10.7-4.4-12.2-5.2c-1.4-0.8-3.1-1.4-3.7-1.4c-1.2,0-8.8-3.2-13.3-5.6c-1.4-0.8-3.2-1.4-4-1.4c-0.7,0-3.5-1.1-6.2-2.5
c-2.7-1.4-5.7-2.5-6.5-2.5c-2.1,0-7.5-5.9-10.1-11c-3.6-7-2.8-9.6,5.2-16.9l7-6.5l15.6,3.9c37.5,9.2,103.4,41.8,165.6,81.8
c6,3.8,19.3,11.7,29.5,17.5c20.9,11.8,47.8,27.9,48.6,29.2c0.6,1-6.9,5-9.3,4.9C861.3,1608.9,858.7,1608,856.5,1607z"/>
<path class="st0" d="M459.7,1386.2c-1.6-0.9-8.8-8.4-16-16.7c-53.4-60.7-163.4-183.7-180.9-202.3c-22.9-24.2-34.1-45.2-39.4-73.7
c-1.6-8.5-1.9-14.8-1.8-41.5c0-17.3,0.1-132.6,0.2-256.2c0.2-148.7,0.6-224.9,1.3-225.4c1.8-1,3.7,1.5,19.6,25.5
c8.6,13,24.7,37.3,35.9,54.1c21.3,32.2,24.9,38.5,28.8,50.2c6.1,18.2,5.7,3,5.6,235.8l-0.1,212.5l2.9,4.5
c6.1,9.6,28,36.2,102.4,124.7c44.5,52.9,67.6,80.9,71,86.1c2.8,4.3,2.3,8.3-1.4,11.8C475.3,1387.2,466.6,1390.5,459.7,1386.2z"/>
<path class="st0" d="M1437.5,1178.1c-4.8-2.2-14.4-12.1-17.4-17.9l-2.1-4.1V919.7c0-233,0-236.5,2-244.2
c1.6-6.2,4.8-12.8,15.6-31.9c42.8-75.5,57.9-99.3,70.4-111c2.9-2.7,5.5-4.4,6-4c1.1,1.1-0.6,478.7-2,541.3l-0.9,47.3l-2.5,4.2
c-3.3,5.4-15.1,17.6-37.7,39C1447,1181.1,1445.6,1181.9,1437.5,1178.1z"/>
<path class="st0" d="M524.5,355.6c-5.8-2.7-10.4-10-14.4-23c-3.7-12-2.5-18.9,4.2-24c1.8-1.4,18.9-8.4,38.1-15.6
c31.8-11.9,101.1-38.5,243.4-93.4c37-14.3,55.5-20.9,60.3-21.7c11.9-1.8,16.8-0.5,67.7,18.7c174.1,65.6,267.2,100.8,270.3,102.5
c4.5,2.2,8.5,6.9,9.4,10.8c0.4,2.1-0.8,6.9-4.4,17.4c-2.7,8-5.4,15.4-5.9,16.4c-2,3.5-7,7.5-10.8,8.4c-8.6,2,0.8,5.4-184.3-66.3
c-66.7-25.8-124.3-47.6-128-48.4c-15.4-3.2-22.4-1.8-58.1,12.1c-15.1,5.9-72.3,27.8-127,48.7s-110.7,42.4-124.5,47.9
c-13.7,5.5-26.8,10.2-29,10.4C529.2,356.8,526.2,356.4,524.5,355.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,147 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1764 1738" style="enable-background:new 0 0 1764 1738;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F0A8A9;}
.st1{fill:#F3150A;}
</style>
<g>
<path class="st0" d="M481,1553.6c-8.7-3.3-54.6-26.9-88-45.4c-21.6-11.9-86.9-58.2-123.5-87.6c-38.3-30.6-91.2-85.6-117.3-121.9
c-42.9-59.6-100.7-184.4-141.9-306.2C1.3,965.7,0,960.4,0,950.8l0.1-8.3l2.4,3c2.4,2.8,8.6,11.8,40.8,59
c21.8,31.9,38.7,53.5,55.2,71c5.1,5.4,6.5,6.4,6,4.5c-0.3-1.4-2.8-11.2-5.5-21.8C87.7,1014,77,953.9,72.9,911
c-0.7-6.9-1.3-23.9-1.3-37.8l-0.1-25.4l2.8-2.4c5.6-4.8,19.3-2.5,24.5,4.1c3.2,4,4,7.9,4.6,22.5c0.7,15.5,1.3,20.6,6.7,61.2
c5.8,43.3,10.3,66.7,19.5,99.5c19.6,70.7,53.3,145.7,90.7,201.8c24.8,37.1,64.3,86.8,90.2,113.4c13.2,13.6,49.3,46.2,66.5,60
c5.2,4.3,14,10.9,19.5,14.8c27.4,19.2,84.1,55.6,101.9,65.3c9.5,5.2,12,8.5,11.1,15c-1.1,9.2-11.2,48-13,50
C494.4,1555.4,486.6,1555.6,481,1553.6z"/>
<path class="st0" d="M1212.5,1551c-1.8-2-11.9-40.8-13-50c-0.9-6.5,1.6-9.8,11.1-15c17.8-9.7,74.5-46.1,101.9-65.3
c5.5-3.9,14.3-10.5,19.5-14.8c17.2-13.8,53.3-46.4,66.5-60c25.9-26.6,65.4-76.3,90.2-113.4c37.4-56.1,71.1-131.1,90.7-201.8
c9.2-32.8,13.7-56.2,19.5-99.5c5.4-40.6,6-45.7,6.7-61.2c0.6-14.6,1.4-18.5,4.6-22.5c5.2-6.6,18.9-8.9,24.5-4.1l2.8,2.4l-0.1,25.4
c0,13.9-0.6,30.9-1.3,37.8c-4.1,42.9-14.8,103-26.1,147.2c-2.7,10.6-5.2,20.4-5.5,21.8c-0.5,1.9,0.9,0.9,6-4.5
c17.3-18.3,33.7-39.6,57.9-75c20.7-30.5,40-58.3,42.9-61.9c3.6-4.4,4.8-2.7,3.1,4.5c-2.1,9-18.4,58-28.6,85.7
c-42.2,115.6-90.3,216.1-129,269.9c-26.1,36.3-79,91.3-117.3,121.9c-36.6,29.4-101.9,75.7-123.5,87.6
c-34.7,19.3-79.8,42.4-88.3,45.4C1221.8,1553.7,1214.7,1553.4,1212.5,1551z"/>
<path class="st0" d="M1418.5,332.6c-1.7-0.7-8.6-7.3-15.5-14.6c-30-31.9-66.1-62-119.5-99.4c-21.9-15.5-47.4-28.6-116.5-60.3
c-46.7-21.4-65.7-29-91.1-36.2C990.3,97.9,930.4,90,843.7,91.3c-46.5,0.7-71,2.9-115.2,10.3c-125.3,20.9-245,74.6-345.5,154.9
c-21.2,16.9-33.9,28.2-57.8,51.3c-10.7,10.3-20.3,19.2-21.5,19.9c-6,3.3-12.9-0.2-18.9-9.6c-3.7-5.9-3.6-9.7,0.4-15.2
c5-7,39-40.5,53.8-53.1c58.8-50,104-80.9,160.5-109.9C591,93,696.4,63.6,800.5,56c24.9-1.8,72.6-2.3,98.5-1.1
c79.8,3.9,143.3,15.8,211.2,39.5c47.1,16.5,67.1,24.7,100.9,41.6c62.6,31.4,119.8,70,170.6,115.3c20.5,18.3,52.1,49.5,55.5,54.6
c4.6,7.3,3.8,13.8-2.8,21.1C1428.3,333.7,1424.3,335.1,1418.5,332.6z"/>
</g>
<g>
<path class="st1" d="M785.1,1732.5c-8.7-2.5-18.1-8.3-31.8-19.8c-19.3-16.3-50.7-39.7-60.7-45.3c-6.8-3.7-10.1-6.4-14-11
c-6-7.3-10.2-9.9-17.2-10.9c-6.6-0.8-12.2-4.1-15.7-9.2c-2.6-3.6-3.1-5.5-4.3-16.9c-1.6-15.5-4.2-24.8-13.2-47.6
c-3.8-9.5-7.9-20.4-9.1-24.3c-3.6-11.8-4.1-12.1-24.7-14.1c-16.8-1.6-19.9-2.6-23.8-7.7c-2.8-3.7-6.6-12-6.6-14.6
c0-2.9,3.1-4.8,8.8-5.6c7.5-1,8.2-2.9,5.3-13.7c-2.3-9.1-2.7-16.8-1-18.5c0.9-0.9,2-0.6,4.3,1.2c1.8,1.3,5.8,3.6,9,5.1
c5,2.3,6.8,2.6,12.5,2.2c8.4-0.6,12.8-2.9,22.3-11.5c6.2-5.7,9.6-7.8,19.9-12.4l12.4-5.6l0.8-7.6c1.7-17.8,10-29.8,35.1-51.5
c2.7-2.3,4.7-4.4,4.4-4.7c-0.2-0.2-6.8-1.6-14.7-2.9c-15.7-2.7-23.6-5.8-23.6-9.1c0-1.2,1.7-3,4.3-4.8l4.3-2.9l-2.6-4.3
c-3-5.3-3.1-6.6-0.4-9.1c1.7-1.5,3.4-1.8,9.6-1.6c15,0.4,24.4-2.6,30.6-9.9c4.1-4.8,6.2-10.2,8.2-21.2c2.4-13,7.6-20.2,20.9-29.1
c5.6-3.7,22.4-12.7,58.1-31.3c36.8-19.1,49.3-27.3,53.2-34.7c2.4-4.5,2-15.1-1.1-27.6c-1.4-5.8-2.6-12.5-2.6-15
c0-6.5,3.5-12.8,9.4-17c12.6-9,14.6-12.8,10.8-21.3c-2.6-5.9-5.6-7.7-21.2-12.8c-6.9-2.3-12.9-4.3-13.3-4.6c-1.8-1.1,4-5.4,9.3-7
c3-0.8,6-1.9,6.5-2.3c1.4-1.2,14.4-6,18.6-6.9c2.4-0.5,8-0.2,16.1,0.9c6.8,1,17.8,2.1,24.4,2.4c6.5,0.4,23.8,1.6,38.3,2.7
c27.9,2.1,32.4,3.1,35.4,8c0.6,1.1,5,4.7,9.5,8.1c22.5,16.4,44.1,42,55.8,66.5c10.7,22.3,19.8,60,18.1,75.5
c-2.1,20.7-18.5,38.4-68.2,74c-18.4,13.2-21.2,14.8-25.7,14.8c-3.4,0-11.1-3-12.1-4.7c-0.4-0.6,2.4-3.1,6.1-5.6
c9.8-6.7,17.9-14.3,28-26.5c15.6-18.7,16.6-21,11.2-26.4c-2.8-2.7-3.6-3-7.5-2.6c-6.7,0.8-13.3,5.7-31.5,23.3
c-12.8,12.4-18.2,16.9-24,20.1c-23.6,12.8-33.3,19-36.1,23c-3,4.4-4.8,10.6-4.9,16.5c0,10.5-6.5,20.1-15.6,23.4
c-7.1,2.6-8.6,4.4-9.2,10.9c-0.4,5.5,1,16.2,3,22.5l1,3.3l9.2-0.7c13.6-1,14.3,0.8,6.6,17.5c-2.2,4.8-4,9.8-4,11.3
c0,3,3.6,6.2,8,7.2c4,0.9,4.9,2.3,6.5,10.9c1.7,8.8,2.6,10.9,5.7,13c2.6,1.9,10.4,2.1,14.5,0.5c8.4-3.4,15.7-2.7,19.3,1.8
c3.2,4.1,2.5,6.2-4.4,12.9c-11.2,11-23.4,15.4-42.2,15.4c-16.9,0-31-3.3-45.8-10.7c-14.7-7.3-28.7-19.9-33.9-30.3
c-1.3-2.6-3.3-6.3-4.4-8.1c-1.2-1.9-2.8-6-3.7-9.1c-1.3-4.6-2.1-5.9-4.1-6.4c-5.7-1.4-13.3,3.5-17,10.9c-2.1,4.4-2.7,7.6-3.5,18.8
c-0.5,7.3-1.9,19.7-2.9,27.5c-4,28.6-3.8,37.9,1.3,48.8c3.5,7.7,9.6,12.9,21.6,18.8c8.1,3.9,12.2,6.7,17.9,12
c8.9,8.5,15.4,11.8,23.4,11.8c6.3,0,11.3-1.7,16.5-5.6c5.2-4,7.2-8,7.2-14.5c0-6.6-1.6-11.7-5.8-18.5c-2.1-3.3-2.8-5.2-2.1-6
c1.4-1.7,17.4-2.7,23.9-1.4c11.8,2.3,18,8.7,25.9,26.7c5.5,12.6,7.2,14.1,14.4,12.3c4.2-1.1,4.7-1,13.9,3.8
c5.2,2.8,11.6,5.4,14.2,5.7c9.6,1.5,17.9-4.6,26.6-19.5c2.4-4.1,6.5-10.8,9.2-14.8c7.5-11.5,6.5-15.1-6.1-23.5
c-5.4-3.5-7.8-8.6-5.9-12.4c0.7-1.4,2.5-3.5,4-4.6l2.7-2l7.6,2.8c4.1,1.5,8.2,2.4,9.1,2.1c0.8-0.3,2.4-2.5,3.4-4.8
c1-2.4,3.3-5.6,4.9-7.2c1.7-1.7,3.1-3.5,3.1-4.2c0-0.6,2.3-5.7,5-11.4c4.3-8.6,5.3-10,6.5-9c0.8,0.7,1.5,2.4,1.5,3.9
s0.6,3.5,1.4,4.6c0.7,1.1,1.8,4.7,2.4,8c0.8,5.1,0.7,7.2-1,13.5c-1.8,6.4-2.2,12.1-2.8,40c-0.8,35-1.4,39.1-6.7,49.8
c-3.3,6.6-13.8,16.6-21.8,20.9c-3.3,1.7-11.8,5.4-19,8.3c-7.1,2.8-16.8,7.3-21.5,10c-32.3,18.3-56.4,25.2-89,25.2
c-25.1,0.1-54.5-5-70.2-12.1c-8.9-4.1-13.2-4.1-15.3-0.1c-3.2,6.1-1.3,11.7,7,21.3c5.8,6.8,10.2,8.7,20.4,9.1
c5.9,0.2,7.6,0.6,8.7,2.1c3.4,4.7-0.2,10.7-9,15C799,1733.7,792,1734.4,785.1,1732.5z"/>
<path class="st1" d="M785.8,1208.4c-0.4-0.3,1.8-5.6,4.7-11.7c7.6-15.8,9.7-24.3,9.2-36.5c-0.2-5.3-1-12.3-1.7-15.6
c-1.4-5.8-1.4-5.8,1-7.8c2.2-1.7,3.4-1.9,8.9-1.4c3.5,0.4,7.6,1.3,9.1,2.1c4.1,2.1,9.7,9.1,13.3,16.5c2.9,6,3.2,7.3,3.2,16.5
c0,9-0.3,10.4-2.7,14.6c-5.7,9.7-14.9,15.8-29.9,19.8c-4.1,1.1-8.8,2.5-10.3,3.1C787.5,1209.1,786.6,1209.2,785.8,1208.4z"/>
<path class="st1" d="M864.6,1099.9c-14-2-31.6-8.7-42-15.8c-2.5-1.8-8.3-5-12.8-7.1c-24.5-11.6-42.7-9.3-66.8,8.4
c-7.7,5.7-15.2,8-23.4,7.4c-8.5-0.7-15.1-4.3-22.3-12.2c-3.3-3.6-7.3-7.2-8.9-8.1c-3.4-1.7-13.7-2-20.3-0.4
c-2.4,0.5-5.7,0.7-7.3,0.3c-3.9-0.8-6.8-5.7-6.8-11.1c0-4.2-0.1-4.3-3.3-4.3c-5.6,0-12.3,2.9-19.9,8.6
c-19.8,14.6-34.5,17.7-49.4,10.4c-8-3.9-13.7-9.1-22.6-20.3c-14.1-18-23.1-24.2-39.3-27.2c-18.6-3.5-24.4-10-23-26.1
c1.2-14.1-2.1-17.4-18-18.9c-11.3-1.1-17.5-4.7-17.5-10.3c0-7.2,13.2-22.5,23.9-27.5c5.9-2.8,7.5-3.2,15.1-3.1
c6.9,0.1,10,0.7,16.8,3.3c9.8,3.7,14.9,3.9,18.6,1c6.2-4.9,7.3-11.6,2.4-15c-1.8-1.2-6-4.8-9.3-7.9c-12.3-11.6-18.2-13.7-31.3-11.4
c-9.3,1.6-28.1,1.8-38.9,0.3c-9.1-1.2-17.4-4.7-22.1-9.2c-1.9-1.8-5.4-7.3-7.8-12.4c-3.3-6.8-6-10.8-10.6-15.5
c-5.9-5.9-26-21.2-42-32.1c-14.3-9.5-29.9-11.7-46-6.3l-8.8,3l-2.5-2.4c-4.5-4.3-2.8-7.3,6-10.8c2.8-1.1,11.1-4.9,18.5-8.5
c20.8-9.9,25.5-11.2,38.5-11.2c10.2,0.1,11.7,0.4,20.5,3.7c12.2,4.6,15.2,5.2,19.6,3.8c5.1-1.7,8.6-9.4,9.2-20.2
c0.8-14.3-3.7-20.6-18.9-26.6c-25.5-9.9-54.8-12.5-86.4-7.7c-19.7,3-31.4,7.4-41.8,15.9c-8.3,6.7-11.1,7.9-17.9,7.4
c-4.8-0.4-8.6-1.8-21.1-8c-8.4-4.1-16.7-7.8-18.6-8.2c-4.5-0.8-10.3,0.8-14.1,4c-3,2.5-3.1,2.6-5,0.9c-2.7-2.5-4-7.7-4-16.5
c0-4.1-0.6-8.6-1.3-9.9c-2-4-6.8-6.1-16.2-7.2C168.4,737,163,731.2,163,715c0-7.6-0.2-8.3-2.7-10.6c-1.6-1.3-5.4-4.7-8.6-7.6
c-3.1-2.8-7.6-8.1-9.9-11.7c-2.3-3.6-6.3-9.2-9-12.4c-5.3-6.5-5.7-8.2-2.7-12.1c2.6-3.3,6.5-3.4,11-0.1c8.4,6.2,17,9.4,35.4,13
c17.5,3.5,18.3,3.6,27.8,2.5c19.2-2.2,25.5-6.9,24.5-18.2c-0.6-5.6-3-9.4-7.7-12.2c-7.9-4.6-48.9-7.4-80.4-5.4
c-11.6,0.7-30.9,1.3-42.7,1.2c-18.9,0-22.5-0.3-29.5-2.2c-13.1-3.6-33-14.1-30.8-16.3c0.5-0.5,5.3-1.3,10.8-1.9
c20.4-2.2,26.5-5,26.5-12.3c0-3.4-0.7-4.6-5.7-9.6c-3.2-3.1-11.4-9.9-18.3-15c-12.1-9-29-24.5-29-26.6c0-0.6-0.8-1.5-1.8-2.2
c-1.5-0.9-2-2.9-2.5-8.9c-1-11.4,1.2-12.8,11.9-7.4c7,3.6,19.5,7,25.6,7c4.7,0,10-2.7,11.8-6c1.4-2.6,17.8-10.9,30.1-15.1
c11.1-3.9,14.9-7,14.9-12.2c0-7.1-5-9.6-19.2-9.7c-8.5,0-16.7-1.5-21.3-3.7c-7.5-3.8-10.8-9.4-12.4-20.6c-0.6-4.3-1.7-9.2-2.5-11
c-2-4.8-7.2-10.4-12.5-13.4C29.4,445.8,25,440.4,25,430.7c0-7.2,2.9-13.6,10.7-23.3C43.3,398,47,392,47,389.3
c0-3.1-4.2-7.5-12-12.6c-6.3-4.1-8.2-6.9-6.2-8.9c0.5-0.5,5.7-1.4,11.5-1.8c5.9-0.5,11.5-1.4,12.7-2c3.2-1.7,6-7,6-11.3
c0-6.4-2.1-8.9-11.7-14c-4.8-2.6-13.3-7.6-18.8-11.1l-10-6.3l-2.8-8.4C8.1,290,7.8,287.5,7.6,253c-0.2-31.3-0.9-39.2-4.3-52.5
c-0.9-3.3-1.6-10.5-1.6-16c-0.1-8.9,0.2-10.5,2.2-13.8c2.8-4.6,9-9,10.6-7.7c0.7,0.5,1.8,3.6,2.5,6.7c2,9.1,7.7,24.9,13,35.9
c6.3,13.1,10.6,16.6,15.6,13c1.8-1.4,1.9-2.6,1.6-18.6c-0.2-12.2,0-17.5,0.9-18.6c2-2.4,5.9-1.6,10.9,2.2c4.4,3.4,5,4.3,8,13.8
c6,18.4,25.3,53.7,42.3,77.6c10.7,15,25.8,32.4,24.3,28c-0.3-0.8-2.1-7.2-4.1-14.3c-7.9-27.9-16.2-45.9-26.1-56.8
c-6.8-7.4-10.9-14.6-18.1-32.2c-9-22.1-10.8-24.7-28.6-41.6c-5.3-4.9-8.7-12.6-8.7-19.4c0-2.3,1.3-7.6,2.9-11.7
c4.3-11,4.8-16.4,2.2-24.7c-3.2-10.6-13.8-23.4-26.4-32c-2.7-1.9-4.9-4.3-5.3-5.8C20,58.8,27.8,53,34.1,55.2
c6.8,2.4,25.5,13,29.1,16.5c3.5,3.5,5.9,8.2,7.2,14.5c1,4.7,6.9,4.8,8.7,0.2c0.5-1.4,0.6-7.9,0.2-14.7C78.8,61.2,79,58.3,80.9,51
c2.1-8.6,8-22,12.4-28.4c2.4-3.6,15.5-15.4,19.4-17.5C117.8,2.4,123,5,123,10.2c0,1.4-1.1,4.5-2.4,6.9c-2.7,4.8-7.6,25.1-7.6,31.2
c0,5.6,2.4,9.9,8.2,14.8c9.1,7.7,10.8,15.9,6.1,29.6c-3.4,10-3.5,18-0.3,24.5c1.2,2.6,6.3,9.1,11.2,14.5c5,5.3,10.2,11.4,11.5,13.5
c2.9,4.4,3.4,4.5,5.7,1.9c2.1-2.3,3.1-10.1,4.1-30.6c1-23.5,3.4-31.4,12.2-39.6c3.4-3.2,6.3-4.9,9.8-5.8c19.6-4.8,21.2-6.6,23-24.6
c1.3-12.5,3.8-18.8,10.3-25.1c7.7-7.5,19.6-13.4,28.6-14.1c8.2-0.7,8.7,0.1,5.7,10.5c-4.5,16-8.4,23.8-17.5,34.4
c-16.9,20-28.8,44.5-33.2,68.5c-2.2,12.2-2.9,35.6-1.5,48.3c6.9,59.9,35.3,124.1,83.1,187.9c70.2,93.8,170.5,186,303,278.6
c45,31.5,76.6,52,144.5,94c24.2,14.9,49.9,30.9,57.2,35.4s16.8,11.5,21.2,15.5c4.4,4,9.1,7.6,10.5,7.8c3.9,0.8,8.4-1.7,10.3-5.7
c2.2-4.6,1.3-8.8-5.5-25c-6.8-16.5-9.4-27.2-9.3-39.3c0-14.2,1.8-19.3,12.4-36.6c6.7-10.8,4.8-17.7-7.7-28.9
c-14.5-13.1-27.1-32.9-34-53.9c-4.4-13.2-7.5-27.4-12.6-57.3c-2.3-13.2-5-28-6.1-33c-3.4-14.8-1.4-24.4,6.6-31.4
c2-1.7,7.7-5.1,12.8-7.5c16.9-7.9,21.4-15.1,22.9-36c1.5-22,4.1-28.8,14.8-39c4.2-4.1,8.7-7,15.2-10.1
c18.9-8.8,28.5-18.7,35.6-36.5c4.2-10.7,5.6-18.8,5.6-33.5c0-14.9-0.8-20.4-5.4-35.6c-4.5-14.8-6.1-23.3-6.7-36.4
c-1.2-26.5,4.8-39.9,21.7-48.5c3-1.5,7.3-3.3,9.4-4c3.5-1.1,4.1-1.1,5.3,0.6c2.1,2.9,1.5,8-1.6,14.2c-6.4,12.6-7.5,21.6-4.2,34.4
c2.1,8.1,7.2,20.1,9.8,23c2.9,3.2,5.9,2.2,12-4.2c3.5-3.7,6.5-6,7.8-6c2.4,0,6,3.4,6.8,6.5c0.3,1.1,1.1,13.7,1.7,28
c1.5,35.1,4,46.1,13.3,59.2c7.3,10.4,9.1,15.5,9.5,27c0.3,6.8-0.1,13.3-1.3,20c-1.1,6.1-1.9,16.4-2.1,27.3
c-0.1,10.9-1.3,26.4-3,41.1c-3.1,26.7-2.9,30.6,2.6,39.3c4.7,7.4,12.1,8.4,13.6,1.9c1.7-7.4,5.8-21.1,7.1-23.8
c2.9-5.9,12.3-13.8,14.1-12c0.4,0.4,0.7,6.8,0.8,14.3c0.1,14.9,1.2,22.1,7.4,47.3c5.3,21.6,6.5,30.2,5,37.2
c-5,24.5-40.3,66-61.3,72.2c-6.9,2.1-11.3,1.9-16.5-0.6c-4.3-2.2-10.8-10.1-9.6-12c0.3-0.5,4.1-2.7,8.5-5
c10.5-5.5,12.3-8.1,12.8-18.1c0.4-8.9-1.5-16.5-10.1-41c-5-14.1-5.3-14.7-7-13.1c-5.2,4.7-9.8,19.2-9.8,31c0,2.8-0.5,6.4-1,7.9
c-1,2.5-1.4,2.6-6,2.2c-11.8-1.2-17-10.7-18.7-34.5c-0.9-13.3,0.8-21.6,9.7-48.3c10.4-31,12.3-40.3,12.3-59c0-8-0.4-16.5-1-19
l-0.9-4.5l-6.7,13.2c-3.8,7.6-8.2,14.8-10.3,16.8l-3.6,3.7l-10.4-0.7l-10.3-0.7l-3,2.9c-3.5,3.5-4.4,6.6-10,33.3
c-7.1,34.3-7.5,37.1-7.5,56c0,15.1,0.3,18.7,2.3,26c6.5,24.2,20.8,49.8,35.8,64.1c9.8,9.3,15.9,13.3,31.7,20.9
c28.1,13.6,40.9,30.3,42.3,55.5c0.9,15.3-1.7,26-11.2,47.3c-2.3,5.2-3.9,10.6-4.2,14.2c-0.5,5.6-0.4,6.1,2.5,8.9
c4.9,5,9,4.4,16-2.2c3.5-3.3,19.4-13.9,40.7-27.2c138.4-86.3,191.1-121.9,260-175.4c66.3-51.5,117.7-97.9,162.6-146.6
c51.1-55.6,74.8-85.8,98.4-125.5c34.5-58.2,55-128.2,50.6-173.1c-3.1-32.1-12.6-54.6-34.5-81.4c-3.6-4.4-8.1-11.1-10-15
c-4.1-8.3-11.7-29.5-11-30.7c0.8-1.2,4.3-1,10.9,0.7c19.1,5,30.3,15.5,35.4,33.1c1.2,4.4,3.1,10.9,4.1,14.5
c2.5,8.4,5.1,11,14.8,14.4c15.7,5.6,23,13.8,25.8,29.4c0.8,4.2,1.7,15.1,2,24.3c0.6,13.8,1,17.3,2.6,19.8c2.2,3.7,4.3,4.7,6.3,3
c2.6-2.2,12.4-15.6,16.8-23.2c7.4-12.6,7.7-13.6,6.5-27.7c-1.8-20.5,0.7-29.2,11.6-40.9c8.4-9,8.4-10.7-0.8-28.3
c-5.7-11.1-6.7-13.7-6.2-16.7c0.6-4.2,3.2-7.2,6.1-7.2c1.4,0,5.8,3.2,11.7,8.6c8.9,8,9.7,9,12.1,15.7c1.4,4,4.1,10.8,6.1,15.3
c5.3,11.9,6.2,17.6,4.7,29.9c-1.8,15.1,0.6,21.5,8,21.5c2.9,0,4-1.8,6-10.5c2.9-12.5,9.1-17.7,21-17.6c7.5,0,10.9,1.6,10.9,5.1
c0,3.7-3.4,9.7-8.8,15.5c-3,3.3-6.9,8.8-8.5,12.3c-3.9,8.4-3.6,15.2,1.2,24.4c3.3,6.1,3.3,6.6,2.8,15l-0.6,8.8l-10.5,14
c-31,41.2-52,79.3-67.7,123.2c-2.1,6-3.9,11.6-3.9,12.4s1,1.4,2.6,1.4c5.4,0,22.3-17.5,34.6-35.9c12-18,20.4-37.2,29.4-67.6
c2.2-7.4,3.3-9.7,6.8-13.2c4.2-4.2,8.3-6,11.2-4.9c1.3,0.5,1.4,3,0.8,20.5l-0.7,19.9l2.7,1.7c3.7,2.4,7.8,1.4,13.7-3.5
c6.6-5.6,9.5-12,11.3-25.1c1.5-11,2.9-15.1,6.4-18.2c2.8-2.5,5.4-1.5,9.3,3.4l3.2,4l-1.2,10.7c-2.7,24.8-4.1,45.1-5.1,72.6
c-0.6,16-1.5,32.1-2.1,35.8c-1.6,10.4-5.8,17.9-14.8,27c-6.9,6.9-9.3,8.5-19.4,13.3c-6.3,3-12.2,6.4-13.1,7.7
c-3,4.3-1.1,14.4,3.2,16.7c1.2,0.6,5.1,1.1,8.9,1.2c8.1,0,21.9,2.1,23.4,3.6c1.8,1.8-3.3,6.5-11,10c-17.9,8.1-18.2,10.5-3.7,27.8
c11.6,13.7,14.7,22.8,11.1,32.1c-2.5,6.6-7.4,11.6-16.3,16.8c-12.6,7.2-15.8,12-17.2,24.9c-1,9.7-2.2,13.2-5.8,17
c-5.6,6-8.3,6.8-30.5,8.8c-13.8,1.3-15.7,2.1-15.7,6.8c0,4.5,3.4,7.7,11.3,10.7c11.2,4.2,20.5,9.1,29.6,15.7
c7.6,5.4,9.1,6.1,14.2,6.5c7.5,0.6,12.9-1.3,26.9-9.4c6.3-3.5,12-6.2,12.8-5.9c1.2,0.4,1.3,1.8,0.8,6.7
c-1.6,13.5-7.5,23.2-22.7,36.8c-5.2,4.6-12.1,11.2-15.4,14.6c-3.3,3.3-8.8,7.9-12.2,10.2c-8.5,5.8-10,9-6.8,15.2
c2.3,4.5,8.5,6.3,22.3,6.4c6.4,0.1,12.4-0.1,13.2-0.4c2.1-0.7,1.5,6-0.8,8.1c-2.8,2.5-35.6,15.9-42.9,17.4c-8.7,1.9-14.2,1.9-24,0
c-23.8-4.6-52-6.2-78.2-4.6c-34.7,2.3-42.5,4.4-45.6,12.6c-3.4,8.8-0.1,17.8,7.6,20.9c18.1,7.3,48.9,2.6,74.6-11.5
c8.3-4.5,11.1-4.8,14.1-1.6c4.4,4.7,3.7,6.1-15,27.1c-6.3,7.2-8.9,11.1-14.6,22.9c-3.8,7.8-9,16.8-11.6,19.9
c-5.7,7-14.5,11.7-23.4,12.5l-6,0.6l0.1,7.7c0.2,6.5-0.2,8.3-1.9,10.7c-3,4.2-7.9,6.1-17.4,6.8c-10.1,0.7-13.2,1.6-22.5,6.3
c-11.9,5.9-19,8.2-25.7,8.2c-8.2,0-13.6-1.7-15.3-4.9c-3.5-6.8-10.2-10.5-26-14.5c-15.5-3.9-25.6-5-44-4.9c-17.7,0-33.3,2-49.7,6.2
c-19.6,5.1-27.4,14-27.2,31.3c0.1,4.6,0.8,8,2.4,11.2c4.2,8.8,11.1,9.8,23.8,3.6c4.5-2.1,10.5-4.6,13.4-5.5
c11.7-3.4,24.5-0.8,37.5,7.7c8.7,5.8,9.5,6.2,19.7,9.9c7.9,2.8,18.1,9.1,21.4,13.1c2.2,2.7-0.3,3.1-7.6,1.2
c-10-2.6-27.4-2.4-37.6,0.4c-14.4,4.1-28.5,12.3-49.3,28.4c-10.6,8.4-13.3,11.5-17.9,21.3c-6.1,12.5-18.9,22.8-32,25.5
c-5.4,1.1-33.3,0.8-47-0.6c-8-0.7-11.4,1-22.8,11.5c-4.7,4.4-9.5,8.3-10.7,8.6c-1.9,0.6-2.1,1.3-1.7,6.1c0.8,9.9,5.3,11.9,18.8,8.3
c6.3-1.7,11.5-2.3,20-2.3c17.8-0.1,24.3,2.9,33.6,16c10.2,14.2,5.7,23.4-11.3,23.4c-8.3,0-13.4,1.3-15.9,4.1
c-1.6,1.8-1.9,3.7-1.9,13.9c0,11.5-0.1,11.9-3,16.2c-3.7,5.2-9.1,8.4-16.5,9.8c-20.2,3.7-27.2,8-41,25
c-22.2,27.4-36.3,32.4-59.8,21.3c-4-1.9-11-6.3-15.6-9.7c-4.5-3.5-9.2-6.8-10.3-7.5c-5.2-2.7-9.1-0.1-11.8,7.9
c-2.6,7.8-4.1,8.6-13.8,7.2c-9.9-1.4-16.7-1.5-20-0.3c-1.3,0.5-5.5,4-9.4,7.8c-8.6,8.6-14.5,11.6-23.6,12.1
c-8.8,0.5-14.6-1.4-26.7-8.8c-17.3-10.6-26.5-13.6-39.6-12.8c-9.3,0.6-17.2,3.2-26.9,9c-18.5,10.9-22.2,12.8-30.8,15.6
c-5.1,1.7-13.3,3.8-18.1,4.7C892.1,1101.1,874.3,1101.3,864.6,1099.9z M886.8,861.3c4.6-14.3,6.6-22.9,11.7-50.8
c2.6-13.7,5.5-28.6,6.6-33c3.4-14.4,2.4-18.7-5.8-24.4c-2.6-1.9-6.9-5.4-9.5-7.8c-6.8-6.2-10.6-5.8-17.3,1.6
c-1.9,2.1-5.2,5-7.3,6.4c-4.9,3.5-7.4,7.8-7.3,13c0,2.3,1.8,11.9,4,21.2c2.2,9.4,6.8,32,10.3,50.3l6.3,33.2h2.6
C883.5,871,883.9,870.3,886.8,861.3z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,37 @@
<?xml version='1.0' encoding='UTF-8'?>
<oor:component-schema oor:name="AddonConfiguration" oor:package="org.openoffice.Office.Addons.PokemonGoIV" xml:lang="en-US" xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<templates>
<group oor:name="Contributor">
<prop oor:name="ContributorName" oor:type="xs:string"/>
<prop oor:name="Email" oor:type="xs:string"/>
<prop oor:name="Copyright" oor:type="xs:string"/>
</group>
<group oor:name="Translator">
<prop oor:name="TranslatorName" oor:type="xs:string"/>
<prop oor:name="Email" oor:type="xs:string"/>
<prop oor:name="Language" oor:type="xs:string"/>
</group>
<group oor:name="Message">
<prop oor:name="Text" oor:type="xs:string" oor:localized="true"/>
</group>
<group oor:name="FileResource">
<prop oor:name="Url" oor:type="xs:string" oor:localized="true"/>
</group>
</templates>
<component>
<group oor:name="ProductInfo">
<prop oor:name="ProductName" oor:type="xs:string"/>
<prop oor:name="Description" oor:type="xs:string" oor:localized="true"/>
<prop oor:name="Version" oor:type="xs:string"/>
<prop oor:name="License" oor:type="xs:string"/>
<prop oor:name="AuthorName" oor:type="xs:string" oor:localized="true"/>
<prop oor:name="AuthorEmail" oor:type="xs:string"/>
<prop oor:name="Copyright" oor:type="xs:string" oor:localized="true"/>
<set oor:name="Contributors" oor:node-type="Contributor"/>
<set oor:name="Translators" oor:node-type="Translator"/>
</group>
<set oor:name="FileResources" oor:node-type="FileResource"/>
<set oor:name="Messages" oor:node-type="Message"/>
</component>
</oor:component-schema>

View File

@ -0,0 +1,63 @@
<?xml version='1.0' encoding='UTF-8'?>
<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="AddonConfiguration" oor:package="org.openoffice.Office.Addons.PokemonGoIV">
<!-- General infos -->
<node oor:name="ProductInfo">
<prop oor:name="ProductName" oor:type="xs:string">
<value>PokemonGoIV</value>
</prop>
<prop oor:name="Description" oor:type="xs:string" oor:localized="true">
<value>Calculates the individual values (IVs) of the Pokémon.</value>
<value xml:lang="zh-TW">計算寶可夢的 IV 值。</value>
</prop>
<prop oor:name="Version" oor:type="xs:string">
<value>@VERSION@</value>
</prop>
<prop oor:name="License" oor:type="xs:string">
<value>Apache License</value>
</prop>
<prop oor:name="AuthorName" oor:type="xs:string" oor:localized="true">
<value>imacat</value>
<value xml:lang="zh-TW">依瑪貓</value>
</prop>
<prop oor:name="AuthorEmail" oor:type="xs:string">
<value>imacat@mail.imacat.idv.tw</value>
</prop>
<prop oor:name="Copyright" oor:type="xs:string" oor:localized="true">
<value>Copyright &#169; 2016 imacat</value>
<value xml:lang="zh-TW">版權所有 &#169; 2016 依瑪貓</value>
</prop>
<node oor:name="Contributors"/>
<node oor:name="Translators"/>
</node>
<!-- File resources (supports localization) -->
<node oor:name="FileResources">
<node oor:name="TeamValor" oor:op="replace">
<prop oor:name="Url" oor:type="xs:string" oor:localized="true">
<value>%origin%/icons/team-valor.png</value>
</prop>
</node>
<node oor:name="TeamMystic" oor:op="replace">
<prop oor:name="Url" oor:type="xs:string" oor:localized="true">
<value>%origin%/icons/team-mystic.png</value>
</prop>
</node>
<node oor:name="TeamInstinct" oor:op="replace">
<prop oor:name="Url" oor:type="xs:string" oor:localized="true">
<value>%origin%/icons/team-instinct.png</value>
</prop>
</node>
</node>
<!-- Localized messages -->
<node oor:name="Messages">
<node oor:name="msg1000" oor:op="replace">
<prop oor:name="Text" oor:type="xs:string" oor:localized="true">
<value>Found no matching IV.</value>
<value xml:lang="zh-TW">找不出符合的 IV 值。</value>
</prop>
</node>
</node>
</oor:component-data>

View File

@ -3,5 +3,7 @@
<manifest:file-entry manifest:full-path="PokemonGoIV/" manifest:media-type="application/vnd.sun.star.basic-library"/> <manifest:file-entry manifest:full-path="PokemonGoIV/" manifest:media-type="application/vnd.sun.star.basic-library"/>
<manifest:file-entry manifest:full-path="pkg-desc/pkg-description.txt" manifest:media-type="application/vnd.sun.star.package-bundle-description"/> <manifest:file-entry manifest:full-path="pkg-desc/pkg-description.txt" manifest:media-type="application/vnd.sun.star.package-bundle-description"/>
<manifest:file-entry manifest:full-path="pkg-desc/pkg-description.zh-TW.txt" manifest:media-type="application/vnd.sun.star.package-bundle-description;locale=zh-TW"/> <manifest:file-entry manifest:full-path="pkg-desc/pkg-description.zh-TW.txt" manifest:media-type="application/vnd.sun.star.package-bundle-description;locale=zh-TW"/>
<manifest:file-entry manifest:full-path="AddonConfiguration.xcs" manifest:media-type="application/vnd.sun.star.configuration-schema"/>
<manifest:file-entry manifest:full-path="AddonConfiguration.xcu" manifest:media-type="application/vnd.sun.star.configuration-data"/>
<manifest:file-entry manifest:full-path="Addons.xcu" manifest:media-type="application/vnd.sun.star.configuration-data"/> <manifest:file-entry manifest:full-path="Addons.xcu" manifest:media-type="application/vnd.sun.star.configuration-data"/>
</manifest:manifest> </manifest:manifest>

View File

@ -1,6 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="0Main" script:language="StarBasic">&apos; 0Main: The main module for the Pokémon GO IV calculator <script:module xmlns:script="http://openoffice.org/2000/script" script:name="0Main" script:language="StarBasic">&apos; Copyright (c) 2016 imacat.
&apos;
&apos; Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
&apos; you may not use this file except in compliance with the License.
&apos; You may obtain a copy of the License at
&apos;
&apos; http://www.apache.org/licenses/LICENSE-2.0
&apos;
&apos; Unless required by applicable law or agreed to in writing, software
&apos; distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
&apos; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
&apos; See the License for the specific language governing permissions and
&apos; limitations under the License.
&apos; 0Main: The main module for the Pokémon GO IV calculator
&apos; by imacat &lt;imacat@mail.imacat.idv.tw&gt;, 2016-11-27 &apos; by imacat &lt;imacat@mail.imacat.idv.tw&gt;, 2016-11-27
Option Explicit Option Explicit
@ -81,6 +95,9 @@ Function fnAskParam As aFindIVParam
oDialog.getControl (&quot;cbxBest3&quot;).setVisible (False) oDialog.getControl (&quot;cbxBest3&quot;).setVisible (False)
oDialog.getControl (&quot;lstApprasal2&quot;).setVisible (False) oDialog.getControl (&quot;lstApprasal2&quot;).setVisible (False)
&apos; TODO: To be removed.
oDialog.getControl (&quot;imgTeam&quot;).getModel.setPropertyValue (&quot;ImageURL&quot;, fnGetImageUrl (&quot;TeamValor&quot;))
If oDialog.execute = 0 Then If oDialog.execute = 0 Then
aQuery.bIsCancelled = True aQuery.bIsCancelled = True
fnAskParam = aQuery fnAskParam = aQuery

View File

@ -1,6 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="1Data" script:language="StarBasic">&apos; 1Data: The Pokémon GO data for IV calculation <script:module xmlns:script="http://openoffice.org/2000/script" script:name="1Data" script:language="StarBasic">&apos; Copyright (c) 2016 imacat.
&apos;
&apos; Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
&apos; you may not use this file except in compliance with the License.
&apos; You may obtain a copy of the License at
&apos;
&apos; http://www.apache.org/licenses/LICENSE-2.0
&apos;
&apos; Unless required by applicable law or agreed to in writing, software
&apos; distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
&apos; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
&apos; See the License for the specific language governing permissions and
&apos; limitations under the License.
&apos; 1Data: The Pokémon GO data for IV calculation
&apos; by imacat &lt;imacat@mail.imacat.idv.tw&gt;, 2016-12-06 &apos; by imacat &lt;imacat@mail.imacat.idv.tw&gt;, 2016-12-06
&apos; Generated with 9Load.subReadDataSheets () &apos; Generated with 9Load.subReadDataSheets ()

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="8Registry" script:language="StarBasic">&apos; 8Registry: Utilities used from other modules to access to PokemonGoIV private configuration
&apos; Taken from TextToColumns, 2016-12-07
Option Explicit
Const BASE_KEY As String = &quot;/org.openoffice.Office.Addons.PokemonGoIV.AddonConfiguration/&quot;
&apos; fnGetImageUrl: Returns the image URL for the UNO image controls.
Function fnGetImageUrl (sName As String) As String
Dim oRegKey As Object
oRegKey = fnGetRegistryKeyContent (BASE_KEY &amp; &quot;FileResources/&quot; &amp; sName)
fnGetImageUrl = fnExpandMacroFieldExpression (oRegKey.Url)
End Function
&apos; fnGetRegistryKeyContent: Returns the registry key content
Function fnGetRegistryKeyContent (sKeyName as string, Optional bforUpdate as Boolean)
Dim oConfigProvider As Object
Dim aNodePath (0) As New com.sun.star.beans.PropertyValue
oConfigProvider = createUnoService ( _
&quot;com.sun.star.configuration.ConfigurationProvider&quot;)
aNodePath(0).Name = &quot;nodepath&quot;
aNodePath(0).Value = sKeyName
If IsMissing (bForUpdate) Then
fnGetRegistryKeyContent = oConfigProvider.createInstanceWithArguments (&quot;com.sun.star.configuration.ConfigurationAccess&quot;, aNodePath())
Else
If bForUpdate Then
fnGetRegistryKeyContent = oConfigProvider.createInstanceWithArguments (&quot;com.sun.star.configuration.ConfigurationUpdateAccess&quot;, aNodePath())
Else
fnGetRegistryKeyContent = oConfigProvider.createInstanceWithArguments (&quot;com.sun.star.configuration.ConfigurationAccess&quot;, aNodePath())
End If
End If
End Function
&apos; fnExpandMacroFieldExpression
Function fnExpandMacroFieldExpression (sURL As String) As String
Dim sTemp As String
Dim oSM As Object
Dim oMacroExpander As Object
&apos; Gets the service manager
oSM = getProcessServiceManager
&apos; Gets the macro expander
oMacroExpander = oSM.DefaultContext.getValueByName ( _
&quot;/singletons/com.sun.star.util.theMacroExpander&quot;)
&apos;cut the vnd.sun.star.expand: part
sTemp = Join (Split (sURL, &quot;vnd.sun.star.expand:&quot;))
&apos;Expand the macrofield expression
sTemp = oMacroExpander.ExpandMacros (sTemp)
sTemp = Trim (sTemp)
fnExpandMacroFieldExpression = sTemp
End Function
</script:module>

View File

@ -1,6 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="9Load" script:language="StarBasic">&apos; 9Load: The Pokémon GO data sheets loader <script:module xmlns:script="http://openoffice.org/2000/script" script:name="9Load" script:language="StarBasic">&apos; Copyright (c) 2016 imacat.
&apos;
&apos; Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
&apos; you may not use this file except in compliance with the License.
&apos; You may obtain a copy of the License at
&apos;
&apos; http://www.apache.org/licenses/LICENSE-2.0
&apos;
&apos; Unless required by applicable law or agreed to in writing, software
&apos; distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
&apos; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
&apos; See the License for the specific language governing permissions and
&apos; limitations under the License.
&apos; 9Load: The Pokémon GO data sheets loader
&apos; by imacat &lt;imacat@mail.imacat.idv.tw&gt;, 2016-11-28 &apos; by imacat &lt;imacat@mail.imacat.idv.tw&gt;, 2016-11-28
Option Explicit Option Explicit
@ -11,6 +25,20 @@ Sub subReadDataSheets
Dim sOutput as String, mData As Variant Dim sOutput as String, mData As Variant
sOutput = &quot;&quot; _ sOutput = &quot;&quot; _
&amp; &quot;&apos; Copyright (c) 2016 imacat.&quot; &amp; Chr (10) _
&amp; &quot;&apos; &quot; &amp; Chr (10) _
&amp; &quot;&apos; Licensed under the Apache License, Version 2.0 (the &quot;&quot;License&quot;&quot;);&quot; &amp; Chr (10) _
&amp; &quot;&apos; you may not use this file except in compliance with the License.&quot; &amp; Chr (10) _
&amp; &quot;&apos; You may obtain a copy of the License at&quot; &amp; Chr (10) _
&amp; &quot;&apos; &quot; &amp; Chr (10) _
&amp; &quot;&apos; http://www.apache.org/licenses/LICENSE-2.0&quot; &amp; Chr (10) _
&amp; &quot;&apos; &quot; &amp; Chr (10) _
&amp; &quot;&apos; Unless required by applicable law or agreed to in writing, software&quot; &amp; Chr (10) _
&amp; &quot;&apos; distributed under the License is distributed on an &quot;&quot;AS IS&quot;&quot; BASIS,&quot; &amp; Chr (10) _
&amp; &quot;&apos; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.&quot; &amp; Chr (10) _
&amp; &quot;&apos; See the License for the specific language governing permissions and&quot; &amp; Chr (10) _
&amp; &quot;&apos; limitations under the License.&quot; &amp; Chr (10) _
&amp; Chr (10) _
&amp; &quot;&apos; 1Data: The Pokémon GO data for IV calculation&quot; &amp; Chr (10) _ &amp; &quot;&apos; 1Data: The Pokémon GO data for IV calculation&quot; &amp; Chr (10) _
&amp; &quot;&apos; by imacat &lt;imacat@mail.imacat.idv.tw&gt;, &quot; &amp; Format (Date (), &quot;yyyy-mm-dd&quot;) &amp; Chr (10) _ &amp; &quot;&apos; by imacat &lt;imacat@mail.imacat.idv.tw&gt;, &quot; &amp; Format (Date (), &quot;yyyy-mm-dd&quot;) &amp; Chr (10) _
&amp; &quot;&apos; Generated with 9Load.subReadDataSheets ()&quot; &amp; Chr (10) _ &amp; &quot;&apos; Generated with 9Load.subReadDataSheets ()&quot; &amp; Chr (10) _

View File

@ -1,8 +1,8 @@
# Strings for Dialog Library PokemonGoIV # Strings for Dialog Library PokemonGoIV
2.DlgMain.HelpText= 2.DlgMain.HelpText=
3.DlgMain.Title=Pok\u00c3\u00a9mon GO IV Calculator 3.DlgMain.Title=Pok\u00e9mon GO IV Calculator
22.DlgMain.txtPokemon.HelpText= 22.DlgMain.txtPokemon.HelpText=
23.DlgMain.txtPokemon.Label=~Pok\u00c3\u00a9mon: 23.DlgMain.txtPokemon.Label=~Pok\u00e9mon:
26.DlgMain.txtCP.HelpText= 26.DlgMain.txtCP.HelpText=
27.DlgMain.txtCP.Label=~CP: 27.DlgMain.txtCP.Label=~CP:
28.DlgMain.numCP.HelpText= 28.DlgMain.numCP.HelpText=
@ -14,7 +14,7 @@
40.DlgMain.txtPlayerLevel.HelpText= 40.DlgMain.txtPlayerLevel.HelpText=
41.DlgMain.txtPlayerLevel.Label=Player ~level: 41.DlgMain.txtPlayerLevel.Label=Player ~level:
46.DlgMain.cbxIsNew.HelpText= 46.DlgMain.cbxIsNew.HelpText=
47.DlgMain.cbxIsNew.Label=This Pok\u00c3\u00a9mon is ~newly-caught and was not powered-up yet. 47.DlgMain.cbxIsNew.Label=This Pok\u00e9mon has not been powered-up yet.
50.DlgMain.grpApprasals.HelpText= 50.DlgMain.grpApprasals.HelpText=
51.DlgMain.grpApprasals.Label=Team Leader Apprasal 51.DlgMain.grpApprasals.Label=Team Leader Apprasal
85.DlgMain.btnOK.HelpText= 85.DlgMain.btnOK.HelpText=
@ -39,3 +39,5 @@
195.DlgMain.txtBestAfter.HelpText= 195.DlgMain.txtBestAfter.HelpText=
201.DlgMain.cbxBest2.HelpText= 201.DlgMain.cbxBest2.HelpText=
203.DlgMain.cbxBest3.HelpText= 203.DlgMain.cbxBest3.HelpText=
205.DlgMain.imgTeam.HelpText=
207.DlgMain.imgTeam.HelpText=

View File

@ -14,7 +14,7 @@
40.DlgMain.txtPlayerLevel.HelpText= 40.DlgMain.txtPlayerLevel.HelpText=
41.DlgMain.txtPlayerLevel.Label=\u73a9\u5bb6\u7b49\u7d1a(~L)\uff1a 41.DlgMain.txtPlayerLevel.Label=\u73a9\u5bb6\u7b49\u7d1a(~L)\uff1a
46.DlgMain.cbxIsNew.HelpText= 46.DlgMain.cbxIsNew.HelpText=
47.DlgMain.cbxIsNew.Label=\u6211\u525b\u6293\u5230\u9019\u96bb\u5bf6\u53ef\u5922\uff0c\u9084\u6c92\u5f37\u5316\u904e(~N)\u3002 47.DlgMain.cbxIsNew.Label=\u9019\u96bb\u5bf6\u53ef\u5922\u9084\u6c92\u5f37\u5316\u904e(~N)\u3002
50.DlgMain.grpApprasals.HelpText= 50.DlgMain.grpApprasals.HelpText=
51.DlgMain.grpApprasals.Label=\u968a\u9577\u8a55\u50f9 51.DlgMain.grpApprasals.Label=\u968a\u9577\u8a55\u50f9
85.DlgMain.btnOK.HelpText= 85.DlgMain.btnOK.HelpText=
@ -39,3 +39,5 @@
195.DlgMain.txtBestAfter.HelpText= 195.DlgMain.txtBestAfter.HelpText=
201.DlgMain.cbxBest2.HelpText= 201.DlgMain.cbxBest2.HelpText=
203.DlgMain.cbxBest3.HelpText= 203.DlgMain.cbxBest3.HelpText=
205.DlgMain.imgTeam.HelpText=
207.DlgMain.imgTeam.HelpText=

View File

@ -5,6 +5,7 @@
<dlg:style dlg:style-id="0" dlg:background-color="0xff0000" dlg:text-color="0xffffff" dlg:font-weight="100"/> <dlg:style dlg:style-id="0" dlg:background-color="0xff0000" dlg:text-color="0xffffff" dlg:font-weight="100"/>
<dlg:style dlg:style-id="1" dlg:background-color="0xff" dlg:text-color="0xffffff"/> <dlg:style dlg:style-id="1" dlg:background-color="0xff" dlg:text-color="0xffffff"/>
<dlg:style dlg:style-id="2" dlg:background-color="0xffff00"/> <dlg:style dlg:style-id="2" dlg:background-color="0xffff00"/>
<dlg:style dlg:style-id="3" dlg:border="none"/>
</dlg:styles> </dlg:styles>
<dlg:bulletinboard> <dlg:bulletinboard>
<dlg:text dlg:id="txtPokemon" dlg:tab-index="16" dlg:left="5" dlg:top="6" dlg:width="30" dlg:height="8" dlg:help-text="&amp;22.DlgMain.txtPokemon.HelpText" dlg:value="&amp;23.DlgMain.txtPokemon.Label"/> <dlg:text dlg:id="txtPokemon" dlg:tab-index="16" dlg:left="5" dlg:top="6" dlg:width="30" dlg:height="8" dlg:help-text="&amp;22.DlgMain.txtPokemon.HelpText" dlg:value="&amp;23.DlgMain.txtPokemon.Label"/>
@ -260,6 +261,7 @@
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.script:PokemonGoIV.0Main.subRdoTeamYellowItemChanged_itemStateChanged?language=Basic&amp;location=application" script:language="Script"/> <script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.script:PokemonGoIV.0Main.subRdoTeamYellowItemChanged_itemStateChanged?language=Basic&amp;location=application" script:language="Script"/>
</dlg:radio> </dlg:radio>
</dlg:radiogroup> </dlg:radiogroup>
<dlg:img dlg:style-id="3" dlg:id="imgTeam" dlg:tab-index="25" dlg:left="130" dlg:top="55" dlg:width="20" dlg:height="20" dlg:help-text="&amp;207.DlgMain.imgTeam.HelpText"/>
<dlg:menulist dlg:id="lstApprasal1" dlg:tab-index="9" dlg:left="10" dlg:top="79" dlg:width="200" dlg:height="12" dlg:help-text="&amp;164.DlgMain.lstApprasal1.HelpText" dlg:spin="true"/> <dlg:menulist dlg:id="lstApprasal1" dlg:tab-index="9" dlg:left="10" dlg:top="79" dlg:width="200" dlg:height="12" dlg:help-text="&amp;164.DlgMain.lstApprasal1.HelpText" dlg:spin="true"/>
<dlg:text dlg:id="txtBestBefore" dlg:tab-index="23" dlg:left="10" dlg:top="96" dlg:width="20" dlg:height="8" dlg:help-text="&amp;194.DlgMain.txtBestBefore.HelpText"/> <dlg:text dlg:id="txtBestBefore" dlg:tab-index="23" dlg:left="10" dlg:top="96" dlg:width="20" dlg:height="8" dlg:help-text="&amp;194.DlgMain.txtBestBefore.HelpText"/>
<dlg:menulist dlg:id="lstBest" dlg:tab-index="10" dlg:left="30" dlg:top="94" dlg:width="35" dlg:height="12" dlg:help-text="&amp;193.DlgMain.lstBest.HelpText" dlg:spin="true"> <dlg:menulist dlg:id="lstBest" dlg:tab-index="10" dlg:left="30" dlg:top="94" dlg:width="35" dlg:height="12" dlg:help-text="&amp;193.DlgMain.lstBest.HelpText" dlg:spin="true">

View File

@ -4,4 +4,5 @@
<library:element library:name="0Main"/> <library:element library:name="0Main"/>
<library:element library:name="1Data"/> <library:element library:name="1Data"/>
<library:element library:name="9Load"/> <library:element library:name="9Load"/>
<library:element library:name="8Registry"/>
</library:library> </library:library>

BIN
oxt/icons/team-instinct.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
oxt/icons/team-mystic.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
oxt/icons/team-valor.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB