Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
feat: Simple systray GUI (#78)
Browse files Browse the repository at this point in the history
* add gui boilerplate

* add system tray menu

* improve status check

* add gui build step

* add signing to gui build

* add gui to msi

* fix wix config (shortcut args)

* add startup componentgroup in wix

* remove terminal windows on gui start

* fixed systray enter and cmd windows popup

* add status visualization via icon color
refactored and split check and refresh loop

---------

Co-authored-by: Marco Blamauer <[email protected]>
  • Loading branch information
mriedmann and Marco Blamauer authored Mar 21, 2023
1 parent 1681708 commit a4a4a7e
Show file tree
Hide file tree
Showing 22 changed files with 4,982 additions and 13 deletions.
44 changes: 42 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,39 @@ on:
branches: [ master ]

jobs:
build-gui:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v3
with:
go-version: '^1.19.6'

- run: go build -ldflags -H=windowsgui .
working-directory: gui

- name: Sign the GUI Exe (test)
run: ./msi/SignGuiExe.ps1
continue-on-error: true
env:
PFX_PASSPHRASE: ${{ secrets.PFX_PASSPHRASE }}
PFX_THUMBPRINT: ${{ secrets.PFX_THUMBPRINT }}
if: startsWith(github.ref, 'refs/tags/') != true

- name: Sign the GUI Exe (release)
run: ./msi/AzureSignGuiExe.ps1
env:
AZURE_SIGN_CLIENT_SECRET: ${{ secrets.AZURE_SIGN_CLIENT_SECRET }}
if: startsWith(github.ref, 'refs/tags/')

- name: Upload Archive (tar)
uses: actions/upload-artifact@v3
with:
name: gui-windows
path: gui/gui.exe

build-container:
runs-on: ubuntu-latest

Expand All @@ -28,7 +61,9 @@ jobs:

build-msi:
runs-on: windows-latest
needs: build-container
needs:
- build-container
- build-gui

steps:
- uses: actions/checkout@v3
Expand All @@ -40,10 +75,15 @@ jobs:
WIX_PATH: ${{ env.wix }}
run: echo "$env:WIX_PATH\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append

- name: Download artifacts
- name: Download artifact (linux container image)
uses: actions/download-artifact@v3
with:
name: linux-container-image

- name: Download artifact (gui client)
uses: actions/download-artifact@v3
with:
name: gui-windows

- name: Build the MSI Package
run: ./msi/BuildInstaller.ps1
Expand Down
21 changes: 21 additions & 0 deletions gui/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

# Go workspace file
go.work
30 changes: 30 additions & 0 deletions gui/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module github.com/cloudflightio/dockerinwsl/gui

go 1.20

require (
fyne.io/systray v1.10.0
github.com/docker/docker v23.0.1+incompatible
)

require (
github.com/Microsoft/go-winio v0.6.0 // indirect
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/godbus/dbus/v5 v5.0.4 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/stretchr/testify v1.8.2 // indirect
github.com/tevino/abool v1.2.0 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.6.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.1.12 // indirect
gotest.tools/v3 v3.4.0 // indirect
)
91 changes: 91 additions & 0 deletions gui/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
fyne.io/systray v1.10.0 h1:Yr1D9Lxeiw3+vSuZWPlaHC8BMjIHZXJKkek706AfYQk=
fyne.io/systray v1.10.0/go.mod h1:oM2AQqGJ1AMo4nNqZFYU8xYygSBZkW2hmdJ7n4yjedE=
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOElx5B5HZ4hJQsoJ/PvUvKRhJHDQXO8P8=
github.com/Microsoft/go-winio v0.6.0 h1:slsWYD/zyx7lCXoZVlvQrj0hPTM1HI4+v1sIda2yDvg=
github.com/Microsoft/go-winio v0.6.0/go.mod h1:cTAf44im0RAYeL23bpB+fzCyDH2MJiz2BO69KH/soAE=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/docker/distribution v2.8.1+incompatible h1:Q50tZOPR6T/hjNsyc9g8/syEs6bk8XXApsHjKukMl68=
github.com/docker/distribution v2.8.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
github.com/docker/docker v23.0.1+incompatible h1:vjgvJZxprTTE1A37nm+CLNAdwu6xZekyoiVlUZEINcY=
github.com/docker/docker v23.0.1+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=
github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec=
github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4=
github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
github.com/godbus/dbus/v5 v5.0.4 h1:9349emZab16e7zQvpmsbtjc18ykshndd8y2PG3sgJbA=
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 h1:HfkjXDfhgVaN5rmueG8cL8KKeFNecRCXFhaJ2qZ5SKA=
github.com/moby/term v0.0.0-20221205130635-1aeaba878587/go.mod h1:8FzsFHVUBGZdbDsJw/ot+X+d5HLUbvklYLJ9uGfcI3Y=
github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=
github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc=
github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
github.com/opencontainers/image-spec v1.0.2 h1:9yCKha/T5XdGtO0q9Q9a6T5NUCsTn/DrBg0D7ufOcFM=
github.com/opencontainers/image-spec v1.0.2/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/tevino/abool v1.2.0 h1:heAkClL8H6w+mK5md9dzsuohKeXHUpY7Vw0ZCKW+huA=
github.com/tevino/abool v1.2.0/go.mod h1:qc66Pna1RiIsPa7O4Egxxs9OqkuxDX55zznh9K07Tzg=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 h1:6zppjxzCulZykYSLyVDYbneBfbaBIQPYMevg0bEwv2s=
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/net v0.6.0 h1:L4ZwwTvKW9gr0ZMS1yrHD9GZhIuVjOBBnaKH+SPQK0Q=
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU=
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=
golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0=
golang.org/x/tools v0.1.12 h1:VveCTK38A2rkS8ZqFY25HIDFscX5X9OoEhJd3quQmXU=
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gotest.tools/v3 v3.4.0 h1:ZazjZUfuVeZGLAmlKKuyv3IKP5orXcwtOwDQH6YVr6o=
gotest.tools/v3 v3.4.0/go.mod h1:CtbdzLSsqVhDgMtKsx03ird5YTGB3ar27v0u/yKBW5g=
Binary file added gui/icon/icon.ico
Binary file not shown.
Binary file added gui/icon/icon_err.ico
Binary file not shown.
Binary file added gui/icon/icon_ok.ico
Binary file not shown.
Binary file added gui/icon/icon_warn.ico
Binary file not shown.
56 changes: 56 additions & 0 deletions gui/icon/iconunix.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
//+build linux darwin

// File generated by 2goarray v0.1.0 (http://github.com/cratonica/2goarray)

package icon

var Data []byte = []byte{
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20,
0x08, 0x06, 0x00, 0x00, 0x00, 0x73, 0x7a, 0x7a, 0xf4, 0x00, 0x00, 0x00,
0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0e, 0xc3, 0x00, 0x00, 0x0e,
0xc3, 0x01, 0xc7, 0x6f, 0xa8, 0x64, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45,
0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x77,
0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e,
0x6f, 0x72, 0x67, 0x9b, 0xee, 0x3c, 0x1a, 0x00, 0x00, 0x01, 0xbb, 0x49,
0x44, 0x41, 0x54, 0x58, 0x85, 0xed, 0xd7, 0xb1, 0x6e, 0x13, 0x41, 0x10,
0xc6, 0xf1, 0xdf, 0x20, 0x02, 0x0d, 0x52, 0xe8, 0xa0, 0x40, 0xb6, 0xe0,
0x15, 0x80, 0x86, 0x9a, 0x1e, 0x1a, 0xaa, 0xa4, 0xa6, 0xe1, 0x01, 0xa8,
0x40, 0x94, 0x69, 0x29, 0xe9, 0x4d, 0xc3, 0x4b, 0x00, 0x15, 0x0f, 0x40,
0x03, 0x2f, 0x00, 0x24, 0x28, 0x94, 0x40, 0x8a, 0x64, 0x29, 0xb2, 0x96,
0xd6, 0xe6, 0xce, 0xbb, 0xbe, 0x73, 0x80, 0x82, 0x95, 0x56, 0x3e, 0xdd,
0xce, 0x7d, 0xf3, 0xd7, 0xf8, 0xdb, 0xdb, 0xb9, 0x48, 0x29, 0xf9, 0x9b,
0xe3, 0xdc, 0x98, 0x87, 0x23, 0xe2, 0x6a, 0x44, 0x5c, 0xf9, 0xe3, 0x00,
0x11, 0x31, 0x89, 0x88, 0x19, 0x3e, 0xe1, 0x73, 0x44, 0xcc, 0x22, 0x62,
0x32, 0x88, 0x20, 0xa5, 0xd4, 0x3c, 0xb1, 0x8d, 0x3d, 0xfc, 0x40, 0xca,
0xbf, 0xe5, 0xf5, 0x1e, 0xb6, 0xd7, 0xd2, 0x6c, 0x4c, 0x7c, 0x1e, 0x0f,
0xf1, 0x25, 0x27, 0x3b, 0xc1, 0x2b, 0xdc, 0xc0, 0x35, 0xbc, 0xc0, 0x71,
0x5e, 0x3b, 0xc4, 0x63, 0x5c, 0xdc, 0x08, 0x00, 0xee, 0xe2, 0x7d, 0x16,
0x4f, 0x78, 0x87, 0x3b, 0x1d, 0x71, 0x37, 0xf1, 0xba, 0x88, 0xfb, 0x88,
0x07, 0x83, 0x01, 0x06, 0x0b, 0x36, 0x02, 0xf7, 0x02, 0x8c, 0x2d, 0x69,
0xe5, 0x2f, 0xbb, 0xbe, 0x12, 0x00, 0xbb, 0x38, 0x1a, 0x63, 0xaa, 0x8a,
0x69, 0x8f, 0xb0, 0xbb, 0x0a, 0xe0, 0x30, 0x07, 0xfe, 0xc4, 0x13, 0x6c,
0x0d, 0x4d, 0x5e, 0x68, 0x6e, 0xe1, 0x69, 0xd6, 0x4c, 0xf8, 0xb6, 0x0a,
0x20, 0x2d, 0xcd, 0x0f, 0xb8, 0x37, 0x22, 0xf9, 0xfd, 0xac, 0xb1, 0xa0,
0xdb, 0x02, 0xb0, 0x96, 0x91, 0x5a, 0x0d, 0xdc, 0x0c, 0x50, 0x94, 0xae,
0xc9, 0x48, 0x0d, 0x06, 0xbe, 0xb0, 0xac, 0x5f, 0x05, 0x28, 0xee, 0x5d,
0xc2, 0x33, 0x7c, 0x2f, 0x8c, 0xf4, 0xbc, 0x34, 0xe7, 0x8a, 0x98, 0xcb,
0x55, 0xfd, 0x5a, 0x40, 0xb1, 0x36, 0xc5, 0xcb, 0x5c, 0x89, 0x84, 0x03,
0x3c, 0xca, 0xf3, 0x6b, 0x51, 0xa5, 0x19, 0x26, 0x3d, 0x1a, 0xc3, 0x01,
0x8a, 0x98, 0xdb, 0x78, 0xdb, 0x61, 0xd8, 0x37, 0xb8, 0x55, 0x79, 0x76,
0x3c, 0xc0, 0x92, 0xc3, 0xe7, 0xc9, 0x9b, 0x76, 0x4a, 0x97, 0x7e, 0xe4,
0x05, 0x10, 0x11, 0xa7, 0x51, 0x29, 0x85, 0x86, 0xb1, 0x89, 0xf8, 0x51,
0x0d, 0xc9, 0x26, 0xc6, 0x7f, 0x80, 0x7f, 0x0e, 0xe0, 0x00, 0x72, 0x8f,
0x37, 0xdd, 0x54, 0x92, 0x88, 0x98, 0xe6, 0x1e, 0x12, 0xf6, 0x17, 0x16,
0x97, 0xb6, 0xc9, 0x8e, 0x35, 0x7a, 0x3c, 0x95, 0x6d, 0xab, 0xbb, 0x87,
0xdc, 0xe9, 0x7d, 0x0f, 0x54, 0xde, 0xe7, 0xbf, 0x35, 0x24, 0x7d, 0x00,
0x86, 0x36, 0x24, 0x4b, 0x22, 0xd5, 0x96, 0xac, 0x0b, 0xc0, 0xd8, 0x96,
0xac, 0x03, 0xa4, 0x57, 0xb0, 0x04, 0x68, 0x01, 0x1e, 0x04, 0x50, 0x29,
0xe9, 0x3c, 0xd9, 0xd9, 0xb5, 0xe5, 0x15, 0x53, 0x1d, 0x17, 0x89, 0xcf,
0xee, 0xc3, 0xa4, 0x03, 0x64, 0xe2, 0xf4, 0xd8, 0x3d, 0x51, 0x39, 0x82,
0x6b, 0x73, 0xe1, 0x30, 0x5a, 0x77, 0xcc, 0x3f, 0x4c, 0x53, 0x4a, 0xfb,
0xb5, 0xd8, 0x5e, 0x8d, 0x31, 0x00, 0x9b, 0x18, 0xbf, 0x00, 0xcc, 0xc9,
0x8d, 0x63, 0x06, 0xfb, 0x4a, 0x11, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
}

Loading

0 comments on commit a4a4a7e

Please sign in to comment.