-
Notifications
You must be signed in to change notification settings - Fork 0
/
pacmanQq
3849 lines (3849 loc) · 49.5 KB
/
pacmanQq
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
41
42
43
44
45
46
47
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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
a52dec
aalib
aardvark-dns
abseil-cpp
accerciser
accessibility-inspector
accounts-qml-module
accountsservice
ack
acl
aconfmgr-git
acpica
acpid
act
adobe-source-code-pro-fonts
adobe-source-han-sans-cn-fonts
adobe-source-han-serif-cn-fonts
adwaita-cursors
adwaita-icon-theme
adwaita-icon-theme-legacy
adwaita-qt6-git
afl++
afpfs-ng
aha
aic94xx-firmware
akonadi
akonadi-calendar
akonadi-calendar-tools
akonadi-contacts
akonadi-import-wizard
akonadi-mime
akonadi-notes
akonadi-search
akonadiconsole
akregator
alacritty
alembic
alligator
alsa-card-profiles
alsa-lib
alsa-plugins
alsa-topology-conf
alsa-ucm-conf
alsa-utils
anaconda
analitza
ananicy-cpp
ananicy-rules-git
angelfish
antiword
anyrun-git-debug
anytype-bin
aom
apache
apg
apparmor
apparmor.d-git-debug
apple-fonts
appstream
appstream-glib
appstream-qt
appstream-qt5
apr
apr-util
aquamarine-git
arc-gtk-theme
arc-icon-theme
arch-install-scripts
arch-torification
archcraft-artworks
archcraft-backgrounds
archcraft-backgrounds-branding
archcraft-backgrounds-extra
archcraft-backgrounds-gradient
archcraft-backgrounds-minimal
archcraft-backgrounds-nature
archcraft-config-music
archcraft-dunst-icons
archcraft-icons-beautyline
archcraft-music
archlinux-appstream-data
archlinux-artwork
archlinux-contrib
archlinux-keyring
archlinux-wallpaper
archlinuxcn-keyring
argon2
aria2
arianna
aribb24
ark
arm-none-eabi-binutils
arm-none-eabi-gcc
arm-none-eabi-newlib
artikulate
asar
ascii-image-converter
asciidoc
aspell
aspnet-runtime
assimp
ast-firmware
asymptote
at-spi2-core
atkmm
atomicparsley
atop
attica
attica5
attr
atuin
aubio
audex
audiocd-kio
audiofile
audiotube
audit
augeas
aura
autoconf
autoconf-archive
autologin
automake
autorandr
avahi
avogadro-crystals
avogadro-fragments
avogadro-molecules
avogadrolibs
avogadrolibs-qt5
awesome-terminal-fonts
aws-c-auth
aws-c-cal
aws-c-common
aws-c-compression
aws-c-event-stream
aws-c-http
aws-c-io
aws-c-mqtt
aws-c-s3
aws-c-sdkutils
aws-checksums
aws-crt-cpp
aws-sdk-cpp
ayatana-ido
babl
badlion-client
badlion-client-debug
baloo
baloo-widgets
baobab
bar-gmail
base
base-devel
bash
bat
bats
bc
beautyline
beep
beeper-latest-bin
bees
benchmark
bettercap
betterlockscreen
bibata-cursor-theme-bin
bibata-extra-cursor-theme
bibata-rainbow-cursor-theme
biber
binder_linux-dkms
binutils
bison
bitwarden
black-hole-solver
blackarch-keyring
blas
blender
blinken
blobdrop-git
blosc
bluedevil
blueman
blueprint-compiler
bluez
bluez-libs
bluez-qt
bluez-utils
bmon
bolt
bomber
boost
boost-libs
bottles
bottom
bovo
box2d
bpf
bpython
breeze
breeze-gtk
breeze-icons
breeze-plymouth
breezy
bridge-utils
brillo
brltty
brotli
bspwm
btdu
btop
btrfs-assistant
btrfs-progs
btrfsmaintenance
bubblewrap
bun-bin
bun-bin-debug
burpsuite
byobu
bzip2
c-ares
ca-certificates
ca-certificates-mozilla
ca-certificates-utils
cabextract
cairo
cairomm
cairomm-1.16
calc
calendarsupport
calf
cameractrls
cantarell-fonts
cantor
capnproto
capstone
cargo-update
catatonit
catch2
catdoc
cava
cblas
ccache
ccache-ext
ccze
cdparanoia
cdrtools
celluloid
cervisia
cfitsio
chaotic-keyring
chaotic-mirrorlist
chatgpt-desktop-bin
check
check-docs
cheese
chromaprint
chromium
chrono-date
chrpath
cifs-utils
cjson
clang
clapper
clinfo
cliphist
clipmenu
clipnotify
clonezilla
cloudflare-warp-bin
cloudflare-warp-bin-debug
clucene
clutter
clutter-gst
clutter-gtk
cmake
cmark
cmatrix
code-translucent
cogl
cointop
colloid-icon-theme-git
colord
colord-gtk-common
colord-gtk4
colord-kde
colord-sane
colorgcc
colormake
compiler-rt
composefs
composer
confuse
conmon
containerd
containers-common
convertlit
coordgen
copyq
coreutils
countdown
cpio
cppdap
cpupower
cracklib
cronie
cryptsetup
ctags
cuda
cudnn
cups
cups-browsed
cups-filters
cups-pdf
cups-pk-helper
curl
cursor-bin
d-spy
dangerzone-bin
darkman
darling-bin
dart
dav1d
davinci-resolve
db5.3
dbus
dbus-broker
dbus-broker-units
dbus-c++
dbus-glib
dconf
dconf-editor
ddcci-driver-linux-dkms-git
ddcutil
debootstrap
debtap
debugedit
debuginfod
default-cursors
deno
desktop-file-utils
devhelp
device-mapper
devtools
dhcpcd
diff-so-fancy
diffutils
discord
discount
discover
dislocker-noruby
distro-info
distro-info-data
distrobox
djvulibre
dkms
dleyna
dlib-cuda
dmenu
dmidecode
dnf
dnsmasq
docbook-xml
docbook-xsl
docker
docker-compose
dolphin
dolphin-plugins
dos2unix
dosfstools
dotconf
dotnet-host
dotnet-runtime
dotnet-sdk
dotnet-targeting-pack
double-conversion
downgrade
doxygen
draco
dracut
drbl
drkonqi
dtc
duf
duktape
dunst
duperemove
dvisvgm
dynisland-git
e2fsprogs
easy-rsa
easyeffects
easytag
ebook-tools
ebtables
ecryptfs-utils
edex-ui-git
editline
editorconfig-core-c
edk2-aarch64
edk2-arm
edk2-ovmf
efibootmgr
efitools
efivar
egl-gbm
egl-wayland
eglexternalplatform
electron
electron11-bin
electron29
electron31
electron32
electron33
elementary-icon-theme
elfutils
elisa
embree
enca
enchant
endeavour
eog
epiphany
eselect-git
eventviews
evhz-git
evhz-git-debug
evince
evolution
evolution-data-server
exempi
exfatprogs
exiv2
exo
expac
expat
expect
extra-cmake-modules
eza
f2fs-tools
faac
faad2
fakeroot
falkon
fastfetch
fastjar
fcitx5
fcitx5-chewing
fcitx5-chinese-addons
fcitx5-configtool
fcitx5-gtk
fcitx5-lua
fcitx5-mcbopomofo-git
fcitx5-pinyin-sougou
fcitx5-qt
fcitx5-rime
fcitx5-skin-fluentdark-git
fcitx5-skin-ori-git
feh
ffcall
ffmpeg
ffmpeg4.4
ffmpegthumbnailer
ffmpegthumbs
ffnvcodec-headers
fftw
figma-agent-linux-bin
figma-linux
file
file-roller
filelight
filesystem
findutils
firefox
firejail
firetools
fish
fisher
five-or-more
flac
flashrom
flatpak
flatpak-kcm
flex
flightgear
flightgear-data
fluidsynth
fmt
fnm
folks
fontconfig
four-in-a-row
fping
frameworkintegration
frameworkintegration5
francis
freealut
freecell-solver
freeglut
freerdp
freerdp2
freetype2
frei0r-plugins
fribidi
fuse-common
fuse2
fuse3
futuresql
fwupd
fwupd-efi
fzf
gamemode
gamescope
gammastep
garcon
gawk
gc
gcc
gcc-libs
gcc13
gcc13-libs
gcr
gcr-4
gd
gdb
gdb-common
gdbm
gdk-pixbuf2
gdm
gdm-settings
geany
geary
gedit
gegl
gendesk
geoclue
geocode-glib-2
geocode-glib-common
gettext
gflags
ghc
ghc-libs
ghex
ghidra
ghostscript
ghostwriter
gi-docgen
giflib
girara
git
git-fixup-git
git-lfs
gitg
github-cli
gitleaks
gjs
gl-gsync-demo
glade
glava
glew
glew1.10
glfw
glib-networking
glib2
glib2-devel
glib2-docs
glibc
glibmm
glibmm-2.68
glm
glow
glslang
glu
glusterfs
glycin
gmime3
gmp
gnome-2048
gnome-app-list
gnome-autoar
gnome-backgrounds
gnome-bluetooth
gnome-bluetooth-3.0
gnome-boxes
gnome-builder
gnome-calculator
gnome-calendar
gnome-characters
gnome-chess
gnome-clocks
gnome-color-manager
gnome-connections
gnome-console
gnome-contacts
gnome-control-center
gnome-desktop
gnome-desktop-4
gnome-desktop-common
gnome-devel-docs
gnome-dictionary
gnome-disk-utility
gnome-font-viewer
gnome-games
gnome-icon-theme-extras
gnome-keybindings
gnome-keyring
gnome-klotski
gnome-logs
gnome-mahjongg
gnome-maps
gnome-menus
gnome-mines
gnome-multi-writer
gnome-music
gnome-nibbles
gnome-notes
gnome-online-accounts
gnome-photos
gnome-recipes
gnome-remote-desktop
gnome-robots
gnome-session
gnome-settings-daemon
gnome-shell
gnome-shell-extensions
gnome-software
gnome-sound-recorder
gnome-sudoku
gnome-system-monitor
gnome-taquin
gnome-terminal
gnome-tetravex
gnome-text-editor
gnome-themes-extra
gnome-tour
gnome-tweaks
gnome-user-docs
gnome-user-share
gnome-video-effects
gnome-weather
gnu-free-fonts
gnugo
gnupg
gnutls
go
go-tools
gobject-introspection
gobject-introspection-runtime
gom
google-earth-pro
google-glog
gparted
gperftools
gpgme
gpm
gpsd
gpt4all-chat-debug
gptfdisk
gpu-screen-recorder-git
gpu-screen-recorder-gtk-git
gradience
gradle
granatier
granite
grantlee
grantlee-editor
grantleetheme
graphene
graphicsmagick
graphite
graphviz
greetd
greetd-agreety
greetd-wlgreet
grep
grilo
grilo-plugins
grim
grimblast-git
groff
grub
grub-btrfs
grub-customizer
gsettings-desktop-schemas
gsettings-qt
gsettings-system-schemas
gsfonts
gsl
gsm
gsound
gspell
gssdp
gst-devtools-libs
gst-editing-services
gst-libav
gst-plugin-gtk
gst-plugin-gtk4
gst-plugin-pipewire
gst-plugin-va
gst-plugins-bad
gst-plugins-bad-libs
gst-plugins-base
gst-plugins-base-libs
gst-plugins-good
gst-plugins-ugly
gst-python
gstreamer
gtest
gtk-doc
gtk-engine-murrine
gtk-engines
gtk-layer-shell
gtk-update-icon-cache
gtk-vnc
gtk2
gtk3
gtk4
gtk4-layer-shell
gtkmm
gtkmm-4.0
gtkmm3
gtksourceview3
gtksourceview4
gtksourceview5
gtksourceviewmm
gtkspell3
gts
gtuber
guestfs-tools
gufw
guile
gulp
gum
gumbo-parser
gunicorn
gupnp
gupnp-av
gupnp-dlna
gupnp-igd
guvcview
guvcview-common
gvfs
gvfs-afc
gvfs-dnssd
gvfs-goa
gvfs-google
gvfs-gphoto2
gvfs-mtp
gvfs-nfs
gvfs-onedrive
gvfs-smb
gvfs-wsdd
gwenview
gzip
handbrake
handbrake-cli
harfbuzz
harfbuzz-icu
hashcat
haskell-aeson
haskell-aeson-pretty
haskell-ansi-terminal
haskell-ansi-terminal-types
haskell-ansi-wl-pprint
haskell-appar
haskell-asn1-encoding
haskell-asn1-parse
haskell-asn1-types
haskell-assoc
haskell-async
haskell-attoparsec
haskell-attoparsec-aeson
haskell-attoparsec-iso8601
haskell-auto-update
haskell-base-compat
haskell-base-compat-batteries
haskell-base-orphans
haskell-base-unicode-symbols
haskell-base16-bytestring
haskell-base64
haskell-base64-bytestring
haskell-basement
haskell-bifunctors
haskell-bitvec
haskell-blaze-builder
haskell-blaze-html
haskell-blaze-markup
haskell-boring
haskell-bsb-http-chunked
haskell-byteorder
haskell-call-stack
haskell-case-insensitive
haskell-cassava
haskell-cereal
haskell-citeproc
haskell-clock
haskell-cmdargs
haskell-colour
haskell-commonmark
haskell-commonmark-extensions
haskell-commonmark-pandoc
haskell-comonad
haskell-conduit
haskell-conduit-extra
haskell-constraints
haskell-contravariant
haskell-cookie
haskell-cpphs
haskell-cryptohash-md5
haskell-cryptohash-sha1
haskell-crypton
haskell-crypton-connection
haskell-crypton-x509
haskell-crypton-x509-store
haskell-crypton-x509-system
haskell-crypton-x509-validation
haskell-cryptonite
haskell-data-array-byte
haskell-data-default
haskell-data-default-class
haskell-data-default-instances-containers
haskell-data-default-instances-dlist
haskell-data-default-instances-old-locale
haskell-data-fix
haskell-dec
haskell-deriving-aeson
haskell-diff
haskell-digest
haskell-digits
haskell-distributive
haskell-dlist
haskell-doclayout
haskell-doctemplates
haskell-easy-file
haskell-emojis
haskell-enclosed-exceptions
haskell-entropy
haskell-erf
haskell-extra
haskell-fast-logger
haskell-fgl
haskell-file-embed
haskell-filepattern
haskell-foldable1-classes-compat
haskell-generically
haskell-ghc-bignum-orphans
haskell-ghc-lib-parser-ex
haskell-ghc-parser
haskell-ghc-paths
haskell-glob
haskell-gridtables
haskell-haddock-library
haskell-hashable
haskell-hourglass
haskell-hscolour
haskell-hslua
haskell-hslua-aeson
haskell-hslua-classes
haskell-hslua-core
haskell-hslua-list
haskell-hslua-marshalling
haskell-hslua-module-doclayout
haskell-hslua-module-path
haskell-hslua-module-system
haskell-hslua-module-text
haskell-hslua-module-version
haskell-hslua-module-zip
haskell-hslua-objectorientation
haskell-hslua-packaging
haskell-hslua-repl
haskell-hslua-typing
haskell-http-api-data
haskell-http-client
haskell-http-client-tls
haskell-http-date
haskell-http-media
haskell-http-types
haskell-http2
haskell-hunit
haskell-indexed-traversable
haskell-indexed-traversable-instances
haskell-integer-logarithms
haskell-iproute
haskell-ipynb
haskell-ipython-kernel
haskell-isocline
haskell-jira-wiki-markup
haskell-juicypixels
haskell-lexer
haskell-libyaml
haskell-lifted-async
haskell-lifted-base
haskell-lpeg
haskell-lua
haskell-memory
haskell-mime-types
haskell-mmorph
haskell-monad-control
haskell-mono-traversable
haskell-network
haskell-network-byte-order
haskell-network-info
haskell-network-uri
haskell-old-locale
haskell-old-time
haskell-onetuple
haskell-only
haskell-optparse-applicative
haskell-ordered-containers
haskell-os-string
haskell-pandoc
haskell-pandoc-lua-engine
haskell-pandoc-lua-marshal
haskell-pandoc-server
haskell-pandoc-types
haskell-pem
haskell-polyparse
haskell-pretty-show
haskell-prettyprinter
haskell-primitive
haskell-psqueues
haskell-quickcheck
haskell-random
haskell-recv
haskell-refact
haskell-regex-base
haskell-regex-tdfa
haskell-resourcet
haskell-safe
haskell-safe-exceptions
haskell-scientific
haskell-semialign
haskell-semigroupoids
haskell-servant
haskell-servant-server
haskell-sha
haskell-shelly
haskell-simple-sendfile
haskell-singleton-bool
haskell-skylighting
haskell-skylighting-core
haskell-skylighting-format-ansi
haskell-skylighting-format-blaze-html
haskell-skylighting-format-context
haskell-skylighting-format-latex
haskell-socks
haskell-some
haskell-sop-core
haskell-split
haskell-splitmix
haskell-statevar
haskell-streaming-commons
haskell-strict
haskell-string-conversions
haskell-syb
haskell-tagged
haskell-tagsoup
haskell-temporary
haskell-texmath
haskell-text-conversions
haskell-text-icu
haskell-text-short
haskell-th-abstraction
haskell-th-compat
haskell-th-lift
haskell-th-lift-instances
haskell-these
haskell-time-compat
haskell-time-manager
haskell-tls
haskell-toml-parser
haskell-transformers-base
haskell-transformers-compat
haskell-type-equality
haskell-typed-process
haskell-typst
haskell-typst-symbols
haskell-unicode-collation
haskell-unicode-data
haskell-unicode-transforms
haskell-uniplate
haskell-unix-compat
haskell-unix-time
haskell-unliftio
haskell-unliftio-core
haskell-unordered-containers
haskell-utf8-string
haskell-uuid
haskell-uuid-types
haskell-vault
haskell-vector
haskell-vector-algorithms
haskell-vector-stream
haskell-wai
haskell-wai-app-static
haskell-wai-cors
haskell-wai-extra
haskell-wai-logger
haskell-warp
haskell-witherable
haskell-word8