pax_global_header00006660000000000000000000000064150633364420014520gustar00rootroot0000000000000052 comment=a1099d075fa914452366b28c67ff171e21a1f02e btop-1.4.5/000077500000000000000000000000001506333644200124735ustar00rootroot00000000000000btop-1.4.5/.editorconfig000066400000000000000000000001711506333644200151470ustar00rootroot00000000000000[*.{cpp,h,hpp,sh,md,cfg,sample}] indent_style = tab indent_size = 4 [*.{yml,yaml}] indent_style = space indent_size = 2 btop-1.4.5/.github/000077500000000000000000000000001506333644200140335ustar00rootroot00000000000000btop-1.4.5/.github/FUNDING.yml000066400000000000000000000011031506333644200156430ustar00rootroot00000000000000# These are supported funding model platforms github: aristocratos patreon: # Replace with a single Patreon username open_collective: # Replace with a single Open Collective username ko_fi: aristocratos tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username custom: https://paypal.me/aristocratos btop-1.4.5/.github/ISSUE_TEMPLATE/000077500000000000000000000000001506333644200162165ustar00rootroot00000000000000btop-1.4.5/.github/ISSUE_TEMPLATE/bug_report.md000066400000000000000000000032661506333644200207170ustar00rootroot00000000000000--- name: Bug report about: Create a report to help us improve labels: bug --- **Read the README.md and search for similar issues before posting a bug report!** **Describe the bug** **To Reproduce** **Screenshots** **Info (please complete the following information):** - btop++ version: `btop --version` - If using snap: `snap info btop` - Binary: [self compiled or static binary from release] - Architecture: [x86_64, aarch64, etc.] `uname -m` - Platform: [Linux, FreeBSD, OsX] - (Linux) Kernel: `uname -r` - (OSX/FreeBSD) Os release version: - Terminal used: - Font used: **Additional context** **GDB Backtrace** btop-1.4.5/.github/ISSUE_TEMPLATE/feature_request.md000066400000000000000000000011501506333644200217400ustar00rootroot00000000000000--- name: Feature request about: Suggest an idea for this project labels: feature --- **Is your feature request related to a problem? Please describe.** **Describe the solution you'd like** **Describe alternatives you've considered** **Additional context** btop-1.4.5/.github/workflows/000077500000000000000000000000001506333644200160705ustar00rootroot00000000000000btop-1.4.5/.github/workflows/cmake-freebsd.yml000066400000000000000000000022761506333644200213120ustar00rootroot00000000000000name: FreeBSD CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-freebsd.yml' - 'CMakeLists.txt' - 'cmake/**' - 'include/**' - 'src/*pp' - 'src/freebsd/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-freebsd.yml' - 'CMakeLists.txt' - 'cmake/**' - 'include/**' - 'src/*pp' - 'src/freebsd/*pp' jobs: build: name: freebsd-${{ matrix.version}}-${{ matrix.arch}} runs-on: ubuntu-24.04 concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.arch }}-${{ matrix.version }} cancel-in-progress: true strategy: matrix: arch: ['aarch64', 'x86_64'] version: ['14.3', '15.0'] steps: - uses: actions/checkout@v5 - name: Compile uses: vmactions/freebsd-vm@v1 with: arch: ${{ matrix.arch }} release: ${{ matrix.version }} usesh: true prepare: pkg install -y cmake ninja lowdown run: | CXX=clang++ cmake -B build -G Ninja -DBTOP_STATIC=ON cmake --build build --verbose btop-1.4.5/.github/workflows/cmake-linux.yml000066400000000000000000000035021506333644200210300ustar00rootroot00000000000000name: Linux CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-linux.yml' - 'CMakeLists.txt' - 'cmake/**' - 'include/**' - 'src/*pp' - 'src/linux/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-linux.yml' - 'CMakeLists.txt' - 'cmake/**' - 'include/**' - 'src/*pp' - 'src/linux/*pp' jobs: build: name: ${{ matrix.compiler }}-${{ matrix.version }} runs-on: ubuntu-24.04 concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.compiler }}-${{ matrix.version }} cancel-in-progress: true strategy: matrix: include: - compiler: clang version: 18 - compiler: clang version: 19 - compiler: clang version: 20 - compiler: gcc version: 12 - compiler: gcc version: 13 - compiler: gcc version: 14 steps: - uses: actions/checkout@v5 - name: Install clang ${{ matrix.version }} if: ${{ matrix.compiler == 'clang' }} run: wget -qO - https://apt.llvm.org/llvm.sh | sudo bash -s -- ${{ matrix.version }} all - name: Configure run: | if [[ "${{ matrix.compiler }}" == "clang" ]]; then export CC=clang-${{ matrix.version }} export CXX=clang++-${{ matrix.version }} export CXXFLAGS="-stdlib=libc++" export LDFLAGS="-fuse-ld=lld -rtlib=compiler-rt -unwindlib=libunwind" else export CC=gcc-${{ matrix.version }} export CXX=g++-${{ matrix.version }} fi cmake -B build -G Ninja - name: Compile run: cmake --build build --verbose btop-1.4.5/.github/workflows/cmake-macos.yml000066400000000000000000000025101506333644200207710ustar00rootroot00000000000000name: macOS CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-macos.yml' - 'CMakeLists.txt' - 'cmake/**' - 'include/**' - 'src/*pp' - 'src/osx/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-macos.yml' - 'CMakeLists.txt' - 'cmake/**' - 'include/**' - 'src/*pp' - 'src/osx/*pp' jobs: cmake_build_on_macos: runs-on: macos-15 concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true steps: - uses: actions/checkout@v5 - name: Install build tools run: | export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew update --quiet brew install --force --overwrite cmake llvm lld ninja lowdown - name: Configure run: | export LLVM_PREFIX="$(brew --prefix llvm)" export LLD_PREFIX="$(brew --prefix lld)" export CXX="$LLVM_PREFIX/bin/clang++" export CPPFLAGS="-I$LLVM_PREFIX/include" export LDFLAGS="-L$LLVM_PREFIX/lib -L$LLVM_PREFIX/lib/c++ -Wl,-rpath,$LLVM_PREFIX/lib/c++ -fuse-ld=$LLD_PREFIX/bin/ld64.lld" cmake -B build -G Ninja - name: Compile run: cmake --build build --verbose btop-1.4.5/.github/workflows/cmake-netbsd.yml000066400000000000000000000030661506333644200211550ustar00rootroot00000000000000name: NetBSD CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-netbsd.yml' - 'CMakeLists.txt' - 'cmake/**' - 'include/**' - 'src/*pp' - 'src/netbsd/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-netbsd.yml' - 'CMakeLists.txt' - 'cmake/**' - 'include/**' - 'src/*pp' - 'src/netbsd/*pp' jobs: build: name: netbsd-${{ matrix.version }}-${{ matrix.arch }} runs-on: ubuntu-24.04 concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.arch }}-${{ matrix.version }} cancel-in-progress: true strategy: matrix: arch: ['aarch64', 'amd64'] version: ['10.1'] steps: - uses: actions/checkout@v5 - name: Compile uses: vmactions/netbsd-vm@v1 with: arch: ${{ matrix.arch }} release: ${{ matrix.version }} usesh: true prepare: | PATH="/usr/pkg/sbin:/usr/pkg/bin:$PATH" PKG_PATH="https://ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/${{ matrix.arch }}/${{ matrix.version }}/All/" export PATH PKG_PATH /usr/sbin/pkg_add pkgin pkgin -y install cmake ninja-build gcc14 coreutils git git config --global --add safe.directory /home/runner/work/btop/btop run: | cmake -DCMAKE_CXX_COMPILER="/usr/pkg/gcc14/bin/g++" -B build -G Ninja -DBTOP_STATIC=OFF cmake --build build --verbose btop-1.4.5/.github/workflows/continuous-build-freebsd.yml000066400000000000000000000030501506333644200235240ustar00rootroot00000000000000name: Continuous Build FreeBSD on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-freebsd.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-freebsd.yml' jobs: build-freebsd: runs-on: ubuntu-24.04 timeout-minutes: 20 strategy: matrix: compiler: ["clang++", "g++"] steps: - uses: actions/checkout@v5 - name: Compile uses: vmactions/freebsd-vm@v1 with: release: '14.3' usesh: true prepare: | pkg install -y gmake gcc coreutils git lowdown git config --global --add safe.directory /home/runner/work/btop/btop run: | CXX=${{ matrix.compiler }} gmake STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") COMPILER=$(echo ${{ matrix.compiler }} | sed 's/clang++/llvm/' | sed 's/g++/gcc/') mv bin/btop bin/btop-"$COMPILER"-"$GIT_HASH" ls -alh bin - uses: actions/upload-artifact@v4 with: name: btop-x86_64-freebsd-14-${{ matrix.compiler }} path: 'bin/*' if-no-files-found: error btop-1.4.5/.github/workflows/continuous-build-gpu.yml000066400000000000000000000020121506333644200227020ustar00rootroot00000000000000name: Continuous Build Gpu on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-gpu.yml' pull_request: branches: - main paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-gpu.yml' jobs: gpu_build_linux: runs-on: ubuntu-24.04 container: alpine:edge concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true steps: - uses: actions/checkout@v5 - name: Install build tools run: apk add --no-cache --update gcc g++ make linux-headers - name: Compile run: make CXX=g++ GPU_SUPPORT=true btop-1.4.5/.github/workflows/continuous-build-linux.yml000066400000000000000000000070741506333644200232630ustar00rootroot00000000000000name: Continuous Build Linux on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-linux.yml' pull_request: branches: - main paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-linux.yml' jobs: static-build: continue-on-error: true strategy: matrix: toolchain: - aarch64-linux-musl - aarch64_be-linux-musl - arm-linux-musleabi - arm-linux-musleabihf - armeb-linux-musleabi - armeb-linux-musleabihf - armel-linux-musleabi - armel-linux-musleabihf - armv5l-linux-musleabi - armv5l-linux-musleabihf - armv6-linux-musleabi - armv6-linux-musleabihf - armv7l-linux-musleabihf - armv7m-linux-musleabi - armv7r-linux-musleabihf - i486-linux-musl - i686-linux-musl - m68k-linux-musl - mips-linux-musl - mips-linux-musln32sf - mips-linux-muslsf - mips64-linux-musl - mips64-linux-musln32 - mips64-linux-musln32sf - mips64el-linux-musl - mips64el-linux-musln32 - mips64el-linux-musln32sf - mipsel-linux-musl - mipsel-linux-musln32 - mipsel-linux-musln32sf - mipsel-linux-muslsf - powerpc-linux-musl - powerpc-linux-muslsf - powerpc64-linux-musl - powerpc64le-linux-musl - powerpcle-linux-musl - powerpcle-linux-muslsf - riscv32-linux-musl - riscv64-linux-musl - s390x-linux-musl - x86_64-linux-musl - x86_64-linux-muslx32 # - or1k-linux-musl # - sh2-linux-musl # - sh2-linux-muslfdpic # - sh2eb-linux-musl # - sh2eb-linux-muslfdpic # - sh4-linux-musl # - sh4eb-linux-musl runs-on: ubuntu-24.04 container: muslcc/x86_64:${{ matrix.toolchain }} steps: - name: Update alpine repositories run: sed -i 's/3\.14/3\.22/' /etc/apk/repositories - name: Install build tools run: apk add --no-cache --upgrade coreutils git make tar zstd - name: Fix - Unsafe repository stop run: git config --global --add safe.directory /__w/btop/btop - name: Checkout source uses: actions/checkout@v5 with: submodules: recursive - name: Fix - Stopping at filesystem boundary run: git init # [fix Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).] - name: Build run: make STATIC=true STRIP=true - name: Make executable run: chmod +x bin/* - name: Set up directories run: | mkdir .artifacts mkdir .package - name: Create binary artifacts run: | TOOLCHAIN=${{ matrix.toolchain }} GIT_HASH=$(git rev-parse --short "${{ github.sha }}") FILENAME=btop-${TOOLCHAIN/linux-musl/}-$GIT_HASH cp bin/btop .artifacts/$FILENAME - name: Upload artifacts uses: actions/upload-artifact@v4 with: name: btop-${{ matrix.toolchain }} path: '${{ github.workspace }}/.artifacts/*' include-hidden-files: true btop-1.4.5/.github/workflows/continuous-build-macos.yml000066400000000000000000000032051506333644200232160ustar00rootroot00000000000000name: Continuous Build MacOS on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/freebsd/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-macos.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/freebsd/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-macos.yml' jobs: build-macos: strategy: matrix: os: - {runner: 'macos-13', version: 'Ventura'} - {runner: 'macos-14', version: 'Sonoma'} - {runner: 'macos-15', version: 'Sequoia'} runs-on: ${{ matrix.os.runner }} steps: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable - uses: actions/checkout@v5 - name: Install build tools run: | export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew update --quiet brew install --force --overwrite llvm lld lowdown - name: Compile run: | make CXX=$(brew --prefix llvm)/bin/clang++ ARCH=x86_64 STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") mv bin/btop bin/btop-x86_64-${{ matrix.os.runner }}-${{ matrix.os.version }}-$GIT_HASH ls -alh bin - uses: actions/upload-artifact@v4 with: name: btop-x86_64-${{ matrix.os.runner }}-${{ matrix.os.version }} path: 'bin/*' btop-1.4.5/.github/workflows/continuous-build-netbsd.yml000066400000000000000000000032071506333644200233750ustar00rootroot00000000000000name: Continuous Build NetBSD on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-netbsd.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-netbsd.yml' jobs: build-netbsd: runs-on: ubuntu-24.04 timeout-minutes: 20 steps: - uses: actions/checkout@v5 - name: Compile uses: vmactions/netbsd-vm@v1 with: release: '10.1' usesh: true prepare: | PATH="/usr/pkg/sbin:/usr/pkg/bin:$PATH" PKG_PATH="https://ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/amd64/10.1/All/" export PATH PKG_PATH /usr/sbin/pkg_add pkgin pkgin -y install gmake gcc14 coreutils git git config --global --add safe.directory /home/runner/work/btop/btop run: | gmake CXX=/usr/pkg/gcc14/bin/g++ CXXFLAGS='-DNDEBUG -I/usr/pkg/gcc10/include -I/usr/include -I/usr/pkg/include' STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") mv bin/btop bin/btop-GCC10-"$GIT_HASH" ls -alh bin - uses: actions/upload-artifact@v4 with: name: btop-x86_64-netbsd-9.3 path: 'bin/*' if-no-files-found: error btop-1.4.5/.github/workflows/continuous-build-openbsd.yml000066400000000000000000000025341506333644200235520ustar00rootroot00000000000000name: Continuous Build OpenBSD on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/netbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-openbsd.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/netbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-openbsd.yml' jobs: build-openbsd: runs-on: ubuntu-24.04 timeout-minutes: 20 steps: - uses: actions/checkout@v5 - name: Compile uses: vmactions/openbsd-vm@v1 with: release: '7.7' usesh: true prepare: | pkg_add gmake gcc%11 g++%11 coreutils git lowdown git config --global --add safe.directory /home/runner/work/btop/btop run: | gmake CXX=eg++ STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") mv bin/btop bin/btop-GCC11-"$GIT_HASH" ls -alh bin - uses: actions/upload-artifact@v4 with: name: btop-x86_64-openbsd-7.7 path: 'bin/*' if-no-files-found: error btop-1.4.5/.github/workflows/test-snap-can-build.yml000066400000000000000000000016671506333644200223770ustar00rootroot00000000000000name: 🧪 Test snap can be built on x86_64 on: workflow_dispatch: push: branches: [ main ] tags-ignore: - '*.*' paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/test-snap-can-build.yml' pull_request: branches: [ main ] paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/netbsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/test-snap-can-build.yml' jobs: build: runs-on: ubuntu-24.04 strategy: matrix: node-version: [20.x] steps: - uses: actions/checkout@v5 - uses: snapcore/action-build@v1 id: build - uses: diddlesnaps/snapcraft-review-action@v1 with: snap: ${{ steps.build.outputs.snap }} isClassic: 'false' btop-1.4.5/.gitignore000066400000000000000000000021471506333644200144670ustar00rootroot00000000000000# gitginore template for creating Snap packages # website: https://snapcraft.io/ parts/ prime/ stage/ *.snap # Snapcraft global state tracking data(automatically generated) # https://forum.snapcraft.io/t/location-to-save-global-state/768 /snap/.snapcraft/ # Source archive packed by `snapcraft cleanbuild` before pushing to the LXD container /*_source.tar.bz2 # Prerequisites *.d # Compiled Object files *.slo *.lo *.o *.obj # Precompiled Headers *.gch *.pch # Compiled Dynamic libraries *.so *.dylib *.dll # Fortran module files *.mod *.smod # Compiled Static libraries *.lai *.la *.a *.lib # Executables *.exe *.out *.app # Compiled man page btop.1 build bin btop /obj/ config.h .*/ # Optional libraries lib/rocm_smi_lib # Don't ignore .github directory !.github/ # Ignore files created by Qt Creator *.config *.creator *.creator.user *.creator.user.* *.cflags *.cxxflags *.files *.includes # CMake CMakeLists.txt.user CMakeCache.txt CMakeFiles CMakeScripts Testing Makefile cmake_install.cmake install_manifest.txt compile_commands.json CTestTestfile.cmake _deps CMakeUserPresets.json # CLion cmake-build-* btop-1.4.5/CHANGELOG.md000066400000000000000000000477431506333644200143230ustar00rootroot00000000000000## v1.4.5 References | Description | Author(s) --- | --- | --- #1254 | Bump bundled fmt to 12.0.0 | @deckstose #1242 | Enable vim movement in help menu | @botantony #948 | Remove reduntant symbols in tree view | @Denizantip #1249 | Use /sys/dev/block/MAJOR:MINOR instead of /sys/block/NAME for disk I/O | @CountBleck #1227 | feat: display CPU power draw & fix GPU+load avg overwriting core info | @Tom94 and @YuriiShkrobut 4f5abbb | Fix locale issues | @aristocratos #1165 | Add encode and decode meters on Nvidia GPUs | @sam-kirby #1197 | linux: Battery Time-to-full | @RadsammyT #1203 | Convert ascii escape codes in mountpoint names before reading statvfs | @deckstose #1198 | Fix presets erroring with gpu* usage | @entropylost #1191 | Fix --tty/--no-tty flag having no effect | @deckstose ## v1.4.4 References | Description | Author(s) --- | --- | --- #1185 | Fix auto-detection of CPU temp on Ampere boards | @bexcran 589c133 | Fixed floating_humanizer() to work correctly when numeric delimiter isn't a dot. | @aristocratos #1157 | Add command line option to set an inital filter | @imwints #1172 | Make 100ms the minimal refresh rate. Exit gracefully if integer conversion in CLI parser fails. | @imwints #1031 | Lock/unlock config to avoid infinite recursion | @Jacajack #1156 | Fix incorrect positioning and start symbol of second title introduced in 2538d89 | @xDMPx ffcd064 | Fix dangling reference warnings for GCC 13 and later | aristocratos ## v1.4.3 References | Description | Author(s) --- | --- | --- c3b225f | Revert e266ccd which broke str_to_upper() and str_to_lower() | @aristocratos #1137 | Enable additional checks in libc++ with the new hardening mode | @imwints #1135 | Remove redundant optimization flag | @imwints #1139 | Ignore incomplete filter regex, issue #1133 | @imwints ## v1.4.2 References | Description | Author(s) --- | --- | --- f1482fe | Fix process arguments appearing outside proc box by replacing ASCII control codes with blankspace, issue #1080 | @aristocratos #1130 | Fix problems shown by clang-tidy's performance checks | @imwints #1120 | Fix wrong error message and documentation of renamed option --utf-force | @t-webber @imwints #1128 | Flatten cmake module path | @imwints #1129 | CMake: Remove option to use mold | @imwints #1047 | Update Terminus font link, fix typo, spelling, and grammar | @QinCai-rui #929 | Please clang with sanitizers | @bad-co-de #1126 | Fix MacOS tree-mode + aggregate memory/thread scaling issue | @xaskii #993 | Fix typo: Mhz -> MHz | @NyCodeGHG ## v1.4.1 References | Description | Author(s) --- | --- | --- #1111 #1112 | Various code fixes | @imwints #930 #931 | Various code fixes | @bad-co-de #1061 | Fixed typo | @polluks #1110 | Move the config parser in it's own module | @imwints #1101 | Adding a menu option to show bitrates in base 10 separate from the setting to show bytes/bits in base 10 | @georgev93 #1079 | Allow MidnightBSD to build btop using the existing freebsd support. | @laffer1 #1098 | Use XDG_STATE_HOME to save logs | @imwints #1092 | Bump CMake version to 3.25 required for LINUX variable | @imwints #1058 | Replace brackets with arrows in net and proc box | @taha-yassine #1091 | Bump bundled fmt to 11.1.4 | @imwints #725 | cmake: link to CMAKE_DL_LIBS | @alalazo #990 | Fix phoenix-night.theme marked as executable | @sertonix #1034 | Add Kanagawa-lotus and Kanagawa-wave themes | @philikarus #973 | Bump NetBSD version to 10.1 and FreeBSD version to 14.2. | @fraggerfox #1072 | Add dark version of adwaita theme: adwaita-dark | @k0tran #1036 | Resetting last selection on page navigation in optionsMenu to avoid unordered_map error | @seth-wood #1029 | Share the CPU name trimming code between platforms | @yarrick #1033 | Update Ryzen name trimming | @yarrick #1030 | Drop macos 12 build, add v14 and v15 | @yarrick #1028 | Fix cmake-macos workflow | @yarrick #1027 | Bump version of deprecated upload-artifact step | @yarrick #1025 | Update obsolete egrep call | @tywkeene b52069c | Fix menu crash when GPU_SUPPORT=false, issue #989 | @aristocratos #961 | Add 'Everforest Ligth Medium' theme | @mstuttgart #960 | Support intel GPUs before Gen-6 (patch from upstream) | @w8jcik #958 | intel_name_lookup_shim.c (get_intel_device_name): Fix SEGFAULT | @artyom-poptsov 2e7208d | Fix rsmi_measure_pcie_speeds not saving, issue #934 | @aristocratos f3446ed | Show GPU Watt fractions when below 100W | @aristocratos | + more from @imwints @aristocratos Big thanks to @imwints for helping out with project maintenance, PR reviews and merging! ## v1.4.0 References | Description | Author(s) --- | --- | --- #703 | NetBSD Support | @fraggerfox #903 | Intel GPU support | @bjia56 161e8f4 | Added warnings when toggling boxes and terminal size is to small | @aristocratos 4210f5f | Fix missing core percentages, issue #792 | @aristocratos 35857f8 | Various fixes for drawing GPU related information | @aristocratos #879 | fix divide 0 error when caculating disk usage percentage (#791) | @flylai #884 | fix io_graph_speeds parsing | @feihtthief #863 | V1 of Phoenix Night theme | @Firehawke 3f384c0 | Fixed missing CPU core temps when too small to show core temp graphs, issues #792 #867 | @aristocratos 97d2fb5 | Fixed missing IO graphs in IO mode, issue #867 | @aristocratos #840 | fix zero temp (#467) | @joske #850 | Fix comments (parsing) in theme files | @acidghost #806 | Add regex filtering | @imwints #836 | Fix typo in file existences check for voltage_now | @vsey #835 | Show time in days when remaining battery exceeds an estimation of 24h | @imwints #819 | (AMD Gpu) fix pwr_usage not being defined correctly during rsmi collection | @kalkafox #831 | macOS: fix crash if there exists a uid not associated with any user | @thecoder-001 #796 | Fix rsmi device name buffer size | @davc0n #807 | Add gruvbox_light theme | @kk9uk #724 | Create man page for btop in Markdown | @ottok #734 | Include metadata in binary version output `btop --version` | @imwints #771 | collect: Fix reading of battery power draw on Linux | @Derppening ## v1.3.2 Description | Author(s) | References --- | --- | --- fix: Can't detect librocm 6.0.x | @imwints, @aristocratos | #761 ## v1.3.1 Description | Author(s) | References --- | --- | --- GPU: Added support for dynamic loading of ROCm v6 libraries | @aristocratos, @fxzjshm | 5511131, #737 Increase max network interface name to 15 | @tessus | #714 Fix OpenBSD UTF-8 locale detection | @lcheylus, @imwints | #753, #717 Add hot-reloading of config file with CTRL+R or SIGUSR2 signal | @MartinPit | #722 Add battery power draw for linux and freebsd | @vsey | #689 Fix crash caused by string exception when cpu clock is exactly between 999.5 and 999.9 Mhz | @rkmcode | #735 Write newline at end of config file | @planet36 | #743 Add theme based on Everforest Dark Medium palette | @M-Sviridov | #746 fix: don't mangle memory for zombie processes | @joske | #747 Share common code from collect | @imwints | #756 Fixed incorrect used and available memory for OSX | | 4461a43 ## v1.3.0 * Added Gpu Support Linux | @romner-set | PR #529 * Added platform support for OpenBSD | @joske | PR #607 * Enable macos clang | @muneebmahmed | PR #666 * Fix Apple Silicon CPUs misprinted | @masiboss | PR #679 * Cmake support for MacOS | @imwints | PR #675 * Elementarish theme: color update according to Elementary palette | @stradicat | PR #660 * Add alternative key codes for Delete, Insert, Home, End | @ivanp7 | PR #659 * Fix scrollbar not clearing sometimes. | @DecklynKern | PR #643 * Add keybind for toggling memory display mode in PROC box | @rahulaggarwal965 | PR #623 * Minor string initialization improvement | @imwints | PR #636 * Made disks statvfs logic asynchronous. | @crestfallnatwork | PR #633 * Fix signal list on non-linux/weird linux platforms | @lvxnull | PR #630 * Add option to accumulate a child's resources in parent in tree-view | @imwints | PR #618 * Add CMake support for Linux | @imwints | PR #589 * Horizon theme | @SidVeld | PR #610 * Fix short conversion of 1000-1023 *iB | @scorpion-26 | #609 * Fix integer overflows in btop_collect.cpp | @dorrellmw | #546 * Support compiling with LLVM | @imwints | #510 * Fix getting zfs pool name with '.' char in freebsd | @jfouquart | #602 * [macos/freebsd] support gcc13 | @joske | #600 * FreeBSD swap info | @rrveex | #560 * Create adwaita.theme | @flipflop133 | #485 * Try get terminal size of "/dev/tty" if stdout fails | @imwints | PR #627 * Refresh rate program argument | @imwints | PR #640 * Improved error handling when determining the config directory | @imwints | #652 * Use native POSIX polling syscalls to read input | @lvxnull | #624 * Conditional compile on Big Sur and up | @joske | PR #690 + Various fixes by @imwints, @simplepad, @joske, @gwena, @cpalv, @iambeingtracked, @mattico, @NexAdn ## v1.2.13 * Makefile: VERBOSE=true flag for Makefile to display all compiler commands and fixed so already set CXXFLAGS and LDFLAGS are displayed. * Makefile: Added autodetection for gcc12 to make compiling on macos Ventura easier. * Changed: Reverted back to sysconf(_SC_NPROCESSORS_ONLN) for Cpu core count ant let the new dynamic update fix if cores are turned on later * Fixed: Ignore disks that fails in statvfs64() to avoid slowdowns and possible crashes. * Fixed: Moved up get_cpuHz() in the execution order to get better cpu clock reading. * Added: proc tree view: if there's more than 40 width left, try to print full cmd, by @Superty * Fixed: Show the first IP of the interface in NET box instead of the last, by @correabuscar * Changed: Replace getnameinfo with inet_ntop [on Linux], by @correabuscar * Fixed: Not picking up last username from /etc/passwd * Fixed: Process nice value underflowing, issue #461 * Changed: Replace getnameinfo with inet_ntop [on FreeBSD], by @correabuscar * Changed: Replace getnameinfo with inet_ntop [on macos], by @correabuscar ## v1.2.12 * Added: Dynamic updating of max number of CPU cores. ## v1.2.11 * Fixed: Number of cores wrongly detected for Ryzen in rare cases. ## v1.2.10 * Fixed: Process tree filtering not case insensitive * Added: Paper theme, by @s6muel * Fixed: Extra checks to avoid crash on trying to replace empty strings in tree mode * Fixed: Crashing when cores are offline * Fixed: Cpu::collect() core count counter... * Changed: Using sysconf(_SC_NPROCESSORS_CONF) for number of cores instead of sysconf(_SC_NPROCESSORS_ONLN) * Maintenance: Code cleanup, by @stefanos82 ## v1.2.9 * Fixed: Memory values not clearing properly when not in graph mode in mem box * Changed: kyli0x theme color update, by @kyli0x * Added: Elementarish theme, by @dennismayr * Added: key "?" to see help, by @mohi001 * Added: solarized_light theme, by @Fingerzam * Changed: Made ZFS stats collection compatible with zfs_pools_only option, by @simplepad * Changed: Rewrite of process sorting and tree generation including fixes for tree sorting and mouse support * Added: Option to hide the small cpu graphs for processes * Changed: Small graphs now show colors for each character * Fixed: Getting selfpath on macos (fix for finding theme folder) ## v1.2.8 * Added: Support for ZFS pool io stats monitoring, by @simplepad * Added: Filtering of kernel processes, by @0xJoeMama * Added: New theme everforest-dark-hard, by @iambeingtracked * Added: New theme tomorrow-night, by @appuchias * Changed: Disable battery monitoring if it fails instead of exiting ## v1.2.7 * Fixed: Disk IO stats for individual partitions instead of whole disk (Linux) * Added: Case insensitive process filtering, by @abrasumente233 * Added: Include ZFS ARC in cached/available memory on Linux, by @mattico * Added: Desktop entry and icons, by @yonatan8070 * Fixed: Net sync scale bug * Added: tokyo-night & tokyo-storm themes, by @Schievel1 ## v1.2.6 * Fixed: Wrong memory unit when shorten and size is less than 10, by @mohi001 * Fixed: Use cpu cores average temp if missing cpu package temp for FreeBSD * Changed: Enter symbol to a more common variant ## v1.2.5 * Fixed: Fallback to less accurate UTF8 char count if conversion to wstring fails * Fixed: Small ui fixes for mem and disks * Added: New theme HotPurpleTrafficLight, by @pallebone * Fixed: title_left symbol between auto and zero in the net box is not displayed, by @mrdotx * Fixed: Mouse mappings for net box ## v1.2.4 * Optimization: Proc::draw() * Fixed: Ignore duplicate disks with same mountpoint * Changed: Restrict command line for processes to 1000 characters to fix utf8 conversion errors * Added: add "g" and "G" to vim keys, by @mohi001 ## v1.2.3 * Changed: floating_humanizer() now show fractions when shortened and value is < 10 * Fixed: Process tree not redrawing properly * Fixed: string to wstring conversion crash when string is too big ## v1.2.2 * Changed: Reverted uncolor() back to using regex to fix delay in opening menu when compiled with musl * Added: Toggle for showing free disk space for privileged or normal users * Added: Clarification on signal screen that number can be manually entered ## v1.2.1 * Added: Arrow only after use of "f" when filtering processes, by @NavigationHazard * Fixed: Fx::uncolor not removing all escapes * Fixed: Text alignment for popup boxes * Fixed: Terminal resize warning getting stuck * Removed: Unnecessary counter for atomic_lock * Added: Percentage progress to Makefile * Fixed: Alignment of columns in proc box when wide UTF8 characters are used * Fixed: Battery meter draw fix ## v1.2.0 * Added: Support for FreeBSD, by @joske and @aristocratos * Fixed (again): Account for system rolling over net speeds in Net::collect() * Added: Theme gruvbox_material_dark, by @marcoradocchia * Added: Option for base 10 bytes/bits ## v1.1.5 * Fixed: Account for system rolling over net speeds in Net::collect() ## v1.1.4 * Fixed: Create dependency files in build directory when compiling, by @stwnt * Fixed: fix CPU temp fallback on macOS, by @joske * Changed: From rng::sort() to rng::stable_sort() for more stability * Fixed: in_avail() can always be zero, by @pg83 ## v1.1.3 * Added: New theme ayu, by @AlphaNecron * Added: New theme gruvbox_dark_v2, by @pietryszak * Fixed: Macos cpu coretemp for Intel, by @joske * Added: New theme OneDark, by @vtmx * Fixed: Fixed network graph scale int rollover * Fixed: Suspected possibility of very rare stall in Input::clear() ## v1.1.2 * Fixed: SISEGV on macos Mojave, by @mgradowski * Fixed: Small optimizations and fixes to Mem::collect() and Input::get() * Fixed: Wrong unit for net_upload and net_download in config menu * Fixed: UTF-8 detection on macos * Fixed: coretemp iteration due to missing tempX_input, by @KFilipek * Fixed: coretemp ordering ## v1.1.1 * Added: Partial static build (libgcc, libstdc++) for macos * Changed: Continuous build macos switched to OSX 11.6 (Big Sur) and partial static build * Changed: Release binaries for macos switched to OSX 12 (Monterey) and partial static build ## v1.1.0 * Added: Support for OSX, by @joske and @aristocratos ## v1.0.24 * Changed: Collection ordering * Fixed: Restore all escape seq mouse modes on exit * Fixed: SIGINT not cleaning up on exit ## v1.0.23 * Fixed: Config parser missing first value when not including version header * Fixed: Vim keys menu lists selection * Fixed: Stall when clearing input queue on exit and queue is >1 * Fixed: Inconsistent behaviour of "q" key in the menus ## v1.0.22 * Fixed: Bad values for disks and network on 32-bit ## v1.0.21 * Fixed: Removed extra spaces in cpu name * Added: / as alternative bind for filter * Fixed: Security issue when running with SUID bit set ## v1.0.20 * Added: Improved cpu sensor detection for Ryzen Mobile, by @adnanpri * Changed: Updated makefile * Changed: Regex for Fx::uncolor() changed to string search and replace * Changed: Removed all use of regex with dedicated string functions ## v1.0.19 * Fixed: Makefile now tests compiler flag compatibility ## v1.0.18 * Fixed: Makefile g++ -dumpmachine failure to get platform on some distros ## v1.0.17 * Changed: Reverted mutexes back to custom atomic bool based locks * Added: Static binaries switched to building with musl + more platforms, by @jan-guenter * Fixed: Improved battery detection, by @jan-guenter * Added: Displayed battery selectable in options menu * Fixed: Battery error if non existent battery named is entered ## v1.0.16 * Fixed: atomic_wait() and atomic_lock{} use cpu pause instructions instead of thread sleep * Fixed: Swapped from atomic bool spinlocks to mutexes to fix rare deadlock * Added: Continuous Build workflow for OSX branch, by @ShrirajHegde * Changed: Reverted thread mutex lock to atomic bool with wait and timeout * Changed: Removed unnecessary async threads in Runner thread * Added: Try to restart secondary thread in case of stall and additional error checks for ifstream in Proc::collect() * Fixed: change [k]ill to [K]ill when enabling vim keys, by @jlopezcur ## v1.0.15 * Fixed: Extra "root" partition when running in snap * Changed: Limit atomic_wait() to 1000ms to fix rare stall * Fixed: Removed unneeded lock in Runner::run() * Added: Toggle in options for enabling directional vim keys "h,j,k,l" ## v1.0.14 * Changed: Total system memory is checked at every update instead of once at start * Added: Continuous Build workflow, by @ShrirajHegde * Fixed: Uid -> User fallback to getpwuid() if failure for non static builds * Fixed: snap root disk and changed to compiler flags instead of env variables for detection * Added: Development branch for OSX, by @joske ## v1.0.13 * Changed: Graph empty symbol is now regular whitespace ## v1.0.12 * Fixed: Exception handling for faulty net download/upload speed * Fixed: Cpu percent formatting if over 10'000 ## v1.0.11 * Changed: atomic_wait to use while loop instead of wait() because of rare stall when a signal handler is triggered while waiting * Fixed: Get real / mountpoint when running inside snap * Fixed: UTF8 set LANG and LC_ALL to empty before UTF8 search and fixed empty error msg on exit before signal handler init * Changed: Init will continue with a warning if UTF-8 locale are detected and it fails to set the locale ## v1.0.10 * Added: Wait for terminal size properties to be available at start * Changed: Stop second thread before updating terminal size variables * Changed: Moved check for valid terminal dimensions to before platform init * Added: Check for empty percentage deques * Changed: Cpu temp values check for existing values * Fixed: Cpu percent cutting off above 1000 percent and added scaling with "k" prefix above 10'000 * Fixed: Crash when rapidly resizing terminal at start ## v1.0.9 * Added: ifstream check and try-catch for stod() in Tools::system_uptime() * Fixed: Freeze on cin.ignore() ## v1.0.8 * Fixed: Additional NULL checks in UTF-8 detection * Changed: Makefile: Only look for g++-11 if CXX=g++ * Fixed: Missing NULL check for ttyname * Changed: Only log tty name if known ## v1.0.7 * Fixed: Crash when opening menu at too small size * Fixed: Cores not constrained to cpu box and core numbers above 100 cut off * Fixed: Scrollbar position incorrect in small lists and selection not working when filtering ## v1.0.6 * Fixed: Check that getenv("LANG") is not NULL in UTF-8 check * Fixed: Processes not completely hidden when collapsed in tree mode * Fixed: Changed wrong filename error.log to btop.log ## v1.0.5 * Fixed: Load AVG sizing when hiding temperatures * Fixed: Sizing constraints bug on start and boxes can be toggled from size error screen * Fixed: UTF-8 check crashing if LANG was set to non existent locale ## v1.0.4 * Fixed: Use /proc/pid/statm if RSS memory from /proc/pid/stat is faulty ## v1.0.3 * Fixed: stoi 0 literal pointer to nullptr and added more clamping for gradient array access ## v1.0.2 * Fixed: ARCH detection in Makefile * Fixed: Color gradient array out of bounds, added clamp 0-100 for cpu percent values * Fixed: Menu size and preset size issues and added warnings for small terminal size * Fixed: Options menu page selection alignment ## v1.0.1 * Fixed: UTF-8 check to include UTF8 * Fixed: Added thread started check before joining in clean_quit() * Fix documentation of --utf-force in README and --help. by @purinchu ## v1.0.0 * First release for Linux btop-1.4.5/CMakeLists.txt000066400000000000000000000173301506333644200152370ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # CMake configuration for btop # cmake_minimum_required(VERSION 3.25) # Disable in-source builds since they would override the Makefile if("${CMAKE_CURRENT_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}") message(FATAL_ERROR "In-source builds are not allowed") endif() project("btop" DESCRIPTION "A monitor of resources" HOMEPAGE_URL "https://github.com/aristocratos/btop" LANGUAGES CXX ) include(CheckCXXCompilerFlag) include(CheckIncludeFileCXX) include(CheckIPOSupported) include(CMakeDependentOption) # Make our Find.cmake files available list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/") # When the build type is not set we can't fortify if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release) endif() set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_COLOR_DIAGNOSTICS ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) option(BTOP_STATIC "Link btop statically" OFF) option(BTOP_GPU "Enable GPU support" ON) cmake_dependent_option(BTOP_RSMI_STATIC "Link statically to ROCm SMI" OFF "BTOP_GPU" OFF) # Enable LTO in release builds by default if(CMAKE_BUILD_TYPE MATCHES "Rel(ease|WithDebInfo)") option(BTOP_LTO "Enable LTO" ON) else() option(BTOP_LTO "Enable LTO" OFF) endif() if(BTOP_STATIC AND NOT APPLE) # Set this before calling find_package set(CMAKE_FIND_LIBRARY_SUFFIXES ".a") endif() add_executable(btop src/btop.cpp src/btop_cli.cpp src/btop_config.cpp src/btop_draw.cpp src/btop_input.cpp src/btop_menu.cpp src/btop_shared.cpp src/btop_theme.cpp src/btop_tools.cpp ) if(BTOP_LTO) check_ipo_supported() set_target_properties(btop PROPERTIES INTERPROCEDURAL_OPTIMIZATION ON) endif() if(APPLE) target_sources(btop PRIVATE src/osx/btop_collect.cpp src/osx/sensors.cpp src/osx/smc.cpp) elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "MidnightBSD") target_sources(btop PRIVATE src/freebsd/btop_collect.cpp) elseif(CMAKE_SYSTEM_NAME STREQUAL "OpenBSD") target_sources(btop PRIVATE src/openbsd/btop_collect.cpp src/openbsd/sysctlbyname.cpp) elseif(CMAKE_SYSTEM_NAME STREQUAL "NetBSD") target_sources(btop PRIVATE src/netbsd/btop_collect.cpp) elseif(LINUX) target_sources(btop PRIVATE src/linux/btop_collect.cpp) if(BTOP_GPU) add_subdirectory(src/linux/intel_gpu_top) endif() else() message(FATAL_ERROR "${CMAKE_SYSTEM_NAME} is not supported") endif() check_include_file_cxx(ranges CXX_HAVE_RANGES) if(NOT CXX_HAVE_RANGES) message(FATAL_ERROR "The compiler doesn't support ") endif() # Generate build info execute_process( COMMAND "git" "rev-parse" "--short" "HEAD" WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" OUTPUT_VARIABLE GIT_COMMIT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET) set(CONFIGURE_COMMAND "cmake -DBTOP_STATIC=${BTOP_STATIC} -DBTOP_GPU=${BTOP_GPU}" ) get_filename_component(CXX_COMPILER_BASENAME "${CMAKE_CXX_COMPILER}" NAME) set(COMPILER "${CXX_COMPILER_BASENAME}") set(COMPILER_VERSION "${CMAKE_CXX_COMPILER_VERSION}") configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h @ONLY IMMEDIATE) set(CMAKE_INCLUDE_CURRENT_DIR ON) target_compile_options(btop PRIVATE -Wall -Wextra -Wpedantic) if(NOT APPLE) target_compile_options(btop PRIVATE -fstack-clash-protection) endif() check_cxx_compiler_flag(-fstack-protector HAS_FSTACK_PROTECTOR) if(HAS_FSTACK_PROTECTOR) target_compile_options(btop PRIVATE -fstack-protector) endif() check_cxx_compiler_flag(-fcf-protection HAS_FCF_PROTECTION) if(HAS_FCF_PROTECTION) target_compile_options(btop PRIVATE -fcf-protection) endif() target_compile_definitions(btop PRIVATE FMT_HEADER_ONLY _FILE_OFFSET_BITS=64 $<$:_GLIBCXX_ASSERTIONS _LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_DEBUG> ) target_include_directories(btop SYSTEM PRIVATE include) # Enable pthreads set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) target_link_libraries(btop Threads::Threads) # Enable GPU support if(LINUX AND BTOP_GPU) target_compile_definitions(btop PRIVATE GPU_SUPPORT) if(BTOP_RSMI_STATIC) # ROCm doesn't properly add it's folders to the module path if `CMAKE_MODULE_PATH` is already # set # We could also manually append ROCm's path here set(_CMAKE_MODULE_PATH CMAKE_MODULE_PATH) unset(CMAKE_MODULE_PATH) # NOTE: This might be problematic in the future if other sub projects depend on this or if # btop starts producing libraries # Build a static ROCm library set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) add_subdirectory(lib/rocm_smi_lib EXCLUDE_FROM_ALL) add_library(ROCm INTERFACE) # Export ROCm's properties to a target target_compile_definitions(ROCm INTERFACE RSMI_STATIC) target_include_directories(ROCm INTERFACE lib/rocm_smi_lib/include) target_link_libraries(ROCm INTERFACE rocm_smi64) set(CMAKE_MODULE_PATH _CMAKE_MODULE_PATH) target_link_libraries(btop ROCm) endif() if(NOT BTOP_STATIC) target_link_libraries(btop ${CMAKE_DL_LIBS}) endif() endif() if(BTOP_STATIC) target_compile_definitions(btop PRIVATE STATIC_BUILD) target_link_options(btop PRIVATE -static LINKER:--fatal-warnings) endif() # Other platform dependent flags if(APPLE) target_link_libraries(btop $ $ ) elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "MidnightBSD") # Avoid version mismatch for libstdc++ when a specific version of GCC is installed and not the # default one since all use the default ones RPATH if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") string(REGEX MATCH "^[0-9]+" GCC_VERSION_MAJOR "${CMAKE_CXX_COMPILER_VERSION}") set_target_properties(btop PROPERTIES INSTALL_RPATH "/usr/local/lib/gcc${GCC_VERSION_MAJOR}" BUILD_WITH_INSTALL_RPATH TRUE ) # The gcc compiler wrapper doesn't add '--eh-frame-hdr' on FreeBSD with static builds # https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278551 if(BTOP_STATIC) target_link_options(btop PRIVATE LINKER:--eh-frame-hdr) endif() endif() find_package(devstat REQUIRED) find_package(kvm REQUIRED) target_link_libraries(btop devstat::devstat kvm::kvm) if(BTOP_STATIC) find_package(elf REQUIRED) target_link_libraries(btop elf::elf) endif() elseif(CMAKE_SYSTEM_NAME STREQUAL "OpenBSD") if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") target_compile_options(btop PRIVATE -static-libstdc++) endif() find_package(kvm REQUIRED) target_link_libraries(btop kvm::kvm) elseif(CMAKE_SYSTEM_NAME STREQUAL "NetBSD") if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") target_compile_options(btop PRIVATE -static-libstdc++) endif() find_package(kvm REQUIRED) find_package(proplib REQUIRED) target_link_libraries(btop kvm::kvm proplib::proplib) endif() # Check if lowdown is installed find_program(LOWDOWN_EXECUTABLE lowdown) if(LOWDOWN_EXECUTABLE) # Custom target to compile Markdown to man page using lowdown add_custom_command( OUTPUT btop.1 COMMAND lowdown -s -T man -o btop.1 ${CMAKE_CURRENT_SOURCE_DIR}/manpage.md DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/manpage.md VERBATIM ) add_custom_target(generate_manpage ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/btop.1) # Install the man page install(FILES "${CMAKE_CURRENT_BINARY_DIR}/btop.1" DESTINATION "share/man/man1") else() message(STATUS "Command 'lowdown' not found: skipping generating man page btop.1") endif() install(TARGETS btop RUNTIME) install(FILES "btop.desktop" DESTINATION "share/applications") install(FILES "Img/icon.png" DESTINATION "share/icons/hicolor/48x48/apps" RENAME "btop.png") install(FILES "Img/icon.svg" DESTINATION "share/icons/hicolor/scalable/apps" RENAME "btop.svg") install(DIRECTORY "themes" DESTINATION "share/btop") btop-1.4.5/CODE_OF_CONDUCT.md000066400000000000000000000210721506333644200152740ustar00rootroot00000000000000 # Contributor Covenant 3.0 ## Our Pledge We pledge to make our community welcoming, safe, and equitable for all. We are committed to fostering an environment that respects and promotes the dignity, rights, and contributions of all individuals, regardless of characteristics including race, ethnicity, caste, color, age, physical characteristics, neurodiversity, disability, sex or gender, gender identity or expression, sexual orientation, language, philosophy or religion, national or social origin, socio-economic position, level of education, or other status. The same privileges of participation are extended to everyone who participates in good faith and in accordance with this Covenant. ## Encouraged Behaviors While acknowledging differences in social norms, we all strive to meet our community's expectations for positive behavior. We also understand that our words and actions may be interpreted differently than we intend based on culture, background, or native language. With these considerations in mind, we agree to behave mindfully toward each other and act in ways that center our shared values, including: 1. Respecting the **purpose of our community**, our activities, and our ways of gathering. 2. Engaging **kindly and honestly** with others. 3. Respecting **different viewpoints** and experiences. 4. **Taking responsibility** for our actions and contributions. 5. Gracefully giving and accepting **constructive feedback**. 6. Committing to **repairing harm** when it occurs. 7. Behaving in other ways that promote and sustain the **well-being of our community**. ## Restricted Behaviors We agree to restrict the following behaviors in our community. Instances, threats, and promotion of these behaviors are violations of this Code of Conduct. 1. **Harassment.** Violating explicitly expressed boundaries or engaging in unnecessary personal attention after any clear request to stop. 2. **Character attacks.** Making insulting, demeaning, or pejorative comments directed at a community member or group of people. 3. **Stereotyping or discrimination.** Characterizing anyone’s personality or behavior on the basis of immutable identities or traits. 4. **Sexualization.** Behaving in a way that would generally be considered inappropriately intimate in the context or purpose of the community. 5. **Violating confidentiality**. Sharing or acting on someone's personal or private information without their permission. 6. **Endangerment.** Causing, encouraging, or threatening violence or other harm toward any person or group. 7. Behaving in other ways that **threaten the well-being** of our community. ### Other Restrictions 1. **Misleading identity.** Impersonating someone else for any reason, or pretending to be someone else to evade enforcement actions. 2. **Failing to credit sources.** Not properly crediting the sources of content you contribute. 3. **Promotional materials**. Sharing marketing or other commercial content in a way that is outside the norms of the community. 4. **Irresponsible communication.** Failing to responsibly present content which includes, links or describes any other restricted behaviors. ## Reporting an Issue Tensions can occur between community members even when they are trying their best to collaborate. Not every conflict represents a code of conduct violation, and this Code of Conduct reinforces encouraged behaviors and norms that can help avoid conflicts and minimize harm. When an incident does occur, it is important to report it promptly. To report a possible violation, **[NOTE: describe your means of reporting here.]** Community Moderators take reports of violations seriously and will make every effort to respond in a timely manner. They will investigate all reports of code of conduct violations, reviewing messages, logs, and recordings, or interviewing witnesses and other participants. Community Moderators will keep investigation and enforcement actions as transparent as possible while prioritizing safety and confidentiality. In order to honor these values, enforcement actions are carried out in private with the involved parties, but communicating to the whole community may be part of a mutually agreed upon resolution. ## Addressing and Repairing Harm **[NOTE: The remedies and repairs outlined below are suggestions based on best practices in code of conduct enforcement. If your community has its own established enforcement process, be sure to edit this section to describe your own policies.]** If an investigation by the Community Moderators finds that this Code of Conduct has been violated, the following enforcement ladder may be used to determine how best to repair harm, based on the incident's impact on the individuals involved and the community as a whole. Depending on the severity of a violation, lower rungs on the ladder may be skipped. 1) Warning 1) Event: A violation involving a single incident or series of incidents. 2) Consequence: A private, written warning from the Community Moderators. 3) Repair: Examples of repair include a private written apology, acknowledgement of responsibility, and seeking clarification on expectations. 2) Temporarily Limited Activities 1) Event: A repeated incidence of a violation that previously resulted in a warning, or the first incidence of a more serious violation. 2) Consequence: A private, written warning with a time-limited cooldown period designed to underscore the seriousness of the situation and give the community members involved time to process the incident. The cooldown period may be limited to particular communication channels or interactions with particular community members. 3) Repair: Examples of repair may include making an apology, using the cooldown period to reflect on actions and impact, and being thoughtful about re-entering community spaces after the period is over. 3) Temporary Suspension 1) Event: A pattern of repeated violation which the Community Moderators have tried to address with warnings, or a single serious violation. 2) Consequence: A private written warning with conditions for return from suspension. In general, temporary suspensions give the person being suspended time to reflect upon their behavior and possible corrective actions. 3) Repair: Examples of repair include respecting the spirit of the suspension, meeting the specified conditions for return, and being thoughtful about how to reintegrate with the community when the suspension is lifted. 4) Permanent Ban 1) Event: A pattern of repeated code of conduct violations that other steps on the ladder have failed to resolve, or a violation so serious that the Community Moderators determine there is no way to keep the community safe with this person as a member. 2) Consequence: Access to all community spaces, tools, and communication channels is removed. In general, permanent bans should be rarely used, should have strong reasoning behind them, and should only be resorted to if working through other remedies has failed to change the behavior. 3) Repair: There is no possible repair in cases of this severity. This enforcement ladder is intended as a guideline. It does not limit the ability of Community Managers to use their discretion and judgment, in keeping with the best interests of our community. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public or other spaces. Examples of representing our community include using an official email address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Attribution This Code of Conduct is adapted from the Contributor Covenant, version 3.0, permanently available at [https://www.contributor-covenant.org/version/3/0/](https://www.contributor-covenant.org/version/3/0/). Contributor Covenant is stewarded by the Organization for Ethical Source and licensed under CC BY-SA 4.0. To view a copy of this license, visit [https://creativecommons.org/licenses/by-sa/4.0/](https://creativecommons.org/licenses/by-sa/4.0/) For answers to common questions about Contributor Covenant, see the FAQ at [https://www.contributor-covenant.org/faq](https://www.contributor-covenant.org/faq). Translations are provided at [https://www.contributor-covenant.org/translations](https://www.contributor-covenant.org/translations). Additional enforcement and community guideline resources can be found at [https://www.contributor-covenant.org/resources](https://www.contributor-covenant.org/resources). The enforcement ladder was inspired by the work of [Mozilla’s code of conduct team](https://github.com/mozilla/inclusion). btop-1.4.5/CONTRIBUTING.md000066400000000000000000000036371506333644200147350ustar00rootroot00000000000000# Contributing guidelines ## When submitting pull requests * Explain your thinking in why a change or addition is needed. * Is it a requested change or feature? * If not, open a feature request to get feedback before making a pull request. * Split up multiple unrelated changes in multiple pull requests. * If it's a fix for a unreported bug, make a bug report and link the pull request. * Purely cosmetic changes won't be accepted without a very good explanation of its value. ## Formatting ### Follow the current syntax design * Indent type: Tabs * Tab size: 4 * Alternative operators `and`, `or` and `not`. * Opening curly braces `{` at the end of the same line as the statement/condition. ## General guidelines * Don't force a programming style. Use object oriented, functional, data oriented, etc., where it's suitable. * Use [RAII](https://en.cppreference.com/w/cpp/language/raii). * Make use of the standard algorithms library, (re)watch [C++ Seasoning](https://www.youtube.com/watch?v=W2tWOdzgXHA) and [105 STL Algorithms](https://www.youtube.com/watch?v=bFSnXNIsK4A) for inspiration. * Make use of the included [robin_hood unordered map & set](https://github.com/martinus/robin-hood-hashing) * Do not add includes if the same functionality can be achieved using the already included libraries. * Use descriptive names for variables. * Use comments if not very obvious what your code is doing. * Add comments as labels for what's currently happening in bigger sections of code for better readability. * Avoid writing to disk. * If using the logger functions, be sensible, only call it if something of importance has changed. * Benchmark your code and look for alternatives if they cause a noticeable negative impact. For questions open a new discussion thread or send a mail to jakob@qvantnet.com For proposing changes to this document create a [new issue](https://github.com/aristocratos/btop/issues/new/choose). btop-1.4.5/Img/000077500000000000000000000000001506333644200132075ustar00rootroot00000000000000btop-1.4.5/Img/alt.png000066400000000000000000004626661506333644200145210ustar00rootroot00000000000000‰PNG  IHDR’†t sBITÛáOàtEXtSoftwaremate-screenshotÈ–ðJ IDATxœìy<”ÝÀÏŒÆc'K–’RÚÐ"J©´h/)©_ª·¯í¤T’JQ)í%©xURÚ’dìû2È2dŸ1~ ÏŒ”–ûýÌÜçœsϹÏ}î¹÷Yq$ @ ‚ð}í@ øm@ë@ Á)<¡¯}@ z¼Œ¶©ÙÜQüʼn¹UŒ¾v† }ëçïÒJˆ¾õ@°¢×®?õ£+J¨1vÃ[K¤'ÛÞ~—[”“•øâÆ6]qÖ’$ÕǽKËÏH ÷Þg(ËÃR§0ûàƒÈÄ‚â¼Ü”ÐG(XÚä”QvŸ¨%©.º6(Û†–PËGkWØ_Eêkv‚×ñ}ç=ö^~ 6l˜ ¶¤ÆüECp‘g¶8sÆf×­B’Þâ9Ø’"uñ7<Ïr9çð$¶š©åTµs¨á¡Ç)…±>ê€É.¹Ôˆ½Ãxæß¢–P©é®“$&X]“CÉΈ p3J‚¶åãÂYÇ‚R)q÷þúSSÐï iRžâŠ}¼0ð–¢e¥âÚS$ ]«kobr(ÙéQþÇ— âÐwÏ-¡Fî™er6<37?êâRE¾ïµð̆õ¾©Ÿ//Ó_ÿ(#åÑUP´|C-¡–¦Æ¼}qs}ëiÓ–}4cÂ.ÿ¤Â¬¤ÀmcHÀ;|Íùऌ¢¢ôÄ7—7h °Þï.uÜP‘¥Šëî `ûIÏzííãý ¶¼½f!7H’´nË®.PX›$;ÿ¼°‚ví@T_áú,>­¤¢„J-.//¡ú™ rÞt,ü”Ôßz;ìS>%#)âÇ69ô¼Õ/ y²ýƒ¤ÂÌÿÍ#øXõœâœC1)JÊ{ûqmš½ttô Eõ1û*Ó>3jŠ›ÖÌhVÃV˜,† NÁΆš#êãä|ÁÓîÔ“¯  ¯7;™rnSS’(¤Üvr¾à±m™‘Á8£#‘  Q©ÕМáëû_`\9@EyE369—ìèBÚ½ß}¦g%_Þi¤Dü`_……Z¦‘bv²«òÀX—Ô×Û§,ö OÎÏ÷²PgÞØÁ£2÷Ä£ˆŒÂÜœOO/QårîÉ3\hÚ[¹µÅ k?ËÌØÈKøîtû·k˜œO·°!šKYV*¶þ¦^q–óÈŒ¼ôä°kVcÉLQéõ÷ =ÌçžzžZñáâ"y¦£JÆ'#³(YiÞ;õºwNƒo¸ îãþ&W„„¿F|†ä…© kã$‡«w¡þýükƒ=OƤåꇒ®È¼$…uÉÒZcpPWKÐô•5½-¢¬ÂâDA7è|žynæh³óñõßæ\3¥3q(ðöŸ¦?€A¥~Å–”——‡æ‚JM÷ȧÛ%òó°%‹_»îÞw…lÔm±ñ¡hµs yÖæ•‚‘aY%#;ë©<|o‡õáÀFÌEë­ÖÖ»ï$ ݲ›×?ãêÁcO*‡›»_ݦ٢.>רô¾oLÓ€iû¬ …ËJ¿´Ûò÷š äbù«òiÚao»yýBvšZœÉ²Öã‚å Vy…Zi^¾ xÕy›—¨èS(mèoì°¡?¥Rt¢á8²×Ǭ·Z{D4tªM|áŽ5„×>Ñeu·m6"‚ÌJ—ã EãÎÛxR©a|ôäZeûµK\Á£æ(,AkˆÜUS ¬ýìmäì$tfá‹K_ØW ñŠ `×N˜¶ÓuŨÂKs'›]Iýãj:zãƒ:à°é0Áéí»¶k¦hÔ!‹MöW£úÒÝGÿKB6Þe£˜–Ž—7Øm=ƒˆÝCçò\¯Ç{fÿ‰û)u-…Ý9:p¿Ô*RNhvšüêS¼EÎ_sÛN‘wìó˜abœƒ™¹***äFê(“Å4u4$$ı“)ç6ÅÅÄxÔÌoÇeD?8¿g²djYNßä/fœå½´Ìcé\Ç(nüä\²74¢[È­9jÓtažÆ ± E(L# ŒœÇ RSI|…)øìÀ–ƒ|°™¹Ð™™jóªÚfÄ d'×Q‘[tU^õbȉ‹„¹©œgèq±A¢qvÔL*Qõ¨˜&Ë4Áåt«´%çDrωä^^QS“_“ ²ÔÙ];bã¨C ŽÕZ^Ú2ºUš_WOÀc¾ºÆ–¤éVKU@d‰“«fèFme)û)¦—wNànz“àzZfù[±A͵oô ÝhDÈ£ÍñÅat¼ÿ8k~vF;Î?™t˜ð`ΓY#.¨³ò²|ZVüx€òsÅÞË3……fDôŸ{@@Lˆ«(Yð#Gr’â ÷çñn.W( ?zì~5¶//0èM$²¤x? Ñ™¬)z¸…ùæã‘ŠÖ—ϬRí•Ô×çNÿÛ²ßú\€€‚‚(}ð¹ñ0¶ 9çÍ ¯7î½/P­% Ý<Îíò|8e-1¦zy€“õ±ó‡n~à““í—þ|šŠ|ª3b› êMõçÕ)ï›TGk‰@yð=Ÿ7//úGaØxmÁùâGmOu Hèׯ@C˜Ï™Èhz{Ë5<€H Ö$=¾áuãezS§Ú*9®?äæpýAR’ þÖFó—nrñô8î—0@Q{¿³q‰ ˆ†"c qîñYÀÚÏ^GÅ‘Œ£%Ö~0+MbU;=éÕóüú¯EÙ™9_ê„Ç,7/ùÊœísÔt˜É¢ý‚"5 ÿ9›­<ÇÕü ñÓhxÜlíÞχ¥¥ÉØ=DYc˜”?9{ØÓó踖B®¹âKîõûQ‘pÉÈ~ÓNðæ­(º·£AÜAlx[BîØç1ÃÄ.zȇ›'CÊ…f¸Äd81_€ÇÉT‡ðùÛX8¼j<÷ý Ý{ÃuýîóuŽÁ2/y¬Ô{§%¿x<ž—,#-‚«Hzî¹y·_ @}P]±.¿/€Iq@}Vx‹pê ÇkñÔ¦Ú¸ÐÈÅR 2lXaÏ»¢º†²è‹[Ö{%q5[d¤Yß_Zéùõ£ €ÐešàrºÅ }W¾KjîWUMÍ¢§~ÑU å߉‘£ZOÖ×…ÝóI©aPc£ë€Ä”¤<óûXZ_›ô0”˜fçGÙ¡xDZ*#yMÑ­ÙÉ íN}­‹X]fUU@Täa÷™µŽóO&&<\Γ+kÃ×UFï¯.ÀK¶ÔÞø¹æÝìBŸµ5ŒEâ³·÷Æ•âï^¾D ðL§©>X‰·ë»pÜ=î²5<ÌöIÀÞQ¼”?Ç]ç/=ø\Éâê(4Òh€'ÔÝ_©äÒAÌÖÔf¼ Ì€ÀšqýÌÖ/U¿â”ÄFØjãRNœo¢Ñt: ðxG F‡VI>¾–>ÑÜÜ FSuVµÿÍtÑmxyyÄ–_ËœO>AjŽ466@ÁeãÞ¸†jåíÜÕKo¤1ššè€Ãá Itô Û­Ó‹“µ8–ÉÛ¥æF;ðéœãh ¿ÒØ›gà»®½9ëHy²yÐn …Ý@Ï®‹\S…y$â+2 j7;'dÔQsC=vyF·né~Ó5ù÷¶ÜþE»/MÚÝ\ŸýÂÙÂülTë™kttô!úgÝ—ÒjRÛ.Æ„H$Ðé߯yÙàÕ%ϹÈ_g÷µIúû÷þqÒêë32ó߆Åtô¡™+¹BÔº/;ǨzZ•_ÜZÞ±Ïs&»ˆº)çç¾?PY¼¡ EqwÚäQÍÐÌ6™ò‰Ë‹Ó‹ +ÙäÌæfH¹ïy÷u2ŽïÕžKÕÕ• dÉʼ©NîW¦@ͤ­Ffÿ[4Øóh2§69¯-hèuÚu°¼K[::¿°‘§e¾ówÝ¿ß7µ °.;CDq,äJ‘$_Ôä·ž.gÎb€Á`0g1D"‘Þ:ûšÔ¾Ri´ ö6~1qžÐÌ:M`ÂzºÕ¡ö–yTO‰Jß/»Ü’`‰Dâ€u>ïÓ€(X“Åס‚¼ó f¶JÒé-­@§ÑˆÄvkNŽâfððáð8€ö©µ©™Á Ø ªLIÌùç÷0ànžLof0š ã|‡ÃóšÛ»Úíá÷»A|¬ö0Qr?Ÿ{ϪªØŒÕ7vņQ‚%·Í´6>ëÂVAAàdee( ''“Ÿ)HZt9×sV´–ѹëj¯0é<^³rž‡‡­{  ©© O$ò0›«±±@ˆHh“dîoê,kÿó°Ú¸”Ã0;µ|sþ[/lll(÷ߪçÙR@-ý^£±¦ò»î$ãÝî«F¼Ø:saК{O¶~»ˆ½ßÙ¸ÄQ£%žjdCfÍ¿³¡7¯:tU;#©æÕ”š·2DÙ"“ Œ·HXVƒ5îèZ¹Y1œÕå/uñœ#ë¦ë -Ùûß©·wÊ 7×É£ÆöÛç]3õù6ü GÇ/H7'm €H$Ð:Mïò€mqøqa €‹Ìj€ôö»ì ‚ӦèŒÕ×aS·3W}cÂÊ¢ö*lÂì4\´ƒóÔó ±±k­Œ©~²åD"n¤¨@î—R»ŽE2åŸv*ÜguZ¢óT݉¬l–W”ðððžhhh`îHp¾e%ȱMî$Ù^¤C«Ž½¾Ùø:ð’Õô,ÏÞ8±*Ôøb=ûIÓC^YI¾‚À26ɈF§3{ ðIŠã+KªÚå^öÝ›$0öŒÔór¿uD ©E[™vš››œ¤¤d;U®§[ß×.°LL_£öéºú6žá±xÒ‰ïÆ˜®Ã$è¦å]Å9;‹_ïVFmmuÄêçhÆwççx´æ®“>æòÛ„‡ãy2køF ê#ÓlÎu+ pý¾žî ¿ß­Ô*ANl´8(êš› VÆ?z †QËqëÝVÿR“J«hh(i¢c·R}](M6_JÍilnj¨ÈŽ ù˜yÏ2vÓÉÚÙÏ,ÃëÏ—}¹ý ,¥èMU%%è6èßÌR˜—Ç€‰³·§Î‘6ªE’«£ƒ–~±^Ó•·ôHyBb3Ô|䯩ªªšç¯>˜,2ì¼~ènæâ–av.¸xVæ ½z)I«±ahóBC"ä¼ Î9ÌdJ1¦?ÆÈ¡|ØÀÂæÇÐÊ5ó–ïÛ["mbÄ %ïÂ3!-6–f:Þlÿêwdã™üð5*Š9ÕâÌæ«<Ž% =OЈî€S[juݽ+Oc(兔Ц¶ÓãOên"š"鶬î ÈLL”[e2ÎëxTÂò+Ï?g|‘ã;ôp8xD ƒI2:8Z=¾ÿZa…”’/%гþui°>»ý{¡¹˜nu¦¿à䣄T“ÒÂvãNfb¢Ì"CÕ³é0ÄÂÕNàÊÿÜ#±7ÌLL”3[8úêé$’¾±.-ñ.—w!RSvg^s”<ñUÿ[Š\aÒ…ÄeªbÙ=êˆ5ÿìD"æ<™sÄÿ•žçÀ[÷°2pÍ×Ü|vûÌá÷»õƒ@yE׆A}éA‡…ÌœØDKljU7“=_à ÿtkÇé-B¨«!b’¯^9›m=µuõ^Z+·_/daÓÊkÓ:•{æ¯Û£ßTšúàÐýÏê±%9žÒît°~®¾íáÙ E ··î9ËÜ@{âhé!{`™éîýu¹ïÏåí]éÌÈ|ƒNSI¢íç£pâڳɵöÛOF³« ñ=ŒÇ•Ï=xt— ŽÝß\åÑó¤þùže„Ck¯Ïç«+Štò¿Hnfêâ;ÜF€ìÌn3á¡…Op&†`]ÀIû§ƒwZž?{gïœ÷¯íZ %qê5c¿÷Ì¥Všéñ{ª5žôs@ i%¦Ÿ_t,ÝNNeJ4ws3O;û mF!çë‡æ/ÿÕØ ¨µ„@jn*÷§¾Ú_ß ŠXµ?ñ9ój…ÓžS3[4i©'ŒÇ>â¸é.JcøéçïoøÏ²mKˆ5—&û;üëðê‡?ñè0û§ŸÿQ×%—7jÎòpÅY©ÙçfpwÀV^ù(#=w*O°ó×n$¨ªª!‘:ÞˆÝÏ\Ã2ÌÎÃçF13×+‡5Ç%Ž˜/Ú·³ž’àe³ûXä1“)  $0ªlÐÐúàçØØ|´s• Ñqùúýš¾$ÝÛkçÜpÓz£ÚñÆkvk*Otv´¬Žmæq,É×£è>%1Ÿˆ»Žø8 ”&–'Úo¿Ùz^l]¶¤ðð„²lÜTŸÝÛÇœv{—%Ë[™öÂiëMn&ÖuµQöb;ûMskLÞSâ{—l´[@F¢ðî1E«G 8nyžnÍ6N·°! *‰á™Â€æäEy¯^Õg÷n÷;Ÿ÷‰ªs^²I`9§úì¶Õ9s1ÚFœžÿáÚºÍ!ÜÏ­hɵïç×%ÍÖ”ÄÐST‰ü# ¿CT¥¡©Ô»<Ä…Õ=,çŸhú„5Oæ> EÍ)ýÖÔý;¨;¿8é»»Ê8¿å·¸ìˆégo:?ÊîÓk+¾‹ ÔlÃ8¬ýÏãÏë6œóÃ;ØÏª}ÐöW‘û$o¯Yàô±ø5¶Ý¾aža#¿Äû‡Ñý;ÃïB·<ž_²¹îË÷Iº‡cÈ/8õíÈ𻀤wá =ñ¼8àãQ9.9ðIqÐýîN&ÁÄ÷Ó*úó:m·ÇOQñ—óèªßÜíÆçÃLyqÐTWœ¸Ûéþ[< þ^u,oD@ ?ü r“õšJ®W<ëöâ`‚Ö=#Æq8Ù±¯@ zJcòM ý›}í@ ~Œ”ey?äƒòˆ¿_êK>@ â—¦›Ï? m,˜;Éÿ!æ[Ž¢7ùÑw$‡z·|šmârŒ/´¶mí’öê˜Zìícníž$¦œGÇÞ~7T€›Fî­Ú»g³m˹Jmr¾7{Ñ%Ä_N‡‘]@ @ œ‚Ö@ ‚SºX?õ£+J¨1vÃÙŠ‘Tô.-?#)Ü{Ÿ¡,€„Ñ¡àÔÜâ¼È;ÿ áéE:Rmn¾É-ÊËŽ ô°Òïßò1yeÛÐj™çì® p.ÙÛ¹SK¨í~INcAp™_[É?Ç’Éu*µ$p½ÔÏ©#öÈ}Ã@r‚Õµ×ÑY”¬ô˜7s ~Î:—G ±Ü^½¨(;ú™‡©:³šŸH"â7»WB Ù¢ÜZ®wü35×ur8_ŸrÏq¦Â%#)âÇ6¹ÖCaðzßTJvœç|ÉnEPòöÁƒ€<¸w7”ô¬×Þ>ÞbË¿“Âr¾ÅÏ…³Ž¥R2âîý3”¬ü”еºö&&‡’å|É ^œâœC1)JÊ{ûqí+ëaD‘ýÊÃýœûÃ$:@y„»û¹[ïË`ä¤É¢íµÏæãZ§'8Å)“•¿©ˆÌ6™Az翜ւŠÈ»în§íúfAUUñç9ÿ"*((2™,·á%µðÊ<2™Ì yùy?7¢ŠÈ»în'·ð-¾áÃb÷:ÐwÏ-¡Fî™er6<37?êâREÌÖÒ?gLØåŸT˜•¸m ‰Õ±ùSÃìDCiVÚ[ÿç!…í?9+3P•E©il¬HMLjVTmwbBXCo*9õQhq—¹ø»ÁÎ2¬®¿‰É¡dgĸ™ %ÏÂëÔ{†¶ Ì<ŸCM80s ÁN‘m‹ŒeâCühX¯2ÏÍmv>¾¾kòòòÐ\P©éùt»D~€‚‚B὆)i¨« 5œuß×~ßNÊ…e¨Œ™4RºU«/Ç„ãˆòó @ˆL2p†¨&“¡,?¿ "j¤ÑˆD^6½Xh¥yù&àUçm^¢ŠÝÁ@|áŽ5„×>Ñeu·m6"²>âúpÇ5§gd•7~WFèµÕt©±³'jˆÖVW  ¶lá‘Ôœ£Ãxû$¡ å'‚=˜Y†dxè–ݼþW{R9ÜÜýê6ͦÌÌ|ë/'0íÈoKMYY~ÈÊ΀Îc&6YäM–‰ñÃéïÇññòƒÞD"KŠ—Î,`4Ð,.zÛð¸.]t5‰ƒuQz÷ßÕÝŽYÌÞzböÖCWo¸ô©èƒÏ/ ë÷ΖÉysÃ+)Éçom”„Ïx—\6 Ÿ©ÉЊŠY˜’²XÉ¢ýè‚"5Áÿ9ß;ßvª’rÓí‰è¨Ú {qÝŠ€rß~û=æ)õ/q¬z}–óPàd},T o¢å„érr¢Ø~ªŽÖr¿{>oBûG9L›6^[ðT¼Æ0(¿sö°ç[R¥®Í”þ½ÑAz‘‰^ÓK›ûí¾E¬´Þ;~=@åÑ9_æÕì_ÓyL¾‹¨.¿ §¦®-F¬­U2V’ ùùÌ•ÒÏ‹ˆ $Ñ_NyÀti€„ÂB¨HfÕë øÑAÛSqò ‹Ök‰öë‡ÝÁ’*9®?ô†ùØuc§IJ’óˆû¹ar@`0<‚RòÒ¼¤¦Š&BKê?K¬ìÃÃNßËŠ@üÅ(ce¡bj IDAT•ÑZ¢PqÍÝÁ#X¨j¢ÙYC-1÷¬là—í?qâ‚ñ†ÙF…ÊBåûì ‡Îc`}Ë&ÜÂÊ›˜.!~ Ý[?ð‰Ë‹Ó‹ +™—{i4Àêî¯Tòi‹ fìÌ#^g >mµú0ûÜ»ÅOí×Ùøç÷¦ïˆ?¦¼ ÇO]•'¯Ù¹×jî!×Èç†î9X‚¢£WØn6XœD¨Åá0„XÓtäßÛrûí¾4iws}ö g ó³QuÅÏ›>ë~Õé¡ ]±v¾¹¹Œ&ÀãñØ~òòòˆ-¿–9Ÿ|‚ $$D"€Noê\[#ú! X´l\cÅ£Êve”û·Äwl×+s_náWØRø+:I‡ˆ @gìØþ OžÊhŒC†‚‚–+-?-"å w?o¨K¿uÌ+šTY2PpÙx€7®¡†ct0 7ÒMMtÀ±=æ~­×ÔDÇáñY²x5yššZ”òw™ÊSÇJŠ¡6÷­ˆ^óotüÍððà5†¨(*H‰]O¿}ß 3ËðññÐht ÓiÀÇGªJÍ*ýáÓ@¡hŒ™•- ™™YÃ1Ë&4ñcŒ`¬,˜;‰£æ@´£±‘VH)OHojêâšl7ÖüÓN…û¬îOKtžª{"˜™'++@99y€œü|õ­>çF¿\at¸ÎúÃ’ÆÛ+üŒ¼w˜žõwIëV<ˆ¿‚Ü …²´¬ê¬Ûvõƒ?·TPÈhjjÀ‰<M$ãÝî«F¼Ø:saК{O¶*´™è(Éœ’<8Iɶ›±iÉÞÿN½½Sfè¸ù»N5¶ß>ïš©O HØž°Öª}ê¼å|ôºÊÚùxxÐ2©ÃòóSc#@¹ÿV=ÇH¦|#µ1Ìd@ |wQø'D„ µ²@XXd!€¢–»’`°ÉÒ‘Õ—é«Óß:_TX¡ga¶~ÚÑÏêûÖyL8¨°0¿YIO þÛð¢|Î }ž²y-׸~ZD…ÿíÙz'ãë—ìÏñYt -è¢×AscMe#@KÏëØÁ³ª§Ó¿ÚŽ««­Æó ò4€€`í×ÖÅ(O|.k:sdÁݘìIñ§1d°R?!þ×ÁQ5µ]ÜòÝœ•e„ˆhÍ\t: ²²³`ÙŒäW®Ê¯Y9¹=<‹›ÓÇX6IÆ1F0L—Ú>nË-‚¤Ñ£Ô‡ VJøœÉ^’ÍúAÙhÓÌAøê‘Q¦V–ã<_åHÓŸ€GcäP>HlH ¸Ÿfcµù¤>”óïêXÿ«áüS—O-Šºææ‚•ñža: ¢g¾uíÐþ&ãòãâ©Ø~fD¬„%ZÓ¦¯­Ó²Ø»Hவ‰SJ^&ÎÞzœ:GvÚ¨võ4"ŽPš²ÑX0h@lì2+«’òÈ;·âÞW®š»âà±úp1㙼ÿ&˜9 5Y:´üã‹N™‹æq!zµÃâÍfŽÏ.þ,çDD ùù_„„¤¢’¢“+(¤J)ù-ÙóçET“ù>èé·Ka8ìCkÊŒÙÁj0 ó±” }¹ã°¡ddN3Z:;º‚¨¨¡ŽÏ ,ý¶­*1ôµ¢ñl½¢[o(}ç!ñó—“ {ßåâ¡#…XY&3.¦ ϲrHJ^:  &æ feÖ ŒQȹæBYg»²33éØóM‚Jçù Ã&Nk»Å*ñ!ºIMm}tLòdýÑ]®ؼ\}éAGG³Q¼b-ö-`>CWUV_WðôùGæ µ¦OÎf›½ò”WïÝ:[8úäJËë…UÅEuŸî^x©êðb‡ÄÃsÿ¥öNtˆ?–Æ0÷OÇðëÌß°åŸb©Þ»–o`ÞB{âhéñ¶t éîýV+tä .à¤ýÓ< Ëó§×]œ3c磦1 ´$°$¡ðî1Ø2áÂí¿o©‰çï_ª±lÛ©+»´+üV9¼bN¤ aa_êksßDdt+‰I˜¿³OÇÒí¤›Ã\iîævrßyÖÎN\ÛÂa¿é€üûNF³ð³þùžeþU¯_u_;°$Ìç¿È:øâÔ5¢XPsÆdç³ÚyÔÓˆ8B}ƒ£ƒ£ùh^iKGGCY Øš9=¤(šØl˜,˜àµeõ‘÷4Ài-]:ð‹ŸO0Öënr¯¸VÇm¶ÃóӜǤ§|MI.LMJb£ ¿ejÚg±éuÁì`,étÄôåŽPšjºÅzÕ:})â©[¬WYN• §‡äJ7[³h‰OôãøâïnVªO}š§4qª*é§;‹@ôüü|_¿Ör­†™eê‚ö®t,´Æa÷<‰Û5Κ³³rªbc2b#?Ò²³²XØÄJ‘˜6±G0–‰Ñ}jjëyy»þŽDú6bZm\êîq÷Gz…øY0wºDØ Œ²ûôÚŠïâ5Û°¾v凂ŸèûhæÃávÿÎÿ¼ˆ~]0“T/f®¶»ç'.b³µKÚ«cj±·¹µ{’˜np{ûÝPn¹µw ç6»Ñ¶œ«ôÐ&ç{s+çYû·Î￵ó} fÓuiàWI¢#D½e e2îÞûs¦Ú^D@°¥7Þߊ@ zNŒãp²c_;ñã¡oV•êk'z•?/"@ Ø‚®? @ NA×ñ‡à±«åÊGuØleŧøÏÝÞʪ"ε~„$ç*?Âf7´~h#@W=äGDÔ=zØJ½åÒoýüÀoíü¯ºþ€@ @ 8­@ ˆïÁ *Ê‹öµ? >iyi¾î«£õ¢ÏŸ¸åvxbaqvRØMÇEj$€Ñ‡?QÊÊ(Ô[µ^­Ly]Pnʵ%ä^5Úœø„]>!)yé‰ÁžÿŒbSȹ:¼úÖв’BélÔù5W_}›KÉÍúäù¿á$€±.©%åe”2æ/ó¸>wa«cUÄuDߣëšùz‹ Óúèƒá1WæK·lé¸ãt]3KÊË(¥_r2c#Ç]@L¯ÈZv/²Û7æïÑOa¬KjkDâo¥óø‰ ßÀ'?dRòò’^^ùgdûA•ƒtÖ{ã§Ìš'©®“»þ˜xÙéN/Âü7h´Ýèß9ö~:–Þïò)Yiwõgo³¦ã<öžŽÉä‰ö/?ÜùWG¸{êhý€è+tv]6+=4càÍY»ÞÈmÝ¿X ¢÷—Ÿ©¤·kË{|Àz«ëkjoÛmÿ죞3’öL:fžÍêÚö‘xV…œ«3‘Xî¸A(¯€míÒæGdÌG(Ò^¤xä°™ ³<Åi¼¬¸¸¬¸¸¬¸Êö·\ÕYUE\EÄ Q£“f¼Ùdu¿¸¥cÇ%:jËJH»=Õè´.wá(›{ñþBa~»Âß:"è ¼ÂRRÒÒm?1A–ÆbŽŸ˜(¬=wPÖ×|´òÀQÿ d¿cxÛ&NÒY=?,Y¢tÿÞ[¬•vÆN_×Þ Çï ¥°ˆ]iýñmÄ«óÕÔ&Ø|ž~qÏ4Væ8oº68‰½Gû­g³è¦‡ ˔Ǵ~@ô$EEé¬!ùµõUY!—-ôÍo±^3àg9?ŒÈÈKO»f5–̺p¬KêëíS{†'çe…^^¡Šo),¡–Æ<¹¶}Ê·eö7Éüìp/ uæ€)>y‡D|jfv)%þcÌç›+¸Z—O4ž“|õTHÑ×Êt¿³w³æh°*›ë›™j?ÀN€Òνêÿí¿œÓ¾²Nê RÂ!>·â+êJcŸ„ä)« àÆw.à¼"–±§h~î¤ÊõUöïjXì¸6h_^½“Sàî“Áe O½íæ-uo?ÿÖõAs¿*µõWènBÚ½ß}¦g%_Þi¤ÔæNvΙðJö»›kÔÑË7ˆ?™Õ·ãRRZ~OL`%‰9~bAÒÑá}=™ZßPúÞQ_~ùí²–-˜éŒ=?UL–Iß»ÎÖÃ&37¯+?¾érfcKfì¸Ô 'WŸôZ:íKøËH†*ëWysÜt­–9Œ½uL»¶rPë„§ó,ˆeìÕY{+o_7Ç™[íAëDQÿîÉ«‘ûý\6ÌLææ¦&Ö_ßYêì®±qÔ€!Çj-/mͲÔLMˆ'§ U3ì´e*DتI‘ÉÆ;®O›™ ™©¡6ï¡Ê¡mF¼0`õÁµ_uÕTêžLÉ95så­*."“•ƒ"JÃX[¯3+ÊöïÏ¢$ÕG)‰‰©ÊÏFðjÖ‡æF:{ßð]mÕá£ãĕ׋pbC‡Ê”—µŒ×ƒ¶½JÏÍIIŠz|~­&˼À’Îê¬*â¬AXÃ;ÌæúŽFûÕg“[αÚqL“'IûTÏU8U±î‰E!¤xnX¾aãÜ­¾_Ù¨H-ÛÿOýi{¿òµuTàSÐ3ÛwÎ÷c¤£ØûkésÄ@[g‚ÁD½‹v†©9ºü»‹¬Ô;WÄqƒ°Dc÷ݤ[G})]~ÆyèÞ÷ùÅ%yi>:/v]Oâ* –üyq‡„±³ëøç›v¿ú €ÇãyÉ2Ò"¸Š¤çž›wûµæ¬œÛ'‚’ ³‚ÂÑGóˆ?‚ê@·‹ÉÍõoO‹eôÜ"‡ã×Õj<9Ks¸îæ£]L¥X§3,zaüÔ2]\Ç7±å?VÃ&ý••¿&'³:“ô"æw¨‰n2n‹ö‡wãF) 8=çΡ3¯Ò‹²Ÿ¾c¨¨H2 ;Ï‚ØÆžšš"«¤Ìýù ´~@ô ¹ÏܶÏ3|â–ÐA{}MeÕ‰Dâ€u>ï"#ßEFTCÃñ±*€ææ–#ŽÁ`ˆìžšj/‰Ç】þyäéиo.MˆÞæÂe8õ á«ÿJ%­ýˆDbcC‹B&ÔäÇ>~o³ëØ©“&îÙ«æ½÷bvçê:¨ƒð”c¯CÝf‘â®Z莞é\ÐXQ—››—››ýùÅÅ{qÆp¦:fE7K/Ûÿuͱ YÞ@ÚÊçÃã䥥úËŽ:.î~o›:WaòçEÄ%’sOsßÒ>¸šùÞ¥-9_$§'‡ÝvZ¬ÖzdÒétæMt:óAüêxìúÀüýüf¥ˆÑœäqêY@¡×©;½òðasssÓÛãËëjò^]¼—ª¥=œm:àÇã'~¬Éâ Ÿ»©­ÿ³Ö0‘””,¯¨àÈÑÊ&dQ9õÕ‹¼<õÎYÎco?&·Mx:Ï‚ØÆÞX^^+))Áµ—( ú <óÐh®Ér:ñˆGMUÿ¥Ñé‹'hkOÐÖÖ:pñ¥V…í!‰4Z#–=VÈ™9M}j <\SKwâ<[ßt:w•òÈÈôcþ##+[XPÀ¢‰ˆš‘É"½üìÔ‡L•°ùY•Z’rl‚€©5¼õÅTÔù§ÿ³¦pŸÁò}c‹ZÃVXâqwóˆ–ÚÆŽÁTǬˆ‰ðãU¦Ê­/„c;ôÔók«·]µÁÑåšë _¼Ií õ¢È¿µÓíËt§û 9é±w×4_y$²`ŒSR •°NjðÞ%T*óÝÆTŸÝ»óæÝùœŸ•ê¿’ÿmHB«B O>ø$½ 9ØAêúêcåÅÔ€uRû£K¨ÔçVŠ,\ʺ}4eŇ¢ÂÒÒ²ò‚üXß­:‚Ü„Tó`çÆ·£\B“£m%]u"–Áª ,->—ZžŸÕÀN%Õq8œ€‰/õÛ»t®Ì¨ ¸ó4¥s{ Úö*=7'%)êñùµšYG.½û €#ŠkéiVÅÆ•²®çË« “ ú«èf½ a^ аU“"“/v¼Huù?Jÿ­œ4þŸÐáN6†-k²Î-/·æ¨MÓ…yƒÆ.<¡0iL»5#Öï!ϲ%£¹oΞih¦fÆÄƤu÷#@ ˆ_ê@·‹ÉÍõoO‹ep§­ª©Iyæ÷±´¾6/èa(ÿ0MifyÚ­c·“«u ï¢ÚnOñܰ|ÃÆ¹[}¿öb?‰þÊÊ_““˺‹9b ­3Á`¢ÞŒE;ÃÔ]þ7 eƒˆùjEA¢›ŒÛ¢ýá4Öpy¯^ M1›7¹òõëZörî:ó*½(ûià;†ŠŠ$³°sËãñx^²Œ´®"é¹çæÝ~ß-CRSSd•”y» «^A”Q‘¨+Ë¡T±º_ @ ˆ?ö/õÿù5¶}FÓ^üàÀÏç·vþ¤ûµ9ÉãÔ³MçgTxºÃõS®D"‘No9»L§ÑˆÄ–™hss3óƒA [Å©É}’»ég#))Y^^Ñ¥XcEA^‹TîÅ{q5‡äTÞ0!ß$’-=ë剛³ÚuSÇ¿x;èÞÆ/ǧ”ó­f[W[Ë7Ñémܹåó.mqèèüÂFž–ùÎßuÿ~ßÔÆ6ååµ’’…]†ö¬¯?TP©bb¢ æ·£#"œ§¢70!@üI”ùžºžåîÚØµlht:OËíI<ÖñÌ:H¤ÑÚ슨™,ÒðÞ¾"""]I),ñ¸»yDË?­Sy‘aóMÇË@3šô¶ÔÐÍ C8D>ºz/(€Ã¾oäN…Õ±×7ëª1×þ“Öé«dÚK‰ˆ”——sVO;X¯âÃB«@Ñì°ÛîíNnëGBCØë6×[@ ¿ô¨ó×_Ëí†ffb¢œáÂÑâ$~¹éƺ´ÄÄ–7ùˆ¨éOÂe¦ÏÑ­‰‹-n‘V[Áç‚ÇÓ‹„zËóŸGANŽ˜ŠJ¿.¤ÊhÂú¦¦“eùyIÒÚ+çkÄD «™œ<¼v ™ð‚*F“Õ³²²Ù¡‡žmîÙõuaUI^²râ@)"­¼RÑÐÜΆ’²JY~n}—uu„õúú`ûJ§ÙRs¬­W¨W¿<»áß›\^Û@ @üò|ÉÍ«ëŽÕg·mªÁÅ謤·‡ø¯;Ò27%O>ø$½ 9ØAêúêcï['¬eiñ¹Ôò¤ø¬†^rû'RÿôÁëqÆÓÛ¯| ÝÓ©Ô’ÏN:¦^TjI®û¨ ”¯mƒòº Ü”kKÚTu]3KÊË(¥_r2c#ǵ÷ì7—Ÿ·³?q'Sbš•ç±¥lF ~,#¦J¨M7TêkOX‚Sßæu~J¾×Q×§5Ú۽ΘÉp!©³`•Zøöyëf,3쀷Ê\Mû~ÄŒ„››Ù ¥=êÂüz’Õ @­¬äBX”K+GéjÍrMiWXü䘥õÁ‡_TgÙßÀrMƒ@ þrx…¥¤¤¥Û~b‚,®cVy-—Ÿ©$ÑQ[V\\VÅæMkÞ;œi³Ç–~?ÔW훗稧,£8ØÈ‹oÛ–ù¢ ½ëêF†§‰¦òPýMáÜg ±’ĤÿW`+½AƒÇ˜?SvrYݶ.È{|Àz«ëkj;áDGmY Éc·§¶ÑåÒû.Ö‘wÝÝNn;à[ |ÇäÒ8Ñ[0šµ ɲӦ m›cIèZ]{“CÉNò?¾d/Àð}洞g6¬÷Mý|y™þúG)6¨€Ä«ëobr(Ù±nfCIúî¹%ÔÈ=³LΆgææG]\ª2ÿ< RKZH(X¾¡–äœ5d^ ¼Þ7•’ç9_’ó ÁEžÙràÌ›]· Iz‹çHp.ûâqÅôãþ–²ÑOÂ*ÔL.YZøµ·ÚñCštðØB¸ïõ˜ýKn]?8ûR¥åqõo=®%s¡€q (Z¾¡–PKScÞ¾¸¹^µ½hUb÷MO×û©”t;6ñg#³úv\JJBËïã‰iÜéó(ŸŒÌ¢d¥ExïÔbI-ù°WCvc•ZB¥¾f^7•žf“F¡¤Dúï1`—MÄæºÆf&…ÚOøsoˬ*+k¨«ªnhfÔW}m¨*/kÐ.ñßíj}}I”O@žž¾& ILøÆŒûpÃ#º¤¶¾4êÊ¡¯sˆÐòùêÒ˜'×¶Oî¬Cûòêm¼˜œ‰;ï9»'©‘F y¹³@ô‰ Éf,™;cdrR*¦ö¶›×/d§©Å™Ì!k=.X½q ¥ ý6ô§TŠN4'@2l¤*·¢úÈ÷0ß\¹#:/3%ÿñóE[j* òêGN™"†à•Ÿ:I]\B‚…$&bâ U•̨!žÇƒ² ÂVMŠL6¾ˆ}‘‡ 1yâÔ¸OõÜyßÅú $Ñ_Nyüti€ÂÂBîl#½%ämÞ”Ý[ÇF½}[ª£µD <øžÏ›—ý£€0l¼¶ @C˜Ï™Èhz{Ë5<€H ªŒÖ…ŠÇîçvy¾œ²Ž–X‹ÕâGmOu Hèׯ$…‡•ƒÀ¸±Ã?~âXzسWÌã‰rÓíIè[¿Ó÷âØøÈÇË z‰,)Þhtf7’Œº‚éÅçnƒo™,:úžŠ­‹øÅ jÚ¸®—9sâu3™„à“&“pl4úÍ[=_r}n†Ò¸Vït Ô$=¾áuãezS'Ñÿ>.È»¼^îÞì‘Öã8ÄJu ÛÅäf€ú·§ÎÅryÞJUS“òÌïci}m^ÐÃPþašÒ,ïvéÌs~_Zû5÷õ»4Vr-¤xnX¾aãÜ­¾îux‰…Çœ‡ZL5˜>Ý6ÝÄc«/@ÓK—­&\ûTøÎe`Y6àp,$1Áá˜ÙCxùÍââüâ/…‘v#X;0tïûüâ’¼4»®'qé}×…”7Üý¼ .ýÖ1¯l.#½_òÛW5›Ö=©Xò///€Øòk™óéÀ'BB‚,Tùøh4:Ðé4àãk½JרØ—x㪡™ú®qÕq2C¤'›?¼xÑz¦øÙaÓg]ùØH£žPw¥’?H[µ\·kqB\^œ^\XIc-É#;óˆ×ƒO[­>Ì>÷n‡DñSûu6þùÝl0ÄÏBRWO‡{ž¤ì€~ÿ¦¨YÊ™x×@Çý΄d0g*?ä=zÓÜ•zg:¬É¿m½ö&EÙÄñ¬³¿G±Îÿîÿ½+RÌ7è÷ºÊâ‡:ߥdÛáG4coÙìž^lÛÞ¢*jNò8õlÓù^§îpý‘H¤Ó[>aL§ÑØÜª"4zÝYWó¡DZ#^DÞte˜šüØ'™[o~'„ Mg'ßø_Xj@އÿ¶àeã|f¤ûlÔ¹k#È×TS'´6Àz|3+I,›Í-w¶Vy¯”ö† ΟNÒY{ðùð8×L©ÿ,·g÷¶-Ösᦽ»¸þPøßže&&³§Œ:nË“R.ì"½ /oÜ%K«Í;oçó1Ç¦ÆÆF€rÿ­ÿgï¾ãbþÿ€¿îêšÔµKK¡/R”†$”•‘ìddoE‘ñ³"¾dõ•/Ù[2³…ˆ4Eiïq:“v×Ýï†Ôç®k—ïëùèî}ïõyßçýyÞŸ9l˜é0}ƒþý-¸Æa-// Pø€jf¿°Ë‹~ü(,­(õ÷Ð6œbj¬/|¾×D‘1u¼âuóÔJ]n'R333¤   ¨¨‘Qµ÷/<柸/±o6hrŽÙ×áúIÝ×óÍ×§\?³üƆ» 7Y÷iN[¡v•ûx猳g̘=cÆÞWÅY÷ìgüí[ ¿; † „‚wŸIN¨AGà¬$óKpàÛ·òª¯w¯!„8ʽóÏå¤ÇÝü¹ìlrPÁdòñU?4ŸŸY{ÜŒÅb‘Èuv2{Ìq^]è<ÂPOèøÃag,®an5ÝDõϽ|I@@ÍdVŸî©¬¬éÁV³eËŠJ˜²22y¹¹œbÉÏ˯„””$23iÕƒ]šåó&ê/M»¢‘óEIÁÞÏ¿4)G„Ú€€9ùÕÕd‹ª§‘%†}ø3õÆŒÒ*.Ñ[²mºÈ-;«Ç„I“"à `Æ[§˜þÔYF™áá߈ŸGCóHCc»¥xôEJM0yÄâ“MI0 åò©° NuŒzt?~½íÚ£;ÈþT˹JeAGWÉ‘8¸Ÿæ þ‚UF3¦ÐÚèßìo%0˜L†¢ìÔœ “ñA®_Yz˜OzÕ¿LK&@Qj°O$ €àw€Þzþá•$'Ô #ˆö›0}°t¿Þ|Ô“llôRý®W–Óš`³ÐPu‚¹°Þ%§·Á¢#„þÌG¦,/LkFʤ¨(ÅyÓt/‹na\uë[õ´ô ªåX#Ÿd1vrr6??E´{72[H^ÞHÅ¢njêâ‚©?Ê^{YEcùiÏmšìWÊÓ¯6s©:·¼è¨œ–Ó”_ye ô›>qÀ×§Ñ l¼ü謩Sö}5]>SÁ×'€Ÿ„1‰”ù¾ß·ÐV/Àý+KkåÒ¡!×=óÌ'¢2ÞLû{ªkÓn€Àw: .¡v¶-P}OAéËÿÍvò*ê|ùâñ¥½éž÷BKˆ“–xo›ïò$»Ïb§­–Ò±žŽ‹]>p.'*0 d{ô d¼xþµ6”õ% à{iqÚ›n·¡V~v™·öZºÚÂmÅÂŽÎ_}¹úŽ¡ÌwO>æ––d>ù¡ŒsÌ‚ìo%Ÿo~ÕËÉg“ôÓ÷âxkÔ)5øÝttúäFE}ç’’³AÊt“ÛQ·U†‚ ã7¹¹]2¸zÖ)7n£›ëž•ºåW¯f·hQBºïiéQîž[ãLφ%GûíSõZvð]Í3‹îØž2êÚ‡È÷WHóüû‚ÄîO‰QíùNÌuȘïã¹D ï¦3–Éþµíý¯'5@nü§4F^ô§dNêúB¬¼*¾ñi\fbÄMKšÓ¦ i~Æ~[ˆÓ)_^8)y-Þþø'§˜„2ϯ²ÿlüÏÛ¸¯A'‡}X»îZ6T?‰ñh™¬æ®0:ƒñÒV¥*²æ®0:#?5ö…C÷kk7­ö¤ºgAlWÍ:î~«éM€þÓ¦NáõðB¼.†¬nb­/G–3^¶y6Éu¤ÉáØÆÓtK[©Ž®ÂÔƒã¹]…ÿ:ÂAªn`ç¹o¡ÎÆ;üxÕ?̨ÚáRoóûç>W¡&ꮿð€Ûx²o^ö¶Ç:éä!„B¨cáü¡j?n.Q¾ÙÑ•@!„êÜðþ„B!„¯ðüB] ^…'†Iøª<„ˆywtПÏ? „B!„x…ó„B!„¯8ÏÌg3è¡ÛŒvͪý¡¦“1ZsÞ'4!+-õ«ßÍÝã”pÞŠB!Ô5á~j{âyìš®ÁxyêÄ­Dê¸ug\çÈvtB!„Psàüµ=íá#$ ýÊ–U{\לŠá£ðÎ}„B¡®÷âPÛ“”HÍÍH÷Xl(^˜ÑÑuB!„BÍóԾ،¤ðˆŽ®B!„j&Îó6›ÝHBÍ *¯.+R’›J+¨ìèª „þT»<ì~—¸yû$ç=ƒ )) ls#,$ÄeÞyƒB!Ôq>ÿ蟿zÖLç eÁbæf$v¢ ½+†þ Ÿü Nš·Ï­øU‘ÁÜAPöÖ7¤¢£+…B!„šóQà¢;z’,n¶ÀjDz8,?ö¯_BÍÂx°qþþ)²“ììæö-|ub庫Y]'„B!ÔÜîŸþööÐ\“CíVôûöÖu©kG×!„Bµ^…ŽB!„âÎB!„B¼ÂùB!„BˆWøþ8„BˆA"*Õÿýàúm£Z˜œçüë>žßKa9—ÒyYq¹—N³Ñ<§ÒÎäÃ=y£™Õ“{5š€çÒ ‰S5ös4ãm /f˪„Póàù„B!„¯pþ€B!„ÐïH¢*J]‰¶"(§$'Øüä8@m®ÇªÇ ý½:ÀÀm z®j3ò‹ŸÅ¹Ž¤€á¡8ߪŸ½>µeÞi±—fR[1O Gßèý†Í¬3B¡FU§ºx‡Çfeg¤Ç½»³Å¤v N¢êíðIÉr[?A_ÿ\zÃð:Œ]“èy¹´œï©IáLRä^ƒ&oçMFV»ß'Àk¥fÕ…þ‚½§}ò>‰–žýêŠABœv7Xíø%ƒ–rk·y0<GÏË¥åVý%Î1µ±kRÍ'¬»'(ü¹êoꛜGXÞP‡í|õþæ:±æ%Çùj'ÇŽ–Ð;ºgG×µ)Õ™3{Þ¿íÇýãéOwÛ9¸ú2Z3O„BÍ¥6XG²‘(}l·Lw6Q“WùËüšàû) 6ïäƒà½ÊY âKÏq^Ù-=³±’£œõ¤eznŒ3?¶Þ¸™Õ'Öü±ƒOsó×ÞÓŒ¶û3”—žÜ£pÇFW­·Î¢·}vnš*Å)eÏå‡7P.NÑPÖºþëØ³ÿÃW»ßHAJJAJJAJ}£_ã50?zzÜ›5¶÷³«š8n6*ûîò!K§_u·’oNrœ? öÁbëMU3¦?ßcþ'S·š-wûf«æ3IaÒ¿A±´”€KóûªÃ0rŸ]Úhö먇á¡8ßf3ÎÅd¤][Ò—¿Iyös eÐßoÓTXõˆÁ 3Õ‡døzZyšLKŽñØl"U¯ ôdÿós{á!„@xôæ›ÇWh’¸F*ÈÍ-+)(,c³J ~–äå–@î—ç;,g9Õ߯±y[ß{»Î§òVƒŠï¯ý>I** ˆÍºýýéJ…ªð¾ÛC?ïBâ´'«Lpy’˜žpÉÖ°Þ9í߯Žnú«<¿Ò²“£ßžßlÞ“Ë ¿vYÞá5ç“Ê«> ˜è„x\Ža”–å;Wšs#—SRRœ÷~WÏ„bfÅ÷ W¡¬^½dyk€ß3Q±9yTýò‚EÆMâ–`Œã´ì…Úy¨m\¦Åý‡'„£'jQ_b†Ž›9yÜ ˜è¸Ž® j;ýgμsócí±×œ=ïÍa´Â_kÿúÑüâ¨!K¥Zœ¥×Kù×<›nÿŽ×Ô°|¨¾wƒ¹@SòŒ>¤O•5ØEs· Re©TS×$Ÿ¹ßUÛ•¾š¦Ù.šõùÍC«7ÖV”£cúkX<úk¿ý(¾¶k „ꔬ›!­±Â~‚(·Xî6kl KOŠÍxcñrºý£b(ˆxpóylAý¸d »½“C—ñX~é‘ÃúÅE~.(xù,PÛÌL@ÉÔLâùÓ÷lNÛùY.ÇõCVé¨ö3=X¼úœ½nÝ,;X_yÚR³á´½!Ê#s½j‡b>sbä݇¿†) ))&e€í¥àø¤´¯ÞÿZõá|ITò£¿Ïþ Q¤ôL´ ""sªÂûlx–ýñé©¥Ú"\ÛB`ÀúË›Êw.<S}æ„Ó¸Ùp„¢1ŽË²³"î>ä›=Sš ç¨}ÐÞù¥›mu0üèçWÒÑuAmFÏzFéÍ;Q¿Roîý÷u·”çOYêê2\’Æ]q¾ô‰QYéZ¦¢Zç€Msó쥭M{q÷CNiqº÷CáÚÕ‘Æ_?x#¦Uò%ðc3 !„Єb¸ÎÖ€:uÝb5.ñ¤§té÷dÉ(Ó±c¬Ü 8F•½kEé±wóx(¾ÿ¶àŒlzz¼§Ï–ËÑùÞÏÂÍL$G™ª>÷þuö¹¾^ÚÚßžß +`UÐÜ}#=HGú×w¿d2Y€*/'NÊ~yfíÖ»õwÅÓCMígLLS $IØX¯üèm-ãµïu]÷[ËqN ns“‘Ÿå&ï6}WP„ÿmªo0Ôt˜É¸é›4œ-Rå’Zsë•­B×Ü¡5zµáhØpŒãºìqq± =Õ8ÿ”œàûPûŒñ{]´fÙ·—ïòg®èèÊ ¶A6´š‘ïi^÷“ɬú§’Éä§p»‰]sa‹Å"“kl4?O …R“YQA¡4,ˆ{•êòˆ_ËÐùòl!Þ«T³™wÂÒ[·åe¬ÖÏ«ºo™oКu#άK|ΠÛhë‰1WÄU¤º{mx;Ûh÷û·D1…†ýo›†Ç¢…)\w³«|Ý7ÄÔ5‰$Ôc‚Û‹Ûf˜Š,ï牎# É>²£´}<ý˜ÓR(Õež3*€"Z”ú±öBõÇŽôsöN½]|Ö+U$z¹îÚu'®œc¶222yyùuØlv¥ß•³Ÿò˜÷úìí8?}-¸’Í1ý+VÔ«jŸY'®!MZx—^žŸ™^_ÚÙÛ‘«´ûp¼°+jßì[cŽ\y{Ê©„JŽep Žq\—½"Ï­¶]»ùF†`Ó§¹¨Óëg±ÀÚTí·g¿QFÌ´L¹}‡x›ÈO¡TTpÞZsÂ{ž,‹D®»A«`2ùøª/OâãçgVÔ¿…®™UB¡?HŸK†°Š«‰M^<…ÓmÔ‚l&³úT@ee¥§{ú™ŽRT]û"“Á Ç*b}ä¨ÑH5Ø¥Y>o¢þÒ(òâÙw³QºF£ ŸúþÚLmçÝg Õת¯¯ß¿÷Œs5wk7; #.¯µ0î¥:pòÎÏzÇŽ,àvÓp~~¾¸¸xÝ€¼<6À¯óµ;î FCñS¬ä€]ÁˆóöË=Z@y¦û­µk–´Ñ»@™q§–:n¸è8×ç«g¿¹-;¿¸¸H^/'Š~‡óÔ>Èɯ®Þ ¦ ¶àyè“øk¥ûÕcÇîºL«s§Àh«‰_<½¾ýQL¹—Œ™"?nò°’Ï‘œÖpЄD~|¼¼0<·:Æ™ž KŽöÛ§êµìà»ê˜Ô‘{ž%dƼu’½¼ð`0> !„xzdåUñOã2#nZÒœ6]H}<Á Ýo b}Á §7kb¶š»ÂèŒüÔØݯ­=\áý\fœiÜ“—Eu¢mç·¦[Þüš‘ç5_ØïÝ—ª1‰`ì ‡¦LùÛ3(>&ìö¬Ü[®r;xTúüuöÝÓÏ­Ý‘iyáCb”¯K_Ÿå[îÔ̲ê†EönO4¿ž•ôùáÂÒÃöî1ÅOö9~Ô=ö&1=6à´Éûõ}ª-äÜ_gë?ö_×IÒÆMN£aÃ1ŽÛ²«[L z=xßhuÀûP›ËrŸDu¯ýâ¨!ëØµA­!÷¡ƒîC‡º!â3MÞÝ^õ£n#ô싳õ’®!ަ5ÿØ«ibžP}Îfø¹:Ì„{væ÷ìêÇK=?³êÁ!„š€þæ•Ñ¡z>¶½©¶“dŸ™Òƒ[–öê²öõ)lAú‡·ÑJÞ~,,áv~|ýí<ÁØÁf„žsœ~x”ÿäÿp÷zÍóêÛJcoÛ™ßn0 4 +¢Î/v¾^¬Š¯WíÆ^å¥ä{õšÑ°ÀoÝÀª‹žrˆÆMN£aƒ1Žó²“UçYYy|B ÷Û,áù„PËIL±2|áé]ÜÙóD!Ô¹uŸr95%úáÒ¼Ý[ïÿlFúÖ;JƒvÌúGüïWÏÖëþ©Ú¥Çí}÷dQüú%§›“üOm„P{Ê¿<­ïå.gÝ!„:ŸŸ·­n· }댥1Wæ¿¢œŸþÔ 5aŒ+J¸·r¤Óçœf.ÎB!„ú]ifð§ÆcuQ%‰ÝÅÍÇùƒÖn¶jOscnžíÝ’‚´y®ü§àoGj3]¥ž„>w¾*!„þãz**WÿGãúm£Z˜¼…ù}Û¼˜I-½.®ùæÙèÛšð5½ôº:vTý®çÜ’<ÕŒŸ£…šðk¶W•Ð Þÿ€B!„âÎB!„úITEI¢£+ÑVå”äZð>.œ? ¶g俤¯ IDAT~<›Ag0茜¤èÀë;Æ*âm7!„P"6Ï#7—–›KËgÐóri¹¹´¤Fvt¥ÚYaì~Ÿ¯•šµ{,$ªÞŸ”,÷±\ÓŠ«nŸÜ\ZnÒáá 1dÍ•·i´¤˜`m¦r$N©õ¢‰'ÆòO¹žM÷±­¹Mm™wZ쥙Ô:ùÚ«7©Ãv¾zsXó’ãüµ“œ·§vº\înºáÚ¹åêûB!„Ú™Ú`I® ®Í‘’R’šrŽ嬯 %¥ ¾þMûÔ­ðin¾ãÚÛcšÑv&€Ú¼“B‚÷*geð8v¿‘‚””‚””‚”úF?ý-W±ÎXi«õ¾&hèqç \^+Ía:ø‡4¦°~…§?ÝmçàêËà˜°‰²ï.²$|úUw«fÝïŒóÔNòCo¹Ú1ŸK`ð”ñ\ß'ƒB¡v#¤ÿ )ˆxpóyloÉûlx–ýñé©¥Ú"Ÿ™^:ÈÌL’  4jD_)iiΩ¿¿ö)iÚCÃÔ8ùÕ»ª—3„8jÈR©géõ¢öš³¢ç½ù#ŒVøkí_?ºzNÖ°åX_yÚR³á´½!Ê#×™ƒ°"î>ä›=S—·« ç¨}±Ùl2 W<„B¨ ®³5ä N]·X­©‰{ikÓ^ÜýSZœîýÐ_x€¶\Uxüõƒ7b Y%_?²zõ’­Ž{f圕«&;ÜiÎ{¥ÛO5µŸ11¹ÍJþ·©¾ÁPÓa&ã¦oÐp>´H òÕ!‡÷C/}ÎL‰ <Ô;7H\ø“Ò_¿êf6Ïrä_ßbî'Roîý÷u·”çOYêê2U [žL& PååÄIùÑ/ϬÝz÷·iH\\¬BO5&/'îÆ¡öE"‘ØÀîèz „Bd¬ÖÏS¾AkÖhâ#y( “Yý cfE…R½'ÊfWó,‹ŸB©‰Îˆyêy×/¥¤ÅµnS222yùùÍK[žŸ™ž––ž––òÕçìíHÍý€•à¹Ê@E½w¿zÖÿF›ëNÐ'¿>v«È¯|ó)«¶å+™ÌÚFnØòéçìR‡¹øÄ$ÄÜØ?Cã·ÉBy^^±Œ —ó!àüµ+‘òâ™™Y]„BõY°d«¸šØäÅS¸ßF]_“ÉÇW}y??³¢¢^~ ¥¢¢æ6×0·šn¢Ú¹/_‚üü|qqqÞâŠõ³X`mªV3íRžé~kíÀêµ»òÒƒ­fË–•0dedòr¹œÛ ‘ ôñíHÿÛÞ)<Þ˜ð{#7,Œ¸¼Ö¸—êÀÉ;?ë;² î Óüââ"yyÍTÂùj'ú³ì6m ¹<ìþ³ÌŽ®B!„⛪õèѳúO}ÁͦíJ&EE)Žž¦+%$¬8Ö¸"*ê[U¸x¯~=„Èù±“Œ‹"#²«ck,?íyÚýáÑé\ž?Ô d¦¦Jª«wç%ê_+ݯ;v×ešHÕçÜ ±áÖÖ#„„äôçOÑ û ÂÆËº¬1’U¿|¦‚ÿ»O\3eí›hs&¦ÑÂÅ”{É)òã&+ùYÝÈ Zž¤±üØßó‡õ–¥TäeÑò+á·K@zª©çf¤•ò²¬¿Áùj'Ò#VîÙ2¯¡ï‘ùKN'âõK!„PWÇðÜêgz6,9ÚoŸª×²ƒïª‡wêÈ=Ï2cÞ:É^^x0¸fÌÏÿ”ÆÈ‹þ”\ÖaæEéó¾C,ÆÖäŒ>žÀ`пî7±¾Æ`ÐÓŽ›U…çÄ„%åæ|ŽHª^¢â'û?ê{“˜pÚä‹ýú‹™~Æ~[ˆÓ)_^8)y-Þþ˜Ëý¤_7GÔükx(ŽÎ`ëîûLËÍ¥å3Þ9jü–ZÃÑ7z¿a;V!Ôaþ£ý]tö]QõwejG×!Ôy‰ÍóÈÍ­Ú_¢çåÒrsiIÿŒäŸ·*Ç}°ÿr_ÿ\z–ûتOªS]¼Ãc³²3ÒãÞÝÙbRµ·*Ø{êÑ'ï“hééѯ.¬$Ä97~ó¿ïÄf¦¦FyŸ²éÿk—¼þÞ¯±k=/—–ó=5)üÁIŠM®vSp"*l¸MTÒZÙµaaÝ]äøñ™çÔhÏ®ÖÞ_žþt·ƒ«/£æsØ6-)©)çèSI„ªF’˜J¹”ÒxÄVSòïj»Õ;î§µyIŠ¥tÍøùÚ¼„P³¨ Ö‘ä¡àÚ)©ªý¥(g}))õõoZ\,îƒIÏq^Ù-=³æcßÛ-ÓMÔäUþ2¿&¸Á~Š(/=¹GᎮZoEoûìÜ4UŠSn=»»j¾µ5éó×`›jû-¬Ôßû€(g}i™Þ†ãÌ­7nb½[kþ ½ªT•R ³ã3ƒwhÚ„ƒÞq´ÄÈÛ+úS`øñ4:#ô¬N%¥e|<;K@z¨íå7á©´”ĈGnóúWÍ«¤‡®½ø:,™––òÅûô"-.“-|_©¬þ&¥Æ'8äƒÒ º’Å>¨~_Nø³KÍĸ&ïçÊ ¿ß¦©°êƒAg0|íÕÈ*\†$¦'Ä\²5¬žÃÉ-¿Ÿån3ùŸ—q™‰ïÏNWjR=ÑqïicÛKoÂSi) ½Ïì#À©Ë’Ô¹$??EyyjgºI×ô£†‹C7$(½ äºO¡IõŸ,93^yi¨”FUG è2¢Óod?])_•HsWXä>19t®nú«<¿Ò²“£ßžßlÞSˆSA¼ãÐß K',ˆÌ¯~Pvn’ÒÒXs;ÁæÔ5~ÚÃêB·nåœ_ÎN°U$\—ª@Èê2ƒA²\–8Gf²¯‡§Çƒˆ¼ßB´Ÿzøí[BÔ›ó+õºH-xR{¦‚Ag0hg&‚üŠ ýáiåÕoôÔ£9LJŠùµï(XßWS'Ç@uáÑ›o_¡ÙœÎÉ×ÓâÈ“ÐdZr|ˆÇf)ÎÕ1;…ÇÓh±¡^ÿ3•i$[ÉÉ®IÑþ;‡þÙÏ ±y[ß{»Î§Öäæ–•–±Y¥?Ë òrË„ LtB<.Ç0JËr‚‡+͹‘Ë!;A#Ó!ﯸ‡Ñ‹Ks>^Ø»Û7•íýV|í÷IRQ¹iûÙ­4Pêf¼„õaGqý÷‘KM^bžsÿNx¥ê˜ívµÃŠòÔ%zñ×î|!÷²\;³Þ{}‡eÄ‹{>û¡esüâm¡Ñ{=vNUJ¾²çï[êVGO¯×lJ…*#G¥TÏ˨,~.žvR<í¶B5d©T‹³Ns£éSe öEÑÜ-¨TY*µêM~â³\Žë‡¬ÒQígz°xõ9{ÝšèÂÆ&"îSújÚGµÕ«)õDÿaõ{‡Ð˜};,»¿Ûl½äߤ~KÝO¯îSµ^—!DRÝ'c4•¯à2#äV¥¸•äX{ w.Â<¹”Î3aA%ÑŸ÷ÿÊôÖ™ÅÄ]¦È癿–©™8€ÊH3±Ï>pˆY•gýÎ¥¸øÀúÊÓ–š} §í Q1X ¸%ç q',° A+ 3ý²—ƒ2.ŒüÁ\%¥×´Ò$-Ðÿ˜ü?É>ìâ7&Y¯pz7ç­"ñ–¶Ùäç:g¸Û¬ý±),=)6ãÅËéöŠ$¤¤˜”¶—‚ã“Ò¾zÿkÕ‡ãYjI)鲂åUïÎöNÆö~ù¥Gëù¹´iuo•yŸ‰pnòäI@Ö™M»í yöÛôI¶zèXEE‰êèÙ÷8þ©T6}¹žD÷î ®«'ù—Ž;¹¿íV0lÞ‰Ñz’ÀÔÕ£Bþ%·]îoI¬™=SøêÏOÚW/míoÏw‡° àÁÝ7§ìt¤!, $à¶gl@xPX‰H'pè?«~ï襫'ywo{¾y'Úã£Ó˜1Fú¢ÿÄ@ƒ.Ó×ú‘:Y¥ßßíüRN ù…a»~¦“ÊÊY"bÉ$>âÎõ‰(OâÒ‹š´D%eq7**èAåLapè2?¼Ÿ…þm6LÀãI÷Q¦*/ϳ8Å è\d2Y€*/'NJ‰~yfí˪’9&o¡¥$®%PôœA/((Ž{+¥«C†0ï…¨ü-7|hYäâo¼**¸ET'Ü*4\—Zø\è|/;óhrb`L®jwk«þª**ÉeñϯÄëï|rHö‡ï†G¢HAy°`ˆáx.3Ìðâ5—!¨ükQàÄ⯖âÃöIMd3¯:•·¬ž¡VA1\gkÈ@ºnñ¾'Ç“›”¸—¶6íÅ®9¥Þý…7kËA á&ˆ¸ÅÀ’ôóg€o`ü1½Fžü{fåœ4ÍÂà§?›T.Evö®¥ÇÌîæÁòÚ0éi]ú=Y2ê~†@ÿ¥nîá#v¿'‘HÂÆzåÓ&h¯5Úrëú~kßW²‰r$‘ªN!‰Í¹ïj dršÛx}çHå÷ßœ±øØ1§f[G7±òõç¶«fñ˜ò¸û­š+o|w¿½`…oè·]kŽŸ±Ùl`±*€L®9×Q^^™ç-T=He…ÐÏB ¢‚ Lf  `m ;ÒcËïËΩ’uªÔ(Šê2ÏÀ@-JýXÿ:…ôSSÇ×ýÌ{cvuÿ%m‰zëgýÞ! 9çRÒ&Š@·n5G‚êu™!s§ÍšQ÷$ä—xWg² @›ìòèÍU{fuúѯÎE˜g? ¢Ò«çMìq?Ýéw€S—¡?}³y¤镼™ÖëÛ~LÎ1ë¨í\éçìz;»ø¬WªH ôrݵëN\9×ä­±¹¨-° >[&3gÈ¢¬‚u.à¥t6?ð ’È$Î×.ñVQ€Ó–¶Ù*%tç::ŒùKJˆ_D  ˜T³@¤3Ž_sèŸuy΢óI•Àõ,_0É`ˆ|?¹¡Tö{Ÿ‚Fò&‘È‚ÀÇìºKŠ„:ŒÕúyUWÉó Z³nÄ™õo›r°–B¡0™Õ{}ÌŠ …ãůÝt—pµéO©('‹+Á›Æ2fÄ<õŒiBEº¡aÿÛ¦á±ha À¯¹T·ÑÖc®, ˆ«Hu÷Úðv¶Ñî÷qlv¥ß•³Ÿò˜÷úìí8?}- ž?°«7­óå<`¨Ëç£L.Çi¾îbêšDê1ÁíÅí 3L5¥½ëÏxS‰7÷†¤¼ª„jvW~a—Ub)//èFá¯ÉdV@YYYM (N×Oùèû1ó×Á¹†õlõˆÅb‘~‰+˜ÌD÷#Ž$4!“6žÒ .ƒÓúù«w”——äy9˜8‡V}UÎøýzm—yã¨Bu¬ŸE¢  ‰ À¯0]@0¥,í#aç"̳±Ò›Õã8t™,oïowÍtŒä‡„>_UÊ-&‘ˆËk-.ƒUÃdõ‰+Gø[œýÖHr^*ß ¿ó¾D¬ `œ¤ß<ÂảÆJOÝœíû? £òK C61¾†±8L"·Šu¾ÿµ.±Ùl~~>’ŒLcW7 d±õø‚>ã§yw[|û™ƒrMø Ç'‹ï±t|]s ^©¿8LÒ1œbª¨W|¾sËXp¨ÁAêmvš[Î#×ß„ =¡æë³`ÉVqq1ˆM^o¢.N(1M¸†©mßÿ nbã°tÙîEC2"?1ˆ#%E†€Ä[§•«ö-5È ÿIá 1Áv÷Êe{N\8å䂾M¸  UÐÒ3¨Fc¥äû¨Éñ@RT”ü°Ñ½„„ú-q÷°ÕïNʺ¹  -£9íƒêœž[ãLφ%GûíSõZvð]M¯¿QMóüû‚ÄîO‰QíùNÌuȘïã¹D‰ó>Xnü§4F^ô§äÿØ®Vè‘•WÅ7>ËLŒ¸iIsÚt! ÒÏ­Ý‘iyáCb”¯K_Ÿå[îpœãež_eÿÙøŸ·q_ƒNû°vݵlà°÷ š»ÂèŒüÔØݯ­=Êu¬h¨mŸ‹Å¸o«éP'ÀÏVEÖ¶A´ì·Gæš©øÝÿ˜ÍÈc-)=·ð¡daÝ€G Ù—}|ÜÚOv+aúòès6ÃÏÕ `&ܳÏî÷XÙg¦ôhI-ÑUƒÞ¹A'—Œ:ù{,â.Cè{iØüoõ§éD‹8O¢Ò› ûçý†{Ý„] bï@êÞFct.6#ôœãôsõB9Ä»ý°kÄdÆÛeÇ·¨ô*ìO~¼ãò=§­bƒu)ÿÅÖ±½ª·k§¨—9çXä9êÙ0ø„•щÚó«2˜Ø #²º‰µ¾ì{×ë7Ï&]òàtŒ²Žåeqû!Ô5„8j˜ÖýÌL¸ggN´ù­¿QÍ{±mR¿m5ŸŒî§}°Üûë´ï·J…»€ºÃ ýÍ!+£Cõ"”ÆÞ¶3¿ÍË(S‘òôÓžþï·0½ß{uYûfÕ¶ÊŸý\]„Bm¥»þÂnãʾExÙÛ‹íèê „j'm6wÖ¢:·UæuiØ;PkéÐuéÇÍ%Ê7;ªp„B¦mï@!„BýIšyþ¡cKJXz'|Rj'¬ê(]zeè*=ŽPÇV¾K7]»iÅéyeA³¿€_.ßJjª4§N<ã=ÿfÔ¤Ñ$m‘g3Rµ°xlaé-OÕmñkš:y„×÷­’Uké„UúoÂó!„B!^u–ùY^ÎÊ•6&ÊxC7B!¨}'B¡N¦}çæÇ³tƒÎ`dfľ»í<^¹¦|¹);OØãvȺỎ„¬.3ô'Ëe[¥ ÔŠdŒÖœ÷ MÈJKýêws÷8¥j俬!Ïý‘Œê•¶æïŠÎŽÏ zÜ!ã6*´ÕšÎüx6ƒº}Àh׬Úÿÿz¬zÌ`ÐßT=´|à¶=÷‚EÒ×n¬ò3ÒcÞx8‰·QE[¬%ý]Ú|ïÛ¸´ìôЛ+úñ4+ «,ºùöÒ,Å&¾‹¯† Œñ¬¹kÇ(ý –3²°\¾Òzéìƒd) ?j¹…~UsóK›Ì1¡póJCýFtöÝÚìÊÔ–äôgŒï¤ØãËy{jÇÎ#7“¤ÇØž98‹ZH;7_gøh½ ®­ø@‚P«ŸxÈc×t ÆËS'n%RÇ­;ã:{xó¥>=²c‡ÓŽ+aåÙ¾'wìpÚáîŸßx:Ô) ;Z@cìèžÍJžýìàj»=¿÷š°óðÊ~­[µVÒ²þn0uFÐF˳%ãfî@’²ÀFŸóLIØpç—ÑÇ.mÔnê»Ä»kŽ1_0Ï@¬°¨N ïá#Ôrß_¿p÷nX¥Þør¿ÍKÕM‡«§¿{/ÅF¨5”…ü»ÚnõŽûi]Ôv:`þzë¸ÛÑ »ïdƒ –VoPYý†AgäÄ…ûù\]^{ú¤2iï£ðX-6xçºÉÿZ~'Ž–yfŠLS ‚áÇÓèŒÐÿM°:””–ññì,é¡¶—ß„§ÒR#¹Íë/@é;×õŧxz>ÁÈÎË£3îÎ%N. µøÔÛèÄoߢޜ_©× ´¶2²þ]¹üNÜ×ó³‡/œûxe¯¦V¾ Ð>BÒ¯lYµÇÅqÍ©1ÚˆŸ¨= „C+´'Tƒ7t‹WtVrô“ ƒ… UÖN…öîÊñã'?Œfä…x?~òøÍ°ŸÕ_RGî|•ôÅkí@Aà¸&Û^zžJKIøèuxfâöäÐt2Ãn|Π%F‡M¸1®<;!19¯ü·0!‘îP\È”5œ8LS¢¸°P¤›hõ7|2Ú“ X~ϾäÖ¡?Qyy…¨ˆP+fÈËF€x÷€÷A µQ¡²ÒòF£uÀü¿›tE5£±rYYYPýôʵ+¯*ëFRÓ yÏNì;sæÀÍÈ:_°Þ]u{æïw÷ØíHhDý‚ªd?ÞãøÏ ·G1Ý»wu]= ÈzÜÉýä–3@R3Гfôë—¥?¿¥$¥~/<ÇTŠþ“E˜<ßËÎ|ʬ5‡Î¸¾  ªR}Ø´,ÀóßÐL¨ô»î”@á§4±ò] ›‘ŸÃ$lO h~¢@ §öøñØyù^7§Ëïøed¨­²†teÁ‡ç-ݶîTEN®æJ¼z«b/]=qÈ{{ÛóÍ«³^€‘¾(ñúIØtªDw~Qq‘¢/÷\æÍ?SýE Ú“0OÂz.Q KoW´w~éf[ ?úùU vœ“x˽×=ÍL‹QY%9I¡ÊÊJ>þê ‰¤ÑþèðØÂ–åP—’šþMk@oI ±ÖʧáîïƒjÝ»‹èþ­Ñ˜ð¸#µ•·¾®(I¸~ðZ q$ …ÀdV6ü&ûÅ>ëÍ+H ¼¼2Ï[¨zÊ ¡Ÿ… @E˜Ì Ry~RfñZ—/‰%Œ4÷-gÂj3­—¼²§î\G‡1I ñ‹ˆ7rʇ÷Êw5¢òê²"%¹©‚‚íÉ»J NíÉ,¯`TV2€D"µÊÒU”|Ï)ª]ö* ÖdÉ9—’¦0APºu…ÊîíIØtåÞ¯»¡¸kúÖs#¶²KS|\–ØœøXÀc{²k/Û©@˜§€A= —x.½ã Æø½.Z³ìÛËwù3WpYL"7ì–^¥©Y9ŸpñrÏ6XtŸÓîu'QÓß æÇg±*€LæpLŠOaüß×þ5ýì`û~âÉÀMÒÙÏw.[ï•Ñ ;ñåy÷—R¥“¶OVK}sÖݳ´åõ­¬d’ÈäòäG§“´ù*+«Wÿ¼ÀGIj£†èÄx‡3ØÜóh±Í¦ ¹¿\¡v“Ò¯oÏ!)ÇæOÂ݃Ja^©:¦NÑ*ÕF •—W¤gп|Mj4f̲îýÏáfâÏï)_?%ç39Db±X ?ðóÿ¶~˘:±Ó+~îb*Œûi-n±Ë‹~”Tï²t£ð?T­ÖÆÜlY.}•NãP¿šäBS·_0ÐÇaü4ïn‹o?sPndÙy¯|Ï`HJJ$ƒ²Í°Ý®èáBÔž<´à¹=[c ùü¾&çy9˜8‡V}SÎȲø› =‰›®"Æcݨ›åû™²åè‹-/Y{í™›— )%I––ÈÉÉ!Îó3A=‰—€×Ò;ž€@ä¹Õ¶‘E>cçñÏ¡àÀ1}Iæ—àÀ/Á¤€½ –èë÷†ûÚ£ÖMBØß]}_ÕßËËË«v%øùùH22Õ÷­ôu¸~R÷Õ\ó}%vïg–ߘ{×Üc“õ ¯Cít®¥¤¸,,*P"ÝD‹Öœp`åE= R°?(óV8ãî B”ÊJÖ—¨¤/Qï#þ†¨k×õk#@ˆhwKÈbσT5|y\'Ñ󇢤`ïç_~}í7aú`é~½ù¨'ÙØè¥ú]›•žÎ‚a3&)ŒÑ©“šøîuÀ5$[T{\¿—ïëÄf} ø^Zœö&¤un2,ñÞ6ßåIvŸÅN[-¥c=»|øêùïkáñÿûçôé“gοíâ·C—ð¤’GGw>O×\}êØâng'Ûü¸rðT=Ž×ÿ¶zå;ãÁÆùû¤ÈN²³›Û·ðÕ‰•ë®f·'ÏÛ“øá+í¶†t¥/ÿ7ÛÉ«`¨óå‹Ç—ö¦xÞ -!nO¦cFzyåhÎÞðÏ÷-úù^N œ^WŒå­=‹^ì\xèI²¸Ù«Aéá°üØg6qžDõäœoWù5…„ª/Ó¨zRCÓäÆmtsݳR·<ðªƒãÕ춯pÓöw Ié/qÚe­šñh犣aY·ºGäŠ 4U Úy8¸:yAö·€Ï·N¿êåä³IúáÉ{qmSÓž£¬íí,.Ké7ÊÞnÁêQŠÌø·ïÒäŒæ-ž>S/ìé§ìß.V*{åŸÞsب^­yG)B® 7‚«ÝŽº9MV€A6nnG·OR"Ü=h …:Rí¸¶«fw¿Õµé$úl|º]æÆâ©û?”°æ†Wl×+Íô(j<)Býgèìøìk+xvª†c@+ç,Ðs¸…ŽLÖG¯ ´ºF"¤Zq䪽E¡…704šœ{Âo›³-Jç=O×JÜcòÈ{žjFÓµP[üšÍÔvÔÉÔÛÒvÀõK_êã‹w'o´8`-@‚Ê’ì˜'[÷ßÇÉBµ“ò¿»)] „BÄpþ@ <æê’áW;º!Ô¹…;kQ;º¡ŽƒÿªNpÿB!„B¨‹ÀûB¨ 8¤±çC·’ÈàŽ|ƒAoH¥ÊVýÓÖ÷? „"ToK‹çB!„B¼ÂùB!„BˆWÍ™?¨z;|R²ÜÇr $«NuñÍÊÎH{wg‹ {O=úä}-==úÕ…ƒ„ Ç Qçï‚%€Ä5WÞF¤Ñ’b‚=¶™Ê‘8ç‰P[ÓpôÞoغyö# ÷uðϥ׆taí…ßD¤ÑÒ’?{ŸY¤ÕZO­'‰w·ºkxñ`í+Lº/ 6º;äZÕßuÍV*èÏ"j¤s9fÐ¥ª¿Påþu¾#õ–ߣsÖE@^vW¼Î•:kÌ)‹×^:’ ,±.Jg×RY ^Ä{,y°îéÑ_¯Žê®¯ïôtÅ£X»Û¯¦-6%|O(Ú…môIÞPý9_ …B]WSŸ¿¤6ïä?vf‚ï3 ì»`»eº³‰¥WŸÚ²›!öSN¿»”¯¼ôä…3u§'óÚìuwÓÔ;snd_›ÝÿQõ€):â°÷’ˆÏ ¿åâ*ÖÞéÚwS4—]¼ìu™\9›Nò&4åë»êÚ³}óžM>÷­…UéÒk’ 99¬ì÷ðâ;ã#½’Z˜ù¯ôÞ„è­Äo²EV(«¼úÓ÷œ£&ù”ªÿ…ÅlnJ'GH°ø4‡‰À›">ƒî}ù¡¥¿d[¡Ž?bn5‚/îCAÀ Oê±Ýžó€ÁßOw§»©ñèÇþŸusiô¥kûE€!„xÑÔó¹_ž{ì°œåÄh,° 7·¬¤ °ŒÍ*-øYV—[ d`¢âq9†QZ–ì<\iÎ\€Ê¢œ¬*4ñiËõ^>— ­©%rïF,£´”þÑóQºÉpmy5þ©»Ñ„l<ùnÁ"2€¢]Ø‚yÃûÿïåšÇŸmŸ%AÑ~ûæL“«J&³Ìoå*Ý&6É–ùñ¬ËæŸ~õéþb“.¯ÂßüO`x(Îw£ÙŒ3A1éÉþççö"€èôÙOWÊW%ÓܹϠʗ¹É+äS\RJíÓ‡ð¯WçŠYe‚ËÃÄô„˜€K¶†Õ'¨øzZyšLKŽñØl"ŹòDÉû9†2èï·i*¬zÄ`Ð _{u¹å÷³Üm&ÿó2.3ñýÙéJ 6ëö÷§+ªÊì»=ôóþ!œŽÆvá›·õ½·ë|jõgÂ.ʲbï<¯Ê/-ˉxö.]M]µåÍY‘êK¿>ÿëÌæ¥'ú9~­ )A×–ôåŽ-ÿG0R˜Þ;ï¦GÍü¡’õó[EÞ·Š¼o"ez½ýöªêwþRüc¨˜"€ú0Ñì/¥W_îJ_}>5ûÎÙÐ:5”’í%“é{'çg3?â‹–ŠÎ€Ž« B¡6So‡¦©ó‡‚ˆ7ŸÇð˜án³öǦ°ô¤ØŒ7/§Û?*’bRØ^ ŽOJûêý¯UŸßvMíV^tó.€üÌôÒAff’d¥Q#úJIKsÈ“²®Ø·ÿù†jšÌ¤¸ ÃM%@jì4²Ç”“ÓgÇ©î¢ÏP”$«7\@©§^÷Ä ˆ&6ÉY_1Í~ç+íík(GWy°'é ÖV”£cúkX<úk¿ý(>€"ŸgþZ¦fâ*#ÍÄ^<ûÐòÂUîYúÝÙXC½·ñÑØÔÆÏ¿^ >Ëå¸~È*Õ~¦‹WŸ³×Ÿ¹ßUÛ•¾š¦Ù.šõùÍCIœ*O”<ú>UÖ`_ÍÝ‚J•¥RM]k3 ›ˆ¸Oé«i=ÖvV/€‚—ϵͪSÉÔLâùÓ÷lè¿! +%«Îß…Òº YÃnïäP§ƒÁµcâ.óÁyØüËßH’ýûËçåæ¶¼=+“½¿‡'V6žâep.Lÿ„Ï€UsE9&'ü9à¯y6Ýþ¯©aùP}ïsŽ«M—&4ùžö©ÚÇ^j¬˜+RÝJd¡ [© ‡¿Å5<Ì! 6aÉ÷Üêoò >•u /¤ePö9„ÝŽÕn’²¸§QÁ ¿/ £ »TNo¸0 €_Q]§ˆ¸—¤æ=²}ôeíí·s¶ÚȵÖEwPZZ&&&Úzù!„ú˜˜hqÉoÛÿ¶»ZzÚA—~O–Œ2;Ö1ÁÊÝÁ@€D" ë• ­e¼ö½®ë~k¹_ ºMœk™|ýÚW¨|uÈáýÐKŸ3S¢õÎM‰Cž°>$‡W”}[TRTN¨ºR+×ûØ—”"vÙ×ô–„² ”½ÌҮ >¢§¼oÒgV›5ɇìû¶¸¨¨èëë×Ù……E‚‚U;Nñ×Þˆ)d•| üÈêÕK~x? 56& 5ÊTååË`NL¸·M¼ žŸ’ò“L&“€D"Kê V€^ÚÚßžß +`UÐÜ}#=HGº*öâÒâtï‡þ´å8Už09G%·=c‹XŒð °€|ïgáÆf&’£LUŸ{±Î[ 3VçÏöÇKîdgïZQzlçݼ_A»Œ ²É¼í'ï|u–¼°óRo?X“Ý™¾qbäÖÉŸì)è±E}”§˜„?Ä]q¾ô‰QYéZ¦¢* ÀqµéºŠïN‹Ú<1fûäØÃÎ… ›•M•ħ(Ž-˾ù˜à|ŽÐ)ý´\¿ØÚ€òÏïø´¦Kh|á|L¤3ªL¾º-Kû䪧ŸW]p–ø‘VÿUß.N:·pì•eæ×6ïJWÙ6Æ¢õžFû5&e¸±Ž¼<·¹ B¡æ‘”3m›R7°ÍÞ?Ým´õĘ+‹â*Rݽ6¼m´û}›]éwåì§<&ä½>{;ÎO_ ®dW×dø8³ø'ûj<ÎJð\epk½¨`eQI·¥ìŒØò|Û´z±«î±Y,>>~€ü—‰©ë{ %K— }Úð,j"vM#³X,~ €þôyÌæ‘¤WòfZ¯oûq¼D&á¼Õ°{ug…%9ùPJ©A_óÜYP¸aÃ; P(ªË<gTE´(õ£`U “Y]$³¢‚Bá8í$LÞ¨ôSSÇWý—åý<Ñq¤!ÙGv”¶§ÊIõ/R"&4ìÛ4<-Lø5­fv1³ƒÞǤ\=uqÉž—ßÊ9gÚB¬BZYaÕ¿´À¯ ª oÙ`ýðûÊ@&ÿ™Ï{cÑÊ«¯ùÏüôUVµ@N·iëß­K¢ˆ×Oêo*F{™•S'(Õï§ü9™‚“±…\ç¬;ãî“…^Ï…Y%%–ž†ZcVþü?{gE×ð³½twÒ"Š„ˆ]vca ¶X( ŠX¨¨ØùØ"Š( ‚„t«tw , ›ï‡]e—Pñÿo?ìœ=sϹ3gïÜœ[R[ÏüZÿ!YOY Ÿö™ˆŠùj0ZkæÔ±\\ƒ½-Š€€€ð×ÑÒÒšžY‘ÔQ8`í<žÀ RYÝÌ4H$ÔTW3¾Ï·×ê@ÇÄ„|­}¢è¨…‰ÁÃÊ@\L¬ºªŠCš¿‹£Q)PšQ¾@o¸¬ðèâÈ¿8ùXŽBaVnKÞ½+ó¯k$ió~#çÞìkÛì„2Ë\&¼7W\^ÿƒ”B¥f{Ì3;“õ“ƒÁ0¿c°X*…ÂÉ<ÛÓèt:ª'•ß·éËŒÖOŒÿÒ~>—ñº³®›D‰›žW³?5ÁI[P\PP\PP\mOxÓ£e‚F§2Øþe……É¥¥Ýx€j:—‘¸‰1ž€C Ž0TkÈæôc;þ?¨fp ƒÃãÐ#DG«5æ¤|)Ù¡’`­’`­’`{´¡õEŽ5«ñ Å£"Ö”óÓ•¤5x.ÍñÏüýÞ÷œÎÊÉ[ÖÊ qR“FM(HüÊúaÈêG\§ºQguòÔ鵦Œå%à°Â#‡›©—¥¥ü1§úH¯Ç&ºg=_Îÿ‘CÝýEò¶l…g6Üwwy›q‘Z•è¸çVÞØâ zþV¬ƒ(­8öñºííU)ÜÈZ™)Éß'b^Û~`äÅ«‰kùó£þ[½Í§bØ¥Ù+ˆ£ö/}áŽoÉ+ðÜøþK[·nŽß6ƒŠÃþ{OûÁqG}³nð6æ~òX¹-²í"§ø¾²·-Úkß?oÜÍ}t"Ý?ºlPòÂÏ®[q6šôxß>}÷')E° ùç¶}mÒã}»õ/^ß&B-о³vK(ǪlOh|yâàÌ«ÿÅ®%Ö}:0qÑÎó.ß½Û¶æë–ͬ¦(‡ùKlÿ2ìÒc÷—‘F¡¸>'-lWz±B|õ«®®VOÐqÑ·ŸÏ¦Q8šž¥Úì«~æ(dã¬sEÝZÚåPÊádö·£¯. šI/Žð¯:¦~IM.mŠ>Tð‘ÓUŒ6·|vsaÇA0Ô÷e¨~ì–ïoôOÚžXÄlRÏœ=-öä¾Ü¨~zæ+ -…E¾›ßjë e–Wó4}©aêM™wv¸®ð’À¶””ï{÷ºäÏä¡ï :βݸÀÝãéôf€‘±‹ŸX9ç?íÈ¿ŒÁ©Œ%S¿¿¤h€ X^Ë]¤>ÿa ðê{|¼„iìX«Ý€ÃãÙ§X½›¼êåÿScô¯¼ÿ:†ý·â¸K’"ûi]Â/A"Ut Š3¿üë)„ÁÁ€­@@HZc_?ßz$>s/…Ê`0€NJpÛð§ß¼Ëgu7Ãͤ*áÞ®µÿWø;oÂÀð5þ€€€€0XAÆyH! üü›ïSD@@@@@@@@@@ùKƒ€fj?l3þ÷Ó>Ô€€€€€ðׂŒ? ô¤ý€€€€€€€€08@KŽ^²aƒµ‰2áÒ?íAýõ7ü"Òs’ƒoÛ›Š£z'DËÏròŽHÈÎÏÈøìÿp—±ðé­»“™›ü%äÞÁIR?8­jû¡(/ûü„~q¾ÜKƒ&K÷wªÿHX¿úìjŠ€ÑÇ?ûÚ*v{Bß ýÝiöÓ)¯7þ¦•±Ý€âçšýDå’ o»¯!¸þ¹’{‚êù€!6 ì"ýÝu„7½P¾«zæ•Ü\3Ö3%ÄmqQñT„ꉧÒã5X%-ÏHá O•ÏǨžz)ki„EÀpñ“_TW˜ ˆü›âÔ÷­L—%Èmá®x*\õÄcis®(=×üm °*—%WË­Ë“¶ÜO$tŸ€È3­V~Ó>næ¡„Õ¡Ë'Ž^8µX©«sæ=!UÞ­—ø-"ü]`‡¿—]}—g`Ë´~)ÄGíºjC¿µB_cÔ¤mQgMáí•Pu©ýŒÂ“5ÔGX>ÂÛm±€!«\ìð÷ꨌ0ß>áÒ®ñ˜vs" Ûðu¹EÂïE~Îù×/>Qº×ü ý6çÿnpcË9ùˆ‹”Q;±&ûÅý‹÷f´kÝ+1Vìù÷ƒ@û´`·A¦ã‘V­bZh@°—žU~lR–ÛmÆä3¢CÐÀeqJ˜ñ°pߨL'‡f•#â:<@GkŒ!ZGuõ(¢GØKk3³y‡1ù3›}Ôü}Ède©‰ÓŠîì%KØó«þizBé度õ¦»¥ÿiOþR¨9GªƒÎ6·v¯Ùú£Ñ&óêiFmkKeÂsßâ1cµz#„úêjrs]#™Ao©k ×WW“•åÚýyN•ò-*(Ž>T©­âÂe²sê+ç»]o=͵8PqºÿjO•ó¡C7, 0ó‰–å[rSél”êi/Ù™£Y-”4ߢëCÏDªžõ–Î?ÃUO>“™<ÃÞ …¹óÄ^<¦·£$§ý˜˜“xÓZY ™~âEHjNò—Û;…&ɾn·äâ›è'ÖÆ³ÞF¼Û3 h¹)ÎÏ‚’3¾$\Ý8Z  C¦Û‡D}NI)Ì ‹ˆ»¹ˆ9ú±Õlö¥ñ™io­PÃr6ÄÉùŸá±¼›ÿÂF’y ±?<ÒQ€w”ÍíÀ¸œüä¿Ë;& a6ó1Š3Nx%g§¥Å¼85GÃ)ï¬l~LÎNM ;>©­»¿Ë¼ÿ[ë}ƒV\ûtU¡g­ƒÇÏÛáÕÒØÊ¨OnH+Á‰Ër<¿ŸnÇ`URéëCn¥1êãrx QàÖØ|³‰Ô@/÷­Ž¢óêªäD›c¼[›Zu_jJyÔÕ ¥¹ÖG `èbE ùÏf¦—pëNh ¹ÕDj¤—¿«ŽbðŽPé»æï£ ñ゚"!níÙx,è íƒá¤’‹Ö=ÏH¹¹ÈtOvºÏ%5¶½”_š—çuz¾ ž³&B!Ï5ÖGzu©Üê(Á¶)ò›‚H¤o ‡˜ª IDAT!î¯ûob¦;…})*ÍNzå±Ó\懚ZÓþc5)çñb‰î4þ¤NËlª•·öÕßáæb,μ‰É-ÍÍŒzho"Ò/–ú#vH%Å-ÃÇ™ £p2ãŒU…EDz#„âë6;ëv|ÊHIÌ|?=`±ýÛ&È{{òNd= '5"f§‰úpÕwÓYC]æýØZï#ôü÷uŸ³jF5{Í.©@ âeÄh 5œNï§Û1(!'\¬Él@¡xµyäê[ ª±B *‰Ì5㜔±µ¦'(PK­j%jŽÁ °R<êJ>fs²º1™Ì3L¯©GIŽæŠ!mÙœî&5FJbf³š¿!.óé…ÞÂ:ŠÔ´¤ÌZ¦”ÛÄPî[«´…ãéÒZ¡± ¹‰“Ž=t°ä µ_¼æbކÇÕM*4ÿ`fþ1PJÇD‡› *.‘b_RÚ†…«>ž´ÛaçõC erðÎÞiBqÎk6ºÇ7Bƒ¯cA.>ÿ¨Ý0Jôé}Ë»ÑDø(ÝU|Y ÀëzÇž@˜ïâ6üÓÆÑŠÃÆ.]|Ó~ ª,õGûtvoœáµè¬´Ø ãJÕù€BõF"–ÇœÔßmš>uÖ¬9óÎÛêµÍþå_z¯´$3þ´ÄåÅÇ¢(bó÷Û´z8½¬î[äOî¤Â:hMmÌiÅ‹ˆ^NòÅ·¹¾•^\ŸN$ȉA^úÅ·¹ÂhÊiýÆúSâåÔ¨_Þµ4Ó$ÿÚ4!â¡~¸Nÿ*#ç[5?óJù.(xzì‚_FižŸoD«¬œ8(ji•~ðНji*ò{NÔÔ’ E‡„6556¦U466âñxE-­ò/“êèÔ2ŸW¡"Ú:"œ Õä×£Ðh Ða]]…6­¬‡.ÿ}­¥5} k•“çdˆ“ó©ó{oh6 <ÎD. šh4' !.5i·wzY   ©Yê÷,ª¬¹µ:ñ¶ý–Çé(Nyª­]öáE|5…R—™^ÀŠ:vy×° ÈNÉîðy¸L„ƒõ%b 0û¸œó[qÞ'•ÁyœÔúçv ^¸çÊ]û¬æzë·¡"“ @@ã© '7š[R€A¥ pzÃçfÕÓÊîaʇ÷ãŠÚNFQ’ÃКVüõ)Í2½†€ÆQ4,N^•M<±Ïš¿‘ÑÜÊÒ´¯–%÷Í+CŸRh¬ÇakØã‹1Å@ yàQ€Ãâ”Fê @uð³ÇA×½â«e4š‡½æŸÌ ¿ND Õ͉ÎõŸ]ÛÊøÆÔ·÷þ»õCå'(Ä€åànüúÂuÙòËií?¡y'Ø;‘+Ã}÷õ\F—šÿ2JÇ—úyÆ~ki*|çý‰Kkx,‹é—™ôœg[M<÷ð¨Í|+Ÿo4`ôFÈk¾`júƒõ‘Y4€‚ëÞvïçºÄ†Ô=°–zˆPšãvÛ5gýËz£={”Ÿ¬_ŸГ®+F[Gƒh °8 ³šñ Å,ì1Øva;(,7îÂP}* ðÍä\de'УçÍ&=·Ìê ¢ÑXe•FC£Ñ€ÇáÚ…*‡ãø˜Åãpr«îΦ–»©0¾ýÊÿlˆ^•¦súCÔþúºâ¨}{ÃÚäí·Î 3­÷Êy6T¾÷ÏØi:$1N+èE èΞãC9¿±•¦äDy_tvòÊ¢‡£RY±Ôâïß–£ÎyÇa±íÂ.óžuÏz¢wÇúus  Šõ=ìàõ&”O÷k®¹5æWvÑ5Þ·c0ÓäY¸îŠ[åyiXUC¦S0(tCÝã:Œ–A%”{—òAðÐÚ‚wS¤} Oá§&‰ËÂõ×rðƒj~+‚A¡뮘°²Iá42ÜsÍÞƒÅbÆWWS ໯ÀwܾhÀj½’Ñ Æ-‰d^r'ÇŠ àååa¯Ù†íÆ=vá;â 2z0 I~w|ë#™Ãs÷Ý0ÛÇhÉûàºÆúRó<}ûËúqGn'Q8j¶õY A;xéX¬±סrB¥Pp¸µŠžÜ÷–rvNQHX•ú½âÒ/íݹæÄOÏ#Ê@TL¬ººº7BÏ QYƒh4@ ðkZLåy]Æ Ôfù‡}s¯ /ËMÇIË˾ÎÜÀ²kPªsÎdܹnj QݶêƒeШL“íBh¯ßШä€M¹¾ù}º.ÿàÆÎž™ï5©ëÕ(@¡RÛëŽX †JåXÛ¥P©9×–L½Ó!éEGÍ?LÕ°©ÿUÏ٤Ʉ_}º…vC˜wH^[§ôƒ_Ù*3} ý8ÿ­-LYÃç;æ=œ ²ñÚs7\–EÌ¿]Ö1›^Qatme…mÞ©TÚwͶ/lóN*Î%uöœõ>\Ny',¢>SZ×fÜŽÁ qÔxtö«&ƒÑ”ÛV-©¥ 1ÁT+È ÐX! JM9`gòâ¢j3*Ã/Ò6 TŠ« ¡ &ýɬôšZ* ƒäh¬ 83›ÀKÐBl‰®K-dt£Ùg Fk ò=~æWWרµæOOJŸª«?nʧÍö42™ PíµÃÄ)†% }“ÚÑWÝ=Ñþ_°Ý¸ ‡ÁðS|Òp(4`»™*BI{¸uÂ#{IMC«½gOXÚeygñKH¹{¾döÖ‰klnìhe¯ùøû¿ ÚÁH*ƒaUt1X,•òc¬ÛûÎÏÏ3i¼¾Áh­°ˆ¤va¿ôr­9á´^_„È-?eõl‰ˆ°¯½Ö¤§V¶°”%¢1üšVS5ÓRÓhÊs]Wê `Í£8ÉD-/7 Éu´”‚””‚””‚Ψ¦§k¤zÓx gâ´¦y h!>jkQ%P* pã‰ü¢„‘[D´xÛ5±jcñ8œ²Ðªs"Cÿ…~üü©)ϼ»« 䥦ÊL°Ô&pIO˜fDMMáxBnjªä˜ ŠD¢úŠ ·7ŒÂs0„ÇD%$,ƒAÿÚT>öΫ¬9wóô©Gγ:Le.ðók·m¹qr@` ”WŸr\2f¨ž\SVF¢ÐYÙœ4__‚ˆãSZtõÓå¹Âœò^˜—+g6]K\\eÆÞMx»Î{'Ø[0¼dJM·è—Û1h¡á ÄÇicÐy^ %rE!£)1ˆhº’›Ÿ->IXÓhÕ%’‹¬¹ùhQsa}ñ¦´öÙ´¦W«Š>ö¦8û+`4%M:d31“õ‹Ôé ‡¤¶ÚóºÓì;ªÊr¡a‰Ý6~ìøØZÒ›4A{ؘUgßø\Y;’F`hõ…B\£Îš]åo›rÁ£1Ýz™õe € ÎLkëef (˜w7úùémó†ð•PWQÁê為,½n Ù5Î놢 +M„™œäd™‰sFйd&[S’“{ÙáXW×è­©®ÐQØ/ãE·öáæ¹š·© öц=¾õ½Æ·{töÈ‹¤³¼´êÌ cïÀÛ“Ž“/Üß(„j¬Ì=g#£ï~Ò"N– =*ã´C/mÝ[šÎjÄÅjÝòÇ–µúï©ú<_´M³|è9×Ít%åviÑàz'Êoƒ{¼ ‰ÏTu§Gzæ°Ô¹Ká¶Â´âØû›v†q’­}æph”Û½ø=˜ÆÂàK{Xo£él(ïÙ™LŸÐ¼í@mÈtß²îBl?8_•‘˜[-Öð9¯ãôŠÔ÷wl(vph ø–”ŒÛuäî¡âØšÔwNûV0³¹O÷ô©)’¸ºì§ö>*ç”÷oÏN\îñ$rmú•õþÖv]å l­÷-g•ms™ 27¬ Ù³Èö"—À¶Ôïo‚ŠÙ–~õ=»“û~;/Mõ¯Nñ®>¯4YZªÈi×ʲ€çR"ç$y8K-hx·ã[>(G+ŽJ[Œn-nÛ]šØÀJ£½É…d/zœk‰ìQÉCþXjAÃû]ÌlÔç4W°-)dJwš}‡——»ºGÍÜ_¥Åÿ"G¬³Ó]+BsÙgŸ³/bšñãÐ Ð2]êToñ‰MÁe/©ãž)¢ b¾ç‚#óÕRÓö\˜Þk¿Kòòš¸~ÑÎùC„ßÒ¼·:Ò m}#ëúþ+}7n=2÷Ár_všÿR§ef¯e5Hor„J‡’g¨¤Çûvë_¼¿M„Z}gí–ÐÞ¿§£®®‘øã&9("ñû*¶ž²! ÿÜë‘S_é­õiúí†ð3/¦.Ñ]ú´PxµíÏ 9ë:D÷%M„_¦ï·¡[Tõ~ÓÛ}2bÿÞÿÛ‡T¯æ‡üžgò0Ehç/ŒÏ¿Ð:Â/ÓÇ÷Ëñ9Øß¼Žð²˜?*à¶íÀ×5Ø"Ç¿õÚ|0üËN •Á`”än÷¹i"ü2}¾ƒ¤ý€ðËÔóÛ¦w#óÈÚ)*î黊ÿlØ A;HéãûåÓ‘ñ„ž‚´Ø€–½dÃk9d¶ ¦ß#¹?Ûhå >)_N´öÌNÉîð¹0ƒ&¯îª+oC>'ÇF¿¿n?^‚)Ô[}É;0ñkLÄû+;ÆŠ¡8ê$V+:oïønD“e=A¢¶Èº‡*§CÔ\žÈ[ŽEŠ¥Í^á#;F:Fymòë ² ›n_ò$ÊÉÛÖ{lh Ò`ç;@ÔYÿPåL¨Ú‰'òVH$÷—Å-µ³‡xÛ%XyþEJ®Áê§}W- â@KÂ9JmÙ‘]¨Æ®¥¸?åð/€äž~fèñ@5§{2fj]=Pz®Ùïº$‘H?|‚ìä9ª+îþTAªº6£ëDyy¶§vov?{ŒÐAS×øš R‚kwpùMA?ÜÍdCgö\@XÃõ€ØœÒüܯþw¶ ·É%¬]>qô©ÅJÌã©îåÌÔjŠ Ó‚î0à”â@ѳøü'@«ïøTUQâ1™yˆ³÷qhzaVrðµõ:Ìr=d¶ë»„ô’ò¢ÂŒÐç{MŒÝr>n \#F$ܲêY á·#1n÷£ð¤‚²üÜä÷v‹pŠÝv/8>¯´° 5ø±½©0ç4[$÷c!.G uç¼û‚¡W+ÿTé÷¶G‘ÜOÙüg ‡‘^l.x•Øa{W<·ªFSÔ«Ö&2£ás…«yas?ó´æ:}IC®Ê´V þp×úé~cm#­Â¿*†Á§£ÜwÍþ§4ôž»ûewïT*@uÔcw÷ËîOâëDÇØÞ JÈ/ÍËN|}a™&Æ* EÐÀX= UHYn㯽úJpjvYYVrÐÍ z¼ÔÜ?|•XÝɜںç¥yI׬Ä~_ÿQx4ÌG×]¶;›DùùÆ·ÌÈȈ _¯Ç_ÆUv•F4uÆO…Âl]6Úº}ß·/¾ø–‘òáþ:¥ŽêuÉïÞ¿æö2`ˆBMÝ *H1û§/¼‘SPw}<ÛPìE|j$W>JJOÿÊúÄž™Ô6„ËÌþ€ú‹Ã7ÛêŽ0ÖbfÚís¡eõµYž—žÒ§ÏuUU­Íu ­ zK]}k]uÕ÷%o}ùìл+…7þæ<õé¡âõy_ÿ;}ðŠÇ›áÂZZ’ì…ÃMÍ„ ý‘‹ëU‹¦šN=Ãá}¿/’û«ý€j³orÂÉK±Ÿ}xãµ+ð®læ¨YðÞíAt '4ÂpXý×ä*€ÚÒ’-“±Bhœ´©‘²°ˆpw†~†`0 åg“±S½ävQ 4@CÃ碆@’G¿áó€ìJ'ƒT§«-¤Çù[ R·äú±N7ZLø| çø‘F™í¢Ãq€½]Z6¡Øiræ©‹T}g1eT›¦%:`}ÆþÍub[Eµq@N¼VÕ€Bñã–ml)ìkO×_‹Ò+¬Ç<Ãeï•®7ÁÔˆfj ml"øÑ?ž—&)iN>›^~g™’’¦’Òì+¬aÈüUJþ¶VÓwG«Ü4|³œ4£í'é™Ì>Y>çü}ÖEVž¿€çÆ"ƒåï‡ìß8ìækÔfY|^&µïÛÞSë]©¢ƒ®¡šÛ×à®ì~SÇ à³7·Ü^Ö¶dß<ï]hU;çY1Ž'#Û¯¾°” ”•¶ìþïâR•’’)ii(ò°ÞR»'¾0'½(ÈÂîö×m›Ââµ¶ÝÝC>´òRZ§ÆçßBþ…ºúc¼ô$SM:‰TÏ^(",€Qµ~””WÿêÊþqb4í‡ßÉýÓ~½{Eëõ>l*<“æN-ð|–Þ&ÿÂkÙYIaÇÅ®­:C …^<”0úbðçøP_G…šB@¡º1Ô räMRi3›òÌ~SÚ×ÐfeCn !¯È§ú¬®Þ‡HŽºøíK.õ[h}&',xUJòûæ†Vzuh]&(Ëê‹%‡{ÔÕ9½)—Œië å²”¿©ît÷Á®<û·Î9ùd?w÷Êl¤7§F'±FH_ôMŒp‚¦ÆrœÉPäyÊ# «¼ À/Š,-+ ššå_'V·4¼$ªkˆ35³žœyœRKoNŽLh•‘k«yü6]2böÌ/ï…mO­Óâ>…7756¥‡†V665âñxMÍŠ¯¿ÔÓ©å¾>aÂZÚœ ÕÔ£Ñ( P¡ÃÚ´Øäˆ!ŽÎ{½š[QøñC4}ˆB÷c/¿—¥ü¥(uçý¸[˳8^äþÉæ? PDÊ77«Lçfy{Ifq¢¤F¢5,øÕÓšÿ°½ƒ€ÂQ4Vv·?ƒFAá}Öüm ©'5oÝ=.ï½(E}=a(‹~|Ï;±€‘tï¿{÷žE–ÔxÙMµZ°ùÔ5Óž©Cä9¯zèý ¾ŸB<Ï?Kú]Yùÿ¢òý¡kV¬X³bÍö3UF{.ï«&ŠÕSÅ=ël||T||Tèa#hL}{ï¿{Y´NêÊ[ß$Ýœû¶xdö> å>GwŸ»táuûPìy|rÞ\¸žÆh 9w9‘Ye_tx}ËùCž†÷ˆ\D …‚“>ÖPUˆB&ˆDsÒUãÍš æ“'ïÎZè±CŸõ<¶ïÞ>âƒÏK?Ûû« ÊOÙæîÿ9úþ¹ªˆ'_6°¢P ¤AðÚ¶Æ1¬6ËùÐl«~c$÷ÇÌ¢ÁöíC=mí :õ(aŒÆ›äúŸ+îN³îÉ:¥§8¡³\=N£–Øù|£çzí™üÊ›@mjæ]ö`íhF׆:ÃVØ0t @úÔP±šW ÝÀgHL}ÛØåëÔtZû (,î»FEapl µÝ;h~U°ÅÅ-/°ì¤ jcQ\çAîÆ÷¼cq8€²€y[ÆŒB‡ˆšh{EvŽ×ÐhÔö/h4p8\»J¥àðmKI;bj° ΦÐ#­fÕ¾\˜ókÖ;Ãád—_cA,wsqR{eègCô¢Ø ­c>A»êëKcŠhO‚mŽ~ÉyÖ• š_löFqXvR6pŠäþÈæ?ôÆðg-4hŒªŽÍª  áõEânÂõ·spBÝ¥ò7AfP0(Lc݉u,ƒJî³æoƒ@ P(T R)@ ÙkÒ„F.ݽc’šËÍЄB±×cQîwl±_¿»‹ÐFsvÈ+VO髚‘ëÇ/WT”¨‚ˆ¬µ¼¤–Ò­æ´•S-¡çW8RÏ:NCÓºzv=²³¹_ª¸Ðé’«—G¹þª—¤®]ž=ËŒùÅË›@&“ ø¦Å‡¨Öа`Š=ŽÏöÄ#^ÞÁÀHõ8ç·ùÊ”šÿÎ=aÞâØýT®Z™ð}áskK+‹­÷Z®à ¸Gnmà¸xFÚ½Ua4€|¯Á‹ŒŽD@ò±EO'¹ŸÜðÌêJ þÊ«äõ¶j·ïëºøÒ(O§½Wn¼J©e`µØ HyíéÇ4!pÿ”êê ³g ²I³o‘ìM×é¬#+Ã~õy´TŒM¤ädž'Ù°ŽGgk_š<õR6€–‘a]ø½ü®4¨Mä{[ΠÔf ¯:d¦>Â:VfÄp¯¨ ­©®éÚP 0XYš7|­‘ÓÐàæÓnúìø½UÊ ªûš ƒFE¡XPh ƒÆ©/–¨kŠÎyÓTË`4å×§×Hjƒ¸ÐnÓÔ`±8 ™y‘ ?T]3®':2æÃ®ïu:ƒŽêþ*S©T4†u‘1,•Âiä‘_}:›°áìߘYÓ ¼-º^5Ósë@¥Rón¯²ºœÛ!©yM?ZÚÜеå.éÒùW¾ßá#Ž4Eg3#9¯>£Fr§HîlþûÔÒºÃèíû—úØ4\ý'2jüŸpì—©¥Ôbøx+(F!µ×Íx #&rµÄÖ¦1ºÑüSÉd^0,´ÕÒh4‡ÃЈûÜWè|Ø1mÎ;ÞÕÏ|wÈu“°˜ùî3vzMï]·_‰\ãÆŽšò IDATIƒâÜkYî“ãÇX^+4@f•€\“ÎE<^)MIv`|&¹+ÍNT×T Ñ £ß¤Y{ä–”váCsñ×È𯑨0çkFV†—±]ûìåÜöÕô»”An¬%pÅÇg‡Ä+UÏÏÝÝ#šá«Æ a>Afˆœ_ñÖïcH#Néù\‚‘”ä¨I)©’âb<žÀ RYÁ4HlkdQ3®Ø8™ÜÞ1ñDRë_y•Œ]6èòTû:vxx–—L7Z*§€‹—ž_PÉþ"ç§§KÍŸ¡ýðZ&Ñh²5ý§JUÉ’MØp?ÎjbêË ÝÕXØYÆV3/=]b¦™Â­ÜµY²òU衹ÝôKuÛPìq|¾û^F;cµ®¡=# NÚ‚N̯ë^&è^–ÞèÀóÖ×m³‘ÿùdž çc߬H §&Ûe9G.À«¯1w†VÊÛÔöD÷lw›Ür3Ûú7öm‰‹”ˆè¯¶e-•jHôº-ÄN˜ô)´vµå’ƒªB%NÅCExDû4c$ì›O°Ãµ4r2ºY¼ÒôÞíø„ÓW× ¢¿å„_v¸“Å÷îz:Èš·©0þ™ÝA¿^ß|Œº­¢‹š\Ôøqiv[}¦0´ßZ¨Ø¹¤ã:’Ö€ÊãdÖ>Æ54¾X]Æ~B!-Ê­Tñ ÌáZYsØ¡’ Nu¤æzŸó|Ö'•'ðCk59ýviP§^ê~ã½cÎñ4åGݶuˆm» _>Ь_š¶woSÕ¦·îÇ'Ÿòø°ŒP}lîºÇÅìÒƒÚNGt]Ïn¦•Ä?Ú¾/’ÓEf6àg5îËË£ÝÎ!ë±u¨{áä¬{âÚ§ÂØÆÂЫid† ^\Èzî—ÂìF¡5F{l·õHèΑnœÏzu1|×Ïiî–‚˜{vc¨ºÞ\ïsŽÏú”òDf$ß*ýÈ)’ûžÍÍj›f1ܸ/΀fïÂÝÇBœÊ%öËÚ€¡W4G;–ÆÖÈtœ Óõ̘¿z™YÉ}op´Âÿýåm³Brš+I˜–T2µ;Í?Fó»Ë]¹œ­W;êÓ*’ïÞïÊêD¦ø:mò:²hñ¾ÃÍ‘—Þ½>{轚ý¦+矘9å™Ó½³õD¯KlºpvóŒÖ.XgžN|•H  «œ4²9(êÖ"üˆú‚£Žs˜cÂÂc79­»ŸvÍöƖݪ®¶¶H®Èð:rØáóQSú&®JE³%ØŸõ†•,Nš¨·w‰#êØKÛu´Òø›÷¸}¥¼ùž Ž#@jÚž ÓÀ{ÍãàF‰)».L¦4V…ßß±û~Ÿß Ê>{Ÿÿ@û ² ÛÊkã+ûÚ—N}J“¤dœ[q&‘1g6Üwwy›q‘Z•è¸çÖWãÛË­¶æ¡Ý‚'¬íj~ó…éÉvN¬ý- Ô#îv$;a¨ýŠS8§%ë¡U¦>;ààÌaèoŒdÔ÷ÁÛ Ü=žöêü¿î¾¤µí/Sb‚Âà'Á·à$ÿ—µE é ½#£Ê´¿L‰ ‡c¤'9^™8ëÛ¿£ÉÏou1pâ“-¾=— ³!ü´3qóÃÆ¬~Q(¼Ê–ÿî ¹Ž9Ú‹—ìü6çûBß³‰Ð-*#»|ËLÿ‘Ï¡ŽõÀö!õ=¹þAfÏ2û'Ï ô’ŸJÚòÍëàá·ñ•R©i?]Œ4 Þé—¢ŽV}â¸ã/i<N·Ò úo×À׿Ù"'¾½Î>0ÚŽBe0@¯ýreWrÓü és6 ÿjû¡éé´N3-k¯šÖ²SFø5â fÿ,kð^7ÌûO8Ó¤Ç+ÿ)C¥~ûgûíïß4ÿBúšM„AÃÿùûzÁ¿:þ€€€€ðOÁøã Ž@@@@@@@@@@@è9Hû¡§ôºýÀ«³ü‹÷Q±!!¯.î0o—£ø‡o}ãlò³¥5ž‰±?É¢e¦ØßôôÊ&}~ŽÂ® ±›kü1%g?M׊ㆶ eD¶úª¯œˆémÆ»JAlÁ½ Ãþ ÷=M­Ý£¿|yº^ñG¹E÷#ÏLoŽ‚ÚÈ÷ØO­Uç‡Ä„G\_¡Â)Í^Â6ÍÞ2ð~¢†nö9÷éœöOr´ê´G…íržQ“θ†æœó¶³›$ôk¶þqÄ…w†kºwø¬2@ pO?¥tÌ_ýèmY35ÖFó}4/|Ò8ÏüøJ©À0 §põ¥F("ÿÚ`ÍKp.3¿Š{Æ“ûùºQà™zBù¨¯ºã YSÕßÜueì–óqûÐÎß-)Û. „þ=d¶ë»„ô’ò¢ÂŒÐç{M{©IPž}öMtNiaajÀ­õ#ˆO¬üÔã/ÂÒ‹óó“ß]±Ö$´ÿ ¸ö]Aúùí–Ýr*ª«J¿Uæç$¼:1S¦r cNg”VU•Ö*ª«J«ªü·*~w>»$'=òáÁñ’€ºè~lJnj ëdáþ°‹€ðëô¶Æ'»ø€ î©õ¸g%\:›o^Úc|8”.7ÛÙaõBrbç}ׄ-w-å)-ïR¨4ÏvRÉ…kÞ×`ä]zµzʃègµl…]b~¬ØLÚ³«ªQh\ûvqeu¯ORÈ ìw?þÅ4ÿï‘™1]ÖïB4µ{Í_Jóë©)ú§`Ä N/ø)ùxîpEsLݯùI4_µMà¥ùÃ7¡}?ò^¦ùìÓì%짘¥Ûrëq¸ÔØšN?ñYšÈSÔ.[è2wÿÄäÿª¸FY^¹7+NónØ/þuþ]¾‘®ZÕ³JR"Ïü+™€¾]vXNñIÇ‚‘äg±œ…å…th}³4ûýO{¥ÓÑj\Ñ„ÖåUÆÀm&>0à öÉŒ×G}íz—P@kÛÉË-:ãÔ‚7”ÜtD,wIy!²M9B7¨¯8hYèdbéõ £¸öIÔv««¡w:—[5ål.•z4äÜ\ì{/Ï=³Ÿ/yTÅötéÕnÃü–š,K¡klzà}jeÀŒ«ÌMN ß±+iúDê œì4ÚÜ-'6á¸ÿµm¯}v‡õ5›á»T¥vÁ©Œ%SÍÝX; ËÚ\vQx9ô¼¢Þ®§wœG¬MžµZÕk¾z܆Œæý<)À%$D¯©Aê"€Þv¡rC.ßôÉo¦QªãÃ?3䇈@Mz°÷)›Ín ?Weˆl‡¾;û¤¸Ka‰Dnih"3è­õ äzR ™“£¡ŸÙ2ìäA>ôp‰ý¾š§ß1îy/‡û¨jwDLç».ÿ…“û…tv uz¯±ÏA€ÙÅŠ’äŸsN嘯úÑÛræZÎiZšþ•ã~Î÷å§ê2kXƒ“ê;—Phñ}^²Ãx{y™ò"o^'Ð~u(ôþJižáK/¼ð‹ |êºÑL–Ùµ#ºøZŒóœI‡ïG¿>1MŠcšlq (ökâ›»glÆüØï‰ïäöüÌ…ã»CšK~‰u1ÃŒÚâî>WŒcšlýDK›ï»áôÑóÔÊüÀ1M@ËNp¸ý*,&$äÕùMúÌø™}9ð‰" £¾Ñ;Ði_?øÙc2ÂÝ\pþyâX‹ ª1î}ß§3ÏßûŽgy3•Z•ü…!!/Æ1Q!Ãõ×_ù‡†&Åúú¼õ;gÅË †uc¦ŸðúöâüB% ˜9Æœ±™ãòàýõúÓí½}´E{¿ÅNo¨ *(¤ ×DaÅÈÊÐ"àÖ1k »ßXÛH«øPCçÓQâœBzsÝhI}®ÊôÁU •DÔ¼Ú–ÿús·ÍJžá¦­aki•Uq ~måßá_×ðŽÞø0<¥´<75ø¦ýTfç4Z~º«wTvaVZØ[V¯3Z~º«wdvI~Nì©©ÊsáYn‰9©ŸäAü×RWUÕÚ\×ÐÊ ·ÔÕ·ÖUWqü°Ó$ê›èF=¼›Fjiýéd*Ë©ñ@027Œ¾ç_ÑÔò-î–ó‘ù808•QAú–à{g×x6½”ÊÀÏÂ2r] jô¢‰^Ôƒë_ª›KBoyŽ5уÁá0 Ѐ•™áêé¹cÔÙG@èšÞ¶ ?\|ۀ iëiÔ§¦V@CŠ¿OHN§ÝÂЊ«vMH:w-¾µkaéýíŽõ^G†F=™ºÁéC3'!C©¬r3M>p¦‘X¸Í4y›iÎÇ2hzn•¼Í4÷SõÏê¸<øgy‡æ—‰Ž’ŒÞV…¯ENÓÓÏÜ¥;$&Ï1MÌ([i™Äâãég®PGSB5Úýc‘¤¾(Îd«PÅå²ä¿e'µAeúL‚ïë/]ô%J.Ø»†þpÝD³Ùë/$Jj·?‰z£¹î¯7Ÿä”ij=sH¯ÒL<6NOKÛ¦Óó`ˆåYßm ­öŨïYmÜqžZÇ4Ë.ÑÖ3qЦ½³×ÒÖÓÒ^~§¤‹4;ûÉ7sŸ£NâÁiÆ^i¶v]£Å1M¾™öê±3ÇNYäV1ëäz=T½t½ÍX¹ÓJ\zÉ>«Ü3nAõýãgÏhNõ‰ü”ÙiK:´äòÃ#¿óIø>lRxêc|= +8RM­.?íÛÏ'µ!3oǪ óÌLÆÍ¾žS|kÕ¶—Ì Wš3—ûîŠÉãl>Èﶇ@ëH–=¦¾eîæþWŒI¦ ¿–¿ï„ùèOêÉ €dPHdî).Ò†òR%NÕô"L¹©~ÒOÍù‰âò9DyZa)%¿cRüXA¥–Ì=ÙYÆ€yADÞ»nY}bíªå0ƒ9ÎQrf£ø¸ºŽÚ¨;DÃüdÓ¦ÛG²„çGFnÑWPÖ]z3µÃ@«˜º®‚°ˆÖ%®?“…ž"ë-µ{â sÒ‹‚,üçnÍqotvšB""Tœ–íÈÌœ‚”wªpœ(,"ÚZWKfB¯~—Q»UÅ-®³ÄŠŽ«‘‘ôåWÇ™»AHD¤¥®–5°WW[+"* y/<¢ÇÝŒ=*sÓ³~Û³û+ŠZ9„}„®ù•I¨|sÝ¿~ŽøpDìÖ†sqœ§¬ˆXl]J¾sÆ—ÔPxê>{å@ûÅ‹–/sɳ8¶FÇI8PPkcòéŒúæœT/£BI hna0jƒj3¹ä8NºÄ˨PS>45´ÒkÂê²DFaÕ‹·ø熌§U¾ðï×i=ÃgMk}í›Ñ• Æò‹Šò¡j3?=rpõm¯÷¶Ä¾õÎi¢×¥ÄmïN{’&'Š_»ß ϯ, ùÇ"Ò/ivöS^]½2ä]rZáÿ.RXcÇ¥òêê!o?×´6—}ˆ!¨ª‰0ò¹xIo½é¾ŠzãÄ›Z´}ñ³/ÏŸ»¸åýùW?7vù–ØÆ»ûž¸·Ä3c,×5 Ñh ÐhÁáZíÓÃs±"÷²[£Ä©±ÒÌS)©Qhõüê é-¨?—ƒ„€ÆÑ4NV—[œAe]? Æ JJ jRý¯mÙçY 4|xÙ{Ïø::¥ô•gè]QPÒÑ)ó{[E¦Ô¦§åw¨¯¥_Û°dÃÆY;ž×s°Ð7DçœtÕx³f‚ùäÉ»³zìÐçXZ°ÓD¡P\Æzä³Ó‡ko‰éæ²X‚ÃÙ(óÇ¿ä~yyQyeIŒƒg¯4D•Wf>Öÿ°÷nj_ò×m.u¾Ü4nÔ¨¥O·o¸¼tÑ…ø_œh‹€Ðg~eеÞÓVëŽ_aºÓùc¨U»}Ùv‚ô¶lQ|¹kw€h×BcËñÙž»âréÅÿ½³y2kä…¤¯ì„Q¿àl¯ ïdN´‘¤æÇ¿¿évæmîÓ¥Kþ[·ª—ir‚JcÝ•ŠÅ¶xŸÒl§ÝO'½ØÝs:°\ÍÅŸ9V†p8\»KT ‡c¹DMzèY¶rcÁùW¥ÕûÇÏÞCTݸ[òõú«Å"?þRÿÐ}Ô#,¿’Áá[kPs¯¾¯d{>½8!Kóð³w[Ê✢Ûä «?N§wzþS ÔŒyËC*XmÁVèÆºSê0c± MåVÿiiu\†ˆŒ"  8²QüŒHÜü?º,’Ì `P˜ÆÚ[3j0Ƭ ÒoØn\ÀüRT\ÞùW/o ã‡qfXÞØî¨ìäúa›,%'ÜËíðáçdÀápCÖ>ŸGOc~pX,•ʶñLJ{û8­ýhö,³þÊxJ-ž‘voUX ßÃkgð"£#ÑÁìTy'²ÑÌ`0h!÷®®¦Buàõg!£µ¡Þ€Í=òŠaHÝÃåaŒë—³Ô.4嘡¹[Š(=ý‚ß³óL²Tà¾3ŒŸ€•vä¶½ÐM§f|¾ž(z´c…S0©óÙH(þýœ9ÆzOÉPí‹íB¶7ÎË›ô9_¶´ wøÒï.µê ½l?ð©NÏ›ð*¾‚A©Ë ‰®Þk¢ ¾Aì4•Œ%e¤ÿ‹XÉ:ùuØ5‹ƒ6ÂUßð@¥~¯dŽð÷Á ÑZƒwgûöD…j›$ƒÆ@[[¥¼D—ܪ¶DD4ôÛ·Á5%¡7` ¦O.|;ïû :ŽA³†µ0˜¶ñ­ÆO‡5ž€ãWÔ_æ|öÀ¼X›GœW‰vJó]Ãa)”¶G~?¥Ù•J-¸·aÑõüžh~¿ j!„Ñ«æ>çŒYµH>à^A[„ô·Ÿ=Fm˜‘´¨Ôk÷e¬c•87s-•§r%=ͬdPë²’b¾-3Þû³;]ÒÊ~LÈ¢±;þí™z]BTÑ¥eŒŒÿg¼ïxˆÃÇ[ãkÓ‹u”Z Û¥Ø7Dw§]þ®I"ñò²æMòòòÔ0ûuïn±¸ xAU“M—îYñÉâz…JÍö˜gv&«ãéT* ƒa•óhLÇa{Õ©Sµ#߆æ7C/Ÿ¾Ý#lM`P©¬ep4HlŸìϯa1{DCÈ‹¹­x<ÍšêjÀ÷ç/•JåpˆbÕ~<ˆ²²BÅÉ¥lÔ~€ÑRò!(ùöLâ©']Ý÷_¬Ê×TWùø°Tàã篮ª¡™ç­Hßfy Ö&`WˆA܆”µN{vûú„~§—ó—hŠ3v-ÒæGš[ÞÔP©°€S ;Ù}²¶ž–¶ž–¶Þ¸ãñͯ¶k;–ËVHÊʨÖ~jeÅŲFãÕDÅT¦ï´1c®SG).9¼{Îè!"8*©¼²–ÐÕNºÓì¼RòÂ84NÜtâèÖô´Ê~I³3™âú&ò‚ò‚ãVèp¡*ÈÈ”4™:Lˆ@”4™ GĘ́À¨¯:`sÜæàô ûYí=þýîgIòš)½q”ôÆQÒ'Èl~zy”¹OMjú‰óu¹Ñ€âVÐÑW«,äÔ^Âá"bb ƒA£ÿåQŽHp+Š4çg¶2¿„Œ—rós£ÅÌEô0õIÙ$QOÐ`4CñÔUê Okz³¹0ä·; ódVï–Ù°U€õÏ`4~ýD³˜›Ÿ#:Nt¦îËo-Òsbcù§-#B ÊÏ›mRG@©®;|ùXeq¥º¤´†Æ¬hæ$'KލD j¬ñxh;š¹9òæ3‡KH¨Í:¸uR‡—¨®»úøª‡÷Ù¹ÿø;2þÕ©Éß -çÈÑþasgh¥$·ÍRÛàqÿüyO×9Ü]h¶D…&Œ±^§-ÌÅ-;~í|ÅȈÏ µD|Œ6\i«'ÉÍ-n°ÉfL”÷{6ú?‚á–Ÿ6~xe~þÀ,@h‰ O4\b3LˆÈ-e¼rŽ|xبù`?u‘{\- Ñhjkk+™ èzXá/¦—UÛ¦÷Sã\Îû¬@5UåE^sþ/`ì‘ +s˜å§ÛWK¨agt8¼Ç‰~¾¶ßËÉþVÐQZMn¸›Ë“NÂ>âž÷Rq,svÀ£a3¡ùÕæèÎÐbÜKí‡8Ú`ÑÍäô%%[÷´÷Žr—bèåMáG‹3(¼Ùáª[YY-Ô¼ó5†N!Å©W} f¸ÆZ˜${»tœ¾_ñÂí®¹ëußeÙO? ´ZUÉéØM»Ý·+ˆbIgŽ¿à¸ —mšÚ{n/cî5âk çf,¹Q0â@ÐÅÌŠ÷›ØmzzÊò;%9>W¢¶îy"ÅÝZ÷`×QÖbT6i²…mšl5ë¼O¸Ž8z1`‹ ¦©8ü–S:DZî:ïÇG8¹¼µ¢–&=ß{8š€’]~p^Ñå1ÍÕI.ÞsÜìL>m?Ù3æÌY÷ÅÌŸ›â@ã‹f;“Ùè5Æ{Ñ9zëør!h®,>ÿß#NË2 __ιÿ:v=ЋânìÝu=©. v0D™üÖâï=Á­Xæ€Ô^o­°Þÿ@e! ¥þÍÞEöJ.b¨ÿ±w–qQ5]?wXzén±l±»PTìnTDEEÅFE lDéî®%–…­û~ ^]Åçþ÷œ=sæÜ¹5qf†YÌø|´à]1€@Oþþ÷Þ¢»Òº±g^åä8`dos©€Ú,FY¡>™Ù<È9•¯¸Maó};¯6dwi÷.ÞZ´ÍÐó'#3¥XÙoϯ>Pò9–¸õï^-YbE\Àî^Å@óݶÍÌývÂN*¡6;ô亸(õ9pf╇1vIîKN/ÝÐb·<õkM¾ökfÏZ6«çy|•—ûáÀ”3"ìòäн›¯æ4ýP–Q.S“ÑБfîe‡]:§®~Ú%ÅÉÿäkëtïË5ÿŠ“Ê‰“¯”ÅÑ·ÖÜ,€®)þ+?=Ñ%{àË.ÃÑî9 ¿'ºdʬ)ÎórØöáçOs°[ƃ%’-Åï3¶pËȾ`¿[ëäõè=TVNÄ­•N«€Þ¸j^úcÏ,¿”E¥wöÿÒH@ ŒÎ‚´G»™ßÆÀø?"ŽY<½áY»¥|þ}›¿ƒžâg{H£½ŸöÁÂîq- $­•—/Š»Yùü§ýú§Ð2ꞌÒbþÞÞž)ìË…ñ73uÒðîlÃæ?üýô¸ùß¼iÿáÐŒßØØ‰}ßúnÿ¥•ÝžbówÐSüä36$p©SÐk;EQàVÇ_Þžð§ÂÀÀÀÀÀÀø-`팦êÞÊQ÷þ£6=ÅO^…왲çO{Ñ üÈþÿM°ñ ŒŠöäyÖݶ”ðßÏkÔñ…k=Sâƒ?```````````t¬ý€ÑYþ@ûÑ·»üj×À IÅr‹‡)ÿ^= IDAT÷³WÏBý/œÑ«q§iŠÁ,×[÷_¾ öuu"ݨ)Úwö‘ëwC^øYiFå7œ¨Iox¨f*ÙôŸºÎî"ݺõ ©©7™ýÚh¸ÿÛì½öahxXè‡×–ª¶ÕQœ~ñÅãCcE›ÿ7Øxe‘R÷úÙaF87Ÿ Õ(%®»õd§y7-Ãù+ jRçÖÝÿHïuÍ9V‚¿µäT—\yâdð;sèF¤¤‚ ޶:æ Ò—^à®»ÿ¡þÎ jcûЕߤ7à ‹-zlà0ïf„!zRK.é ÐÛwUm‚9ß6„¦Ýís왾kãq_A«û|äÇ×”’ŠòÂòÆ#ãØ0PXù‚VBku\ ˆÆl¯O ™‰¡.c$ÿ´Ïÿ$ƒÝ2^:i´ÿûÇL=wTéZ3{ï°¸¼ÂÌÔˆ;ûÆ)4 %ÌWßx“S˜‘ôÁ{‡…,؃ð3àT§ºN.(ÎËMy{oëPq¾ÂÎ'ç AeÜ¡ûï“ó³³ãƒÏ/ÔûÕW}EpNòµ-I»e”T”–•fg|~td‚bWO©›ç?(NܵyþRRlq+¡œÍ®ÕR§¯Í'è.9}jɨç[h 36-$LST¡¶2s®”×ÉêPÛt×—'æ€Æß&L)çU"º‹vNÎ=0tòƒ2¼úŠÛNS.¼½VÉSÈ#1Ÿä<5–z¸é?›7t~··ý­Ç®‹C¬/ä@nà¾5uïZo¬ÀÔÂ-ƒ(=òÐó‹ëüŸlzÏÓ$º¹ý@K}tÚëmª¹ËpífÉ ïØ'+3k¸_/.´DQìwW¾å28Àˆ‰ˆã.W¡B8KS[2öv`V  !èU±§I/xÍ{‹*4íZQÎu¹‘:õåK© 73>Ópò¢S7Éõ"p‹éïOç?‹a€Èõí:U>,‰i–dFxÁÅC´JбÌ|Iyq…Ì-/‡"ïÔkÁœn)¢žˆÒøñ’O}ål \Wb»ìzm}jŸ»ØöV!õ™¹oÛ3ešÌ.]ðzWÀ Î8å§ûbkâæ±ŠÕoN®Ý󼈷Mžl t·‘€ôs6o’[?ÒÃvºl-C{ï¾sçãœVZÛ”œxâÚô/ŽK®gãt–yŸ;3Çùm à‡oܹrto NÑ—{®G.GÑ€Ÿâ¦Kl°Ö’¨Í/ç{Îßú„Î+#fÔÅóñwW/ÑÍÌ_5“~ÕîY%üªŒ~7$JmôsF µ:½„*%À§ýÀÓyž§ÉC¨±øŽ÷bU÷ˆY~Φñê±p¹ô²¦[On®”jd±O€˜ ¼$ýýóz \W*¥¥ ñl€Ôºš~²@ì/T–ÚÃj¥%Š3Ÿ709ÀŒ­ÍæÊHKBR»ËÿýpèeÏÒ{‹­És—å ƒ¢x"Ç‚¢µó¥ ̃V»Âêÿ°¯ÿ8¦vO9Zh Ò’B¯>p*8«§buøÌ›~TVλ³ë×¹GРI¸ÛÆD)Èo¦Ÿk¶ 9É-ôä¸ÚkËFìãßo†¤÷M«cC]xH$w»¦ ñ÷7îïŽ7¶WTü’ç2-éä%¶Éæø'¢!…ä—¹oN~‘™”±"Ìm©µWSöNK<æ]_á›5:BsÌ8Òó ”¿†ì´õó9wÖN²š·ö|¬¼©~Ëó&`l,è»Öz’kÆ Ùc•»d3ÖÕjÄsÇ{ßVg•&ÌT|¾méܽÑ:ëæ›ãùÙ¬xrò:ÏÁZJnÆël÷sok@xœÓæ^ÑÎ3ÇN]|¦ÌêÀ’~ÍwH;?¦8N«ðX8~¬õÜkY7V·©Óã|ÕËÓžU6GϬ”|àêWðë2úíԯΎ(@DÉr’lzUGÚíœçyš¼„×fš˜y!½ô¶ãóÌ{xã¡5D‘á“‘÷ª™Pä5êô' x-¥ñ F«Mf ëH‘u R¾tpÏÿ…0c¯•gÔ E—¢HgäÓ:P&:ÛÛùaï=×5æNü;‚´´7„¦åd''Fž_nØ&°l±f%Ùótp@Ö}#®|Ú¯xůfÝ]¯Eù;§`ŒßŽâÒ#ë8&ëk˜v0ByxQ±™.î¦výT{[­³¿ìdÜ$Ÿîä_ÇOØù伤J5TW5Öyööâ±à,ˆØ¤##.>ñR Ï4©Cz§|‰íâµü æO#€é³¼VN>Ï9Noó:ëæQ+‘IG#Ÿûo—º¹ö\ €qÕ5ÎèßËç¼7ªTåt¸žaù Z>•X\QÔÔHRÐb'†ÖÕ6p+ëÒÉŠÍ!|¬¯´O9\´–‘‘Ì2p* 9‚ ž ¢ûw|éþVô­F5=OëHÁ!DQ)ªR~ï Ûó–:}ô³À,·&)&±ZvÂ&? ƒÎûDä”å¿û™«¤Ü*Jó›hŽßq9û³®óÙ7N/èY²”tî“€Œ¦[ñ×dÔ- }%Ç®WßtIA(°0"¿#ÕvÎóÝÙˆI Œ‡Ã‘ÄådÅÊÄç¶ù•h=õ‹®æ² ù½’2ê'š}û=»÷©œÉªJNÊnõI¾¸jî*»IëïÕ|/3±…·i•ùñ§åNOßÎà„¸®ÿ8èZl~V|˜«Vy ö ü RÓŽºôX6Òb̘Mi³<Ö›‘ø ;ŸœÒøYëU\œW\Z¹«/¯ôv|È+.ÉMõ5{±õzbOé/Øÿ”ûéÑÝ”*TEø=Íöì£ ÊjoàOQ½ëèn°Ûõ¼Í <8+ø¨ ‰Ã¨§ØœkÔQWNk‘”hBÀtiõ'…™,@”Ó4€rØþÛÉ~Ì·[2-kPZ¯½}§¾”îwª;{|{8«15A+³;T*ºçâ¡âète¡ ;÷Ë‹çÎ<ËfµU¸½Æ¾‹6ùÁi¾Ä‡@h¹ÁyØdÇÝõ/ž·4Ï#°9nŠ@$¶$g³ÙD·wH‹ŸhÁ— ÝmרÑk‹cŽºFwè<¹ÿŠ9R±qÂsæ>8ý•õ‹2êð:všóL™‘˽¯ÕäUt²k¼Åyž§ùÝsÿ—@´ˆ”†·Ä©–†ä Í#‘€Ù€xDZ½Y^U+³_ªÖ'•NìyY‚A%ñÙû”‘ 9ŸyGå¢u¥Ì¦.³¢òèT)5€"žš?çÌž;í…‚ûfòÒeVæç69›séî;ÃÞM.aØXËÔçæÉ¥ñû<·H\9pkøŽ'qGò|Ö/Ú>ââ¯÷ã‚Ï]Ǔưíoþͽì´Wë€Ë‹uJ¬Œ°n{öÜKa‘HT]áfÃ"…žE"ÀfólºÓ’}“:ãAÕYâ^Dqí™go^D&,ö+á¦ùÚ™ÝYG!sè áåþk¢ÀóA8ðº£1GŒ&„GͱNº±ä}  ÛãÁ†×³îûÅKÈsûžÉyj6ßJÕÞ d½aKì 6“¿[ Îænˆ€‚Õégw7Ø uíÔÍÒÄ_0þPUU…üÿááp8"Z#­úJʪÉûTa>H$ôÇ3–d2ê9’’U4þ÷-^KzÚºGÛs‚óÄ'O'#(‡ ¸¦€‡G9üºÊ¤%¦˜TŸœšä¼8õø¦‚Ïy=+¢ [!˜Œ±Ìö´ E€r¹¸æBÆášï¯º¤ÇW/;j¦ý™Ô>Û6N–jo©›?èÀb77SxÙ$ÏŸLŽË°`ºRS?0›ÍnqÇóy#€¬õúï™>eæÂùŽ'žåü?¼­}Fù›†Ç\¿çBΧ9*È/ʨ; ‹ ¶f¬Ézò¸ºÓ‡ÖðK‹¶N¶ÿÔw¹é›åöÙ®ÙÍÎbüÓÐh4aᦸ^aaJee%@mÌu‡‰ƒ5UûNÚkrêø"9`±Ùé6ƒLM™ššêiÙ\Î6›ƒÇ7vñ­_¢b:ãfMªÚaø’XŸ)sÊÊ¢¥¿)5ʤúÏš=X¦Î`ÈHKW”—ó~þåþŸ_‰DFÙ즇# ÀG؈hæX¨“;JΓʊ ²¨XÓè„€’’D~~á÷œCë ^¼ŠïÕ¯/?£¼ù ¾ÖÌØ¨D£É3µÅäL«ø5&€­:n‹£žA¥A¦ùyù@î7sÓú9}%È‚ CmÆJ}ŽJác! [+I»VœXÇŽ8_†Ÿ%g,ÌÂL’îA '>@T“]_XÎ'9G'Š’ÁýñÜ_ qàø¡©A¡­fã(˜ Ó¦JiŽq\4„ˆêŒmk&+KXÕ%eÕœÖÍÅÎØì9e "Ž(5x„qCjr9_›xy›GsdU¨@? c"‰€é-ÑW‘óCቿ’r–è°9sFÈ ’dMLÑÿÛü“¢©™LLË¿•/¶Œ›íU8ŽÝÐÐÀdöaÀø•d|ú$:~Ö *Y@Åfêмè(¢c{êЂ!Z2DVEAaeÓw3#>^nÈ(MÞË<¼MÉ“™¡b1ÁPV¶×¤kG‹üß®Žíß OLæ—3°ufp^Þ_8ŠÆ¸º™™Y 8Øö„ËêRÕñ¶3äß½ýÊûAàý$ \&›ÝæàpQ”ÛÀa·=š„õ­.E9õ\6£õÁápQ.›Ãi{pÑ¿Pȳ@*ãËÌ'OSÀáEõ§[÷IˆOä#€^«<¼Nòs™&ÔAržÔ‡¿üh¾ØÑDNHHf€ýòAŸ~w€/¤2ÞÒ°4;»ká³Ý¿4p{ÀÉI•ÊÃÖPûxóÈCï<«º}ßݕܒøÀ½®Ïªàõ…SCö½3OaTäD^sõÍ€¢»GÜõvîº?ƒÂ(ˆõßuôŸÀ"±qò#IåîA,h\Ëõ¥ÎÜ%±'j?ËWÛ¨¼m6[R~8/_-¶ òYŽæ–@@ é!‡sBø/ôŸEp Õ ÄÀ­ãÊüÏù ÛwÊoVÖƒCwßL˜•‰)„뎮V¦ªÒ_Ÿ9ö˜_Ë·M='ÿs³·¹ýjeÓâ<-ë/Ü{e)§§ÚÞ*Ì ºúÉ~Ý¥`YÁ†ü˜;;ŽÆ |l" ³7Mο´8šQw"hÒ‘•_¯«t;a°sϽ…✢؇{Gñ»Còƒ.g]¸óf pêòc®íÝy=–Ñ>#é‰k“î­xRи–«×¾U¦/EþlFÝ ±,H¢EðÅ9öֻΧçYž| ™zõÔˆ].w¦“k?Ÿ\¶ùáonéfð:‚ò¹õ…ÿ\b†¹*;)oˆgÓ#äÇ7Ïkùÿù^ù.Á¨:/:w¯"ÐPÙz+ÿms¨6›QVE¨Omh:ûúê`wa›õZû¨³„ñåd~ø_§¶.Ày“åÉS¯Òåêò£:­ólžÞC46ꓚß2ì_OoüÔ¤?öÌòñKYTz×i¿iç£S00:¦>hÿš¡çOFfJ±²ßž_}6 äs,që!ß½Z²ÄЏ€Ý½Š€æ»m›™ûí„TBmvèÉuq PêsàÌÄ+cì’Ü—œ^úÿ…ÎËS¿æÐäk¿fv´¬ÝÿàÎñn}v”@襩¯9y$@îE§Æg.Ĭ¡gGÜ\ºîI ðxxÇTÅŸ÷‰o/vök/Üðòk{áÒ_Ú srÚ _þ}B^D_åå~80医<9tïæ«9ü„eIÑå251 %çIþ;'•'_;)Š£o;¬¹Y ­Ö_ˆ.Ù_vŽvÏý=Ñ%{PfMqF˜—ö;•fÖ£ Žv3Ý=xþ× S>0®vßöÊz@¹ù+E ÷í9«öw"ãœý†½˜¼ýå/¬Ïö›$ËÝÏ&~šàX Qcé™Óbg'œøÚmý"ó= ;”îÉ(ýËß;ã‹çGªµ°+ó~ ža`´Ðr×M4üÁcž±ê=‰o^¿Áüé¿vbÕçYòÛîÉrØ(ŠZËqé«¢üvDGŽïvoÿ/í ï6™ñ¯ŸÍ·¿´”ÍnMâõ}ÉݘÆk?ð¢´úÎjl]²ïRýpíä‡ÿM›Å¯-}}è[iCwe„ñÇø æOc``````````ô°ñ Œ—ïÖlÿ‡éùª½°Jž½ðwd„ñÀÀÀÀÀÀÀÀÀÀÀè,Xû£³üHûÑ]~Ö/h‹Y‡BD~„½ûMŸ §ü<\5niBTæävùQЃ€;§wOÕ&ó×DÄ ;Ÿó{rçö…-Ó´›vOä)ìUÇ›zÓL{Öšê= Y—ŸÜÚ4Ô½¹¬òÂÿyà-/7‡1j]Û7± …Iîþ¾{FŠ|_³Ë¬xj–\‡*B½fï?{?èAàÝ£34ºd¼—½È ÿÐÐs T~ÆÉ6TEç\Ô<ö^×-H}Ùl"!Æ7ĦêµûnŸ}žZs'6–Qƒ:÷„îÞ{ú»/kÎ'Ø*Š =¦¿]ó]×K~ûc=€,¶ÀÏ`õÔn~”~QÊÈí:Ûnêo9¦2P£ÃJç510þ[ô?œXRY^XÞ|xNíÖ4ÉZSO|Ì(ÌÍM ¹ºÒ¨åkŠˆ›ìz‘Uà1¦é_Ù^Ÿ2C]ÆHv§{ÿ6ß2ˆ˜Ù{‡Ååf¦FÜÙ7N@aå Z ­Õqu2_ƒ•q‡î¿OÎÏÎŽ>¿PÜòƒúŠàœäk3Ä›ÿì–QRQ^XVšñùÑ‘ Š]õ¼«óäÇo^7Û””_ú=¡šõÒ¡ÅWì׿¢á&òœ5ü~Ì“Ù)[WH=Ý9K!^gž«Ë¼¡{ŸVñÔ$qØbžåjëœ&h¾êØž¹q ®¤ <…ú[@ 8WOOìX ãçÈ{uÖ5‹Ç{™ßIæ•E>¥b½¬Ö:;/Ê_|!žÕEÅá—Ž•1¾Ôüï¾yðÌb¯Û<,BÉ][8ùÜœ‰ç@­ßê_çqø^Yñ'9»˜¸ÞÒkÏH÷Îý@ã)üuyþ#®S ÍtÝÛ€Ó”]¶OÖðMVT5Át…œHxÆÑ­õˆŠô‚Ãò&*I&k•†#y‰mïT¯ÕO>Ñq}D4ð£;¯ÿpúËTusrκ1Hý–n”ÍY]˜ÏûuÛyM Œÿ i.Cá·©ðïEyù¹ýò>3Œ§gŒ¶<ðÛ<õÞ\ŸrõùçN®±$Ç|ÌkÑS›´TçÁ ݨU)‹,v>óc „·²’×Þt ƒ)¶Ù°¦6ÿ}ÎÄB±ÍNØÕù¯¢‘ã”Û«r_|@†LViÓ±W™ü>SU¬µ°<Û?¹@­°,ë~0~ìb-ñ6´;¾4*¹µ°¾<14~¹0¥¼£ÝúÚÀ£Ôlm zŽÕñ̦˜îx|gû;5‡çÅ7gëù7u,Q† ^ËϦÂR7ýgó†ÎOàö¶¿õØuqˆõ…Æ1s÷­)¨{×úÀÔÂ-ƒ(=òÐó‹ëüŸlzßYϺÞ~¨NxæqûCºÉÞ!Z éUÕ,q:ƒ…¢l:ƒE¯®bôúé$9f× q×l' (ÊG ‡ÉöŸñ¥¼ ôþ‹Å;†j^IIã)äé'ÎtwŸ©F×?]]]\ b,7k9UYhIåþ'‹ÒªÄ\—J·K «±gÕñ§“yib|‹€µ‹ßFÓÆ¿3/-ˆÈ¬4[²sÍx=*·$.ð´óO4ÁÎ'DÍÝx¿ÔWxí#^x.—f×A™UI¯N=0LûB|éMݾަ¿2¹6+ÊÿÚ5ßðB±é®§¤.ͽҨ¾%`è;«ƒ´5~G§H4z–Ú”µþZ?»òÃ~ªv¶ƒ¤j¢®8ï{œÍë?§ÃXM !Qr]a9.ó¦íî`Þl!r6-Ù›Š”•2ëïµöc}¹ëvêv|-HO>wÛ¶7€ù ÿÅiç箽]ij@ô×úÙ•®qð΃õ—ç¯Z{ûwlÌLê¥W¾¬¡Ž ð¥äÐ0@Q>B>ð*%5å9p}ИBwæÀ’ÏŽ©Ø.Õûè¼Î3±'O & ihÑ£¶Ô3P€Ä"÷Y¥Dªý¨c¤Ug”R¥d*9…Ÿ*îWöSÓo=â”VWÓWXè‚ý„ÊÓ:ýéù+ è¨ÿ¸¬¶šð®4fŽšžZa~æOjb``ÈÚ>üÜïþª†ÇfhÐ7O[á—€S±:|fM?*+çÝÙõëÜ#hÀG’“ÜBOŽ«½¶lÄþ0¾/Y³¡ý"nK¢q>¦ÔX1+{ê½ëTP¬¥÷Ã&EEñD". EkçK˜­v…ñèþ êiµ¤(«ÿ”Žëc¦Cm-,©HÂî%ÝZXÈx‹ô¡+ÓZ˜_÷:g:FO¶µ0·.$7`BùÖ¬º§a¤Á“Z 3é~%5ù6 •fz!üzaÚ< I >î›VdžºðHîvMx^H/+h¬u ½·ØššßR°ÅÚÂÒÚÂr«ËnˆÁ¢MÆ Gl§L_{³vìúY:ŒÈ°MSS €œ± åcX"ͤ¬´´ñfžä0‹û`ˬi+6_I3Ö¥”fçPde¡![®[Ð ¤d¤ rrQˆ?5ÝÚÂróÃÊoL©XY ÞY7oúÆwŠvs@n‚íDÚ••Ó¦Ì\v+»Ðg¿Æe´£“nÜñE“fÎŒús] IDATÛõ$‹Ó"\¯ï:oâÜU^ 6;gë@é#{Kë)n1Ü—‡-,­-,×Þ.úµÒuÄñÂlDqÒîç½Nª-°&áù yï”Ú—'àô¤‹Ü.Ej/žAô= Ã(uËþ6D"?Uu½—þÞ«ZÓ-Èx€º§k³?V "dY 6½8ùï+“r9ßZ¨ªMa ëH‘uú4¤Äö¨>y’(ʪbR,¶(÷WdU—ÅøÅ5t^£ÁÁC…<¦èê;%Žqœ© b3]ÜM#ìú©ö¶8ZgÙÉø ¤uû©IRûiví-A¥²‰}¯}HÍÈI>3K›PóèöÓä6aeÝ÷ø8âʧýŠWüjÖÝõZ”¿s ÏÆFgáQÈ™þ‡.‡Õ DªÉPÃê˜6Õ}²Åš•dÏÓÁuüLJR¥ª«šÂAho/ ΀ˆM:2ââ/•ðLC1¤wÊ—Ø.^Ëß„*néh§þîÝ:‡Óy£·ÌÖ' € z³|×Ì™¿Ì5A×Én¬$M2‰Ìæ° Tí¾}TDXl‰Læ#ì<(ý‰cFh›É`¦%4ˆH6޽p?ÒÕŒ„ñBF"âQ5Y(?MŒN€Æº/Úr=ŽV_WüéK®µ±¯–dhÒ— fj,ñ1å§É 9Wý‚Z.ÄÛk!à„ L•Fj2?>:zöe%ääÈÊH©öÒ•P1ê%&+CÍÉ)à9WSk¸õ©_˜²r’PSXHGp‚í­«À?­’¶VÙ‡¤*6»6;«°éVÔÒ¬øšBGÙe¯_E‹k÷âá{E×] uVÙñ‰©÷3T·É™Sùyï”Ú—'p㢣ëëŒÌÈÈ ƒA$öðY dŠ2»äüòÄSîte;c‰¦$ $ǬUßà¡@ .üØÁMÌ”Ïxí‘âZôÚÔžõ5&!DÊ%ô)ÒÂ(‡øÍÝè¼&ÆÍM¯óŠ‹óŠ‹órÎŽm‘2ÞßõM¦siŸÃ£ š††EOý¢«¹¬ÂG~¯¤ŒúIñ$_\5w•ݤõ÷: ÒEDp° ó„•¡Á`‡Æn‡çÈòÑÌ}h?¢ÿywÔÖŠ›7ût4¶ÏîoBlámZe~üi¹ÓÓ÷„· w¶ž79óÖÍþ)¤q¾¯è\¯ââ¼âÒ‚È]}ùkëíøW\’›êköbëõ®FÏý¶š±ÉØ!Ùûcs¸…^Í;7Æðj| Ü˜€‡éÕ¨þô8$眞ÄñÒLg1ñx|ݛݓßO&°˜L&/aÀ)Y)O%€g£…_›¤µ‘Õ%³„U‘#Á´·µ\þš@PwÊÆõÖjD6 –¨&ie؇ìEÆ}OTÍO!1þš<Èy²mÅ«ÖuÌ·Š@ñ#·«Ê«VŸ›#ÍÎ}å}ù|h.»$7[ÄTME¦üåAMmY‰†œ Ž¢ešCt¸(ŠÃá€[›ÕkÃyïåuô’Ø“'¿ðOJ ¸œo;—‰D¢ìç #Ù@`%ð­6uº@~(—þþv=ô‘Yê½à}/aÏô|K©]yþs €rk#u¨û\“§­¢‘•x핚sû3?=.÷¹Q“_ùQ…‚èZéÝRµwRéÄÕ-ÏBÙ8Ç ÝZHÀÀ£l~s:¯‰ñ_$ÝuxórÏOD"Qu…o˜ ˆzv™ŸhI¾IßÉEQΛ—¾V°¡"ôÒÝ”7¦p£˜§*Aiü>Ï-WܾãIÜ‘<Ÿõ‹¼Æ¦ÄýzªnÌ÷"ŠkÏ<{ó"2a±_Ó¸aØXËÔçÜR¢MŸÜjï²Þ0È%ö»ƒŠr‚³¹…[" `uúÙÝ 6C]¿w³´æ·µD"Êá4W¸\"‰P]]üÿKÊápøi–—á%©Bu@•’*+-å#ìBžtPJÿ<5ìº6¥„r9d‘ÁãX ²"k;aHªŠI'ÖF2‘Á¿ÏÑß@ «O`QT’UUÞü“€þ`Á†XZZúM ŒÎÂb³Ó=l†Oû®ÄtÆ3 |›Íàk²²¢¢ÍŒÍæÓÃ&1á¤Ï¢äu“wT-Ùøfù€¨U +Fyí‡uüJÄúL±ùà^„²h)ÁoÊ\Fƒ_pão}‡¥½¾ÈoêTVTEÅHLPR’È/ü^–h}Á‹Wñžú @RFÀ[`uV­Ïp Y2‚£hŒ¬‘•‘ÀLøœl`=US”, c2i¤Bü×T>šè—waêg÷‘¢(Ÿ:ö6°óàGFP¢„PC"S‚L¥ 8fb$W{U#«:™Ñ±&Æ÷Àã ‚B‚J¦öß_šA•W&áŠÂÂLLè—Q×±f×@È⺓Y‘Þ¿I@”§nXee¤$AdU—•×p߉¥Ù9TS㺴Ôô4Äl 77»Ko;$!)EÂãñxÒ¦þ®:mãþ ë\‡7¯vW”Ÿ/k2DSRReØÒšÖžÈÏȤ P$Õ'n;`£Ç/Z‡w”É÷¢)IU¹jÎ@ Ÿ´?³.9AhðlŠNÒ\ÒT©.-‰'üKé߇Y—žF1 (DƉ÷£ÉÕee„X¬ªÎ4áПmÏËùnþÐÚ„H³)A(âñÓïá…TÆ[–fgw-|¶Ëãfï¸X5Öbö¼ ôÀÝŽEñÞ<¼Ùþ˜ß&!NUN䥳‹ ø¡ë%• Û½–‰qJ“ž:R ‰¼4ë_»ÓÚìpùŽ$;?Êg¯O ÊOØ1‚CQ.”T¾x*:õ|k=Ü#ó‘…šÝv8»£´ (²Zh¦ íJ~S ¿&/ð8—ÛXÈE/®>¸Ñç®CEÜýã{ÝÆî:ç «ÖÞ/È‹YhS|ælÓPÍN£¾Â+`YCUARØ¥×â˜-9 ¿Øn¿­²¡:óÝ÷À @s²AM/;QLË–•ÌÍÐ_Û´þ€WÀŠæxPðâzöÉëÁó€SWëí|àVB=вSò«$è)Í£ƒ´§Wï ÝárË&ëÎþ{á“æ@í³3ú›ÜY"ŠgEúžJç×záS ï ÚárkZ¶ÿ±GïÇM]‡;ǧ7F¸^ X ™—4.Ðô3°^ï+–Û¥´ÏÏ-a|ØUYÅOØùRúI—z ÌðÓ…2*ç¸åuÑny15R€H,},Ñ¢ôÕ%Öû=è8ê-Ý8 ]íˆ%Ô?ÏÚû ÛäâÆ]ΑwTr¼LàÖ¼q-hY’µ6¯®¼šÐÁdO£ÓÐ|·m3s¿°“J¨Í=¹.®Ÿ <õkM¾ökf‡+å^vØ¥sêê§]RœüO¾¶N÷*F¹§Ý[ 7is Úk¶Šchã²é=³|üR•ÞuÚÏ;8¦<þ†[|{ñ¥}qí…g6òh¯_Ó^xhnt{áž ŸÚ ·Œo/, àÑCóò7;¯Bö?¸sü…[Ÿ%ziêëcNÍÝvDc£>© ñ߉ÛÏ¿bç¤râäk'%Bqôm‡57‹¡ÕúKÑ%{àË.ÃÑî9 ¿'ºdʬ)ÎórØö¡kÎ#ÿßxËÑn¦»Ç®øKAÄ”ÉH-G Ü{$`ANBO^òo… £¦ŒÔÔRú.8¸‰xn¢Ë»±‰Ã·<ÿÙfë3: Dµ®®¢—fœáñfü/ƒ•R7 ®ÿû†ŸÚÏo…±?ÏTka•Š}·;…Á±œsL4üÁã×Ö ŒŸç›×²Qo™Æ8}<«„þùdÖxø=H Y}ȶ¯@CqÒ3g·÷ÿh!³߇Ì^~óþ6EQàÖ${IýÓNýu`¥„ñßá_m?0Ã÷&ð¾Âø•Ýß4çþŸvâ·Sòî˜Ý»cÚ‹¿¬”000000þ3`³‚10000000000:Ë¿:þ€ñOÑ´F‡´c````ü>°ñ ŒÎ‚µ0000000000þYpr¦sW­Z8TùWÅu¹ý ¤;i÷ÙK~¼¼Ïï\jFm‘#Â:‹Nܼ¿¾ÿ7úˆÊô3þw›åºö·îøß~Òxø¬ìËW“wFdÍ1ÛN¿ûàÖmÏÛƫ“ø8©¹¼Ï’1­ŠHNÆþ¨¬o]Šõy¡r:w‚¼ÄÄ]º[< ¶¹ëÌ/Dþ~Šo‘šª³qá/Âø“É#’ã\oÙõûµÑpÿ·©½ÂóöÿÛ'f+µÕ‘·:vÇsÛˆ–½qtío¹Î”ï´Ÿ‚ÚÓw÷¾ïí絪?›]„§Í®Ò ~¶C@WjÑ™ÞûïëïòP·2kÚ奌ޭ½óŽÞ¶S*ƒ5±îÞÕ¨3ém¿n°Í]Ûf¤àÿŸŠÐ¨;íD[dmé¹.ú;®l9¦1Ƙ ­°Ñ§ÏT#€,>çF_Û ü^l+íN“7"›zm¾ÚgÃ!Usõ?q/É-J˺`õ£Å«¾"8'ùÚ ñæÿc ËË +io7étœr€kÊK'o„OþŸ†¬5õDÀÇŒÂÜÜÄ«+øé)¬|A+¡µ:®Nnú7Ùõ"«ÀcLÇTƺÿ>9?;;>øüB½ÿß¿½îƒÝ2J*Ê ËJ³3>?:2AñçÎã?…ô\ßT­„¹­7_¢ŽÍᇱ¹…Yi1ç–õûWmnïøÃæ|ÓKš­ºò)£0;3îùµu%›å²SvŸ;²ÿ´ëÍÆÿǹ7Z«ÌËMzå½~ XO¦«5>Ù‰ö6„ ­ó‚JtçÞ;çë¬3Ÿ¸rcœì¦“ÒKÛé‹^6Q¨¤¬•$×Ën½o^{ËßhòÌHb¬íB‰°ÝK7åâT&î:ºdLÄî'<¼¤•1EĉÍKŠJEÊüv¾ê4¤öŠÔgÖse%§ïRš”ø"ógþÈ&÷öfÌ/]µ•ÍÔKKf]]û[¶ß*•Dxž.oˆíì6¿ßøI6ŸºDôíªÅ @jÙ_§‹6¿·Í.Ò ~¶ƒ4ÈN”~0˜IÒ•[±G6}v^2§g«¢›{úƒd¢°b«L–m¶íW;ˆý*ˆ|Ls ¨Ç)IÏÙ£h•ö‘F6^¥<¤/RÒz³Ò€¥²øT×&Q[~ÉfùÌå9©€â5 … †Žë-¢F€ò?u?ÏÓä ®÷"UÜl3 R?ÅÅkårœ º÷^i)“:`´9.ðÍÌ%É Ü·¦ î]Ëf®Ñ; äwÀ×”[xì'“ÿGP^~n¿¼Ï ã陣-ü6O½7ׇçR|s¶žSÓ2üXð²˜XPŸîäKrÌGu޶(,õpÓ6oèünoû[]‡X_hÜ”óÛëñL-Ü2ˆÒ#=¿¸Îÿɦ÷?}žÿ$'80NE;Ü0Teé¹óËŒóƒ]ö¾¶ZëxüjEì€Eܨ«W·Õ«ONç“\xôaïý3ðÑ^gýˆ£–ÏÞëYõÕ`m( //覂ÏKLk¥^tt_`õ`Û]óv[4Ø%± §ÓÕN $÷£ÏЂz›ÿ9 •W”€êŒÈ—W¶ðŒÿ¶*C6šµ@åíÕ€’ïÚm§É3#i JlèóŒ&«*-òK©œ¼,okUeLa Ägßì3±àÅ h“€H‹YíÔÝzµÏ&µÁ:øÿŸ•„Ø”£}v]ÖeAæ{]‰5ÍÚ¨ ºÚn]NÙÇh‚º p2bv÷ÞvÍ`Ë1u ýÆöÅú¼ÎpC ›£ú;.ëÎ-€e¹5>}×̯µß§ï~Ÿ¦A^.u!ùß¼…¥øËÐD í€¾ƒËtYAÝ »Ï^~ðÐËëÔ†¹f²oy‰‰ûî¯5ØÑÅûÞ ›†JóµÉ]û[wŸwÝfc,Ôö)óuç<Ü>¹mŒbÛ«Ùʦ”µ[ÀÝMqúó.Þñ~tgç8*_›<ýDdÍVr÷½{ýæ™MÓ{S€¯MÀÉ™¯>ræö}/ïóÛæ6öÑŠÙëyj¦"€×œ}ÁkÍÊ/ðó')‰,~ù²ÉAkãkrP²´P ÕGÜ«­®ã”½)ýŒŠõQç›\Ôh–óù‹Þ>7ý\¼tùòŽÑB7Ãlãa›Î]õ»}j§•2ÌVßßf3vãQOçq†Ã—»]>¶ ž¯ÑžQX¨6æ5ƒÁBé™Õ™å$I`}.>˜ñ,‰ÓJ)‹.zû¶ÉAéIÕ¹\²TcŸfF]ˆ4€’¡PEFý9‡…çiòDXÏ´þÓãÚ§<¬ä *Ú[¥;ükÙr´fÈ>„a#”é>Å«š^¤ú{¢¿8›ÈŽÞåÿ9µ°09òÁv‹¦·Ò×”ZÙç k-¿7ÊÂ+9"?áLxraÖûk ´;øîâT¬\G¤ç¦%½¿æ8 ¥Ï$'¹Åd$¾Û=迵所ÙÐ~Þדhõ e SâÓx½¬ ‘B±i¶&Ï]΀ò¸§Þ»&ÏÜN㓬ò@ ó7<¢KêêË¢®Ü÷2›ß»î¬ÒÐ7_%•ùމðFzØzŸ÷±y…é‰<6X(âðÓ®çÓ>m×kV>›·ÏHKÏ¿NL/*J‹ue•‰0@¿]±´’×iVGƒS Ó¿Ü]©GìZî ááûNƒ‡7k:TÓ7ìK€ßÃ..î:TÊÆª6þ‚–¥~øþ*è¯÷èöÝõôµ%¹·v8yýîO¯Kέ5øjòÌ(広Kp"¢¢&QS]ÍÛKv‹#N$* J0@N$,A¬*eàû.VVNÉ9¹,þÂ}î@GÙæqGr¿qä8·ä3gkäÈjó«Ìˆà…˜œúæ.áÔ+ñW™xÃEÊò Ù§mã/x³ŒåÔšj¬Æ¸÷û\i’óe{r‹NÏùrú£:(m÷œ/»ç¤¼-þ.u2ùßÚ0KÒÛ—)ô%JY­œÎñß³hžãN¯D#–J/¹ÀÃ=ó{d›N¶Pè’ͤsófXYïzòíwAaôDÙ7ÎëíŽÅiÚN3i}5[Û, p²ž1ûl,÷Íq+ëVÖ[üŠ;°ÙÞOŠåJÝÄSËf.]ë[?e³_› [;͸Ӷ³—¯ó¬¹eVhÏ/=@§-%)=qåȼ«×#è¿ÆÏŸ€w³<³A(½(ŠtF~€Q eU±(#w(™(²ªÊˆ¢T~ÉeÇ/O»¾vîœEö·s‹îíp~ÞøBP3Vàþæåó¶‡+¬°@ÀéJŸ¹¥1wÁïÄ t°iO¨{±53ª„dÄ9u5À)ˆ¨LÉÿ¦VÝp·,‹€ BZÂòŒº‚ÆQÑêš4–ˆ–¤€VofZB7;ÿ“ð$! PDåûêÊ75…ߘ~$•2vGàŸk$ïíºÏ?dE|äÂİWÞ´nj¥{­[½rõFÇ­»ÎÇ+-[1^–Ÿ&¿Œˆ2†#:íºtq±hÐõ |>y—1iDi5Áš×x5A1q­Œ@–Se§„ÕÕ£huDe†ˆbS3ævIZ!«òsUJ¦ò CZwfs™\ d9UVJXÉ¥EWe’äš:Œ¢n—ÒQffm.‹$!ÎË—:™ü¯ ×È¡ ¡o:ŒäBpADB‚5ÙŸO^|ÛRïmˆ{’[֦ŧ4@« %°Éâ¢ó+‹"?ÆråZÝOØlï§¼†FEäë4:Ê)÷.FLC›ïm#¯¡QþñUJ³¡$"ü+IMCÍ8ÿ\zñáÓ9÷οl[÷3~þ$‚cÕ\üûlw$¾Þ]˜É ãl”K (PdDP!ò ¯)*ªCp8‡ÑÕi™ƒ’|ýYz-·>=.‰)#+ÀMˆ‰©¯¯¯ÏŽŠ®d0ê‰Ä  ×—¹Jcí E¡Ÿ ;R°ÐØïm¸qñÝá‚ìÆŠ7ÂLû‚Ó!®A¯IïYÇ„#rP.(¯G‘F9lÿ{é·€˜Žø94ŒSùâEݨQ󨪂ƒ"[!PGZ¨<þ À Ûj6ÙåCY]MÎ˰T99>cÜüà›<ûöÁ3¡iEYO¸ÒüÒk=õ‹®æ² ù½’2ê×%ºxª¢á:7[¥ÏgŽ¿Dż¤¬¸Ïp—^'ÞVuýœõñø@\=”>ݽhÙ¢EË-s:Z.;póι2¼sj®¨ M:ñvÏ@ 'Þ¸y#$­}OÖÚÀüœ/Wf@È6Ô®ÔŒ…ÒŸ:[=#+sÚµÙâúšg'(©Ï‚ùŠ/ޏ´º»Y5¥¥M¯¿âÀWé4T*yjòÌHÈxÕám&EO=;r=:­‚ü¨`V‰ë¨ã BjÄm)ê\ E¢ž@2Û¤kÀ„ÔÀÌkª· Üæ`X.ÁñmÌ£m:Ã<¡%9Êáàð„o•QAøEñu©sÉÿÝ‘ÃkC7ñkÉ5Rú䌗â²ån3¥Øù oï^¿ò:¿móôÑÎ]´É·éáp8BË þS6[hñ“@$ÊLØsj8ðõ%É|+C"ñÿ.±Ù„æÚ2'éñóÒi³ ®‡¶‡ü5~þ Œ§Y[ž!‚Šâ3vªÀÖì/L.àꪼfWàÍñ(›ï3‡Ågk;º]]TG/M8s.¶EM·2Êåâpÿæl¼Öbí™F QAåw}« hß ê¯™±û"(/1eƒ*²?«±¤ ¿ÔJm–®}˜L'ðâéÙ°¸l<à4ßå4¼¡ƒ{éGp´›ÙøG^~qû_<~m0z¤êÄÅ9ÅçÁÂGJž¹^Pø4iË3$DÎÒ ôî6€°ñгn õˆ,&NL ^uÕ~ÉÙì¦W^ë—@{ˆD¢ê ß0)ô쨖^ZR oR‹ÞÔIûêYOäA$ŠrÞܸôµ‚ ¡—15€<®p „ac-Sœsùkð,º‘MßÜjï²Þ0È%ö»ƒ)= Îænˆ€‚Õégw7Ø MÓáeóñëö™>x|h­âžéÛ.߆Ög½pY¶ðlTFf 3„ÂBýþVYò‘‘  ãy›ÖîE ‰Ôý¿"€¢(p¹ÀápŒŠ! IDATÿ‘›¡G¡8TO„íAÉÛ@de@²Ž½â,o:©JTvqAUã+‘›|~²ñC-ujC~²Ê¶ÔýP@‘þæQÓèÀ£Jã•– ÔÕU¦Nâ1ûAså±þí©E{Ù'öŽÇq:ÎóY³Ü«P}Ö³.<ŠÍsy4›•y·Ú»Ø~ ¨ 5JI(GÙµyŸ¾ÐV˜ô‚×¼4Uûö—–•9î3­é½@­»+÷Í´—x´÷QÚT3橹é£ZûŒbL&Y•]ž{øéw§ŒrY4¶¶óm.ƒÎ5”cÇ–Êå4„I~÷wÁã¹~#*µ /@hš•ÝkeŸ!ÙÉW‚P.Á5?Ö8Êíp$EiS…ú®K'ÿóŒ†)zãðÿ:ÊåâšÛ`8|³·Œ´g'·=‚°²áD§í«ÆÅîâ9ñÍO °YÍu”_d³›]øp÷†Û߯çsØì–Áãñ-Õ’¡ÍXrRž±•Bø£–‰¤¿ÚÏNC04Çg…ЫQ”‘W“NSì¥_"ÙÕx¢¨@Ũ¬ª2>É¥G®ìÿiíl—vQŒÿȢ棘Á+3£éßÓÔ7Á弡נ(£ :³JI[b;TRi_³HµÑLdÀo÷·›Ð3jˆ¯L/FjYÕ8¢ˆ ˆ"̪_:OÜÝãN‡¿«ŽMßÛ_ét6nÄÙ䥖”ë÷èÁÁE~–ýÊ™G>µ«P˜{À¾ö@ÿUYÛ‡_MºèÇ÷“ˆD‹oÕ”Åf§{Ø ?žÖî1qã èßf3 mÝô_F@ºø“¼åý Ú{âT£Ú7÷_f¶Êè;t(íõÅŒLò.:é ²¨ € JJùñßý*£õ/^Å{Nè+àzû;—£u¦IÞkGúl‘Ó3Ÿ²õÄ‘‰»7N¾6çmV&Ì;VüãUO¥¥ Fˆ°Ã3ó&žw_Ô÷ÅúñÓ‚…—Þ Z¯ü­M<žL&ó¿r3ôdÈÊ56©á}ìnìI»ï´Æãe=Ž>î»Xï2rðñx°ÜqjÿÚ §ãñˆ‘„0@Ni™Àô‹iîc¢öš|±p8€Édñ¾îCÆWHJJpr?$-ôÈ,èèNfäÇ}‹û€¼?¸h™©©Ö’ÝK-Ý4t±6ÊQ²pXb­CÁ"(ob¤RÄ×±Ô[‹­gXYϰ²ž1ï|B}È+û;¹Õl¡¾#$É’„jiÉ|4yf$,,ʪ(ëÔz3LZ…®.ŸËÎÏ$(©°hUÐPœCT7"ˆÊRÓ6È(7uáÅåxé'¦Îdò‹)gÒ³2„M¬…„É8AeªiNN «Ñ¦ö@!!"NÌH\Ã(ªìÈ­š2¦`/QU*ADž,ŒïÀ¥N&ÿãM,Í2Bß·j ”Ë™«KHª_fcÖ¢‡(Nt\:Ö@AœÀ®.¯¨á¶þtÆf— È(ŠÕt !33½ò—ØlOAV–¤¡‰< €¤:nî)º|/\aV–´ÉP-QYÚt€''³¯1ÕÎ4ÖcÇ©ûÈd[Ë–(«_îg§áô[­0P É‹h©2Ë‹ÐÚø³iAö™»¼§†´´ZoQ÷Ÿ~uy^Zoä«J*µ3“å']øxëЪÉ}õÉÀÔWT°¡$–ÖÕ­Œ»×Є" …8PÐ6èê8²—<ƒ-ÛwÁªÁCåûÏ^½`áŽy}Š“¾ç28Œ§0îÅ‹°/Â^¼H(á0©‘/K nÝC @²´iÚ3˜!m7×múÚ-û—¹\éDêë7ìÄ”|’´ã"﵋ïõIZT”˜ÉF‰¯Ãj@Ïu×Ñ›·“F³>βù¨Ù3gí‚P°3{öÌÍKu庚=wþ–•ÎÊ ÌËkgÜN`G\:m¿fËɉ²‹Vœx=à^@•¼‡7æâ ‡óÙîɾ ¢‚¼`»|Å¡kJœÊœpÿOÄ-!‘ ‚y?Ô¢õvïä}ïD†çÓª„ f€•ËÖpi(.é.6Z3™€ãpsï–ñ€t›î4Ëtý*¿œé[H[µåF+Í×[æBÄ189w©á¹-6õW'«˜1þyíN^àF–…ÚëO?¢Jh`„n¡ÄT‰t©ãÁÛSþz é™v²õôýšgçîõ^·ãÌøÂ'ÇE85nÁ]—MÁ».Ü7¡(†·`T~^°²l}Úu½ÇIß„ë›ÇŒ¸é}~ƒKO•7ˆ²ýüí£rl]{$®3±cüv‡?Š­6±`¿yÓø(s_mw;¤²göD¯õìҔ˫6ˆå-[gºùPÏNÜŠ¬;;¶m 3ØOÝ0c;²{þøå‹¥qgÜÿñI€ÞàŽmoÜwNsä?ÇFÂýùÁo˜ê#ÖÎcV}¸´zÝ¥ÎU#éÓÞcËݧ|mãäÁÿœéónîÞßqÍçŸbóGð§øù%Ä~ž×‡%ÎÚÆ„¨?Í{—Ü…Y§:·°£} ÌÒÙ‘ùéLù5ˆ|Iao.Œß—q¿Û#Û-ɯ–Kžv1ÅΜÀøé|VÒþ·ö’Æø®Èöbóðèw­ìþ)6ŠŸ"àeF¼™8'èÊ4¾EQ@97Žtr+8 Œ?¬ý€ñÍÐC·¸…þGmþþ?EQéëéû«½ÀÀÀÀø›‰÷î®àý«ÀÀø¶ó00000000000þ›`㨰£k«™U"v "«tà”h Œ€?```````````t¬ý€ÑQ¾¥ý€»ÌØxe©M»BDÍaö.ÿãW®ž¹´gó‹Æ­‰š}í8xîrÐ¥S;=GJ€òˆ½7/Üjõñì#6¸¸Øÿ%ÊcÌVNo½7"ÙÙÇÌAíÛ J«MÙÑíŸkÏ]]†Z·{&ÜߢӮ 7«ï{¤Ý'›¦ ‚¼]4Dé¨ÛuáÄš~Þ×ò[ýÔžè8Ï´•@¼KCÊtäúÃÇ.]9uÆgÝÌJ_K¢¥±èŒí†ò?/Ê?Eµygl½Z}&ôÀ«+ŽüÇbM€õºCf†JÀH{嫱V€„âäS¶óFHüR×;‰ŒÌ€æ«ü­Vl5°×o÷…ÒqÍŸ Îlõ»êŠ’€á_e{y\ýRTš—uc‡³ FÓ.Ť奇íÞ±¬ŠÑ9}(¯<¾üÿÛL=_®÷-!Ûfœ¾ËþÐøÌ’ò¢Â¬ð[ú+`áß!e5÷Üë„‚Ò‚¼äÐÀyÝIâ5¿,‚@±ÏÒ‹o J)‘W7Vog2+AÏyÏí÷™ÅTjjèÉÙ’-?. -È®ãš?•ÞKd ‹›¿,:´†xn„é9*Ù~óý›Þ,Ëçfzg²Yì’¬9ƒ½ž…ð@JQQX[û;É ã/糌`6Çk|¡wÿñwªð† ¯GyþïTø›Žg)­ÁVÚmÎJg¿ÊB›éȵ=ÈÇ2ÔQh-äÃm=åÖBnÁ™rd¦ª¾jk!ŸêKgªš*K¶²«Ó Àè ³ªE¥ˆúì}Û5Œ³vÎÄ›¹_~²{æ“qAe"ôDAÏöι wM´ ¡JX.sí?3MhîqåþÁ¹/GŸj¼«…w¬(ix×úÀòToûÁ>¢êÐ=ÏW=xعSE:Û~¨Ï}{ñnl¾Íš^í Yt:_®ÍCQ¤Åk ×óˆ&ÝŒ³Â¼Š˜(@ÆÍu³Qv}uã–÷ˆÞ¤á&ñ·–‰ .:"‘}tA*SµMø97(wßqP)¥i¾*¹ë³¢k€4hw‰ó)Ï4Ýwj(˜z9+lcƇ DQaÌ2=KE^nHÞí×l!¢ªà;½tý¶û• eê¼bñh+M faòó7îÆVðœ77Žðã^ÐOsÁÛ7¢J´MD©§Ç:7Gåú¸‹¾GÂJQ0]´ÙY ®,¡Ô7j™.šUë÷DgöŒžÊ̤«~Gž ÄûÙ¤©D»è{ôU*í¸ùìxïÇ5 3Ýw)`Õ9æÿŽùŸÀæ[££k¼ºO.%\õoŒ§n?ßcŠ£±œ 2óé™Ó7Rèb\BŠcC2Þ”rÀIOÊNÒR€øh± Òû‚h¡9H»æé ©ñ:í©ÉZ¹¬š7H_^JV’U^‹+ ùçà+]×Þcá•Ag¹=&*¼=ñJkæ4ÓßmÁÙ¿¾I÷ j›Z„ªãTµ“KïTÉÌĽl6 Srz)  ßÀ´S¦”%¹&ÿÏ:ÿCÆÌ–·†Ng|¬HùŸaWÝâÒ‚©ùS‘¸~³Ùí f$+toDpN"^F 7«A6Šâ‰D<BÚ£wŸ^ÃÝ5jËŸwÎ#ÆŸ…Œ½{ ïòÁÆR´Œ°ó{½}CóÙ8½Q{ý·M²Uæ¼;¾z•_ š„['õÔDJŠ92ÌÍ”Æù„ufœŸ?hç~;1‰ÈõÕÕ•zâêéœúšj Ï’ÊÝM»¨´–ÐØùˆ½‰zka=ëe1®ŸN×6]ß Öƒrœ“ºY›AëF2ZѼÍÀ §á§c Ù¦¡Bçæ–Â¯Šn?èªÉ…_Iªe$< /œo¤ ºý ¢zγì®uòZ&Mü Ðc€<ú *´dßÁ}>^t‰«àĞݵG&B«“ÔSwØ=J¬ú, ¯2ìm’Òt]@g µÎ"³(‘ïb‹YV=<Ø0ùð¥³'.ï·Ûu6Š ++Ë'Œ[q4èÔÅ“Û<h¶™HBì6nñù½xޏà¢#ɪ/ò~Oòу4•iF8V}v–´±%@IΈ\—•P\0?>à‹þ"k×üø]ó›’ÖÃH™'ÓƒjÓ4M €ï>]O#“°2ùìM^÷ÅšzMH$ë¸È})>‡j§h˜€“q·²€€ ÒF²¬†²úN%òŸ†žãbÄÛœvú•‡Ï'|²gÉ‚vg©ZK7ÿ ai)ùpïÂ%g lGÐlǦƠ‘jïmZ},Í`îX[<d-˜3iòîкÏâÒ2”tëŠ;?jÎߓЎMíAð·½–/Ø­=wœ  !1:ÍÀÆZ@¥›µLBt& …wVLž³2¸ æñîI“çLšÜÔxÐ2Fû£×ÿtý¹I÷Ÿëf˜vj…ÛŠ Wj®š`ˆs©<êúó4B5±0jÈ£|~_Mä/cÿ1 ¤¾SŠn–òÚ×S6sXýµ ÜÜ×Ü.ª¸»óà«Æ|*âvàL”+¯&NK¸ï÷ íc§Ù®å?‚\ß¡H\hdÒDÝÙp‰ÕºC]Çö%5•¿ôú\ž¬‘"ɨ+‡’ñ[ôÉw 9àÕóÈý–ê[kpéµDY…­ù3Á™®Ø5.zûÈO/ü¼{‚>ТrÏþVõ ‰U;àã 31;µÏ„ÐWݼ4§ØëXã㇣í¶o•àÔxK“ÞvEéì! ?e¿Ÿ}”»­¾ùà AžvMB_»Èe½ ºØºžIoÕPP5³5PRîfc,Õ~T"2BQÀìeuÿÄR2‹^}>ÑóA–þ 1Þýf]hêy´°Ð¨©;Ð,¢‚ÚâB¶Í!J8 ¡Í”UTÄ„VRVáÔ×5M … Í€¨u¦j cOWˆ CPÔÏ<+1¹“÷òÇMB•st›­ûÑÆm›Ï”\:Δ€ ˆ¤™ ÿþ–¥+×d/œ=¨Õ+DÊ~`ßò·aâƒwvâƒêJ6ð %¨¤²<ð³˜z–²x©nr ‰uí½©¹I!eÙ%¼ÚDZ_B^$ÕuyÙ™ \a]b-•(¥Þ4œp»ª¬åQÅ|I…æÁ9Òc¯ ›sˆ>Å]ïjkLöå¾ý@mOA±¾ÆBVÁu“ÊM ·;á >ýƒàÁZ |s“¦UDšì·¹»$=ɰ\j`ÙfÆßßb:°ómxI»JUO¯WXÎÙxòô¡5óúi}Ѭzä½óvKíX„M )åBßÞh´ùvQ!ò)‰°ÙZ³Éful|©Uw3DÂÊZ?!:µÝZ}k—#"ˆ-B¾€O Ús‰ùòФ)óÉr\çáØþÊä¯$"¶(ù—HÈ r‘L ®ìÀä;´"£ÐhñÞã¾»WšSNßKk‘‹¾ÿ+¹ê¸ºæ3 BzÂËWX—Z™RJÖÖmú¡<…®ì¬Š¤Ð~‘£ßOÈÇ!8Ví­å©/så‹§ê¸æOƒÔoÓfÓ«›OçñKÝÅ© ŠÚfs£&^œ¨‘»ïŸt|ê}EyÓÔØ{[þ£' -åd믅AžÛ©ýö¿ÈÈÉxmï$S "‘¨¿0øCtô‡èè}™:êjZ𶇔ýn®1ëÜ%ý°ö@D‚檃PH$è : ðé²ÂOUxƒn– ÉÉåíÿF4f­Êºìz9#C£.Œ¬ÔO~ (t¤j#÷ɦP\íRZÊÜAFP”]Z—O—76üfçwðÝû”¿ÿ4(† …¸æTµ´¦X”°;6¸ÍYµý2Õdñ<'ÅNÙl /® ìœŸbl–'ÄÔu³éÒÕ¦kftÒ§hPíÀ"àó[®÷Tñ¿€¬×wPW%@ùÌâøä:k;“ovþG¢%g¬$Ùg³Í–s¶ž3eˆŽF[viŠ5U8Ï&~ý¼•+7¬Ýyþ]é_=âÖ ¤ ÌøyéÍsVÛZBSˆäÐR©Œ”DÎÖÂbòèx¢lÓÜ¢¬"·¾¥­)%e6@ÙH ÷uÍ_…ùà¡ÚúËžÓh™¤§_¦E¬3•ïö¿é}5åѲBßV99Ù☣×ÜÊ6Œ÷ˆ±^`ÿvAïe‹ý›GÍ0~64MF¦i½Œ ¹¶¶€‘paÙXGc}ëq[“{úž£<>?7`’ƒ½½ƒ½½½E—IAÅÀçêVÃá[WëäM§Nì¯ßîô%‘ABBåó›jh€D"aá_ 5|±[‰×à^§%”µ­ÐË™3}°aó2lQE€J©ÓÕ8L@MUUüô§ÚšI9ù¦Ñ]’ŽŽbqqéלCÙ%/^§vµµngS(ü°ö½ˆZßµ¯ƒŠ‚“Öïk¯_TPÀËJÍí:t¤¾¬¤¤Šõ°~YiyÍúÊ]º*PròÛ Þ9ðJÚD‚ÈX)èsÊš:ÙY‰¨ÑXUý¼ºÜVwQÍ%™Èé)d5$eÄ& »¢H¸—´4'g¥ '`UÐÄ( HÝgéô0Ä#jò†ZœÚÊÎ:ÿ§@°؃ú6ªUM ª¢Bͪ—¾‚¢n¿YÿëÙXj!Z#Ïj©)OЫkÂÖmÈŽØiUM9BP²³·äRóÄ¥|çl’5õ”ˆAÑ®§;ŸÒd³$&Fh=i˜en\|«5P5•U2f6æÊ²JZê bG?Ê ”mŒd‰*v=-…Tq5$Ö€…3Gt!ã!iØZé–—Š^GÕŽó?…ü’cóâ½çÅ{Ï‹÷¹Ìཧx{•~¾òªABNQ‰ˆÇãñ¸ÿÞ(ƒX”È:r %-e‘Ÿ/c3TJJ'o©ÚMQв€XÈx}€Ýþ0ÞoJÏJ²u–‘!á{ªuÃÑ2›/VÅIÒ½éÓ‰_ÓüeÄ{wWPSPPSPPëúχ†k3úÌâ›N=²{A<àÈF΃Ìòòò¡öÅzçi~±u€Ãáø‡Ëì)ÇøžPbbäFNuP–$éMré_K@Lùî™Õ¯‹‘WSRZ+h|oRRS5ú9“Hæó®.·—€‚<ŠÞà1Vêê]Çy­&ûÉ®é¢SÁ§î™(#.f“jÒS«úŒêîG IDATŸ KÂáå,'Žî––šÞ™Œ€ ¹|~›@ˆ¢BŽ€ßöÓ$d·þ…(*` ù¬Ö@BÖgB¡E…| íçW E&ˆ‚’·´TTե뒀K¾¾!û'4­ UH9.:²i_Yä¢Éšï“ÄÜMvÄ«}æ.ï©!-­ÖÛcCÔý§_­0á¥õF±ª¤R;·¢Ó« lÝ6i¼LÏ[ƒ !ìÐì€d‘Âÿ×s¶¹K è%‰WÎ?«€ª''®i-Yvlºœ°:çß¹wÍ“òð]Œô‹ ©Ÿ:|³E»Oñ†“»®^„ãV0>6ßÒÒ„:òHÕòsù­€Ü˜Òvú“v«Xô»sãD7ìI× µÝ =F„5Ìø@j¾¸J0‡öú†üøåÝú’[ÇÎ{Tðñ«tI›¶”7g[Ϭ »òØ~Ŧ㣊Ÿ|=xÔåæã§ÌY㪥@ |¼tþe;ϳ›Åoo¥Ì˜ã}v$·<ãñ‘3é(À§ý—ü.¸BþEm÷ŵÓDزÕÌ­gW’8eiœmY¶J‰—ÿŸ5àTëœÄޏ}¾—ûºcÃ%Ò/l:ô\tDÌ7çΛz,õw‘Te¿ð L÷„°£ƒ/ôXþÏ‘q2»®4ùöÙGEJßòðÅ;|¯º€€UžqçØ±ÛY¿Ø©_Î@Z½ŒUñ©XãÆœ+VžkèáBÖ2“O¤2ÔZ¿ÿ°z©0ýj¾º›îÂÃDAy}D@YË–¬ % 5 "—ÊæMó÷‚ù`—×ÈSWâ—+"ÌÊì7‡<2€Ù¸Etîýsù×B²æTÞôÜùg-TÁø½a?Ù¹¢ÿÉ£Ñy*¼ä’ßÞÇYþ²üḛ̂íÿœ-€Nd„ºÔ“×R¿ï~ò¥pÍ+ua·‰_ ÿ—ÿ¥0}Ü^ýR¡‘žz‹6µEp{ŽšÛ=€ªŒ8Jµ=ÒtDA…ž›íüO%,”eR£.»­z(vEKñwO½#GßxêÊã®/[q¹Zí¿W± ·X ó+ËmqÛP.½œòáÒ²‘º”O×D"}°Xî>Å/àFç ü¦}të÷¶l¦Ô‚'AIÞy™bÖÞ¼ônã„!ò€•þö‘KG}ÇЖÍÖû̶€'€¨ÒcÁºÞ1^~¿Çò#ä»Cìãq~HÊÂ=o!èNôÚ"{mѹÌ_í×_…~×öú[ì1FFVéè¤2j¦è}ÅD¾¤þ¢7Æ_ˆË¸wî¿ùÕ^``ü[>+iܾ¿RŠ“ŽèéÓ™ñWò±ÆÃ÷@¦ï“¸Ð€ïZ¯ý¥6¥ú¬ r³¬§¼ º}¦h9{Ÿ9Þ,7žå{üü¿s¿ébƒ#ª½¦zí?xÚ÷¤¯×Úÿu%ÙÄiùöݧûîö˜h)/n§tƒéÖÓ´:QUÃm“¦’h]™a{-ú¨vèÚ êJÃWv[~Øv¥·ùØAdɯ‡øeg I]ù݃ÿ@löuµü¾ó#>Ù4˜~ÈïÜ¿óç¼Æi¶ÕQäuâÀÒ>ÒÍßgùn£Öa?I£–oö;uô”§³Ž8›D¤ÍÎòüüÉ.jÓv[n²Z»ÏØÉ¦9ûÈÊ Zm¶æTwϽ °îÑHªOÜlµú¨íŠ-&ƒºI|úAšA]¢¦•Ř“!•3‘ÓÃ×Åèo Ît’¡qIÞùó –ºSçkï(*ý„t\ã?HÎþ~ûÒUì™{ûö?ØæÄOõÙû¶k<g휉7s¿üd÷Ì'ã^Žs3½3Ù,vIÖœÁ^ÏBx ¥¨(¬­µ»¸Œ–£ƒ6¹µ„Qü>×s°v›Ðúâ×qH_gÝ6ºÂ‘H¿ñz²­…µ¡ïSôÛtÆTS„!Cg´Våß¾E×6UnÓÃË®N/£Ÿ#̪•""Ò3¨L„ˆºº NìÔ¼6ÙnbÁfý\n͸&ú¤c-·Ëg®ýg¦ Í=®Ü?8÷åèSÅPøxÇŠ’†w­ïMõ¶ìC!ªÝó”s„ÀÉJÍEÇjÈCR-£ 1âÚ“ÄÂnvzm´%,ÆLÐŽ¾òBka{±"ƒ³èt¾,‹ÍGQ‹Íg1|Ym=ùÜgïK™(%"¶ÆËBâDQU_Ã%›¯èrD¿áDÂs2­áòe…¡®:zA5=úzþGJsMAqäB=s~îÜûlÑ/5"YOŸ‘èÃd Š+ãRtúv‘€.¢¢8ÌUÛ\Ÿ(¬¡ÇÝȟŶWq±LÙE×DŸÿ€r/œ%ÔÔZ¸¹q ¤ëúAÀz³#-²R¤Kþ{ æà q>0žå;¥v÷Þ‡`2×oBùŽýOª€dþªD`=+°_ÕežõxùAo5§L0N>µÿ6å»6=:5)%EÙL½ãšê‹îÆÛÞ^™uh²íñ?†àôFíõß6ÉV™WðîøêU~Q4#¥q>aGççÚùßn\_ «&|%©– ð$¼p¾‘>¼@Q<‘ˆÇãAˆA{ôîÓk¸»Fmù ¢Ì")›Ùti3HQÅŽÉÅuëeªÜZXÁŽÊÀY9vm3¤”õ>±dÖf&AqÛœýp õÖ†—ѸÞcºµ™—ßðôèh¶i“й¹¥?K(ºý "=Alûá H½úÛF]qΠ "½è ¨¸º‘dßÁ}>^t‰«àĞݵG&B«ó§SwØ=J¬ú, ¯2ìm’Òt]@gÞ?Psçu& ÁËuÕgP뀕™XòÅ[ˆÆ¨©¶¹7gñZK5Æm=pü€ï¾µ‹†èJ‚¸à5O_lç}ÒïÀ©m¶‰‡¯Äp˜µÕ\½îÝd‚²¥…–Œ¬,ˆ„_ÃȉZÒòlTMW’¬@¬¯áà-'hQòN­K¼*ì9W³ù™“ì>P2#(íìºúD #qIB&HñœæzN^pâµW\¼åD}õœ¼Óë/Üãu›§¥Û4§Šdå€>šäïW«8A³  ´äô²Ø ‡,úëÌýËb÷/k¬ý‹s©ƒÁtz9£?PÚéKT2c„ð…çŠí‡Br•- ¥šèÚUòùÑ•k¯Y ëÛº`øºÍÜK+—ΙwäÅçãJêýT£üwo:©?ÝÙªõÝlm³öÕÎyK—]Ì~ š3oéœyûŸTµcóK?¥\gwÉ9¿néúí÷9#–8е)Õw†«~ÆùõË7ì¸IstÓ€úðkÏ`ä¤~ ÊN®¥7B⾟ÿNzH%•€ ÒÆ2š ¬Òz¢ðêyä+õl4¹õµDY±£Ö*ƒ¦ ¢‡ì\±|×ÃÒÊLJüÞ5æh­þ$Ÿìݸâ`œú´‘6œ±RÕ…d½ñ΄ÐÀwhO+uqFÿ8™+ Ù"e §Îb–Ó@P_[öE»!õš Xr·¤°u©H¯§ðä H†]ØyYTŸÅä§ì÷³r·Õ7| Á#ÈÓÄ TÍl ””»ÙK‰¡“5a9ÔÌôØÇ'XIÄx÷›u¡ Q²°Ð¨©®†üÛ‰Ù©}&„¾êæ¥9Å^ÿÙxÀˆôÏ·CQY™Oì¶ü|d6¥ -Ôª Q\P%eN}]Óð6-<ðPh>D­3USP{ºBd‚Ê ~æY‰É¼—ß2¡YzÀÒ gùÌ“|øv¦ø~C9G—a¼gÁQ­"¢ÞÞ±mÖ½[¶8x%KkêôÁbÈövª´cç]W*ŒìB¦Þ»Déê±'Ðïî™êôJ·þj¸urDe])FT5^WZN®±ý@RÓáåÆ29(J¯¡Ê5ššœÔey"Ž$0¶²*{W/ä•Þ y­bc«"N¸dÆ÷q«oµ;J¿g°}/‡Áýú˜¸þ½©÷ÁyúrIÝþ3½NÜŠ‰öV:»õ|@á]A=z¸Þ0ô\)ÂuÚ±¸ïÙ…õ÷óEzŠFÔí@Dʱ'÷È(«îŽË>Úùì.®Û A+Ær3.•—•W–Do±ï’ÅæÈ¢òŠÂìà^/6\èìì¹oys7¼=>'OÖè=¹²/0Rä$a:ÑE#< ° UŽÏ¬©f6þ[õ:‚:TO @d?:ɲŸ]É›€ìR!@勨1^ަwrÒв÷ç7|¸B" Ø\ÒІ›Šs±Ž[/#c¤ƒ/ÿ@gÍ ë ¡®@ðI»Å–@ˆ\nIseH(lü‹ …®ƒË–<¡Up‚ÿ"EQAÄ6ÓĺԱ࿈±Cï†{Û‡«~yáŽÆ”i[G) ʳ?>º}=ª¬mªúÙ¡C´)PÐòßr7ÿ•ÍZüÄã ÊN+·ö^’S+¶bÇ>¹$à MOˆ ÷Å»ç1å·"ÚtC|?¿ö›Üo’†ÒøUÈž¼ÊÇ#8Ví ÷Z|O<Êç‰ ŠVf—ÌÝrh"»¡&ûÂ¥–i…(4õ§ Q´¹`ûaÈÞÔ”G-6ŸÜt‘¯k¢lÿ1¤ä3¹4rÛ_*Òê•ÜÕž¦³ÛÌá7 ðŽ]s矼-ˆ{B:®‰ñ_$÷àÀvÖ?žt D"Qað‡I< ’™ÔXIqB e<ÎøZÔÜÚâ¦Uª§o&º[™På†=7,ÿÒÉsów>O(kìØ èŒÜqn½âï+7?LÙWtmõï7´vLc4#2=E"êv$¢¨àíÅÓI5|¨ ;}3ë­}w¸X.*tó̦ú«³Ô¯‚Ãþä#üvâJÛÝg°!i:öìæšIý~õaiE'ÛÒ:½lIYïsh¨€Yš”^?ÕÊ"Dij™wSRQÙ|ldÓw“ 7øTŽ-ÿÌçy>Šˆ­OD´±ƒP¡@$€¬Q_K‰ôÈ ÈÉÉ3âÚÔBn½€l¬É‰(a2Ùšª¼ô@…v̉´Ñ#8€àð¨@Ü$A¦€EÄKâÆ®6}ŠÒ®¼F…h®ß#8*lw"7Š¢m/ù«.µü׃·èe_µõS#E…8\S‚àpÍÞ²óÃÏ‚´¦™ÓÂ¥3ey!¾ÌùÂæ7º†Ç øÍwó;ÙlA T<=²ûÁ×ëù %Að8¼@Ðô„ÍFö'æ–u5H=îyË*ïíg‡‘–²°Ã¾cÐQ”]Z—W¯ÓÅR¸õxyY)å¹õâÖö*9¸vKÚ¾ìä³ÿHI›YãŠ" e—Ó¨t=cHO¥©)g¨()¿Ö®WÓwÙ ú¥§¯”Ú´B f2lžãß&—ŽSiš5+!+Ï¥·äk))S;infm~•ð+š…ÇççLx8ç«B7uvîÎŒ|N_6ëN8¬~rŠ"À§ê§ÔðÅn%^]f\j•Oǽ6'sÕøÍu ^®}» wì’´…C÷½ Áº¾Ž¨ôlBÎ|¬‹ ãííWy1·£¶¦ø4¹•ÏWS­­©‘”“—àIGG±8µTŒj (»äÅëÔsc¬Iщ9LìÙh8Ìž<ÔHIÍÊR»²\\Å7ÿÞšyKçÌ[:gÞÒ—³9ïæx=*eHæ}ûY(HˆòÆŽ½t¨qû1J é]zõR–@pRºöv:%EÅ aæäê:¢‹¬„¤ªíྠYéb·?âÔÑÈš¸†2!¿¬ ¥Í­£»²„¨gA"4ÕF/ÒÐjj=áåT‰x‘±TÔã5”‹ã1 dm†’É8’¦ªmwAQ€SY"adG–"âd-t¬ŠºöÒQÃ%)è(dÔ%ɸv\ê`ð_ÁÊÁ¦ðCl«QSY¥ji§+¯ Ýgê(›ÆI—ˆ†ÓÜÉÌÔåðF-Ñ&tÄf§RV—% xk;3^aAÝw±ù%E…òfÝÕ$$´.Z1ÜXì«(*T²êm K”P²²1Òðz#f[g^:xî 2l†C˵ïîg‡’¬æjÛá uy#mNMÊÈŒ“ê1JF†„W²W뎯K7­Š@ Ê)(qx÷»µq4B’å4];< ¡ª` É©×ü+(X»oiì¾¥±~7è¼Èœ}»JšFŸ„Œ·Gsc¿ZÎÿn ôìdik'2 ¯h«n§e7ý¢<ÐÐeºÁ”Ɋįib``tJjªF?'cÉ|~ÀÕåö’Ω‹NŸ ¸db{û¾WóäLŸ>HSJ‚¤n?ë–ñqÉ JJÜÒÒ¶¯¢Úë§ùÅÖ‡ãs8.Ä÷¨Çã·ýQ¡€ËåóÚ|Â6žE…\¿Í‡+D…B›×æÃ#D…| íç' E&ˆ¨ôl¤ë’€K¾¾!û'H·s;ØQáñ³uW’’Ö²p²adD’˜»ÉŽxõ±ÏÜå=5¤¥Õz{,pˆºÿô« ¼´ÞÈ!V•Tjç@trül½hù®Q2»®,íÁ•g%ÝçZ; ±ªè~ÁÞw?—&*xÂíËóænòW$r«©/\~U#6øýÓïÌXãë&%¤—¦Ü «€êoÎs;4”Ä©Ì}p9Vl‹š__#d60,jJãÖ£ H¹U¨åÚÅc Çáä=ϯä+õIýÀ‰æËqü*zìYj‘ت-'öR¡â4ÃùÎD“MyJ‰¤?åVÖL£Åà ÂFÂ…ü‚vW?rãJ¬ 'lUóè¯e'Ôˆt©ãÁÛSþHvs´Ê¥õ0ííÍçv‹WVúêÜ«¸~NPŸW€w™¶tІžQwãê›vZY"lºY;\öŸE7×ï}XѲÀþã“›6&*ýp?còô~Ê’¼Š¬ç'®d¢âlŠD¤M‘š ï¯Ýèâ¶Ìg‚ Ž]•òør¡Ø×ðþÚµ.nnFÉ jr_Ÿº˜Ž *Ãgõ¯¸»+ƒCϹ1`Ùÿ¬b/&±„Ÿ†M{uMÞe•e_àÕ±)÷ £Š@˜v‰ª±PgÉ1¢ ¬þ½_™ØÍ[+"ß8„ìʬÅÎïü»àÔ†‡(ŒYdÕ› Üzv~h~L€‘«Í‡Æùs]6ô·lŸ+b:'Z½ÿ´Æ—0ófžÚL}·]DAe]dPiË–¬ eÌZ‘[ÀáM£ÃЂ7nìåw=ÍK™À †]•Â'¨ÎN* i2’òDíÔLãÝë†õ}«Aj(Ž»ë¹ê\1€‚HO½E›Ú¢u{ŽšÛ=fãüóÜûçò¯…dÍ©¼é¹Sôä˜êÔ‹>©_ŠOïHùRè¿VD]øð3[ö̈ûR¸mL̗²G"z—_ý,¡‘é P•G©V£'Pšî‘ÈÛ…A˶˜úžÙ¢"(Ž ^äyKlõ¯øŒ»§Þ‘£oC±Ü}Š_ÀÎÀø#ÝwñA»˜ÕÇcÛ+›þR›?‚?ÅÏ/!ôt;Ñ?}¥O ‚ö¸5ÿCV^ý4 ~*Ê"v,’RêèÖ·¬šŽžHUUÝî(ê/EäKªµ’¼ì§;…!£îþÿ¸Œxçþ›_ë Æ¿ç³â÷oØùãAîå`”vö»Vvÿ›?‚?ÅOð)ñ‘£&ôË (ʤ>¢þj§0000000~Xûã›a¾>¼þõÔæàOñS5ñgwÆŸýÕ^```````ü~‹E¸ØøÆ€”¢¨¥^…,:¸HÚ;õw§eÒ9ÆÀÀÀÀÀÀÀÀÀÀÀè(Xûãϧa?cÉ’Ùýu± $ç»?6?·ý ÐÿŸZ}æÛŒ.Ù¼ÕÇw×­ ]ºË‹×DTz¸¬Ý±ãè±½>ûÖ.m"ýS½5×ýÖã{bÙöG¢Úoíá íÁíÅ ¢®9û`ÏÓDìŠÑ„”Œãr»åSå¿.@Ô5gíïÙ$×Ó]tÐv„@T··çô’ðÇ ã´»Çº£vMŸ½úúíè’eY,=`ã¾ÎÈN·£›É~/H&<ŒÌ.¦æ§<Zb'۹нf½ò4êlœŽ>”çËõ: C8³Õïª+J†·£ƒ(;lÏ,ÌI}¸ØºéÀ4Ù^W?¤•æeGÝØá¬ÕNp‚žóžÛï3‹©ÔÔГ³->eBÃ…¡™ç'+4wô¡TÔT—VUR)ñ÷öÑîÔ…h¹?¤Ñ*^7>LÖ›hÕgÇ~5iê­âÑ¢Æ üAý[OìÛyìàtãvC©ZwíCbA5/õÅÅ5ŽÊrã;ƒèŽÞy/:µ¸¼° óݽ}.âj‘z¯i´OŸÔ½}€lïq*,)³´¢¨(;âÑ‘IÆDÑ¡ûìM¤µ ^A{½¢±úü±qö+oT¨-*Ìx}uußξàn=¸þã‰MIMW-i:ucA(šêDxwlCx„ÑÈU#³Ö§ŠÖÔpk]sÿÐÑ8^¥ŸûÖ¡v¯³ß1qsn‘ IDATê@ íM0——Ýî1oÿ’ê”»Wê¸Y ¿ÚŒF–ã4$jE„ ÙmªAOS\9•û5a#Ë1mÓÅë™’!ƒ3–ÓÁCí÷ø»Âz·7-¢ü«j8“‰†Æ¥y.6HXèN™§Yâ]ôÓ[°ÇøþtÇ)i|Ãé§œòŒ´ß)â|*Œß•ÞKd Û?±\jô¾Àéî&É ßs÷üÚ¨Û„‹­!žazŽJ¶ß|ÿƦwËž‹^¤åàcù̵ÿÌ4¡¹Ç•ûç¾}ª1ÂÂÇ;V”4¼k}ˆoª·ý` Quèžç«<\÷¾“×c=ÜIÝ'P~¸“@‡—%}¢4h–í=|Qz{'ìx­‰|ðßþTjâšù[ΔG™¯{‡Úø‹ ܸd ;òäþ0Ùq«\—ò|vge˜XuaìÙegK(vf.€‚‹×»ò·~»Ã•\<]Ý®z²ü…ˆ»I}|xK‰ ˜ŒÛ2Û®öÕ ÿ° ¨ˆl|§ˆ|lÊŸØñ¸ÞqÑ×­‡–Š Xl>‹Éä‰ QUtš¦m¦OÄ1XóŸÅ°QDYÑÉUÛ\(¬¡ÇßÌŸÍKÏÞœ—<…¾rUO"¥Ž–É»þŽJvڭǼT¦ì¢k,ϧÜÍ}ÉFAÆiwW;Y`½õ¦•3ãÁY¹Û:›7ÇÊ­¾¹6?ïG%ßoNÕjªëH;}y³$îÞõkÑ•BœŠÕÔY£zèËkòÞ?ÊbB÷©GûTßäu)÷ñâu—±†iç|äëMÛ÷¿º o4&޳’g¦Ü>6¢Ãiû<Ê@ÉÝmÉM‰,é¸l×L‹æX91þž×Eœl‰ñc ˜h;ªW¿z'å¬ÑžšŒÙp·)½µeI2ìJ®$t`„æ§[¬Ðqÿâé·eBÑÃ7¼Cø•éUo_Ñ*ºštÑj_@0ÑvP¯~ý^jDKz1™¦rÊÀ4%ÓŠØ?ÏñŸŠ¬©5;Á‹Î`Ä•§66Ñ**k¿Bø!Ù;ÚE^WÁH=æéÖÕŽÚP¬>lKÐÙ=5„E‘þY´çU%ÞhÜc›ÿg§I¨N¹»sù꛹O'¢9ÆÿÊቚÕ/vºÍ;›ÁÀéÚë¿m’­2¯àÝñÕ«ü¢hÐ$Ü:©§&RRÌ‘ažhvAiœOØQgÆùùƒv~ÀúŸ:…ÔÀõ›Íno4 °hG«ßØ1çÌÂËè!Çol:?Ær{B2’º7"8§ /£…›ŒÕày©¨Ð’}÷ùxÑ%®‚ {v×™­NíMÝa÷(±ê³0¼Ê°·IJÓuI˵B´§““Â…ahs PÅqù¡Ýnƒ»*òJâïîûgÓÍl. zc¼{Oî©å-‡ ëy¼NÚnéûôÝ—ÝÝŽù¯ÖU­Îxã·våÉh©ÑóSîò:ùŽDë;ßÞ¹[7 x'òâ1~<ò¬¤‹ÅYOÃJ¬ôfºZ#5´öÔѪìÈÈvmYY-GdhaÔ­[·µæ¸Ú@M­è¦`iøE¿p'“³íj¢‚ýü2Ä=6õ©¡W/¥|T›êÚ½«>@gÚ¿hýÁtØ`bøó4@UüÃ÷Ùl/c`¬Ë** ‹Ó¬ ;}½aÔ&Ÿƒ;|6X¥úߌÛ%Š·œ ¯‘O=·)1ðlêds)À[LÔWÏÉ Ú˜xñ>Ïr®–.€HÔ]/ÊÓѶǗ>Š‚®–r“ºÙ#‘GOøÕ*»hâ€ñbsì™q­ÝaR@ì±V$܉áÕÇÖü´âo€TïÉ“õónîZ¿uÛé ­ic{J€T¯É“u³¯m_·sߺ>n#Lœ¡BõÕiº£œ//D¢¶ÝT@½Oo|è¡ë}“4& µÀ@^ð†uî'ÞÔ·ŽˆóÞ»Ç:w­'?Ö×Ä&äþôKýï‚ìÇ*–>*)þJ•G¹ŸK?úýƒë×mñ-«~æÑøFÕpp”|qdçß$Õ‰NV±ß‹ <©šR!è€!õ£Xú¸mz2êòyòúò$#5÷ë ”ê»Öfå~k-f£ûK‹T KÈ¢\_¦ïƒîj<:(« Nõ ¨¬Ì®¯kz_ /<-ÇÎaý±ÁÑî}M‡®s=ºÜ¦îõ±öt46±›óÂüðމr¡Œg.íúpÞ`‡%ï-÷¬)òSöûÙG¹Ûê›>ÐàäiB_»Èe½ ºØºžIou—UÍl ””»ÙKýÄëþÀ™®Ø5.zûÈöOÖTÒÔ†²RNïu—ý]MJJJ4µ´ ïÁž t„¨Ü³¿U}Âm€–àÊ*œ–'„x(4¢Ö™ª)(Œ=]!2 AeP?ó¬ÄäN7ùSS2FL7Â&#= HÃv_Ý2^6|ýôùþó§ô¾ôŽÒº7©±W§TLçÛ™ØE>6€Id9Mk3Mfgu²jõkÚ$ë^¶•?”|’H9.8¾o«üsÿ‡9qš2=§¸h%^Ú¿ïØ¡•½g5;|BRÓâå~¤3¸BVAÅÓ‹UUÔµ¹¹±Ìž°>¥¶(­&€Rê©\ÃÊËàñ8<vrhuxÅôR”¤øµÙ²ÒÖzÃêžÜ®ÿ/MòPÑÖ®KŠ¢Ôqù 껫ç£JPÑÑ©KŽ¡2xÜšä¤, -9anV—Ãᔦ¥Õs8\¡ñÎUD<Ž.e£Ü¢Ü|TE]î+ñÉØL˜Ñ%ýÒ­Ì¿µ‡ö7Dº§®-¿ìMüW;L™UUlA@ÙÀ@¥Y^þþ~DaƒS˜“ÇSRnïaøO ÝC×–Wö6¡mz"ÜüLœ¾½’»^Ät§ßæ»CÉgö¦ßŸqó]i¼ž¸IÖD„(@x õ.2Jd¡€#ˆmjüiõÏnà „6ô¿?²ª^ðêC¶††:uëVü¡ŒÅ©Ž;í¹èrzÓK’zmûáÐŒ’¼Ðﹺzj`leUö4$®^È+½òZÅÆVŒ­­ËžÝŠ©æòê23¨­ŠªÌÀ%3–¸[} «Äu µiÛ³}·†Ô|E$EâñxD-«~}Ly\®$‰Ôô‹üìë´ÚâÔcÇ&n‹7g¡ù ‘›q©¼¼¨¼²$z‹µøÈ,6G•Wf÷z±áBgzl) [8dãêÞ±oß6¶ ŒízÊCÍ››Á¯_ž¾ „n}íÉ`hÙMjžß¸ïzbSPfúã‹—/¾ÌiÓ3Q{g…óÿ¦,=p($@_¯iÑ IoÄ*¿çI/ÍÐ­ŽØwà.£Óžb|WÊîos½ìP´ÞŠ3þsŒÑJ•O·Î™?gÎü9ó=‡U«÷ýÇk†zo¾è3žÃsöBï7îAn&b‚‹Däc]V>..H<3^n\ݹËù%on\×î]ËŸ´.XïƒÜ?à¥Õ{Ì^ä >bè¢4If}¬ËÞŸÉ-T¿‰u^ÓÛø%SdŽ€ …ÿ *SiÍB@›„¨@€à;¶„E¿¦)«8| 9ó|µý’¿ /4=ìâäÔ¡°I(ðíVÑæÑ[Eñ_Kd+×ézqgŽd`­‡ŸQÖÑ™”z1§€üU´:·ToÆZïñlV-%øZK9Ôú#¸Î”x!DY‡¤´Ë"Ò³"“®4_½áe‹ðgÆ ìZnSެ©H/RWÓs|åã»æî†¼-募}ú ,wŸÒøOQ±ˆ¥w¢ÑÖÃ:‡ …2v û̶ ò¸8yxÝø#‘Häóš|£§††6âó›}>‡Ã5jê/ þ0‰D2“+ D¡E³-´ŒÇÁŸ¦ ¸ŒømWúŸâÎ3Á¦Í¦WçÍÍPo_•ÃæúYw湜æ×qÝÅ© —ˆ &SŽ_DÆÌö‘ò-OHýÕYêWÁaò~;Mù´Ý}ûP’Ö¨cÏn®™ÔÿÿìexW€Ï̬fwãîîFB,@ÐàîîR H©|X[hÒ"¥Å …â\‚{H FŒ¸{²’M6ë3ß ì†B‚Ìûìݳgî=WfæÞs-ÝQU˜—Ô¯/îzòû¢¯æßzÄ3€F£èN<”9\t°Ù, R© E3æv*u|&­\Þ×IAÑШF ¸¯¼~yUZQDÈúï÷쿘TAµ®Ý¨© ÕaW3નӂÉsÇ:ÿ»±¦ïI×3×S”VÔ>°@eÎ3 xôúÂ07×)H|ëRBRxû~âÁÁ^Œ-§ÞRšõÅmº`%öbÿÂÅ/D·óûM™LÀ;¿Dez¼†wo6‹Žéx¹¢‚´Bµ¡¶>’çOb»LÿÊÇPƒ¡ã2eFpEijB P¨,%Æ~“{š‰Œmlµèd&&šõ×ɘAå8L>øüÀ8]uf&&wëcÇ`¸ÌÚ}|±r³2-ƒ{9 ]ýuß_çî=¹w÷¥­£ØmÞφ˜õÚ†ÚÚ†ÚÚ†N߆UŸ˜¬]Óypš¿ûÈŽ!›GÖîóM<¾vÝmú’ÎFlMÛa ÆP®^IP8ŽÛúËl_m P–mpO第l5IžÞ{ÖiúâŽÆ† gw‰¸tã­\LÃr@/ϲœœ–ºMh44ëΑÓáEtzÍ6±Ñ‘ Ó±oo·.3¶^½²gŽ óòpдü÷·ì]Ø¡öR–ËÀ©“§ö¶Ç´½O:¹‡5‚P((дͬºðת’p:Ï^d¢§« ÐóŸ¹xáâÅ /^8#Ф…v’´’§"˜ÿ¼Ík–|½íÛÀŒÌ#/_S €áæ]³g°äEB6C£ëÜõßÌ›·qÙ""Ò !6VŽ“×ýôõÒí+0¡2*ª©Í·^GUµ©ùGÓcàÔé³Ö|¬xVV^‹Õ㘕¹yqÑ«åƒÒøK!îÓç­êËB¤ÂÒäëgî©Ñ„ìÐÿ"¦Œ^´y2¯*Iºpî‘ÊrEâ¹\“ñÖ36R1‰$ëZN¼°Vh6Ñvn_ ίzñ_vnS+1«a΋¦¡ò²ÊÈsò €Wû/¬ñíÕ÷|ùŒ‡Úøh1 aÒ†_ÚþKÕágB¬'[³E —&]9VQ+´2å§þ,œ—ýøàÉÔ¦2™é Avüá߆e™Ð*Òno\~¤X]˜‚“?üà¿óTÒj=JUÎÝíK¤Pvbý_C\ˆ]¼sÆŸ¡3WÔksÓâr&UqYäj«PžÉ5¬ŒÍ¬ËOÑÅïxü½åq²±<ãÎöiÄâ¢ËVØ{,f±"*K{ðû²ÝÉêÂ+8°`™åÖí–™SJ¢O-Zr´ì¿]º^¬ñì»3ÜÖE—®#d•%™aGýÞRÛuk3h4Hnýoü” ³×ÿ7œ..Ž»²õÜs1HÏoÚ6æÀÏþ.—&ým8h×½ oÿ¬ÝHÇdÀ·€K³N>¸¼uí §ïîÙ{jÕàþgÖú~DGý­˜ö[²¾îÌŒ¢ÝQ‘û/µ…G¿šcûÇÿ†Ïù_weyêÅ ?­»YÓí,xt5Šëà*yp+²¦*§ï_´ÒqóâÞË~î#+M=ÿÓº5¡ÕG–,püýÛ!3è¤ä¥_ݼ~íÕ–lp¯²ÚˆŒúóg?¹ˆ›vdùÊ#-ó`!õ/û–Qà/vŸ_,«¶'…—µ·!Ÿ36ã7 çÿ±í™ÉŸ>”“ï’òÃßÏÅ€PL|õ5ëÒ÷g¾˜®t›`aßFžë¼ôw¥Ê—ùæ"ù˜1´9qˆä3àµ'í´ó ÉB‘ÙoÈÏ›ƒJ‚ Dy¡‡óß~ É'ÙPIÕíUIímÃgOÖÉï·µ· $­?îèæ¸£ím IÐNçÇ‘|‚ã$$$$Ÿb~ó¬!!!!!!ùÀã$$$$$$$$$$$Í…ì?4—w™¿„0-̙ҽôì÷'Sk%,ë~ãv±ÕTrÓï¾ü¨@Ú"!ÍÌoü˜@g#&^UúòΕSáEõG> FÝW¬è¥}¼&. ›®c‡8Òe¼Üˆ‹—BS+[uqÍ^?Xv'F·êÁ¨_šþ‹—ߨp)Ui9rÝÀŠ¿÷Ü)ûEïÑÇf °ós¿òíûî©>˜­ma²»Îrò)ËØyªæ`÷Zëâ¥Qw“IÊÏþ˜Ý²f¾ØA«\<äÒ¹õÙyšVÁýu ´0B")ŒÈ½~[(U©ii1{AΡ˜[)Pu‡¬µcÝŒ;ùèÓ9$@ƒ0ÒÚÚ¦äVD_ÌzQ¨þ.j¾f[Áôœ¾ëÏ¥½t•åI·¶®\r0^@·±qÇÃ}L¨‚Ô[ÛW,Ü+µøôÚn¬âÓ_þîæÇp£’|ftù=5d† F(•$üܱڪ8¬ƒ¾"7üÈÿ–o¸[ŒU‘䣡¥ýÝ€qœ(yÙ B¢ºíZòÇñ"ºó€ùS{dmº™O4_È ÖW3þà†¿ÊPãÎ3¾ H:ø¤ö(b–ÿÎt~}\ý§t&®^ç˜LÒßý÷³ñŸÎ{ö3F×ÇS7îvÚ‡o|ˆˆÚÌøºûX›ŽŽhIÎkw”8lkBDiûØôé ~º=áY£“L4<úé o&„ÄËQ]£¡ËLŸãÅ*5ÌÒ)U¨­–Ÿ”ûµdoS’q⌈êh5bœiÑö¼RÕNæk¶FS7ýh|y¨Wp æ¼àèõ_&_º¿Øbö®ŸMNŒñ•Eñþî|È·#ÎN :Óñüç¨ù©Ó‚Vß ‘SGçóÉwIkö£É7°%uSapжړ7ÍgïÚh}aŒßèLFÇoNZë='‘¬Š$ -í?T¼Œ¹t?¹Ðq¢‡Y½ÐÆÓ½ôéÏYB @lXtð8“›ù…ÍjsY‘Ï‹ªù)é|}]!Í!(Ø(þÂà ÆÀ26åä>Š,¹1ñ‚…öf¯úŒ[NÏï¬D!EºÁV6šŠ¼Ûiן‰qDG·çH 3 .¨Œ¿œ‘¥D[§û Gs"”)èÊX€WB3*ÎÆ\ΊÎU¨Œ†ô:ú²£Ïd¿j h¹Ž›>¤ƒ–(ùÚéÃOKqTÏuäØ¾Þ–,œ—óäüùéÕà:|SGþy¹s_͘“Ï [&Ûš‹#º.ÃÇöõ1×Pò³„\¼—-QË!hÊpE•r…hÑ퇞Ž\7Px"Ìhh°»–8õú©ÿÂJq5©5þ5è³~òOýõÀ#!ú~"vb률[už4º›£U\’þôÆí»I<ªï6rLo/ **~qíÂÙ®ê´ º.ÃÇöñ±Ô„Š ]ö N¨.íRûû¡({Yþð>¿ÔÉÑÞô]®o¥âølPˆ«q¦D©$—(•…¸‰jHd¯¥ U VE¸íll4í\Äñ¿ ER€øâ”ÞvÆy¥ª¸m¾f›aa¨ùèä±8¾ öú£¼Y¶VÿÀÇ‚“8@øúîæA€5A`T*†a€@1ôË?+d® S{’¼?Œ€ÀŽÇÅóäþ É»è dU$ùhhéúI~\lRI㺪¡©•r˾ÓFøM-­–!ïÚÖáBDÃÐX³Z$Ä çל«÷3åu‰+rS'' Óvp0b±›:•éê‹Eˆ9pˆ§lfƒæ4ÐÆ +ãÈÆ˜S7åÎcÍÍ0§A¶F¹™Gúïx ¯ö9 ²5ÎÍøï—èS÷•ÞcLZ˜M_&ž¾”ø¨ÜúßzÝ ŽìÞr"ÛtXw >ÆšežÛ´ö÷mW…'Ù!ˆ•/äFŠYïžØÃãÏ /†ïðáVÙ!¿¬ùmÛ-y÷I=,ÔF¤Óy°åõ¿Ö­Ý´åN)÷îþCÏkª¥a@ýþß[ÖíIÔÒà S‘:ãß@š–˜aâäÄеsb¤&å€V—aÝñÇ×ÿøçÞë¹:æL†ï°¡æ9—¶¬Ûüëá4ãQý;0Ô¥á;|˜eÖ…Mk6ýzèYqm­k2íPû{¢,‰/Ï,}³‘Ë XìóÕOæ~ëÜYƒªöòV*ŽO¦ÿW> Öv˜³Â¥§š\’ÅÍ’ööZ¸¦ÃÂEºÙ³Óeê4ª*ršVZ +ivF;ûä[† ²*Ço‚­«¾¬JHek¾·fÛ¹¾Û”ÿŠ]WWc—  £§§ º/>ž–™›ú×8*@ö¹ÝÏzˆüÙì@HåÒ3G¦¬N¶ØH>4:zzaEmûGXQ¡§¯OVE’ˆÖØ¿•J¡*•JЦ™½%]CY®¤Ð¨-Ptì=;ùº{»V==ÿ´ €Ó±o üñöØjèZžvó\Þ¬)+6â⊬ØL.Л2Kœx»´L )´4Ù YÖÍ*± ™W0ÚLŸ•LCSYÖÍ*± L,¬õâ2 LdÙ·D2d‰Ü¼Q¦†,(µBV}–XùzÊ£Ž¾ðŸ_}X P’”¡è­Ãè™™ “®äUÉ’’Ò©=M9@d¥§Éd.Ò’ä”J™· ÓÄôÌL+_^+ ‰‹O›ÐÍ‚y"•‰¹\©1Š ªae©|( ¿þ¼@ P•£°Ó娎Hño"ILÌæhƒ=Ép´ÓMÏ$ALC“Ã@xÅÉá§’k4õLM„IW²…r€¼ˆ³ÇKT¥]¨on&Lº’'R””Ö¨J»fowÕo`Mæ¥ûÂUÆþ!…ý‰Ð a2Û‰ IDAT úMµöLIŠR=ç¶uŠãÓDôô¯¸(€f`Ðw²µGJR4Ÿê8ÔJ/1ýd¼ 36ê3Æ´dg^‘R•& ÒìT,ÀW.©x,7´j×Ä´ JQ8F3´á˜„@bê^)Í×lSèc¦M>¢¿sé¿_J0Ef׎²‘=¿buþþô±î>œwaaÏ LçI»ö~]°aÒø[EŸßxÉG‚ ¯ ȪHòÑÐp…B¢¨$áКFL!W´D §³§:ó#=?r=5_¨ Ú÷7x~ä€ó*&¢,2dSÔE:—Êé]çw³mÚ0âÕâÖÁJàJÃAÑza=(†1<'{:*¡Ê¤%ūôí Žü»á„nÇë¿ ( †Õ •8ŽQÔæ'†aÚ]g,ê€F“òsê=Þ¯GDð²J,Fµj€T"È9W?íU©DMì-2^•‰)ÅýìltM'“”˜,@ð$ä¦ÁàAK{i)˳cïÞ¼S¦ ÔÊÚº$-LJ®KÑ›iGQ´^ØdÚKŸØß°}-¯ª TÅþ! $i­s‹_’\`lh ºÿÐÅñ©BH*äR¡±@µ–««8áD%à§¹»Xçe¨Ô(KêL7ª¾—(¦¶W2Þ®DTʽú+€âJu隯Ùvhöú-ô`ßì#{ÎúùVl± € åÃÃÿÄñÀ»ûϙԇ~p¸„b>ৃßéX¬Çª+ ›òO,Ÿ¶þÁ'µP…䓃 ˆ×Ðܪ8bh6±’ä³âü¥ÍWnvqueÊÑbH@SKK(´DHu ì,¼´îXDÃy¿ÆvÎÚ::‹×ô¬ým½Õüþ¦ßŸ3|¨é±B`s8u3š ãRׂAPÇß"õšâØÃ Ï?Ð&BŸ˜ƒ—÷ÅoÙÇq´.oQÅ•j[»8Žsîß}û&ýëiû wJÙ¶öÄû ݪ6žaäée*IOåÖ5p*R…NæV›¼¤“µÃÉÒüÈS{"OaLCû.¦éœñïcaÃd"t6 WI”*ÓÞHX÷EeÚÅürâUÅþ¡½àÔè‹k—OˆÍÖ(ŽOm½þé1‡^å‚`^ûþ'¡PÕhÖËO.¤W'K÷¶6ÿ½¨–U¡T@ T¶¦¬ª¾2˜vîly&7—‡¿E³½`ö›7³pµýÄ# [_|hÐí…B:ƒ·Ÿ˜–²tتŠÙw¾y8; j~Ҝޛ„Èß “„¤µàóx ‡ Ž¦&Ë%«"ÉGDkø‰¬„DãN=­8t†¾gg_ôe|QK„,…°âµ6RÞíõßü¸ü›—óãºóÙ²ÈãË¿_ T»nCGt·bSiºn|4³Ò Zd¨¤¼˜fíÁbRP¶£®^].inéÊÒ`3íû˜ZÓ_iš90(#£¾MŒÉñÕ`ξ΅Q ok p‹Š´\¼ÍXª¶‹«²¤PíåEEšöÎzTª±ÿÄݬ(j"Â0 ‡£IAQEÕ5jßÉx£À‘ÓÇ ›7܃öJÆOLT8õñs(LyY³ÑbÐmÌ€;}EY]!¬®mpp‹Š´Ü|­4©ÃÀwêwc;²Ô¥_^®íäaÂáxws¡7ö7Pû@DÐì Üh eY8šT«›éÕ ÅñÉRMÐì \íi Õ°4p0®*.¨—‹8žt ‚ÐõlMÄå%j4kÀ+ŸîK{QÒžéx'*3“5Ü»q4蘖›±ÊË(®ýC·“Ý a6ÃéQߦÙnhëêÊŠŠ^sÝJ"Åt™:×C—©aÞkΛð§qÀ¿ý]ðøQ€¢¨B*•Êd¯zý$$Éó°ØNg»é04LºNiö$ž¬Š$-n;ý~®?&ní’gGÿw:ýÅ…sfã¯\ËQ”§ß=ü0ŸY³…4ﹿ{×G{øÇÃq*#<¹n9vôªnt77âèÅø–y;É׳MFØO ¤â• g2óä/oÙqžÞY}ª(ËÏ´N3Çd¸ÓÌÞT&Íy”UÞþCí%4§Ž.‘Þ: $~~ñŠÕ¸1ÿë¥ òž;Ÿ®¶½+y~ñšÕØÉkƒY˜”ŸrïbíQ oFĹY2÷ûMA€K¹Ù·Ÿ¼“Ó ÆW•”‹Ø’|nÃ2/JLÑèÛ•ájuV^Öè¤ÁLTåJxeM2/[޶ògMЏ<ùÆ¥¡º´‹"CŸxNš¾*°ôþÑ'I]º7•v¨Œý}±í3Ò¿fª”Ãr_>Kýû,?ì‚VŸQn 4QE…(õ\vœº)ï_Ÿ.2þÓ‹Z½GºÍã Š Qê…ìø ¨zvº¬ï`—9£0B$Π͉ã€*M­Æ?±¶€2ýj¦ÁHë‰+i8Wu²°~KVq™HPM•JoÓl7ÑwV0®^pnšáÌ‹yû­qÜñoä}eAäɹËÎò v¨;ãÒÁì!©ÓÊÎ,ûYÖNV“|ŽtÝ–y~†.D—®ƒÄŸ|‚¶eæì]¸Ö~ûÑëôä¹Çæ-»$²*’|< £þÇâcwî>ÝŽÖ|Z0}ÆÿÏ=aýá„ýüz3"Šçè þ?î‘‚÷™5uã§ -h±¶™ñ_ï_$oE_O«m"*çV¼]©Pù’"ß\$3#†öhÑ´òÖŠ´c$ù hº¢¾ö¤%çå¼3L¯Ž–/Ÿ„|øö·Šˆ¹IÑAýÿ÷c/¥’ ˆê‚;'›ÜE©a’¼3ï]$$$$$$$Ÿ dÿä‡ïû-¼½"$Þ‘ô.Ç63þËà}‹ƒ„„„„„„ä“áóÜO‘„„„„„„„„„„äC@Ž?|ÐØmuT·â!!!ù@´ýŠ ’/ rü„„„„„„„„„„¤¹ý’æòNý¦iß¹ËÖŽ´«PM:Œ›¿`õšå«–OÓш¢^4,zMšùýª¯WÎÚÉ„ÖD˜t ÿI_}µfÍÒíïÄiBSœÀe>:*þÐéæ1­GÅ$­§Ãœoƒí00òíôtt}çüoÉxO†ªÿÞ1LƒÓ¿`þŽ6“4†fn2`®Ïœï;ΘïÜÙöö Hš‚øuÀüük?ËlÌÀÌrêÿ:Ù!T½àïFÐÛÙÌ–Â`Ìð›3Tû-jš~ã<§¯ì8u¶½‡1Ö&–‘|tÝ–yo™í›ßß-¨[‹-[v ÓsúÁû±¹E¹Yñ¡ûfx0¶¤–ò¸EÜšOæïÝÛñG"“²^ÞÝÜOå뜤ÅètúêðƒØÜ¢Ìäðã«‚ŒjŽÿáø/<–_”•qú§àšCÉÑëòýÉG)yé‰öÍób7&Å2ø×sOR rrC÷Lu}õ:±™š›rhLýƒºë¶ÌR·¨¼,'3æâ¦Áf-5¾¥ët|Gw³§æ5<´—í; ''éøa\Ô°ãÄY½}SŽGTªÔ¤ºêTzåï³ÅtÇ>ÓÇuÉÝq¿P©©Ýipg,òÈæçT‹î3'fm¼–Š«Ô$ùHÑñt×I¼Ÿ©lRIzëb¥,»¹6+L’Vƒál†E'Š–RÌ-†³(ø=#·Ýýú´?ßõÚ3·eCF%j©eŠ‚º3ú>J.Cl½í²|éÛ4QÛ~öVeég.ˆ¨öÖCF™ïÊ-#ë Iûc4uÓÆ—‡z§`Î Ž^ÿeòõ¡û‹ ecçÀ-©¯ôl†ÎtÓ4ÈÓ¬Q#W\p/ r6×l$Ì¿œ´1oä{æŸ,ª6qÔkäG‘p_æ‚í'!Lå¾õiX‡ß÷àFy†äÐÜæüoýÀNs¯VYÏý}õ`ǃ9,¿U—Nÿï±õ¢[Jæ Mûú¿\ÐcN»ß¯}áûc¬êq¦3wos»9)prî²ðØ¥-Óï Ú[y×~ZRXý¸á&q½_жLªAï_oí[zùÊÊ'͵ åý‡ê¢ÔøÐÇiEö£]Lê…šFNlL‰XP˜žUᣫP©RÓÒÕ¥üù–œJ)TÆ?{Ñk„«ÑýÂb•šHYÊ£œXž YNf¨ÇªÔT¦nÐXŽ<çvÚÍX1a`>qž™6€ëB¨ÿ;>šˆŽnà`K{S QQ™šù<[À \f]}±H§¯•5[žs;õö ù¦k!:Þ^¬óêó Ñt11Ø“#J¹qþT4ó!ßN `@éÍí©…µÇ@›ù¶Oå¹çÁ½œ9âŒ;N>+Ç›¦a×¥‹ºêLÜй&äCy€ê8 ÑÃÃLäG\¹v7«ºqDÕ)¡çÏÄðÈ"~~Z~Q¼DŽƒú•B![SS]˜ü¤»ÑÙRÀ4Ì­L%ÅEêÂT ÃÙž~&þä¡~?SK ,ÿø†ˆ÷«EÏ’vmˆØµ!>š˜c?[ƒÜôDŸ½#saV;VLg$ú`Ô¡£<~fH˲‰ŒÜ¼¨I/ êëvè¤âß!¹&:; ù·ßV¯=QõÚ•ú>¾´ÇþÚ|(E¯g¬%a–>Ù¾ö·wJ…O¯^ûÛ굇ò€î50Ø$ûÊöMï¾Yé=¦«u]D¼Ðÿüµé`Šá€NäR H2Ja˜iHEe"ušÚ~ý|D·÷oÚ´cçÃrþ££'bjîS¥‰Zh .ßK7éÑ{C¸9êµMb>˜¾3:ÎZî;u¾[o_µF&ªÈUjYp˜V’¼œO««,{YžSÞŒA&EÈ«œŽcìœõdUB‹œFJBÒf37-Uîææ0rC„E_M­±›wúE,è`åô[õÂýË|j…;|Âù[Ûw˜tàeƒŽ‚sk]=wo;fSE®ï6å¿bD×Õ՘ǭ uXq7=7'åeÔµ=³=5²Ïí~Öó@äÏfB*—ž92­`õp•’fÂ/È“x÷ꥋÐÌ{÷pÖÓ×€¬Ë¿î«@¨z=…±/ÊtMÌ ¸H°òè_“ MLMÕ„©«§/VÔžŒ+x´ï÷ÐlˆXéh¨­=äŸR•×Pô{vsI}ß²l­ý[)Ú6®½]<œô«ž_}®nû? …ªÄ•ÇÄÚ‚ÎĹJ •ÚT  ß1«‡Ù(JBßÈnñ”iê½¢<_H˜k±TûM™úF²œÛUb@¯€b®ÏÂJ¿|TÆ“”K›t»’¨ÄÜÛUÒÀ…!ˆ½‘Îà¦f׎&©»”u;¦H ÎÍSXë°*Þ3L]cãÊ”…"9@JJµ› ²+€}?¾T Pœ—ÿ“¾hèœg ÒR––Ý9žU¤vœ@ÌçK”ia®Q5ƒ¤o”&ž›•!“9ÈÊÒÒ«¤r ûË™ _õì`l,MÏ ç(׌„€Hó21_/=š¤"\føy®Ý¡¢œÀ1š¾‡Ê$*”(¥É‡? ÉŠ¢4mc#-$ûå­}‹nÕí<=‹oü-ÄAx1äþž%ô!ºÜÎË«øæºH® %9§A+0eßü‰¹nUá×ÞÖ~¡[Ž™6aøˆþÎ¥ÿ~u(b~ òÛ‰Ævœôב-3nõÿ;瞘Γvíýº`äñ·Ô¿HšƒòΖåÏŽŠ/P žžÏ:WµÖÔS9I’N.õÍS9ƒÉËåTSÏnØ:ò ¡nÑ(‚Ô„¡9ñHÚ¶ @ÑÜ?ø­¡FÛuUxþ÷€Ñˆä=ã'¼l¡ù­Ò Ûš2ÞAsêvFa¥ú–¾B!GQTúòÄÆ— T©P?¢’¨3«£0¦¾ÛȉC/Ľî¨nÇë¿ ¨Ú& ‚bj4ëü€ÑÄå$ª@Ì;xHb4ìGâ 2ÅšröQÿ¥îVx¯01 V¯‰ãJÃÞŒ¨i“¾h¤1É»bºž~¯1È‘Ô4ÕC/§Ìtج}¥ÒмK—sêåªKó … ¥µã§Åi%Æúúb€òŒ íqÆâ' ̰= üp(p% ¨”ú;€âŽáM?üß™©/Š>H¸$$-ä°Ws¦Y×Pÿœlø3oÿ²í×o¾½Ô\žv~ÛºugSe@¥R­æœ -*K”E*…¢P}C ’¯L~[ìš½~ =Ø7ûÈžƒ³~¾[\ã»–ñ òø5ÿçþsæÅO€Šù€Ÿ~§s`ý±«®$lÊ?±|ÚúŸÔŠ­ <ýäÿÓKYt¥HÌž}yIçºjPqxœöª¶ÃØ¿îCO‘J¤ ¥òüëóÚ³¨2©º‰8uUIx|ŠÑqè²9~«B¦Þ€¤_:mËD¦ÿ¼yfÅèÀ-o­, hFÕ¾³_åõ½gCÃS›ê<@u•ekÖ.6akjVVT¨Ñdº{[p”âòôŒ*;‡/ ¯AQ¯³‹ ˆÆW‚ªÐTy9Éë0 \}=ìuuD1[77~b_å(ŠáÊ–çgóÃ|£¡ªTâ(úªˆqåë>“w4éó‡¡açÉaR® ¿ZÛRݘ©–ç ûôÝwý±ãÀ_‡nÆqI·”*´ô{31¨ÿI P_O xiÅÂÔtÉçÓÅ¢kØv0°Ð©{ÅTËE(Uûð§²829ÜGBR‹@ `³kçѳÙ,>ŸPûߢ!]í¬¼†®ï¸ãiÆ W(2vîâç×ÅÏÏÏÕ~ôþP(”X_¬±/LË1xܨ@«&§/1ûÍ›Y¸:hâê½Wë:cvŸ^äUû£¶Mª3xû‰™Åß[é5Ûïá쀟ŠçÎéMŽ#¾ú¾ãÆw5”ŠÄ C—  å>|Bgc ä‚ÔЇå}úøðŠ 1cãÚ9ŸÆ&&…j‚äóxtM­Ú½ææ:ou©’ÂÛ÷:x5{'Lhþ“¡¡¨6kÕ_îËC¿nl:]ÏÍÏ MMR·~×óÒ;ÀŒBÓµ·7ðx-5 ãèRQaÙëš)Deu£w¢ ÝBÇD“ÊÒch  á•Ò-]٠ʶ×5UVsk5)Z†4 A4ìuMå¯.'y ƒNƒ'0m Kƒ­=1o‡âؗ󌮭ÇÂŒãèd#/)jq~¶ L¡@È´²³ÖÒàèë°Qà—”pÜM4(T-G'k¼¬¤¶áÂÐ3âPŒãèh#+.$‹øMp¦Ó@kwS @ÕѶ0T¨î¿`…ÅÖ¤ (Š¢ŸM ¸Õ©&hVN64 †j˜ÚV•Ö?ñÊgGSÊÚÓºÖEÇß.xíàþzuÍ aVª†kgŽ Ór1q@ù™ªgâ’|dFFj×Eΰ="0?:J€8ÎÝñë”nö†T9¯°ˆ¯¬™‘™˜hÜ­€á2k÷ñÅ~tÈÍÊ´ ìidä4tõ×}¬,rœ»÷äÞÝ—¶Žjj¿Om]]YQÑk£\¹f÷ zš0i #¿)ÃÝb¢ãû»àñ;£*EQ…T*•ÉUãñ p™BÑè£Ä —*?µBIÃŽ®P*>a ÊÙuîÖÍ_uÖg°¬ÌcòøQ€ÂqÜÖ_fûjc€²lƒ{:gee¯]w›¾¤³[ÓvØ‚1”«WÕ)yzïY§é‹;kh,œÝ%âÒ·a–zy–åä´lD‹ç/9 ûzšoiÔoDÙpAhîÓ~v¯×‰?õÛ©DUš³¯^1Ñoñ7l7óÑ©°BBM˜Snßp=q~7&"q3^+S§™¥ÊLq꣊N}Ýgja ¾0þ\f}ÿKþ2ÿ‰³Ý€…F˜Døä`JR…"åf–ÑûI]©DEeâ…ŒºNfÞÛmæLξÉ$GÄÕ!*-âV³¤…üWc§4;o‡¢Ø«Õ ´Êcd÷0í-ª‚—÷ôôõlxµÿÀÒoûAqèÖÃÕÕóæ† K||ÝuÈÄ%¾iîõ}gž $1×nZŒº’:­ì̲ŸUOŽ©HÜsBE ÷—Ë o WÜ‹{SXx5÷Má½ODØlòö-[åó×ÞØ9QNÄÑ™K¯TÀå «ì=³X•¥=ø}Ùîd]ünÇß['Ë3îlŸö‡šÍ[ àÀ‚e–[·?XfN)‰>µhÉÑh°ÿ@té:x±Æ³ïÎ\p[]ºŽU–d†YôCxˬG Va,^0vçîÓ-Ï‚ÏNà2kÑ¡š šHZÃkÄrç—¿ŸJnbÎÝG¦ùoûTì¯Ù ‰ä}¡¸ ýŸOÖoGjöoÀ {Nš¡qwóµüö¶ë³ÂÔªv,*ÌùxãT¾¤ Éõ$ õëF íqþÒƒö5†„äýyíñÛZû/‘ÔÀt÷2O}v¹;&L’ÖD‘Ÿ×-hÙwJ%Aâ¢çTíNBBBBBBòéCöTRùh›Ê“9HÞŠ8òðÎÈO ÌüË¿jå ¿d*R.ìM¹ÐÞV´䦕$$$$$$$$$$$Í… !!!ù ”ŸØÒêv¡%›î“¼#äø Is!û$$$$$$$$$$$Í¥mû¯iß-ü¡Ág¸ÕÈ}ø´©ËWÌ]:ôPo} ¢íÜ}ʼ™ß|3où¢ñ㺙×ì2‹é:Oœ´tù¼å Ç÷5lzö•v€çÄž­½ã¡¶ÉЯüz;¿ã¼¯bÒÇÛ}ò¢ ëÖ­M¯Â4é·hlgU:ÚžS–ÎáJoy˜-C¯ËØE½΋PoRó ›yš9}ÅŠ9_Ïd×ÔÙ>¯ø™Ü<=ó‘Ë:Ï~qpºÌëü"¦Ñ#t×þVI/OŸ— †FšÛ¤$§šZ±!«5×6F‰Šv2÷`8õ·ó´FË ßZ=Pë G‹ò´ó×DTëƒÍKæ”·éré›»uÙô²-cR™­ IDAT$yl&ïÚ¾¤=öYs“IÙØ9pKjC‰ß÷àFy†äÐÜæüoýÀNs¯V©¼Ötæîmn7'NNÂ]»´eúA{kN“Í»öÓ’ÂêF‡›&®÷ Ú–I5èýë­}K/_Yùä]“×€ö«Ÿ%GÇ»^¦Õ|gõø=tVlíö“¯ç§ÍЙŽçÇ8GÍO´úfˆ˜::8Ÿ¯êÞg›víbÆj(©*x’€v 2kä-ÜF:[4VäÝGº ³läjåç†>FzŒµÒj(äæ\¾‹ôžbÝHXž}.ë?Ý^»‘0ýôUÊ 9Μ¥ÉÇ.Q†ÍwkÔ*MÇDÏþ{!DS·s?+;c*^Q'#®PLo·ñÆå÷F]]ÒŒÌë×Ê«líg¸J”ºX¥˜þ]4ó®ÇE±»ÎwwÕ¨ W^ÛoátoS}½H»‡µ[^ð$õ΋j€icÙ+ÈȢ’'×s ªÕ›¤¥×¥¿¥¯&ÝɈΓ«6éCI« å殑x½æ0q“~‹+~ʳà%]øÿ‰¨š©×`]Ф<7öQxxF…€å3|Iêe…[W-IúÓ—S…ªÃ¶íÀ=]9âŒ{¡âø˜ô[4—å÷÷eמLmÒoQ`ÕÕXý nIöÃÐó1<\½5šöqÆÝë—âÝiì·Ì=ç"+@·Çœ¡Ôë‡nKýæÎôÓñCÇšèjRWo’$óaè…€hÛõØÙŘI £nÞ}œ+Vg7#"/Q ÇAžŸ[ºlÈxË™]oÏäÅÒÂW¯üi¬FOý¦Ô˜ÖþÃú¸jИT™  - ;v.^OEÚíz}ã!¼¥°íÊJº§Û³»IÖå3 Û¿K×P8&F•©§ª¥@aÎù¿@ D$¶ÔÖ†JºGX"ig#[†œ›UñœÇµv±6lZSËÆ¾:yoEµ ¥0½‹“µ~NyYÛ©£¹b:œ›/òû[ÁµoGÎ É@-nükÝèzòÜÇ/_º3Bj„ ;tÛÝíÁU‡fõü9Œô*}¸ 7ޝÙq=¾×ñÁž-¿ZßÍÃ(bωuòrÞÂîžp5L•&½sP§g‡GD—Ê¢þÝðÊ¢BƒS{ò¹ú¢üµkäewÆéN°`|˜»¶ê§RT^Xs®4âòÝÜŽ·6ÏÎT­HF¥b8³A¿ü³B¶aàš0©gè9{Û7j——K"3PwG½†ÂRID2êÙÕÉ ¡°Hü$éÐӹѥ úA,ê×ÏÕ¨¡0¯úÎs4`°{£=²«o„Ѻó6m(Ì]{Dë>Òϼ¡0³òâZÐØ. …éÂc"sk“F]šJYF4W¨ºÿ`a¨ùèä±8¾ öú£¼Y¶V*û ÿÀÇ‚“8@øúîæA@sËH ¤&·ÓúÌ2À—‘-(~pðZlM™©gÀ‹ÅPùüÂi—)Ë—Ì\1Í.ãô½9“ÁT¢†þÁsÏY¾pô wµÖ—çÞúôÌ‘(:៭OÿÙ÷Bû^ö†Ei§þ~~!Bé>Ь¾ÊR̵(щÇþÉàÛ˜Ùë &ôÊÛÙù–hÁýDÂÆ† PùdÏÓ¶&$U¿™†“w:òèY®fsK Ñôí«]{do\ŒÔ0°#»)“‚ìôóÓOðPæ8ÈÂX½I/NîXjbS§¾²}úøQþÞyìÔÃ"Mk£úþ:Åœyaçî{evÜ&óõ0µ=}µ^^8µÿJao[ŠnþµkãæóQ¢×âÒõò¤E?øçÉ ^í±&ÂÔõpCÃŽÜy"C¿·¯- ÍIË3´µ¦hZØ0²Ó ÊžïÛ¼kߣòÊÈó7ïÚ¸¹®óÚ^~ºi—N¸Z`ØËϺ{ï £ÜÛûþ_¯ûïÚCéj´aví(Û:ÐÓ£ë¢g>Û6Nh0æÒ¸ŒÞŸ÷ªÉíÒ2E­ì,¹©áu.h6}G·­x™pñaNq•€fåáÈ}q±€KT¼xÙyœ‡ùÓAy/¢ËÄ8ˆ³âyãÌŒàE q £» ÷¶Ç¡(¤¥¯§^š’Ð2ÇXÍèRÍ—š‡fàíè¡â8B§CNÓ&xmÛ‘À•(úz?¥Î¤ÄÄÝE’pŒß¤Reô0Ý îS;qp~á˧Oî½ä7öXV>?Òd˜ø«\ÂßÌ¥†¼jòׇº0jÖ†Y™žÍïbiŽä²l 2ó›lÕ74©¶Ü1¬^ˆãx}ÃXµI’W6¾@zNƒFôEN„&51ѬLþP4;va¦^I©x›ûŠäsƒ',ì.•VÞ¸YP/¥Ñ°8>pi¥´v[X”Qj¢§P @RbER¤9E鋌­ù’_Pòæ¿ç/UdléÑÄüò¼=#•Jµšs2l´¨,QN]É×N&ׇ2bhVII ç/=h¶®Œ_WûˆÌýçÌ‹ž.9xúÉþ§—²èJ‘˜=ûò’΄ê2:ÿ¼ö5.<>Åè8tÙ¿U!SWÒ/‚¶e" ÓÞ<³bt`ºãû—{[ÔÏ&¡tïß+íê/yµ?Uæ'Å|ÀO¿Ó9°þXUW6åŸX>mýÚ I^¡Ùë·Ðƒ}³ì98ëç[±ÅêkAʇ‡ÿ‰ã)€w÷Ÿ3©ý<àpíSíµ2z^¯É[šYYj¬i53Z€•¥4;ª®û@µîè]uwçÕ ‡N0ŒBxmÛ' FKÄD£ ÞdûŽxåS¨ÓWJâϽˆýÐÍ0¶a'_åócr¤ÓÛmBƒ©yªLBÐZ‚¢xÓ)úA­œœ©ÿ¾š|OZ—ÄWi•'^;‘]ÏÒ{ÐðžÞyç£Ô/éx#ÌF¢¨RÙŒéï¦ ;M4ØÖÄDì íê«hšÑøÅqüUÚ›*Mº¾³-?¡° p 7;§º‡­ $©óF4;“[=msƒ=¡SÝÄcÍ9FùgþËSñºà¸ö±É>´ã¹ÈºMƒ½¨‰ k&š QH?Áˆš‚ñÒKâL âÐÆ~èÖŽly^yËD(EMƒ#µªÇ~çîÓMþïÛìä EÆîÑ=þH«´ƒƒ=Dá×刡eí]’÷CÓeÈ慎çîeI,ÆìþÃhÏØ¿^4pêéûŽëÃxpòI1ð¸\8ÿDU1 xtM­ÚúÉ07×)xûlQBRxû~âÁÁ^Œ-§š*÷VíU¾Wýl¯À@Áƒ}uYUù©3xû‰i)K‡­ª˜}盇³¢æ'Íé½éAÈç:hÚš0ûÍ›Y¸Ú~â‘7_Ÿ¯Õd>×è5¡hàji\F­Æ«š É-˜ÃÔó—8Æf¬Ò¢ú© SYUùšÍbniµ‰³ ‡‚ tGnY9€¢(·ØÌËWŸI¥jÚx¸iæ©ð4½¢Z(¥›és¨: & ^9ÍÔ†A è÷fö¡¶D”‚Q‚Ââ8YÑä,†&½¶ Ê$º…›AAY6z&x5ïã^(ý˜»MibZ«++*4mõYl=נ޵^ßà@/Km†‹«D’F÷Fsº–ކ l;;+EyI‹sIu˜:úl ‚²íl-åeŵÿñÓÓq›.ž–ÅÙ™ ŠU• s+ “­«ÅR{ÓJËØv.†L EÓÎÎç–ªk!:îý»ùšÐ@h:ÖÖú~Sœffò $÷ÄÖ§ÿl}úÏÖ§Gï IÉÿ¨ì<†RXl Š¢è—4È 1N³0t°¤Q0”ibd«_UV –h9u`Ñ)(ÛÊÄ^KX\ÿÄ…Qg’“Ô͈ýÑîàз¯Ý€ ý:•0'CÃÙO“IÃ4Mì^öëkø>2»õ±c0\fí>¾Ø®Nà8wïɽ»/mÕ¼=˜IZ §ù»ìزy¤FÍo®\³û„ =M˜4†‘ß”án1ÑñÀì:wëæ¯:ë3XVæŽ1yü(NMp’§÷žu𾏣±††aÀÂÙ]".Ýx«[Ó°Ð˳,'§-—|°úiæço]¿«ªüäßþ.xüΨ @QT!•Je2P÷¼'p¹\Ñøƒ¸R&SÈ}”5ÂF¹’ p™TÑè#à —Jä>R5B¥òu¡D‰ãJ©X&iø‘( ¥Rò†'p…RÙøƒÍªÌm]]YQ‘ª:õzM–D<Šé2u®‡.Süל16áOë+íkeÔj¼cMn‡ñÔÄЈË-}åÛEªó¸ïœë¿¼°ëBJqØÕ¤½F-@ÅÅü¬b* 2êÚÝààyÝ™Deqü•ûIMö¨å©yáö}gcRaø‰—ÉBEÚý,Ã~®ºPP¹4ÿyFsVý5€S·ÿÀÌÎþ ŠØ§röŸ°42N7p¶g‘0áVò7§aÃá©ÂJÕ&eöwçOÅ+…É×Ò [dQ»Cµr·-M¸Õ°D/îÇ8 ±À—ú"Õ£T— Ýz î©ËÂÄå©÷¼hb®ŽŠ0y‰ay=zùZ“ªF^¼›¯ö_˜»°'”ÝÝ£~"aÃ&hÔ×C©r~Á³‹÷êw,JÏfuò(¹~»áø¢,åÙǾ#çzR¤w_‰U=ëSšpçÙ€þó;1paqìå;jg®É2Þµ2rjd"AöÓû‘M´¥š›ÉíŠ ùqù˜¹+ü— î\Zð–‹>g伨{:ÝúxMf£ŠÊªÌ;éÉ• Mº™­Ý×ql*^U•š‘ñæãúSë}™÷óà^ã‰qžã ²„—ÿÝ€„[%Se%⺧¬2ë^š^ÛQsi¸àÿìw|TUöÀÏ{Óg’I&“Þ{'!4Ò½IQAûOXQlëºvÑ×uEQ±®(JéEz(I€ôÞûd’L¦÷öÞï2 ÁûýÌ3çÝrî}oî;çViÑáÖÛ»yëð‘í|ýõøÍ»ÊßäSUMg6­/Õ[ˆkŠ›enªâ4òv‹˜µ¹ö÷G¸ð«ìAPl[é½î tUæ×‹•…õ=5¯9òá«36}~®Î•©äïqýOhùîÅ7b¿ü¶ði[uÓå_ŸXØê¨—àÇ5/zÿwS拞Ԏü]Ï=ÿkôÛµ ¿ó(z+jöæfˆx'¿óÒ ì¨ÏÚöÜë9·¶r«žOZìäÈšò²¾×žåúTw¿ºëþÔ¸coõjÑžß·<G\öËgeƒÅß¿ga>ö—¯Xðê>}¶p°ð_å¾³(w°ðµÙÙƒ…/¤Z&z6îä`aë‘æÁ³ÃZÃ0ö¿Ëèü±Úù‰ƒŸdhùá¹·‚?ÿ_î[ŽfAîÎg^ü½wðëïѸ%O2Æd^;ÅbÝš7F ®ÁŒ˜ÿlPÍWûkÇpøòv¥Ù Ô>p ¨\ÿ9Ëk~;^9>,‚[Q!c%d΋Q-›÷Tè(ŽÉËd]Ú|êöou7ãæÉ½= [ÇïªH‹/)ôæBŒg–-NGÛw×µ´ã{gĸ†áV—rLíÚ;š&#hÙsÓ}4…'OŒçáÖTÈØcn«+K˜öìºøîe$¤®#ëÈÞÛ@ Ä­ùˆ›FW¸û†'FšÂ_ê°ÔWýþiÕg>ZnE…Ü”uÇ~©;v§µ@ q¸CçÇ!@ ˆ @ ˆ 9Ñ6wF ÄÝ @ @ Ãù@ Ü5î¡gŸ}4Õ M A Ÿ1lFœÝ5rîŒ/;ªI!*¿tñb£¦çÃiÚâ¹1Ò̯N 8Zsˆ~è¡ûÊÓ_jpÉxr~«wßo}ÍßgµÓ5qVâ$6!äÎ*­„ĸA ó’üœl¨¤^ÙVzùØe¡ÅmrܧÇGu/íÝ´ÆÎcÉ|üÜÎKÇpóSï+*±vt@?(öŽñéÞ>Ît\§i-ªÏ.VtW»©Ñs™ »/Þäöˆ£Œ~ á„®XÉÏùéRóN±¸–¦SÚc blÃäY¿î¿ÒÇU»°+'«Ïþq¤ºûApÉx2AõûÁ«ÖîæuzҦ̞6Å›KÓwe8–/¶˜æ±˜æH¹ z‚êì2}ž‡'ŸJj4-9 ™Ej3€mˆ_FßÑ'túŽ¢Æ3—äãecªñÕÑ5%ÃÓG%µA~Ý¥2µ€æêžšîáf‡›•ÊÚìÚÜFt·!Ó½}é¸^Ûš_w±Devñ]qŸ‹àÈ•KM$Pg<̺œw¤pâT3“;y†ˆ;ƒKKÏÕUˆ¬ªÃM|,2äZ“Þyâuãa_Ì~꛿ÿ¾¦æ÷5'z$üi¯}õñãÉn¦ú3_<ÿÒ·E*Ìå/»ßNá´ï~áþ×NH†N÷5‡Ë?Š/|/qúgõýFaæ ^<ÉâÐб˜üÜþíüK\ø]'¸,}ûë Pɽœøïñ¶ãÂ2K¾“ý¼´¿@¸åž°×/[ ë2ýÕMÿz8ÙßÞ,®¹ð¿w^üôR÷;ß>íã3÷oÜœ³ÁÚ!r‰_ã6@TøAÔô/š?6ó6wì|€¤AÙQ{á»××ü7{†ð5Fê?ØNžM)=ü}©’æ:å¾{¦´~w¡‘äFÌJžâMé>ŒžAWô—˲h50=ÝOr~û 1Ý7áÞùÑmÛr;I‹!í'%ú*²÷ï­Ñáva‹Ž.–X:/O¥Ô³8t€^óžCg)Õ£>Ù™6ÓŸ[_~ਆà:§- ž$ÌÏG{T7$€[›×2¦ó³û¥):¿õçóà’ñdÒõ”Í—NkŒ‚á[×éIõ›”¬ÿåÇrF£ö?Â4¯Ãrš#ä6è9Zè vuÙŽ\-Æw›ó oHmY¹š–ÊW](:RiÄìÝæ=éáŸ'¯¸g­N èA)>¬úÒ½…ZÌÁ}Æ2¿ †ÒJ 3,Í‹RV¼«\Guñ™»ÐGøc€d„ÎðeW•ï=¤Ã¼æÜãåWSQ $îîe M ÌÝÞ'GÔ‚ßipïÔOIõ¡SjªßÜ9^ÛÅV†Óî,,’Z»zûñ{øëMÏÏ`^ií'd-ÜøÝÜŠ5éOÛÌù×þ­¯\žò®|ñÁû–‡æ=[½:ãÍ{Àâñ©tâøxˆqFôœY.Ÿ}g7g–/ÀÈŽ±áÄdySZ+jÇ\3Ä-¢êÐÆ5Ý_™Ñ÷¿0ßO&·ÒÒÓÒÞüáÕùXÖ—ïþɺïå'ßú±ãrØ«5Óÿþþ‹‡°U72*šŽ~úV› -~ëÑXéÙ¯¿<Ó 9Ý®ÅÇ¦ãØ¿ß;ªH~æ­UoÿçÙcÉWŒ L#õ0Ic¾ Rn$ÀØÖ*$cylhTëD5ò›EÞ³¦î“äPŸYl?Çaˆ4]ýe%ÿª  ®.­L˜è˜ÛiÙ.7juË`4IŒf½Nk埧VêYtÀ™Ïè_¹Ì¤“J‰³uˆŸáëçD#•ò²ÌÚÒöž[qøÉóü8ÆÖ¬ÊÌ ­å×ÅÖÅYQ½O¥%Äí•>“Ü Òc\~ ?g©TTž¯-»Ç44§Ûì“}½8¦¶ËUçJ5¤ƒ×²•^v‘E€:ï·¢¹E•F}|À aUi'ޏÎ|:N¶ëPžè®sgLò±§è$‚’œ¼ÜF¥€5ïqçú?Í!3B¸º†ì}Ö+-§i—Œ'çG³@ré—¦Îþ§3ÛøÌ^8-ÄF×pñÌÑry¿ú¥i¾òñxWïÕÿ7@|áçCy ËiZÔãz§ÏœâÌ$Âüs—ò„+iÆõ͘5%Ø…I(:Š3/æ´êX÷,Ý‘+Çb¾Çöâoçëõ£Õst0X yu©Zoè´)]ììÔf–`êÍfÌ`6ë:ëï:–WÌü´ G6I5ÈÕ¸øê‡+xO&¨O–9¤ÄùÛš³Ï-‘¾) Sž3û$°«O–Û''º48”Ý>¡—3Xty]¥ZoI„JW[.€äÍÕZ&¡TDzÛ±A ãº:+k÷i $@{ÓÁïÀ@¤ÖzÚÛƒ‚îe£M,ÿÌÎÇOSý³\c¨ÔŇúðÅC¦>¾—þ¹ý­Ï•ÌØ¾(ªO˜rϢʟB/´+ö~µûŸ[E¼û+IRh4 … T…~ÿ²áƒoeM¬[…7äÔY³ìÙÏ'{ßOŽÉëþóá!7V( ì÷ýdnÐ.Ô'¼úë#mï½ÙÖæël¹²íÇÜ{ZÜ \¿g[ÜÙW–~‘œÄÍRVZ9mîòÅö“++ªÃB€9ûÃío-éÚ¹æÁ®ûêÝ-ß¶ÎØÔ¶èƒïžIUœýäÓ´yk×{ðÄgÿý¼Â1ìOÖôkü]ùä?÷òN|òv¦÷cï?°ñ¿%¦mj¸CeC söúbiíÿû|G»•M[ˆÙ @wŸ@ÈdJ¨ÿz~ì×3¶Ü\®ÀhL×-:Ô ˆšêº‘¥z3ë(³×Ìð0‰kOÈXï7d‡ÆÅ˜KvTëàZ×NWö®½y8`t^ÐìI“šç*A¶³§‹ŒAÈ •j%¤‚œ–ȯ;·³VMá‡Íšݱ+Wh±CT©W±évNMU'Ë‘ÃQÑT"=ÇÁÑК£2`¨ëÎôpdA—tuWm2™¸ƒôæ²ÏÃlÀ/ÒDLG}k¶Rgh·S½8СmMN»D ’‹Ìö¶lËÝL+* 3ú¸À5ÔßTyjÈ>G Ãp‡ÅÀ”â¦ò“M×.u#@W[‡‰ÚïaFšÖPVä”6Éd͈ᱠ±÷nŽ"ÍÁzrœ4 Y]zôµõ-³£\XÐay€ëä¤i¸$Òš@ÛÐØJìÄ@V~®Þ·¥#þ =8Œ§‡‹Å¸#ôAþ´¶Š5ziK‹&Éת,ú¹>6¶ÜåNéùíºÞ¥ð—ƒÊ¸é¬‚C¥Ý²n{B§QálÀŽF¥° ˜;8$N¡qÍ¡P­m¤^EØx:è‹Å*ÑÓÏÎØ ‚ tå‡ ‹­6ûŽ“fk=Kz“žJ¥ã€WFBdWá±b‚ ®YEø5_Š^×;7TièèwÜ3 HQ÷Û5;€$I ëq¢®ÕŒ¡³êä¾* 0<"f/˜)8VdqÇrš7©Ž›û¬™1J³‚ \¹ñ#¢¯Bp'ˆ•(ž±!Ôv™Ol˜}]i_2c­ç°¡ñ"'r¾ª¬ì?-ƒ‚ã$yíGàVÿq6AéÞ-;¾?m¸ÕzŽC¨áú«?UÔôŸ„ÆàøúR:« R‰Pëïé -&=9 '¢§¹À:Äõ"†®I·WùQ¢ÓkpvOëMgs š¾ž2:Û'ÐÆ(èj“¶N©iôò#‚Þ ÉÆ[KÖ‹¤½âêj  W7·6x‹6íX]µ~Éò§N¿rþ©„¼gËŸž¹1sïH÷ßCüeé³êÜ×¼ @§ý°v]‘úTëœU`0$û^JÝpµ;˜AÖA@£Q€J¥ ‘8óž×7¯Ž>õÒü{Û<±çØK^rDŒ°ø”(.\*¾&cÍÞ”½ó1wcÙÇ3“?-€„UÏÆp:w<|W“Zb펙”í"nÈd g8¸„øš:Ûõ:©„áhäྠ¡±´J=ÝçbCcÛ3Yø* 3ú‡âê-ªlèWh•BÁõöw`sx!É“ýèÝB»è vlœÐª5:rÐ`Î Òt[{Ã9¾¾ž&‰H=&iFÞ%f{úp©T~ØÜ…“ܬÞ8E—ØÆ7È‘E¡Úúúx˜¥]jÜ)*ÃWxvÿù3Ãk[zlº¯p'-xô±'ßzaˆ†‹óy¬2ÂñcSÖEŸ¹ —OabF¼ùê¥ €ï̇–†w›Š3ׇ¾üä–ӋѳÏyÌœ±äÿ8“ª«úì¥k2Ï;Íšöðã,B.¸zìJ'i-dç•“Õ³S>=“FjeMYÙÅV»ij%©Ó«4úN5©Ö«Lµë2ÂV$Ð0£¾-¿VjM]®lJrôJ[ŠY.¯8Qg}É®®ât7=xÉ:®× òªK:»Ó¬sʹ7–J¨”Õ'k¬-‰éQ«¶ùª_pÆCnƒâêÞòj¥E•†}ÈÌn4Ï0ß®Šóý­NMYV‰ÿÜùGËJΔׇG€®S„'¦ÎN±gá:IÝ¥ìR‹sÞ¬¦é”þøÂxø±i ¹ôËÁ«ò¾=ˆ},¹gc"iåÕ¶i©÷Çm朧˜QÕœwÉê®÷ ¯8Ÿå6kúcS˜„²³äÄ…ÛÉÓCä—´µÂó5 ¦úÖ]h4Ü =‡ †Íiþ«N}‚ºƒ9§«”G;ÓgD<y%7©”™uUã`M׬͵¿?€_e‚bÛJïug¼¶fÒWŸ\¬t5ÖÞ´úÓB@§îvéëþÔ¸coõjÑžßÿ+µ!Æ&“Ùý…Nï¶›t'ÿ¹ò]êOmøy)CÛ^|ø¿\Õ‚~ßÆÏ–ÿ¸&jnØÁU_9/üz>?ãï_ôl¤ã6ÿï_̇ƒOîÌ<ôß·ÿ ymí7ŸîzcÑÜ=¶þcÙTÇMgÇÃù*ˆ~ÐcbBÄeeý7\8’' ×ežÌíî„Â0pŸóü†9=!„[ò~ºà°âýwïíî¦tHY»!E±­ò»3Ã6÷->6j—¹¯|1Ǩ·fm{éÕmCmY3¬ïA€ukVlÞ²{Dñe!3÷oøñ˜õ]yîÞ4oEÏÁPÓŸ oûá`÷ ?~þ½Ì«ßŸYc„Wwîíɨ½m®KèÁâK ½¹ã™e‹ÓÑl"Ä]Àu--:þqÓ0‚BŠ3ÇÔØ(iÞ &Šž0·7UÅÆ=öTL÷‚R/ºrr|NOA 1Zÿ€¸iô¥v–þEÓ¼L=-¡j<µ»ñÔÖ@ Äm`\,ÂE @ 4þ€@ “~¢-®F Ä] @ @ Ãù@ b¸ÜÔü%?nnú$yÎÿ2Ûz$L§)i±a®lBÑ^|ñji—iôBŠwRJ¤¿ ×+ZŠó2Ë$&Àlýc2¦z;r¨„AÕQQp&¿CoYÅ›Ã.þA?å¡ÂŠq°1ùƒ¸x/oÇUᘼ*V}èDá-ÚòZFã;ÍàœúH´|ÿÉâ;~š0l'Ï“WïÈ”Ü@ˆ¸ºmôìÈPyÕ®‹j ³÷š¿ÄǶ®|×E 7î¨ fï †Ž3;jÛü–-tžÊÉi%ê˜ö`(« ÷ÏÒž2n`ÚE%ºÒI…¬<«¦Jlý›á‡D þZLûOõÞÇù€S(¤ÙLBéûSgÞŒÀe}þú’GSsζ¾ôÁ™vÌå/»ßNá´ï~áþ×N q'©ÿ`’íIéêèÅ7)É[šóÇY)Í+vገö=E]ä(…œˆôÉœêÌ]ÇU˜cÄÂyþuªuܰ)^ªÜãGêõ7hÞýaþecê@ nÛÛ†â¶[oߊŒn›òãf`ZP¸'&à’["®ƒî‹;×Í?΃¦ê/×ïÏ/½î>wu·…VæÂsÁÉñ{ø‚p¯øwYÕ±ójš§ÿŒéÞ¢?$–O—~Hâ¯FÖ+Án¯@Â'ÕÛæe|Vß-ô|êë|÷/»¿ž9õ•Ý[7N~ºlñÁû–‡æ=[½:ãÍ{Àâñ©µÏˆ;ÀHý½¸¥!§X öLõå÷ ý|äÛ;5F€úÊÚ)É~E]âÑ eŽîŽ¢ªCr= ÐQ¼÷ç:=Á4˜Ì@b£Ù ×YíÀâÆ= ½ àÆùyrLíù*5$fë—ìëãH#ÔŠêìê’v#`6ü)ɾ¾N ÐèÍ4s%@¯ÐÏבJ¨äÙ5¦‘Öì_ ›  fíÑ5c€ã™>{j[ß’›uºBN`¶žÉiQNLB%*¿t%O¨ïø'‚TYfVCf57~Šcë¹S¹fë‘”èÈ TÅ—®w¬eÄôˆ˜‘äÏgÑ£RƒK ž¬¶K^«9WÅKœìÃ6r³NUÈ +YUþ:hÞsì:]ªûø©ø¹C9@sÎH ó´£è¥íùÅEÍ*3ÆõJNäïÄÂu²ú«W.Ô)I‹eÀl=’R£Ù Ö˜i¦€^¡µ²TÊRî£Ã(méÈ+K=ýøC -3F·c"b’¶vä—H¤á^.PÝ|¢ìDy•ì$û!«tî<;PÐ=l•bí­Tu̱÷òÑÔî’k m4Æ„yñ$–{E‡@0R§^þma‰Äpá{[N¤N‚R’¤Ðh ¨ ?üþeà ÞÊš8㕈»‡‘®0v546ËžpÅ`s@«6;ÆÎŠ±ÓªÔ,{ÔB&IàüIÉËWÝû؃³ÒƒlqMÉ©+†Ø…=²ôñ¥ž-Çs†²êÙÁ”ŠcWþø³Ë6ÎÛª_| ¯£êàŽ+ÇsõþéÞÎT¿„ ~gõ¡íÙO·É{̪_B°cgÕí—™CÓnh;ýµqð ¢4×\;‘Ý64’ÛxúÏß3;ù‰á>8Ђ’âÛ/ïúõà¾+Ú ‘n€9³•‹Z£¢ðòs5àçe @ JŠwéÈÙ¹íÀ¾Ó¤Œp'«qÂâƒt¹Ç·mÛ÷{‘BY|êdu÷ciJ->|pÛ±nB¸7n-#kÊÂ(lÚ{zÒl]<émÍ"`‡'…“åg¶ÿvôXžÈÖO %Muê¼úû¯ûwžò’£èÖÊN JŠwû—};OÖH{žº!Ë>‹¹³¸¡S 3Ch‘1º“¤±S Ôaì°8Ç®¼fÑ€úcE.J\ñPâ½÷FO µéé¿ÑIÛÌönl¶›«NØ>¡úät6iИ¹‘Ávz†Îf:$Ÿ¯SÈ{¬-…\Îwt„Æ?¶\™þcîû?îU®ß³mµàÍ¥Èy@Ü!ÆbÿV*…JÎæ»9Ñ„œ P¨£TggâÜ¡]—©.‘ófÇ·fVjI±¼Æìý jŠCPZz¸h_Q‡ÕŽKMm¾Pj˺Ìö6,5‹ç`ä*õfзtuP}xlèÔô ¹¦·—Ås0ò”FŒ¢öO&ˆÑÔ ÎAÞ¦Úþ“¾UÕWË›d²Ö6ó$[6€Ê–Ï×4_ëLÍ-BJ$Ÿ B²£]`2ye-­:c€‰Â¢ØòùÚæ« ††fAz¨D:‹ # ÃèÎN¶P©yåÕº.=€¾³ÓìÊeXÎÈšòƒ165‹“<\ðêVº‡«mKM;Ù)Î`±è –´Ôd¶t‡´á;h›.‹4&QÍ…sΖʮáö ™BÙóÔY*;;üþÅ¡Ü~ÚsŽ«´˜ûelnÇÝ3À7ÄÜr¼Áa}2UÑá¼r €fç’˜ÔZT  (‘AŽ4ƒ´Ðèêz‡¾(8… œáàÆUÒI¥§X{¥ ?$ î´ì_;}?+tÕ×ß¾ ø`Õʓ =t‹˜ÐŒEn6›q 76ŸÜÖ @Ç ³yÔB ì¨,—êAM­l®3*;Ü‚}å•g:e$€²ª.z^kQGÛ õ’Ä ÇI²§w$ ǯöá8#xæ_0ªI'¾;-œ±s ò7Ôî?g›$zš4²·æq¿&$H·ZŸ8ŽÛDÌ™@F3©;ûB^Ÿ©ì;¥ÌpªÁ ]¼Ô18-ºs‘òÐ6µIc\\AÈöäµÖu{¬ê²‹Evñ±K£9„¢³¾¨(§NAŽãDo1’fAo‰—ë'²ì²Úã4÷%4ë zK¹ßYÆâvÜMPì¢cØõç*T¬kR ÖõLJS %<€@*qgyèŠ ôøDr€ âóÛEÔ žÖ{t!GÇϧž»%é"#dõ¬/GaB’@õœÿÞO¯ñ~Üð[ú‡K7¶îxiõ†LÙàØË§*wÄ_’}3‡x,üV±Ø4#°8Z=z¡AG\û÷$ €Sp’$È> N™YODŸGáI@ä5aï’ ´•' Ê&ÔJÆ;îîë¯lÚ{ƒ½ƒÔ<†ƒLçþ!•%Çÿ,_áúŒ8þÓ<Ûöm»hu‰À0°¬<ÝÎÏßÁØÖܪè5pÔ‚&ÍtO''¶KWSfÐØU—y´pº½{Èô™SÄgÊ4ŠIc10½Î@X,;IöUvƒJa¡ˆ–rEEŒž±¸w<ž‡ÉY˜Ü;ö`·Ê±ùÐ)]D"½êT«€²÷ÎcâF1S×¢ß åcé ŒÎêi½él¶A£î½DçxùÚ˜„"¡’¸AH1©D´µ¥˜À–Ë•ˆÅÀ[´iÇêªõKÞ?uú•óO%ä=[þôÌ™{7L kÆäü‡ÎÆfû°('6Æõ Ä ’Q Í]m]N¡öL*ÕÆ#(+vè壿?‡Šat_¹Ä‚×=Z™ŒáîkË àlOGgB-Õ€N¥`¸yÛ°XlïXOÚµ.ž, …ç–4ÃÓ?X÷ ô×6ßÈvUJ$l/&…bãåéNÈ%VM¥DÂró´¥PyÓg‡:S¬dDÁ)L&›‚áø QÞÑ)o‘0;%n~’w?ßZÝÔlöœè.ikéi§¹)1¡n¶, ¡Sk{}]¥DÂö rbSqºÿ¬û§1­•]-Wp<}yl×oj¨7}è²Æbîw”1¸w]û·^ümëÅß¶^üã²ÜT[þÛþf…Ž ¹¹ø»Ó©8Îrrõæ)Å}3çHyÑñòª‘5hãyk '0ÒŽE£Úúzøâ]-Òž vaÁiÓ‚2œ¨7 ‰@ , »šU˜øÐS<&Û-ù±{½³.•€ôÔkóVnΓŽã&½^o0ŽZ\ÄaÄã^©Ëæ‡t[Ù)Ï¡êüÖ í Y9ŽéSî{ˆEÈ……§ËºH0N¨.;_hŸ:mÅT&©ל»Z§€®‚ÌúôÄ™§Q ¢õj^ùȶÌ7Õ_®uL YE#UŠšó5ÆúWÚ¤ÅᚊÌÖÖ¯ÞuŽÉËbh¸I',©Ö Ò¿ T÷ oIMö 73Ôä乤%­Œfꮊ³W¬O:3Ôä令¦=4•U­E¹³•Œ y²Ù+Ò¨ì,8{©°s ”×É$ ËÐ¥ìÏ%MFL˜*;¯7´N$Á§&¦ÅÛ1q¬ñJ^¥¶§˜Î)q÷?Ì¢”-ù¹Uke×ÕäUúed¬Œ”Ÿ©l ªì°˜ûhqOMœÒí²p cUùÎ R‹B ‘G;&2îɉAÝmiøª@0Ö”í¾d©–Lââ^´ØûX¸I­lή©Q \F<ÑLsóå*^JÀ‚tB!-?ÛÒ·%«N¦TêèF±Ö|£Ä_žäÏê÷=Þ½{[~ç;Pö^lÆgõMß®};pÓÏùïðÍ—û¿*@ÝÝùVwð§Æ{«W‹ö¼ø>õEÜ0&“Ù÷cÝš›·ì¾ƒÚ &ôÀä•>ÍÛO·ÜêÝmgDñKZÜþëŸ œ3c!³è×ì!öQºqšˆ›fô·qCùv·'£.ñ éƒã‹/©þB´þ1Nè[ÿ°lqúˆ¦• hýâ&úA½®ùE[` nº cKEέ·¿-ddîl©š¼rU¤™ õ’‚‘Ž|Û”ÿK0êÛ@ b€üÄMc¨<~ òNe¤n= õüئ‰¸iF{;@LÆdý4@ øK€Æâîÿk4ö£Ýt¸+¸ý+.5Ðø@ .È@ @ ÃåNøtÞä¹óLtîýÙxGÎ]<ûÁ•óWÞ›>s’c÷iZ 'ÿôy3W®˜{ÿ¸ɮ ëÑ­cë>ë¤dßÑ Û³ÜgÞä‚М½k' IDAT˃\†NwúÆê¶Æ3/±ºÄx$ù³ú³/úþ~sI\ç=¢( ŸTwJÄBq÷§þ?i`¿v{Vi«°¡æòî÷æ¹æ¿r[nyCÅ™çÜí õ-`p}Z÷Yöññ‚ª¶ŽÖ–ê ¿ÿ#Õ~$ѹoï¾RYÏ=­ß4½çšßÓÇ›«¶.·ï ›üY}§D,ì5ÕظÈc¤%ºÍF''01*Ü —tõ?ïÊ&(ÚM]tþT“³õÍXèSÕUcàE¥ø“E—ÿhÒàö¾i)á^G ZŒ£[G%.Ê1˜:FµE'ÇÏÙ¦©¡“fPœ7^Sp ZGuòÍÈðíÜ]%$- G“áÈ•‹b"–`ùҸâRñ D Ü#&ÌM^y2GEu HŸæÓu´^J€ºäh^¥ c¸ÎLônm­™8gЦú±š‹Uh0;Ô9þþ­Å5V›gM顼2Åð¦2lØl #·ª’R?©î/ñ}æ?/Ó~šüS'ÿyÑ÷¹ÚÅOï[š÷lõêŒ7Oì5‹Ç#¤RKo–{F”‡M‰Vp¶Ëõä¶jÄøyÚ÷ê[w à^o~¡¡ùÇìa'§þBSÓçüi;Ÿæ¦é•ü`þ€ž¸¢üo°ÚâûÒB}ž´|Dlèê7—´lH]²¯‹â÷ô®Ë/.ýöÂVép£+~}ˆÿ+$|R½±m^Ægõý®µ}ïù6ÍEY?QÙ†¸ŒÏêiN3ÿuò»õ‡¿zÉ¢FV¸Íþƒ^ÚÖ’WÞ.u÷ºö¼˜ôz‚a0™Ä &ÂhÐ .)©lPHqk³&Í•-£[„;åþè &¨‹tIu=RfHÔ"~çe³Û?–¡¥öÜ¥N °&'úù931½V,h+Êo—]3ÅY¾~ô¦9 €)¢z­‰S§´‹ôµePcQhM¥@í¥V»)þîlSGaù¥j IuN]îÖ±¿¨Z œè%‘xÖå‘eå1?&ÉÏÇ‘=A3W QLw¿iq®|¨EÂüKí: Ú ÃÀ(¶UŠe®‘¼e'.uh»Dx'ørô­¥§³jÌÆ->1ÔÇNª%U¹EŰ(´ ^²0ˆ ôH( ](Ùéò{OOMý™ÖÐÜÚîaW/½Ö˜“úv©ŒáʦL˜ï™Lš¼±Ne0HÄw€±8 @ØÄ­ùîóu,Yå™­møüx£÷^ðÑ—ïÜÃ76_üê¥õ›/Ë GøöýSݰ6ÞFýuo ‹?;³ižjë“ÓßÏa#V}ü£ìµh²O_%þà 5$I¡Ñ( $P=~øýˆ¼•eÁÄ`ð':ö—ÈtÙXœïÀG…ö´Oñ Ðõ­ÒêÀg¹„DÑjwwa yafôšŸdø}6Aý…FÍ×xúº ð^”†:áíZö,ÔçI¡…p ±Xï¨PéIW(õ ‰X?¢èIø¤úÐÓÎPö^ì‘¢®ë®EgÎ;<èʼn¹x›{wLâæVâºÇX[q¡È8iÆÊû欜ç&8[Ül0hÕf{wW:€sœÜìèL†µèQäý~aç¯E5ƒê‚êlO©,>ðGµÜÃÓר>q!.òºã{²’þný§J½³/¥³QÜ£gkQ›ÈÃÑžgTJuÖ„Ö`ûR*O\>pªËfŠ·`’:l\Ý©ž+M,貦<Õ'.˜/ª>º;ëHf›œ°^LÌ.2ɾ++wßÞ‚rƒK\¸í0ª °ˆIÚÒ!Ö?€êâH­Ìù}±ÌÝßÏh~S¢: î=u´PìV„òêÛ,Vhª²·m?²mû]é<Ð,Ðk »ðä?[½VË`³û_Æ®öv •lÂ8 (>RV×í008v,£~¨‘*Vøü¤ûV$-Ylƒ&\"CâñÄÆõæo—D%ÜûÁe¯ô)\»oŽ»¼&Æ',ãßšµ?¼Û#ü<6ç¹xßÀ˜U?Vôk°Bc|ø‘“X7È+èå3µÍMUyG¿y*Š Ðpè_?d)0jj”¢°¨ ÿØreú¹ï{ü¸W¹~϶Ղ7—Zt°PŸVhÝòèsò¿ç·ÔWµž»çä}/ÒŒ(ºE.¿ìloÏ÷¯R§§„U•Œð^އ6œî35¾5ÿX³·óMJ ¯¢’«Òé)3W’F¨µSTll23uv6ÊÍ*‘˜ R€åÀ7´Ê´f¥F3ðÍÍ÷w67”õì¡FÞ›È3Ë:.Ÿ®V„öÞóæyöwIEyW3k@S_(”$2±Ù—ÃP›ÚZ1nöx]ÍÇiˆ¬Î}bñ mù = W«†°0HyþÁb0š 0¶wjã{–“ ·SGk½Â 딘©à8ð´­R@ l§óXСµ(¼Óªß(8… œnïlG¥“*§ô,àLšŸ šê %Üà3nÀ9.ÎþN^žl]uUUíU%Gs+1ªkBZ`@[a•jp0*“àƒ 8ÅápH£Nc˜Hn1zp§Û»ºØa'¿{îd·0 *ªýÏ÷ò(ì=÷Íó1ŽßÝ~â\± ª²©ŸXõݳ5G¨rŽÙ!S𯌸͠دúrÛ'ŸœûU€Ý£»š¾ÈЕï\{ß+ÙF€–ýk§ïg…®úúÛ¬ZyRH •,âz®¯OË8ÞûïÃŽ<9s+=ü©/¶¼TþÞÃð£ˆð7rZÿ:YùÍÊ+Fyø4çOUíE±œPÕ7F¦ù;WˆÚIECÁÁFœJ!M&jÈÌç1YTp ]õéBÀpœ$,þ 0®¯¯©ñÄ€ÙH†ÚÒµë?=N”7ë, mçˆúì˜u=½… Iëvˆt­E”½#HXn6í2ë¥Äpœ$†U ‡¸@N#áB Æmå™,Àqœ${Z’ p·&ük@†aFQÖ>5#Ì=6±ºäX^¥ (,Ç©³¢ÂÎç–ËﬢÇê7yš»¶¾R˜](‘h‡0'ƒFgèþªnk’zØÛ öpŸÇvÿ¹1¹gŽtÈK ^R°çÁ´¿¥Çº5+º¿´ :nª Ĥ¯Iìÿ³å‡ß Üðñ©õžÆú¬}Ÿ½óÎïÕ Ñh>Oï̺ß4Žº)4*Õd²8N,«<º³òF¹¤‚i÷׿ï÷­‰ hÿò€ý6š}Њ¯~ý[ôØÞNªçü÷~z÷ã†ßÒß8\º±uÇK«7dʆJÑAõi)ͬVþòø¥j3@Ó–}/g®LzïJæ°£Œò3>«Ç˜î ¾8±çåûS?¹áÃÒqà?à8ˆ^˘$I º£¯3¥£µC &Ó0ä°øh IÃ{70¬ß(îêâ¥êø³ï GçxyR»êåZ q§.ÐÝš;- [Må°§jÄí$W¾ËY!ÈâíK’`–ô¼¶kL¨¹ø`®À@2C¢;Z‰@ÜZºíåîïŽaM@’0Ôƒ} 7hq:‹`‹­× \+eÖJ:dáö8È'H¿Õ!8X_¸§¬Þ0èãéccêµ+ Žsb<½êl« §Åâ½&ê¾yäéˆÓÛñëÝÉI“÷þÊ—†v`ó–Ý£(q Y¶8ýFAd2™MϤŽT*PþüÜ=?Ý>8uíW¿|ºúâ=ß·M¦º-÷§ZÛ?ºÉd¦ôfâ”þ=2vÁóæMRç½Ðd}×kù–O]¾YñeÀ5OÆ.réÛœÙí¤QV}ü|×dzbá uÓŽÕUë—¼!êô+çŸJÈ{¶üé™3÷ŽMWøÝ¥úÜ{¸a÷,›¬:ÿÇÙ=Î M¦ž7€Ùlf2™CFH]Û©se?-ŠfBåæ0ƒ®?½RªsðñaQ0Œfïáe¯É€âêÀ¤Pm<üüXâvé-Ê^§T2Ý|mY,¶×d/wZŸwóãËêE×þsÛ7Á?ˆOŨ¶|;­RiE8B­„ë$7g©X8Ô¿P§T2]½l˜×ë9 èT*×ß•ad±lèøÝm•!Æ+j™ŒåîmÏ P8î®.„R¦µ&Ш5t'g6Åå°îÎGV&Øø‡Ú1©T/L,0΀Q9|WžA£ž ÎÐi ³^;Øyà††¤$§Ouêé£Ò“TW?W:Ç™ŽnÞ<¥Xb%MÉÙ—V¾s©»!%Ûv=³ú³´ýâî¦>7—;ÿi|Óûþe©­ùy2,ø™ÏÿõHJ 3Í(iJÍÝêËÊ\Sf0˜aOnÙ¾.ŽÍ õÞ‹¢\\B¿ùÂì~kƒŸùvç·[þ÷>k9€ØÈM{ðÁén,:Ó%î‘¥ù%¦àþûáSSì)€süçMmhhé©×æ­Üœ'ÇMz½Þ`ÜJŸIL¦3A’„Þløéêú‚$Í:¤íÿ1› ´× ‚BC~‚$LfóÀAÞ6¡Å ±TŸÝ„<»eÛçŸïýøÞžÕp’в®Ä%÷z1q 7â¾…‘åeCE (lïù3¢DMM#[q»ÇÜæÎ èÎ4î0Ö]ÙyYT’Ý2-6yy•Ð+Û K«Õ ­¼RÆOŒYL5©¤µ—Š›V£[ʧoc"€%©Ñ *ÜWP©¶¨‘±±¨Å+eÒ¢ uÅ…VAPƒ¯‡²1·ŸEoê*Éã'N¥ƒQ§í(­©–€EáÈ·ˆ“¼4¹µ½oa‹Ê‹Z½R¢î SW^ÓÓbÈŽ’~ü²i±Zyõå²\ÿðÙÓáĉVË¥G †Ä5nZš÷?.r…/ëKö]¾+o¬Ë+qLŒ]A'Ւꬢv«BSsužWÌô{|)FqîŸWjîÂGÖÜš_i4w PJ+²ê¤=¯NÔ´( ŒZmWCUÁÈÆÝi¨.é_ÛR¥ùü…¬f½\©ÒÓmÏ-SWÉU^\bì2ŬQ6_®®µ¼O€±ê»G>³k¹è£Gž?<ƒôÄøFwìýçS¿ÙtµÁÑØt᛿}U ÐYPBûÇ¿v¾èB“”yû•m Ûùúëñ›w•¿É§ªšÎlZ_ªÑŽ _ÞóãþÂ5•›ÿâø/÷¥+®)n–¹©Š†rÁ5G>|uƦÏÏÕ¹25‚üý/®ÿI‡>xsþ·¿¬ãajQMæ^ÜR êîV¹îàO;öV¯íyñ}K½ò²ov” x¨t°ðå³Åƒ…O\),\ZY0X˜Ö’7XX{¤y°ðìíZ@m±>º*óëÅÎÊÂúÞ{tõÓg·mþèhõ—¶&qÕ™wÿþ¿f°r;†OßþKùï@Ñ[Q³77@Ä;ùïeG}Ö¶ç^ÏQš€1™Ì¾ëÖ¬økÛM]î¯:ZP©º_øB/Ñ¡ó"tª8òíFvgQgÇxX~A Lš¬ÈνÎ{°ø’úË¿¹ãše‹Ó÷̼ÓZ £åº–vÌ_мü¹Âz1râN`ªä< bœ0ÖO#ä¹{ºGÇŒu§sêî°2@ ĸ? @ ˆárcÿ¡o_í»‹Å‡eŸ(zŽ’;[Ì ]ÉEOÄHéËGóéìî§/Ç;û,¡'qwàéárã@ÄD? @ ˆár³þÃ'˜ÝÅ`L®·¿§¯#ó/Xü‰Rö;«çD©%@ ˆ›ã¦üŒé—05Þ“16*pVî•uʺ?¿,»©$ü^½Ø)·p8a™©5^OŸåòn*#`ºûO‰ ˆ™ä:Ôi,€±ø‘Iq ¦.žŸ˜à=Šº²÷š6͇?²8¬ééËî s»ù\-0ü²ß•p—¤ÅéËR<™ƒ®\¯'ÕuÚâôeÝŸ8gB8Œ®–qËôD F 3`ÙgÕ´ÖUdos–庫 ¾n‘]x5¤OàôÐΙ¬Svõõ0ð^{®¯—uÊde%Z"bÜsû/áa‘QÎlœ¢,¬’ú¨Týå/×>¿—?ã–zß8ôè¡Ú`4ÖÍŸhJOˆ™˜V­ºQH‡€  'ª¤¾¦NB–Xt6ŸÓo>þ˜1ü²ßY®×Ó,¯-¨j¥óÂ"œÙ}, oEî£ä–é‰@Œ ,ôå_¿yÂ.óóÛyK_xå×/[&ß÷sßáÀ^¸rMÁ§»«z~;ܳaÃ<.IBÿ¦–Èûßs?€®ª€eIˆ@ ˆqψý¦{HB Šmx|°<³²ÝŠmì”öÒ=žêÏV6—žÛ½éƒÏÎ pL^÷ŸŸÈáÛ öoüû?÷ÔL g·7€·Ã3ý !§=÷ÉOLsÄÄå~úê ?•è¦Ò¼5`éo²¥ŠŸ–¾xî&ªâF°½2fùÛ€¢*÷t•ÀÞnš¥¡ôŠÁsj -&kÉÉi’ò‚Nsï¶øüCü¡«DÚ©20ø^ÑζTR¯j«®)nV›ošà¼(Éàœ¸ØÀÔ}©P}¹:¥ ²¦D !€;?ÊGßœSÍtbÅ…Ùå ï¸ÊârzH ©´@î3Õªó/´;·ìfÜÎ7$6ØÁ–…´¦¤ªNj‰J77dÊŒVGÁ•l±‹=Img‹Ø´€þ&¸EáH`8úÄDº;qp£F-jm.¯•hY–žÀ¸ÞÁ1ÁŽöl*@’€‰ªU²f³ê¬èi!wò¦Š@ “ˆ¥÷…aWÿùâ{_ ÇqΩµ÷/rüù‡Þ³²í>0—™óÎMÝ?mÒßÿ÷½°ÛÑô&»jrr²uÒöv©žoKÂ!AÓâŽp]ó;`þ’N§çr9CDÆm½bœ¯Ía¹Lêic±EÇRßÜúù¼¼žüÛÛ?åÙN³%˜³?ÜþÖÛ ¯=øä—õaOmùvm•œ,†dÎú`ûÛË<~yÿ_»[ýøï·ë#*÷üýùˆ‚ïŸéùç_ß5²c½‡ARYT]PoaÀ…îáë‡I…r’É÷ rÁ@ÕQ\T]'! ªꂢêš.à‘qþ,MCE“Ðhã;9"䆇Éb7õ²Tv5µ¤²¾¨º ¨¶E €ó'Åû{ФÅWÊkÕÿذÀ¾é5lg?ž¦I ŽS  €bÏgÍ,§¦ÖHut¶£ ¿ìL·èIÎtyki¹ØÈuŠŠòàÜ„J#‚á`CJ›Š[ CÜ£±Æ>|ª¯MQžWYÖ¤ Úsh¤•'ã‡F¹Úë3KT&Ymɉ‚În¿qXU7ü܈[Ч§'yÔæ«¾âØÚàååÕwÑiÙŠ”K;÷ €‘ôÆ¿WqN½ñ’iPæ~”Ÿµ¼¡±âØË ì¡„ár9­~°ü†o.@Œ†ÁÍï€ñ‡òÊÆ´ä˜Ü‚Šöv±Åøl!¨¨P¹þ¡Negi“’‚Í•fPPš=ÏÀıc«3ÿøxÏ7z€€Ø©v Ù»gç¹ ÷¼wgÏNŠãlªQ[ÈÉbHZìT{nýâ-™X–‚XîÛHa@û•¿ˆ¼žyc¡kÓ¹_~=bµì8£PÃǨŒFÒ8Ü©E&µ°I ÎÜIþ×þFa}n¥”âÅõwà34Ð)ZšF‡€“¼Mب.׆¦–²z)Õdï3ÙÁG¹Ñz~t÷˜I>â²lí0õëE'on2°üüܘÚÎ&¡°[ȵåÑÀ èlI©LE„3ŸÏ£@÷ ¨¼¤YÆ"<ý¸tBÖ\§d:iš›Ä~ž^Ž¿ì†Î‚‹jL-S˜4/—p6“  J#’Á(Ρž.MUq«†ºGc N£SH b [ê °–;©îèÔ¹àµZ«7Sy^Œ ‰š0̪~îÄ-…A§a23íø0šº=¸Ü÷@ªùôúý"ZÔúÏžñ,øxíYÒc&@a;¸Ø3»þ|{u ¨Ü¨U¯¿<ãïo>´ížß, °|ê´;+#¾¢ªq𥾹qÓXl~ø—¯–&ÄE.š—ÂbY^ï«êÔvÐÝÝB8i}}»UsÏpü_/ìðxç¾×HÔ5žúøÉG¿Ê£Óém­_jll8–m$‹! €Ñhòÿٻ︦®·àOBaƦ,AÁÄ­H±âªR¢ˆXêö­ÛªU«hµZ[µZ*?[QP©­«"ZT,*".P2d„„@B¹ï¡m€„äù~øãæÉ9÷ vvv„êä[ÿ BÝøA~O„/3òÿQÐï7úŸ !íÂ>µj »ß÷ÆIMâ?vЪ¿ˆZâ½Ú¦Ûÿ5»¶öíÊ ¿N{*”Ÿ[>tËY!§Lqm‘¢’„B*À¾ÿ$zÎÛ Ä555d*õ½ïŸà*ýËÝfÜLÊ¿ßʈ·a¥¿<ì;xFK]?©T @!“àß›ß64Þ0±ëÕÉD ×°½€¨û‡ª\žAÈdQ׺¨àÕÜÚtD"ù#þR‰X?cëÙ:÷q2}ûäQâ[=—þ}Ü UM©–²›ƒ[ôJ`éfÕÞ•Yð„¥±Ÿá•hàæ¿ü;?ƒfF·ëܹ§­Kçö…IùŠv> Ç>àŵÛY‚FF8õ¯:ÕZoö=µM@²µµ(;;{€Ü7odïtžлêòŽËµ· `]üvr†ì: î ޝ÷åü±lñÁ¤±‡ßìùpÓ  ‡ L&ˆDbڤÙû> ¾kPù=Y£ÿ¹B5® ÷_R}òoq¥Ñç_–ƒ¤€[R"€¬”ä ˜Ò÷Sßüê¾_®›dtfñÔï“l}§²3÷`€ãà™3+ž\<ÿBQÉäG90uÌWa/ÜH£—.ö68>©óÃ(zñ¢ z [´s‘M>äœÝ5OQJÒü奉.ÖC† êtÙ•Ý"UΖ¡ÛÚ™˜’ôéœÌx¥E¥ÊWçUrÄ`oãà^i¬oß@ÈæÔæ¯4»Ä¾w»ªô§…5 d×[T!aee ÐÛuêá@«^A~qU%[ ö ¦•™´†Ñ¾›^þã'éõŒÝP~ÙI$ô ifæfæÔš*ݹ“yefyµ²)©8ð³žåYwqîf—u;Ÿ§0ÏjCkÇv†TS}0l×ÁIO\QZPAUäH”m—jÝo¨µ0¿´¬R   ¤Š×RMM Ð,­E|©ˆ_YÆ(Þí®º¬j³ÿæÉc*h¡fõüÏØŒ¥_ýß® ä;í&Ù ÿÙuQö»F·©ÝÊÏo¹.¨-(ÌO¹ž/›”Lðr“®?Îîô,‡æ?xî–•¤ûÌñ£sï^† SAP;K‡BHzŠêC=S§NL#ëeAU½¿©RÄ@ï=zr@pÈ”!Œ7Wv-]'dÿsç0x—sƒ>멟dׯXú~?^ß³hxg:Øô=Ú¯{Ù¹#7’”fßKuðò™0i¬§ÙÛÄckÖFdTH3S_Ò»÷æ7f„‡SQ\DÂÅII¥o¯ŠŒýœ 3xªkO³ñÔÉ™A#PLÚÙÚ0)ì¼1£“Ìy›Q" ›Yu¶5â—¼ÉãÔ€‰­£½¦,§°L6L ªË9`bnngÏ4%x/^>/Õÿ¥OÂ)âl­«sŸås«ªDJ±­UÅáéÓé–ÖÖíh‚’ÂR~u[jÄ´tq±ioF敼̩†¶®Öíj*^¿æ¼»(†façl.z“-bv2äW3m üU™±‡rËžó¦JB7·³³±2¬~yÿU™¡¥#SR˜[!T6%¥—dâàfaRÍÎÌ,dë[whÏ0¬*.[*ØF|f¯¢@ IDAT¡;YS€fjkä K³9f ‚eJßf—LÅÔÖκCkKª 8ãÕÓ7‚…{KŒö¬ÚÛZ´ooéàdמ\ž]e¬ìª{Céüß<Ë… ZWe÷@HeDɽ[¹VƒÆLÑQ|xñ’}©•©ï¢ýK;\øfÍÕ¼ÿögNc–ôâ%E¹SVþ4¥¬½û@ï ã?éJy}uÏÒµ'²ù ƒZX6„Bª!Ñhÿ}WcȆ–¶¦n«±s2t¹“WX¬ø=B¥Ôˆ¿£!Òa&nžŸvÑÏ{ø8-²qçþÝ;ð^þ™T¬ê€!D²3õâèó#zlHn…ÿ B5M“Î_’V—¨zW Ý!Í7^JˆÅ nUˆZ~Qá[§ö}¼ÉD ²ìÉ‹R< uhàD›¬ßbpð€BmJ“Ž? „B!„Ú¤n!ŠB!„BïÁñB!„BHY8~@!„B) Ç!„B!eáø!„B!¤,? „B!„”…ã„B!„²pü€B!„RŽB!„BÊ¢¼÷‚¢7h@Ï.;èSµ•B!„BH¢¬ì7·I$5ï‚$öîÅà½,˜ô›·r¹<ß[thÇ ÓñKƒæÿ¸ìÚ¹%7ê-nþÙ–-£ÌH ÌÓäÓï£6OÑK‰Ü–:bvà¦cOz,Ñ|êõÂñB!„Îs\ø÷“M½ }û°Û_¼øsûö?HÎKã—’·þú¢yeIIÿØÅÅl¡JU/~¡ ¨ÿ‰‚êC‡y3 ÿ—5 6?ÇJ¯'›¼G ¤œ8/iƵРѫŸ?\ðê¯Ã7 {:ÎêE*çÔ_ØÄ{ó!6òò'Ác˜g¯OFX@þ/ë¾úî!é|^õܾoõ™²w¨f6ŽŽ`i\;ü`†\ÊÚ9¸®fÍ™ Û¹—Ô]&? „Bé<ÖÍs-ºNݹ@ÁJ´O—.ñ ÿïçèâ†æ¡ç÷}Šß÷5oÿùq椟îñªþ^ÐQQus —Uês—^õFCKûy{s÷Ú›.Ëâž<îU){'‡~—R_Qƒë~2¾¾`ÍùÁ÷ƒš'Óœ Ï*'™X;óîîÛ}·†[}:Ìz2W®dÕݽ‹—Ÿ’Ýøu+F023s4°L8~@!„Òy¼ôËÇÓa„çvãÓ ³ü·'òŽºLÛ³|¨‘ÜÛù±a[nþõmH>(f=ƒÖ®øäëõÓ#?;Z¢ ºÂy–*ª^*×ÁÉ~”ªù¥þX_Ø”eßç‹M+#~Éñô¿,â¿e¨=—îžkÿhÇ›„/ @ÏÈܺ­„#øoYRíÑ£ñ»R| ÜÈ@ÇKE±ß®ŒÉ…ž_F¬ Ìøëx€¡×·—vZUÜ\òÓs ,ŽB!„ZŽžÙ½«‹£ƒ5•Úø×°sŸ#Ígœ¯!ä_<ÿˆ°ñ˜0ÙLîýg»·\θu>Köò<ÛcÞ'ÁÎÎŽ% ª+œgu–‚êòã0¶q±2ªfåqkàóñÞgþñú`Ãñ³î^Ê‚K¼ ÎΘÐåß§€Óž)y[X!°<´‹¾¹òò0wé¥ÛB»©Q¼ÿ̨ÝR‚Û?‡l’ìÚ4š\#[ëP•yçÒ¥g )­+Mj?y߉åÝ ›þEDvÜl>ØF"‘¸°¨ìɳ̚)4Ç!„B-§kç¦&†7òø‚†K*ùœÔoÈàÞN|"{ý÷*Çv«>(C›t8sßȇ›M8\d2 @$+®®(¨¸:›Ã07g¼‡™Ñ)aÝ/Ìk?óÜ»o¨J ~>FòŽ6)"ï𘔠}G( ‘É$RíÑÃO÷üsjV{ñó¾ƒzÀºøíäŒvÐ}Áñõ¾œ?–->xSá>RÎ.07gÔäß¿ôbæA€×…Eõ%Cë½2jßxã¤ÍVÝøï•òÛÈØˆæÑ§K×Ξ¥e7¼€8~@!„j9övV‰IO<|ȸë˜Iž];é´ë5næÌ¾¹·N&äЩ__ÀG©5õ×<~–CóµÑöI4íÝ‹¯ì;xFÅ%@!„BÊú|¼·’'ö(_RµêäÕÔZ–]až ƒŒð9!„B!eáø!„B!¤,? „B!„”…ã„B!]Ô*Ρ¯O«N^M­eÙ›œ'ŽB!„BÊÂñB!„BHY8~@!„ÒË‹"®?È,ÌËM»u:ÌÏž 0jß[N ‡SÂá¼yy;fËh‡ƒÖw±»ðÝ4R©Sûm/¼"v´’K`drÚëô;Fšk;¯¦#ÛOŠŠ‰¹ý•'sì¯gc’åþ¶ ÷y'2ó3Óâwû;È} 4×I».&eäæ<‹;:ßÃTÅvñùq!„BZB»3j£¿ÞãèC¿WyÍYr˜œá5¥  ,áÐÏñœ£ç|ùÕáž÷˜ÆQzž4fW7¦|DÀJÏ—Ö|ÅRõkŠP‡­±¦Šd/:Œu;7¥ËÃù¯B|Ö_;+CCÊfk¢–Cò™qiYí+vü²¹IµÏ~3è¹z먯¨~‹7˜œÖ-’±âò±¹}b7¤8Î9¸­ã…iƒÒ$ÎÓÂÿ _–äµ9U…†qü€B!¤%=‡y3 ÿ—5 6?ÇJ¯'›¼G ¤œ`?8³oï3¸Ïwu^à¶Òó¤šÚw°5‘TвР51~Ðh7¹Syä Ãy®AèQ©zzz %€b7vë‘¢ïÆl¸+P»¡Cë1u¾Ãퟮ8nr©€Í’¥Oê8eLG§×˜Y0ùO²+«hé¯-†[м{$“R"xþkÄ_ß.l©Ê7ç/!„Bi‰9ƒÀb•äG…úŒôÛšø^‘X @¥êk%»™6v-#óÇ‚—ÿDrþ8xxDòf»ˆ³•Kc"C Öû·ªÁì‚C<;q&UôŸ·¨½‚ÇêŸM®.«ÜÈ¥«ƒ‘¡›«#‹Å`0™nEmEâú2÷qU<ŽB!„tÁÉ~”ú(£L‹övÎGö³(,,Ôrn­ÝßÁOX}QRÊ]8ÜÓ3èŒó²%ôA{S¸ÚK¯ Ì‡Ï Çþ|§ò¿oõóõ-Ž¿WûR|uï~P\ZêÉaÉë¥H$¹ò_$U­u< !„BHÛ¸XU³rÀyþ™´ùÕ™'8‘žñ~iâêÍtÒRÃ[K2KèuQŠýè°c«[Nz¯»ølû›èå![”¿ÊD«ô»Ï´ûs×Îæ‡ïéyõí{?ªè]@ø,<Ø'\¾Èû»‰L&¤ª pü€B!¤%lÀÜœðfF§„u¿0¯}@áß,?UYš“öä5[À*/0gš“ -, ÊÊÊ›;WzO[‹3}ÇÔ¾6=Ñ£p뵇C^.°®bvüÊ[³û?œŸ6Çw{ÂY±V3U–C¯Ö¶Û¢gÔ¾î–Ü1fòÒ39ûºWÝ¿\Te6›M3£ëˆ€ä÷Ë«%O¼GRá&? „BiÉ“Ä;ÜYãflÝËçõ ê „›÷Äð 𲓮þõ¬®dúÝ;ì…S¶üO˜d6ê‘uçn‰âyRIMD>R#%hÅAÅË©´§o–º¾‘MÒƒ»ìê^üåjÐVºÂãÕ€™, …"ß;«G§eülÒIÙ$stXl§ C÷=¬}Ë­g»¬È× VÆŠ‹„ýW. [_XhëÑà©¶SmÅ„É{JH$Óž¦*ù‰,ÈùãàýȈäÏÞDl©\éus¥ÿÞÝx´rHvAÁžE-ylºR.jÿŶ߂¤R·ðÁåˆþÊ®à²Ê\º:¥0\Y,ƒÉp+D²*Äõeî7D|•ÇñB!„ 8ÙRÚÒÄb1µ}Ï!Lâ,‘­uý0®“Œ:Új&~Y~84ï¥ ?váðXÃ.A—|W$Õv†*1÷ž Ž M¬„QïbY‡×,:I²‘ïºsü­.ñÕ½[&ï‹K[%~ua]h ‰D’›•D Úàpü€B!¤Œm\¬ŒªY¹BB¡Tž îp Ý—T‘P¨íÔZ?þ™¬™1$cgóÙ;‚^'•QìG‡[͈ØrÒ{ÝÅgÛßD/Ù’ÀÑvšÊÑï>wªÝ¥Ý; ˜uQ1—UÊ•M–^¾–3ÎÕ @ø,<Ø'\¾:AÈ?êšD&RÕFOxýÒU†·nøiï0mçB56‡`nÎp˜rïÞ_ryq¡žMí=qllm ´™c«gfØo¢I; ^vE‹Þ³'0Æí‰-^3aar¯Ù^·f÷+ž;Ç—ªíL•åÐkÓzúwÑIgb.…v3ô^“ôS€“å°o×Nè\[‚ ˆ÷2¼‡ÍfÓÌèú²$¿_^]™×? Ųwwó†ÚÎ!„j6Oïpg›±u/?ž×/¨7nÞ—¯ì^´x`ÜÏÏ}L¡\ y®í<[5 mP˜µcfÆOjôèî®Â×yÀ~³zÔ¯ÜÈd‰P(‰€\ÿn]“uÒ?à¤l’9*ì÷Ž|ö?ƒAÆÝ}Æö¸›^eì<Â×1óZN=ÕS·ÍZäq;û*¤4fÙf‘vóT“ðþáˆ>kæýx…¡/`eÞ8r૾¢9á ¿qÙuðŸU¶ö«øŸæíJ!ê+ª‰&wIÎW ö<Óô¼Ò ZŸe¡~ÆŽ~÷ ¬ñÂ!„P+ñùxïsšµ æÈö“|kn‡½M—»2ÖÐÖ¹›MMÞÓ¼* çn¶5yOóJ%u%‹ÛN!•UQX½Ž‘ɸLÚõÂßãÄ ƒ «+l¨á”·® 6ý§ÏéË¿›×#p~?ÁåˆØ‡‚f ê…ûçc¼þé*ªÃo¿±T}$"B!ÔÖ»Ó‡L4³}ÿyhút G† ¨t¦lB¾¤q×vïª(¬^Ç€Ös¢¹gW½ú‚ «+l¨á”t‡™sÿ±Þ}œ¨`Ú¡Ÿl¢™‚­@ºŠddmaFâ—ó$ÚN!„Ò˜8þ@1£¶3…ª"±@îÄ'2Õ€F%DÕ")EŸFQµHBÔ•›PÿVQX]nFdº-…T)æp …A…Õ6ÔpJŠ[ת±¹…‘´¢Œ#2bXe>Ñ,A] Ìñ¼þé*‚ÿ¶TgŽ\"„B­‡„+.ã~”Š…|Ù Gb_üŸ’rUV—›‘´¢à?W ÈVWØP#)é 1¯¼Hvµ];Ñ<ÁÖÏ_B!„B) Ç!„B!eáøé*£‹vïüz>?!„BH‡àøé*ÃÎc¾ù¼w;mçB5#Ë‹"®?È,ÌËM»u:ÌÏþ߯f¤v}7\Ï)<8R«Ù}$ ûX-½ØýðÓ^¿\í4Õ‡ $—ÀÈä´×é7vŒ4×vvMG¶Ÿy*ææ"Oè²òHÌÝS§kÿ"æõ•2pŸw"!3?3-~·¿Cí#òh®“v]LÊ(ÈÍywt¾‡ª7»Äë§‘®âÄÎëwW•£í<B¡fC»3j£¿ÞãèC¿WyÍYr˜œá5å„ñŒ{bzÿ¶óû8ŒØdC9õò«h‘AŸökŽ´Oï›[9>ÔíÜ”.ç¿ ñYí¬  )›-Ôvª*¡ þ̨Tþ1YùGV,?Vð^!ªßâ &§†u‹d¬¸|lnŸØ )ŽsnëxaÚà€4‰ó´ð?×%ymNU¡a<þ€tU ¯¬ ðm%>!„ÐÇ«ç0oä_³`óŽU‹¥‚¡÷ˆ`=û+jÄ€Mÿp´ßG¢èfÑŸ±Ba ÁMæfJ l-€ =*UOO¤PìÆî8{v¹'­ñ9éZ©síoï¿VÒp13 &?ãIveÕóô×4¯ÁIÇ¥”ðåÏøËbÈ`;•šÆãHW1ƒÎfí4ß>làöÚN!„jæ @.« ?*Ôç.½ê 7õüihÿ‰–³ûX“÷”H¦=M;TòYóÇÁû‘ÉŸ½‰ØR¹4&ÒëæJÿ½)ºñhåì‚‚<‹ZòØt¥\Ôþ‹m¿I¥náƒË?ü•] Àe•¹tu0Ja¸:²X,“)àVÔÞn—¸¾Ìý†Hµ;æãøé*Ñ›ûÅ™fUj;„B¨EœìGªœD‚TaÐñÐV3ñËòáy/%ù± ‡Çv :¾¤à» À¸"yZR̽gˆcC+aÔ»XÖá5‹N’€ldç»nÅÿGk£K@|uï–ÉûâÒV‰_]Xš@"‘äf%¨ü¸-? ]U65^ÛI „B-ÆØÆÅʨš•[ÄÅ“w5Ž&kf ÉØÙ|öÁ¤ ×IeûÑaÇV3"¶œô^wñÙö7ÑËC¶$´’Æô»Ïjwi÷Îf]TÌe•Ö>y¯ôòµœq®%ÂgáÁ>áòÕ BþQ×$2™ª6zÂë®2¹õüï{´B!ÔlØ€¹9Àaftʽ{;|ñË™†™ö›hÒ‚—]‘Æ¢÷ì Œq{¢C‹×LX˜Ük¶×­ÙýÊçÎñ¥j;Se9ôÀ´žþ]tÒ™˜K¡Ý ½×$ýàd9ìÛµ:×– ⽃ ïa³Ù43º¾ìÉï—WWæãõèã oÛÛ{˜ù?ÆÚÎ!„j6Oïpg›±u/?ž×/¨7nÞk;©„6(ÌÚ13ã'5úNtwWáë<`¿Y=ê Wnd²D(ŠD@®ÿ ·®É:épR6Éö{Ç >û‚Á ãî>c{ÜÎM¯2váë˜y-§žê‚‰©Ûf-ò¸ž&v øbTŽ£…*µã¤«XÇÇ[œ©DÛy „B͆s~e°Kͦã/¦prã÷¯_Y#öeþl'8Ó€èøÕ ífÚŠñ9g¿§Ï;Ô} e‚çò®eYŽåDŸ}R³l³H»yªIxÿpDŸ5ó~¼Âа2o9pŽU_Ñœð…߸ì:øÏ*[ ûUüOóv¥õUˆD£ÕÝ«ê«ûžizÞiñe?N5¾¸í»KEÚN!„Ò˜ÏÇ{Ÿ»Ð¬M0G¶Ÿä[s;ìm:_A°x°í”ÒÞ#“q™´ë…¿Ç‰ m»ÙÔä=Í«²pîf[“÷4¯T¢xž —”o¨á Â<ÓU¾¬·¹ØôŸ>§/ÿrDl^Àùý—#b š%¨ ð;¤«hGL›:¶]Ûy „B­Œ±;}ÈD3[ÅAã®íþû.ÐzN4÷ìªút G† ¨t¦l¢¾y6\R¾¡†ƒ&¯]fÎýÇz÷q¢‚i‡~²‰f ¶xüé*²‰µ=ƒTQ\\'‚"„úx´Àñе)T‰RA± •ñŸwL¦ÛRH•b— S hTBT-’RôiTU‹$„ây6\R¾¡†ƒ óèÌU©ÆæFÒŠ2ŽÈˆaiDT”qøD³u2Çðú¤«¤Uoóª´B!ÔúH¸â2nýAEï‚TZQP{þ¿T,äË~»‹øâÿT—¯ÔpI¹*K^»Ä¼ò"ÙÕü!„ÐÇ‹>vgÔÆInœ¸CûÏdµó[rx÷t+ë™Û7Ùü9³—³«WðUÇm[gØh;ÏVÿû褓ftNšÑ7û9@‡ñ¡nç¦tYö<0ć `È`èÒ-c•Bü™qiYÃAªßâ &§Fvë|ÛsóÜ>à8çà¶Ž×víì15Šþuø²Þª5Œã¤«jì"VYe¶ó@}LôhÆ4•¤í4úWÏaÞ È?¾fÁæ«JCï)à`evûÔÉ'l°,õÊí|g'mçùÑ!BJÕÓÓ)»±;Ξ]îÙºŽóЦÃ`‡ IDATºOcw{\IÃA3 &?ãIveÕóô×4¯ÁIÇ¥”ðåÏøËbÈ`;•šÆñÒU澇²"O/±×v¡v,Hט3,V9@~T¨ÏH¿­‰É[†ÿV @2ïÖͦœÅÒn–Cÿsýަxí¿Þ}A±@ÎïHÞlq¶riLdHÁzÿ wuãÐÊ!ÙMð<êÌq#A.«ÜÈ¥«ƒ‘¡›«#K¶'1˜L·¢ön½Äõeîã¨Ô8>ÿé*qéãë)ÆÙÕÚÎ!ôÁŽé2‚“ý(õßC§„LóÿܯKÉÿýš©Í¼Z?ÞïŸ?º¤$š‹ÕÜý.¾ O/çÇ.kØ%è@ø’‚ï‚ãŠtæiuJ1÷ž9EûåÝJÕHP|uï–ÉûâÒV‰_]Xš@"É„•øª¶Žã¤«*ížñHÛI „>.ر flãbeTÍÊ-ï®û4'òб/7Ç¥‹´Xk'­*Ö>’öMÑÝ4['7€7ûÑaÇV3"¶œô^wñÙö7ÑËC¶$p´›¨²ô»Ï °»¼gg!³á Ÿ…û„ËGBþQ×$2™ª6zÂó—®2õü:æÛ°Kp˜º0"&Ä[Õ» „Ðä:„t›Ã07g8ÌŒN¹wo‡/Ùpä¼ÐÂõ>Óׇ_ÂÁƒØY.8ÚÞùßWA"0Æí‰-^3aar¯Ù^·f÷+ž;Ç—ªÍ,Uaß«?ÓzÚ–è»§cþü¢›¡÷š»?8) *¬Îf³ift}Ù ’ß/¯®ÌWíú<þ€t•ÙmhÆ=;w0”s­Õ|¬BºJ®cAH'nTº¹•™”SÀáµ®;„i ÙÐÂ΄Ì-/©¨ÁU‡Ò ¹ŽEÍ9a¿„šìóñÞç.$4k3}†QY(›è››•…b´.(*[R>H¦Ш„¨Z$¥èÓ¨ ªIª«9Oí¢›[I+Ê8"#†¥QQÆáÍÔ ÷ÏÆxýCËW”Th;‰VDZ]–_{v\u!ÍëXÔ„ýÒe®¨TvJÊ» ù ò%å‚R±/{*™XÄ«\]Íyj—˜W^$»Z‚Ç®hž`kç/!„B!„”…ã„B!„²pü ‹Oû.ÞÖ³{Sï fõ¶†éëùnuµµU'¿ì! Òà‡«­õK!ôŽT@ïÕilP§¦Þ`KÍêmiÏŽïVW[[uòËŽÒ ~¸ÚZ¿„šåÀE×dæå¦Ý:ægO0í·0êî³7E¯3î Õ^Û9~$HÚo{á±£\#“Ó^§ßØ1R7tÖ²ý¤ß¢câz64pŸw"!3?3-~·¿Cí#òh®“v]LÊ(ÈÍywt¾‡©ªíªŸzÛ‘÷¿K³?¹‘ÐÔ æÔ¬ÞÖ¼ùíÊ»ÕÕÖVü²#„4Hƒ®¶Ö/¡æB»3jã$7NÜ¡ýg²Úù-9¼{º@‡¹?® ówsp´4mä‘o>ÕÓvžê°5Ö´ÂÚgÄuêvnJ—eÏC|¨† †Ü)V5ô1ÁŸ—–5¤ú-Þ`rjd·ÞÁ·=7ÏíŽsnëxmá`×ÎS£è_‡/ë­ZÃ8~P¤²º¬XP­ÊMÿHTŠ¡1E¯©ÕÛ²¹ÕÕÖV]Î,¯üŒÆ5aSsŸÔà‡«­õK­‘š{K u€=‡y3 ÿøš›w¬Zt( ½G ¤éÕÕïwŸÊäKÄ¥ÿÄ?vìhÕÜy|üôÚMîT~*J({I„•ª§§R(vcwœ=»Ü³uP¤uŸ:Çîöþ¸’†ƒfL~Æ“ìʪçé¯-,,h^ƒ=’ŽJ)á ÊŸÿñ—ÅÁv*5ã¸,™›6f”*‡¹œþoâ»*M¨Þ–µåU'¿ìÚÕÖÖBòº&‘É„TµPí”áÛ£ö7ëIÞ² õƒÊ7Ô„”–l±%Òà<›5¨æ©ÁMÜðb*¿‡¨ÙPÓö%…ZlOn©™§SÍÍ¡©Lw’ב 7qºµFK*l±­©š]¥š)5asÔas8ææ ‡™Ñ)÷îíð%Ó»ûOh„˜óêê­²#<›j€+½§­Á˜3}OdxíÿÖÔ`¢ë‰Ëv]Çí‰-^3aar¯Ù^·f÷+ž;Ç—ªíL•eß«?ÓzÚ–è»§cþü¢›¡÷š»?8) *¬Îf³ift}Ù ’ß/¯®ÌÇëš‘“MŸÁ–ú`èh-›P?¨|CMHIaÉ[" γYƒ é`žÜÄ /¦ò{ˆš 5m_R¨Åöä&,‘šyjp1ÕÜšêÁt'y jp7¡[k´¤òÁÛš ©ÙUª™R6G'‰w¸à8cëÞµ+¿ß;·7oÞKܦîÚ:Û³]F ïòúuNcóA xúf©ëƒ®f¸>X´¹RøGÆŒ1é×W Ü÷°Èd²D(ŠD@~ﬖ}râÔ)ƒ¦N4uÊgÇÒª¶Zy&WaPauÁƒÄÔA³yXÑ]ƒ¿Uqï~¡Jí“h´ºkÍ¿Z°ïൖçãF&é‘A*!ˆwê•o¨ )),ÙbK¤Áy6k°á«;yjp7¼˜jî`Ü^4åólŽÖÕÜF-V½¹?›ÊoŽæØtäcØŸâëÖ-©|°Å¶fÃ97­«T3%7Ççã½Ï]Hx÷ÒÆ{ÙŽM3†v±¤prïÿ±}ÅÆK¹ªû—ÂWpex¥ Ö.>\ùŸù & wÙÕ½øËÕuç)éužy2zíãÒ?–MZ~¹T‹¹5 sTØ— ¾6”Gë2eÇ®•ãzÛRدâ¬Yº?ùÝåìŸ2Œô(”ºK ú{¹ßO~®ö‚|\ŒÛOÝÞ׋Tšš%¶òë?ž%/±¸Æ§ß‚ùV¼Äâ·bP78ªÿ‚V¼ÄâšOú-\¨¡’ï‚ K*_]Í%Òà<›5(¿BZuòÊoâ†SÍLƒ;ƒÂêMø 4Gëjn£«ÞÜŸÍ&ô`º“¼Ž›cOV¾[k´¤¦>ÍQ]ƒÿ ›u“kH¦kç/^Öý.\•›ûÛáŸÚ½{ÿ±372*¤ -}ôçÿ~ùùÇ÷ü| òüƒBU¯âfŽ´Ÿ9׸ún•d¸]È<“ê»U¥âº`©Â«±L?ûή‰Ÿ–]£|õ†ƒ «Ën]qžê>)»pý½Û,¬Ç¿‡ïßó˱¿2øõÕ²î7}Ù„ŽUO_Hú.÷ïTõôE‘¤Y‚MPù÷ñEÊåIÊÒ®ž<º÷§Ý{?ÿ P(÷Öû§Ìc<©1íúNî<¨›˜vwþt²ƒ½˜të ›À 1ˆA bƒT2ØbLÜC'Òm À¸kí„|P1Þ-<»ê©T½á ÂêòÁ†[×fÎýÇx÷q¢‚i‡~²‰f ¶xþRcÈTF{™Ëcq¥3c¦Á-ä‹Mj'ª¥€A bƒÄ 1¨LPFáù!šE1Óg˜•Eb± ÕÜ*‹Äi]P ð^;d=º-…\)bs å«7TX]>ØpëŠóÔª±¹…‘´¢Œ#2bXe>Ñ,A] ÌùK8~@!„j9-0~@¨É”?àùK!„B!eáø!„B!¤,¼ÿRcŒl&†õîeO_‹->õ˜=Û‚÷OIͰ>sæXòþ))1ˆA bƒÄ 2A…÷·AHGàý—4ÆÔÅ»§Ð{uäèDÓž.² bƒÄ 1ˆA%ƒ Y\qýAfa^nÚ­Óa~ör_ÍÈ]–ßa•Yoe¤ÓYIO¾pBö—ìâ@r ŒLN{~cÇHsm§×tdûI‘§bn.ò€.+ÄÜ=uºö/b^_Y!÷y'2ó3Óâwû;Ô>"æ:i׍Œ‚ÜœgqGç{˜ªØ.^?Ý=}«Fd6·¸\J57µaå9UBº©-ƒ(Ï©âÕ1ˆA bƒÄ 2A™÷®O¥ý5õ˜¿Þãè£×«¼‚æ ¥ÇýŸ×”%`1#æîJWžÕ?«Û/¸¦•/A ÓYI.ÓŸË® 9/½vÊxÙ°‡ó_ÿÝ)è¬  )›-¬&:ˆþÙÚŸgµ¯6qÔgÿC€.+ÌemZ~¬à½BÔñá¯CS‡G2V\>¦·´ç†ǯ®Ç¸0mÎÑ4‰ó´ð?>èµ9µ¶¼2×OS5¬FT’UûØIeu™D5 ýwBý ¸¼2¿ÞM¨]ò]°FQI…ÁæX"’ææÙ¬AùÒª“W~7¼˜Êï!j6Ô´}©  îÉMX"5?qüÀ6ÇîÝ„Lƒ;ƒŽ| ›ãSÜbÝZ£%5õAhŽAƒÿ ›u“oHžÃ¼ÿËš›‚c¥×“MÞ#RNœ—z¯^×å5‡»ìVuÔTAèQ©zzz %€b7vë‘¢ïÆl¸+h¼ª® õ˜:×þö*ffÁäg<É®¬¢¥¿¶n@óì‘t|LJ‰àù¯}»|°¤44—÷áùK*pYòù¹4¿Qæàôdê•o¨ )),ÙbK¤Áy6kP!ÌSƒ›¸áÅT~Q³¡¦íK µØžÜ„%R3O .¦š›CS=˜î$¯#A nâ&tk–T>Øb[S!5»J5SjÂæ¨cÎ`°XåùQ¡>#ý¶&Ý7þÁ¦’Z×âºËÐÿ\¿£)^û¯w_dlóÇÁûÃ#’7ÛEœ­\R°Þ¿U €d<àYÔ™Çï=¥Ûþ‹m¿]?vìâÏ[7ú¹—UnäÒÕÁÈÐÍÕ‘Åb0˜L·¢öçqâú2÷qU<P /«ðþ Q‰øÙE÷oˆKD*ßPRRX²Å–HƒólÖ B:˜§7qË©ü¢fCMÛ—j±=¹ K¤fž\L57‡¦z0ÝI^G‚ÜÄMèÖ-©|°Å¶¦Bjv•j¦Ô„Í¡ÁÉ~T{‰UàÆy‚Ÿ?9[sU™RŒ÷ûç.鉿b5w¿‹oÂÓËù± ‡Çv :¾¤à» À¸"yZR̽gˆcC+aÔ»XÖá5‹N’€ldç»nÅÿGk£K@|uï–ÉûâÒV‰_]Xš@"‘äf%ðUm¯@!„j9ï_>á0ç7ÿÔ°þÃw¿0¶q±2ªfå²{þôpwÕƒÖß[Ï}Ôç^ÿ 9Ôѧ=œÂïºA±vl5#â»ÛÞëVz›½‰^²%£íô”£ß}ÍÏóù»—î}%aŽ û½ãŸýß/Ñ.pËרé[*ªn;7îaí¿º$2™Öžðùqf;eØö¨þýMT¨b=iè»*M¨Þ–µåU'¿ìÚÕÖÖc{ÜÎM¯2váë˜y-§žê‚‰©Ûf-ò¸ž&v øbTŽ£…*µç/©‚LÒ#ƒTBM«Ò„êmY[^uº³¼º“ ú(©Ù©¶L‹-0+ÔLtgoyßç‡Øx/Û±iÆÐ.–Nîý?¶¯Øx)WRWÇš@r˜ÒqöB†£5YXTuowÖñ‹‚ï¦ zgžŒ^;À¸ôe“–_.ÕfšM"wþ¥ã'óÖLôìÄа2oœß•XTSO-Z—);v­×Û–Â~`ÍÒýÉÜßRæü%?¨Àj”Wð§¢ëß>~ÌÓBõ¶†é×wÖH±luµµU'¿ì! Òà‡«­õKHƒ~?Ó, ?Çɾ5·6vøTzkSA_Ý`#³ñ›¬hqygâD W—¯¥æ<µË¦ÿô9}ù—#bózÎï'¸ûPÐ,A]€×?h˜i÷ŸN¶·7ÐNõ¶Æ´›Ó»ÕÕÖVü²#„4Hƒ®¶Ö/¡ÖÅØÝ|ØÄví À¸kí„úÁ:†½&ZöíJi´z£))?Oí2sî?Ö»L;ô“M4S°µÀã* ˜3ͤÜÂêê&ÝâKÍêm Å̈iFÈVW[[uòËŽÒ ~¸ÚZ¿„4¨Ž?PÌôfDe¡Xl¢onFTŠRuƒuÈzíÚSH\›K4\]¾–šóÔ.ª±¹…‘´¢Œ#2bXe>Ñ,A]€ÏŸÖ0 —÷–Ûx±fªÞÖH¸üw««­­:ùeGi?\m­_B­‹„+*•íŸï&ÔÖ‘ÖpÞÔ(U½±””Ÿ§v‰yåE²3yì"^3[ < !„B!¤,? „B!„”…㇖cí7ùÛÆzi;Ö¨KȳçÊ\u!M‘ëXÔ„ýB¨ÍÂñCËaô0Ó³#­ñ’€fï3ÓwT/ÀU‡Ò¹ŽEMØ/!M±¸(âúƒÌ¼ܴ[§ÃüìÉÐç«’rVKö—ýã0m'ÙÚéwc.ú£ËÁ'învœhH ¹F&§½N¿±c¤¹¶³k:²ý¤ÈS17y@—•Gbîž:]û1¯¯¬û¼ ™ù™iñ»ýj‘Gs´ëbRFAnγ¸£ó=LUl¯Ÿn9Ù‡w|ö»´¬BÛy´w×I#——®:„¦Èu,jÂ~ i}ìΨþz£ý^å4gÉar†×”ðòûCw¾Òvz Š÷:úµì•ÓdWË%'m‡Åggu;7¥ËÃù¯B|Ö_;+CCÊf µªJècƒ?3*-“‹äY±üXÁ{…¨~‹7˜œÖ-’±âò±¹}b7¤8Î9¸­ã…iƒÒ$ÎÓÂÿ _–äµ9U…†ñøCË•—¼Î,«¬ïI€è5Âò¢rÙú’TV¼-âòqÕ!„Ô$×±¨ »t¤=‡y3 ÿøš›w¬Zt( ½G Äw5MŸnZu÷jž¨|ÆM/2°v‚ ô¨T===@±»ãìÙåž­ë€"­ÇÔ¹ö·÷_kä3 &?ãIveÕóô×4¯ÁIÇ¥”ðåÏøËbÈ`;•šÆñÒUæ>áYÇN/±·Ûîg­™ÔŠ0"„tƒ\Ç‚N0g0X¬r€ü¨PŸ‘~[ÀuÅ̼ܗé/šÝ/´Qÿ÷ñ¹—ÚØYJ*Ë!çƒ÷‡G$o¶‹8[¹4&2¤`½ÿ†»ºñhåì‚‚<‹:óX,µÿbÛo×»øóÖ~.†Àe•¹tu02tsud±X &SÀ­ɪ×—¹;XªÀ!.ÒUâ²ÔëL²« 23íÖu^‘¸Ñ:!Ô ¹Ž!Cp²ÉN"ánóñÚ§z&nA¿Dîü"Îo®v“kíHÞþôþ>´Šèü¿s váðXÃ.A—|W¤í‡Ô©ÆÜ{f€864±F½‹e^³è$ÈFv¾ëVÌñ´6ºÄW÷n™¼/.m•øÕ…u¡)$InV_ÕÖqü€tUeêžµçâü±ðwífƒú(Èu,éc+£jVn—]Ï–ÅòŽÄ<^г+ŽšN¯û· %üÆ:ðSeN©ì9ÏûÑaÇV3"¶œô^wñÙö7ÑËC¶$p´œ©’ô»Ïjwi÷Îf]TÌeýûÀ½ÒË×rƹ:”Ÿ…û„ËW'ùG]“ÈdBªÚè Ï_BºÊÔcU̺°Kmçúˆ`Ç‚t ›Ã07g8ÌŒN¹wo‡/ÙaÊÁ3ÿ׫¶ÄûßõPÐLGNGOÌ9ÉýwðŒq{¢C‹×LX˜Ük¶×­ÙýÊçÎñ¥j7Oå9ôÀ´žþ]tÒ™˜K¡Ý ½×$ýàd9ìÛµ:×– ⽃ ïa³Ù43º¾ìÉï—WWæ«vý@ºŠjî>´{»{­ëZ&„nÃŽéš'‰w¸³ÆÍغ—ÏëÔ„ 7ï‰Yý̆M›6üì«»l³^ÁþîÎ>Õvž­b"³¹ïÅØ×WºÂãÕ€™, …"ëÿ­k²Núœ”M2G…ýÞñ‚Ïþ‡`0ȸ»ÏØ·sÓ«ŒGø:f^Ë©§ºàAbê¶Y‹ï}îBB³6Ái3Ñ·æNXiñ ëÉŸJï„•¦óë‚é|eK6¬cd4KP(Ü??#àõHWØ ö‰»±¶ó@!„Zcw³!Ÿ›Ú€q×Ú ù ò% Ö10èñ9ó«žúóT˜§v™9÷ëÝlj ¦úÉ&š)ØZàñ¤«È4 ;S2·¼¤Ï4@!ôñhã3j;S¢ªH"6¡2L‰ª"‰@ZH•-Ùh°™L·¥*Å.¡æ<æ©]Tcs #iEGdİ4"*Ê8|¢Y‚º@™ãxýÒURAY¾nÉC!„Z W\&»\øÝ„|Pù’ëH¥"ÌSažÚ%æ•É®–à±k'š'ØZàùK!„B!eáø!„B!¤,? ]e4`Ñî_²Ñv!„B¨Ž®2ì<æ‹Ï{·Óv!„P3²¸(âúƒÌ¼ܴ[§ÃüìÉ>ßué~vQ~~züÿæõÆGªÅÆak–Ïi¹¿%£ä™œö:ýÆŽ‘æÚίéÈö“+ìÔ6 IDAT~‹Ž‰_èÙPÐÀ}Þ‰„ÌüÌ´øÝþµÈ£¹NÚu1)£ 7çYÜÑù¦ª¶«~ê5 Nì¼~ƒdi;„B¨ÙÐÇîŒÚ8Éwhÿ™¬v~Kïžnà0ûÀfÛßgz8wêóE‚ë·_ÎÔvž­ZiáŽÁwÊþ>}‘Ì®|Ƈº›ÒeÙóÀ*€!ƒ¡K·ŒU }LðgÆ¥e ©~‹7˜œÙ­wðmÏÍsû€ãœƒÛ:^[8ص³ÇÔ(ú×áËz«Ö0Ž®ªá•¾­Ä›·"„úxõæÍ€üãklÞ±jÑ¡T0ô1Bë7´Ï½¨ß^p²¤-Ãì§G×û a¤„šn±U,d ÆÚ»þóW.¡G¥êéé”ŠÝØgÏ.÷l]Çyhݧα»½?®¤á ™“Ÿñ$»²êyúk š×`¤ã‡RJø‚òç¿Füe1d°JMãøé*fÐÙ‚×7—»i;„B¨Ù˜3,V9@~T¨ÏH¿­‰À`2%Ôî_ý𔑗võ—©®­êÙb:Lßü³rÜ‘2!@ÎïHÞlq¶riLdHÁzÿ w[ÓmãIvÓƒ<:óDÜHË*7réê`dèæêÈb±L¦€[Q{»]âú2÷q TjÇHW‰ÞÜÿ+.1«RÛy „B-‚àd?J}”Q&!‘H†ƒûŠvéÙcðÿÝ÷Øýý4kmçöQ0ü´ý€¼¢¿_@~ìÂážžAgœ—-¡ Ü›¢cÏœh„¹÷Ì)âØ_îV6_Ý»…—–zrXòºC)$I®€DÀ©ø¨>? ]U65heŒjb„B¨Õ2¶qqv±ýÿöî3*г ðݾ°ô"½+*M@Š‚€–ˆ%ö»F±G¿D»11˜¨{o±Å. ADŠHUÞûR·ï~?Í" À¢¹ÏáÇÎwÞ{‡ãÁ¹;M$‰NIªf5<8r9ÃÎÞRÚ¥} æÃTŠC**šɺ#¶t¾·õœê÷7Sâ¯û»}>l¡Z,˜¤sûôíâ6ƒÀI94Ó½Ÿa_Ëáë‚ E"QËW]ˆn°@=•üðíׯì¢'í:B¡.SÃd¨¨(èͺ³ËƒXS]-x{ˆÇçó¥VàDÞ|?9Š%^Pýû…¹¥|—Æ ˜oÿh¾ãæÒ… <>›ëÄt8ªjLÝz!ê¯Ë7¾1“qÛµ{’Ä ÄÍkjjè ŠTñÁ{ÆÅ»ÿü©;€P¡jY»¹ªD3¤]B!Ôe’"×Í=cûÞ¦°F‡éÖÀ Ãc“"žm›µÐ2âd–ìàžìI’v_-ESµºiÍK5¡ë}î46 À”Häs8.ˆï\ÕÓ£eŸ?ùœø£ªÏæKÆÁâ@bPvldâŽ9ßÚFJãLúƧ6æèû'-> ûÔSU£v„ø• B¡/óúڙƂM3Fûù‘™yan\s¦Ž.ó7ýãxœ¿š (îâÂUWª¥]ççd%oÝÿæÆbvc#dŸÈ½p5cvÅåU[¸R«®›åZú½q@`ô:-rMFØo‹DmoÔ^¿„z*†³ß¾=ÿ¡%í:B¡.T¾g¶û@c-}ýþ._ÿp+À~yÙÏÇÞXÛ¨ýDÿ»…¼»Ô¼—þj`.+9¨âõvmûƒoÉ*ûþÚ² d´ŒÚè«“AF³ùCkÙ%nþ1Ù?–à^ÚŒ¹ÿþš]ðòôÛþ†}]Wß®°h8LÛ¸t¬-Ôí§ˆ?tQð#TÝýéßç$[b¿¸¼b¤£‰¶¾¹çÜ?ã:zï8ö¨§¢›xN<ÊRQÚu „BŸ9su·ñ*Ú4ÉA†™Ú›µí¾E“±¯ioFª¢š¾ž²(Šªâ­e—¸ùÇd—#Ç‘n67tè¢àç‚@§¿íw–/™´/ð’«Aè-¢œ†®2¡¶´´–×ö`„Bè31nŒ[Ppx—¦ +ДD Å\–PB+GSy½¶ýÁ·ˆ$%m ¡ŽSS'"RhtŠˆËâ ÉT:¸,._$9»ÄÍ?&»4P*j²ÂÚJ&WVY]VT[ÉluI°'øïó½ï@=•°¡,¿AÚE „BŸ~§â_—¤¼ ¶XÛþà[B³PÐü‘ÇiËÇã6ñþµ¹D-6ÿ˜ìÒÀk¬.ß-ÑXÓü¡k‚Ÿ ¼~ !„B!Ô^Ø? „B!„Ú ûÔSѬ¾]´ö;;5i×B!„ÞÂþõT4£‘ÃÇŒ3‘—v!„PRüí±ÐØWÅùyiþÚì­KÐ^Ê,g¶ø9î+í*?s#õyçí$;´ñ›%G O9—–“þ`×piW÷ñˆºN]¸¶tà‡‚4óEgÃ_¼J Û3V¯ùyô>n>É,ÊËM 9ºØ¶£[Ø? žª!l‘ߌ)w ¥]B!ÔeGýzþ§ ¦Ìƒ^ÊRò^qxÏ´^PvvŠ™µ™øÇ~Åíª¤Ädi×ùy£ÿÅXùFêJ»è•~Líµƒ”ÁpÌ\Ó ‰ýV¥N™íNQVîOŠíÅ‘3¿bTT~8Hñöó—»8ÜÌzfÄÀ- m@Aà“ûKûôµ|^ñ»C«¬;–ûÔS Y•UeMøþi„B_.+W7e(8½aÉ–]ë¾=˜2nžƒÉ‚ÆÊb±Åñ íBvÍ–vŸ5š‚™eÝ£¿š9ºøœÿ H}T"‘ˆD¡H$Š€¬3j×Õ««~ì;ܤƒn1yNÄŸ!å*¨©6e&e×7¤¦ç¨©©ÐímŸœ>˜PÞÄ®N=yìžÚg¥ÆþõT £¯ž»÷p‚¡´ë@!„ºŒŠ²2@UU5@Áù¹îý·G¾]Ks÷[D;±÷n“´Êû2(Qäyýùf¿Æ8{l½p¬, ÷ïÀ§CÅmÑ9vµ~åå3³‹6ŽõbK»Ò èL›9(õü¥$^ÁºªjYãþz²2¦}ô«ªª”UUÙuµ\ñzQè*óÑEJŽï@=¯ìi|´|1þÍD!ôß bf?Kl5Ý7çœcš´ úR€ £Ø›—¼yèKú@ƒïM\'?,¸¶tè5™~ÓZQ´mú”i¿¤®cTÜfMä]›U>myw÷nýz_HÚ:^FðsB‹©øìkáùÔS±žlÞ±~mD™´ë@!„ºCÓØÈXKÔ¼Hvõ–yëNTkúˆ@$`><ÝÐÀT>.ŽÌ–ïÓȺ#¶t¾·õœê÷7Sâ¯û»)I»Ðv£Z,˜¤sûôíâ6ƒÀI94Ó½Ÿa_Ëáë‚ E"QËW]ˆnðüB!„”Ô0™**Ê9 7ëBÂf‹àEÚ³‚\\˜á‡ñÖ‡OÆä5´<^‘PÊ£¿0ûåJßj燭}4ß1~qڟïòZ›¤GÑਪ¡¹õÂÔæe³(ãËSP$×^Êû÷æ555tE*Þû3V$¹8ØK˜°@!„’’¤ÈÇusFÏØ¾·)¬Ñaº5pÂÆ4ÂêØ;ôJ܇O^útœºÔc÷Yr©YôÚÎúuÁ©PÃ^ïs§±Q¦D"ŸÃáp¹@|窞-ûÜøÉçÄU}6_2ö8ƒ°c#wÌùÖ6âPÏ`Ò7>µ1Gß?iñaØ? „BI óúڙƂM3Fûù‘™yan\s¦ùHŽbkm‘™–Ê•n}_öýõÙ:;úïYE–Ö=Z“É€ÆFÈ >‘{ájÆìŠË«¶üg~Ù¹‡–~o½N‹\“öÛ¢€QÛµ@ Óß>«jù’Iû/uv‰!„B¨Ù¸1nAÁá]šBÍÛp¢‡àѦ‚gÃÉ^‚G› R›>&˜ÚÔÆœ2ZFfš‚üäü5#3-A~r~¿Ó²· J—†Ã´vM·_+°œ²Èž}ûøµv—{‰ÿ>ßëðþi„B¡/ Ã\Íu¼² ýUÅ>.ØæœTE5}=e9"PUÅ:1{Ë t)9Žt³1 €¼¡ƒøC?xþ!„B¨ûtÃù²UYꋹ<9ªŠÔsÙ ²…mÌI¤Ðè—Å’©t pY\¾¨Ó²· J…¡¢&+¬­dre•ÕeEµ•Ì&Q—{‚öœÀûB!„¾(ü:nE¼ùðqÁ¶æò8MâÛ½yÜ&Þ‡F~bPºxÕ%â»%kš?tMðs×/!„B!„Ú û„B!„P{aÿ€B!„j/ìB!„¤Fcáµ²Ã#:c&ç=Ù!Ëõ?8Dsþ=fî¡‘Tñ’â´s·ç«¿^Ùoý£ÌYßgÇß‘/‹òòRïœeÖ¥@"(Ùù‡æÿð0Zïq·žf—¤‡_dM ŒÛu÷ÙËâ²Â‚Œˆ+\”º·$‚ªÓ†‹/ ^¥†^4@®õ:?¹I‰$Ð^Ê,g¶ø9î ï°ô|TJaINfÌ¥Í>ÚQö!„Bÿ ŠÔ3½‰ÿjÃÂ⺺ɊWªª÷ ô‰´çî1_îÒ§ïÀY÷vþ:G§‹Ê1šqàzÌ“mzÅ…mÔ›`‹Ö•Y¶F½m¾ ïóãwãT ßì¾[]Œ4õûúœ¥­Y5V¹;K’õóaïôïÝÌúîå-?¹ÖšØZŸHb"IÊÎN1³6ÿد¸]•”˜ † w¯¡œkªgê´2mø‘ï½HŸ^ö!„B= Éð«ßnÅæ”ädÆœ_ïÒ|ªáåãYfIÉËØ ïÝ_Ÿ5 êÜü$«8/;îWŸÖ¿›Ú0/“°Íi®Öâ@YXèKç¡Î$†ëÐCÃy@ì>èééÀ„ò&veüñm›æ½~5ʘ=‰Ùétê¤ÇwV¥Ü;ïï;iS4³t›˜ó§^0ÙœÊ'[]u§]¨€ºª*«®#²ëê9uÕUœn, †|5úʼnß#Jëk_]ýó’pähóÖêüD’I$h¬,+Q¿Ð.d÷Ñl dÜݹçâ«&>¯":,VhbÒëÓKÂþ!„B¨gQœ¸sÕã%öFæÃ~*™zl½€è´~¯{ì’Á&¦^¿ÕNÿ}¹­xä¤]Ø>Yæ`ØÛfú±tþg%9yYG‡HnÔtßœsgÓÞFgýŬ)JÝ«¹wÂOѼַl7ìB!„z …Âç7ŸLàóx älüùOb\\lÔµ¶oF’ÉoF¶ÁÒËÃà«ùe…O7°õòPQlX˜ŽëPõ>C‡²BCóD"ñ{ëÎÏÔÐÐw¼JÀo>Ì·/^}”Ëê¤Ýl7‘H$xtúHR5«±àÁ‘Ëvö–ržSG½8³?2#//åN`PãŒ)ƒ»±$›C&“ëƒfÚýô”B¡p9œVêìŠDBvõ–yëNA‹PíéÉJÊ:ýæÄL8{x^¿„B!ôÅáñù$Ró}®$2™ÏãhOÛº´a«›£½ÓˆÝ ¯Gòù‚7#‰¤Öxy5n¨«¡¡«¡9õ¢™Ç0¢Bþ1s›èã®*þƺ¦ºš¦ Øü]>]WW¹¨¨¤yESŸÉ\ :éò¥PèÿÕì©îF¯ŸüTS]-½YÍçó¨TšˆÏŠ#€ÞæóYRui1ISS^¼ ©¥U\TÔJŸHb"‰%5àâ Ïn^R´;u°&ˆxÌŒ»*==máÓaÿ€B!Ô£d§¦êxŽ·U¥Ëè ÿÊ™—šZ @&SòrD]Ó~ÆPFM#cE òs²õÝG[ihô³q…—|ëSjxxªÇ>Ía|L’³§«øâ|ÎÃØ!k¾5 {/ÉŽ~øtМåvš²²½—ÎwŠ ¾×|3±éÂCLhã>íOÖwqà™?þ¸ºk|󣡨1Ïœf-´T‘‘Õ¶`¢Ñ“è$€êôÔÊA¾ãõèD’‚ù„Qi©éÝX’èñí;æsükÈ)û.™H¾u3µ•:?‘ÄDKÓ±w蕘üz‘o:9`ûüJ$ 2Œ}†öËÉÉýä’°@!„’.Ú¤S¯ŸÙÿp•10/þo]†û‘„œôGÛ ‚ü!È¿¸ã¸ò椬ԛ«HN_]83ôâ<]¨¸°u¿pþµÄˆ=Þ­m5…‚‡‡u\ì³æ¥ú˜˜¯Aâû˜aaªŒÇ¡QÍ_åCѱ%«’ÏH‹>0$nÙŠ³eÍ+ª2“ò™ÕéI9ð #ðÜ÷ŠÉ,OÛé ;õ,“Yž¿o˜8^ù"!»ª291ûu¢‚£Ëü‹|Çe¥>ÜÕ/tá†+ÕûÛâ3Škoge%þå[²é»ãùÝYRãõõKÙüúøEÂÍÕô?gÿ–(l­ÎO$1‘Ä’(¶Ö™i©Ü7[ߨ¶1Ëçܳâ²ìäà9ìÝ«_|zI@hy²gù’Iû/u¬!„BH’qcÜ‚‚Ã¥]B’Iü÷ù^€çB!„Bí…ýB!„B¨½°@!„Bµö!„B¡öÂþ!„B!Ô^Ø? „B!„ڋܽéz ›?ÂJæõ{ù8™WGÕûz{X¨ÐD¬šÜØè”êwßÖ§é±ÐŽyñf|]+³Êh öd©#+dÇ=ˆJ,çµ–H"IÙ Š}}œ ÕåÈ"N}qòÓ;1%ìNØ}„B!„>oÝÜ?3úìõ˜š– W;FÖÝã—™U³1_;˜çÜ}ÞØþ ɽ]ÝŒª"ÎÝ«¢:L1 ät\™Hb"‰$fW²lX}ýJ›¨Øßw¦UŸç%ÉØ@ „B¡ÿ¼Žö½†Íw¬¿|#¶Zœè5l¾cãýTc;çñƒ;iu¢6gzKŽA+IO«b Ê êû+)4AA¨çÀ¾²„ÆF>…ŸÐêæš½M˜IÇJ¹Ð˜‘š>ÈÝD-®¬¢ÕÑôÞNÓ†éqSþ9U&l5;ÅÈrx ¹\‡Ít`B!„ú,mé¬óJfýˆÁ—ÿ Q0åk+ƒôǹ­6Š“§‰x¬º‚ʰ¤*TDžм’®¬Æ`—²€ÚßÍY£8ôÔõ*¡¢é¨É½[ÍL—•‡¦~/ÇQ¦ Q± ² € ‰‰dUÔétè¥H†2.HÎÞðìöc—‘_ë ^åãëá¯xð;B!„âry Yzc^Ø€z†,Ãæ¶9¬³ú‡ÚÔ§¯ª¸•e¥"meä6HVuñï8"¨Ê}¼F ²Ì½•P$]c‹þF} •“'3@A]½)çqKPͬýÀ×ÿd2Y(’½t5¨tA€D& T?\§Â-Éoñ»ùwvº©›£jö?2Ijý<½¬Ê.Æ—à)„B}²¼‚RK‹Þ™ùÕ5­ÝÙ‰ÈËË´î—_PÚæÈÎêD"Ñ›Db«Ou°šÛíºô—fêªuT·‘£ ëS_ÞŽ*,k§ID¡PØŽÌŸ@$rsnÊ Z‘Ak‰€ÃÌzÁl±½¤ìT]sfòÒj@]j†¯™v|Ik÷_#„Bµ[ú‹Üþý 9XÐhiׂÐ[\.¯ °<%-»Í‘îZ´¢„룈$¢PØÚWõò&Þî2Ï‚SÊ›§"um,› KἓG(üp¢×XM D€ ²rŒ¦ú†V‰ÑTyÅùuüV³‰$‘Hø¶#"‘H­€B!Ôn0%5;%µí£4„z¦Ž¾ÿ¡¡¶N^ßX…ÁPî;d€õMœ¦¬*K&†:¼ªòÖžžÄÐt{›éÉ’I$†fSµÊÒ :.hjà¼7´Y+§o¢ÊUê3ØÒ*q:±’¬l+[ •ªÔÛ¼1/«²•D båê;Üåk÷×µKÌÎfV²z™šÊ‘ šš±‰ZMeu~G!„B}©:zþ¡)52ÅÄÛçkfRXZ–™Åë8UȨE>^mɳ;QE­mÍË ×ñô³˜Aâ×Wf<ˆLn#(&ãüLÞŒzyûÔíW¬´è”ÞÞÞs­™ñw’³-´^?3Iˇº"„B!„¾ïõ½~ !„B!ôßÕ)Ï_*pôFg̃B!„êÑðüB!„B¨½>²X¾dRçÖÑE‰>—:B¨{|µ`Ü6;BµÓä¸î£wÏ? „B!„Ú û„B!„P{u^ÿ@49£»´@E¿Ó&D!ÔÅz¹¬9–ð"'+-îÞ?'•×qEçQEÅÅQ?˜psš‘ïŽ+I/œYï®I½%w‹[z¾Å¡«w!„z ¡ë.D=Ï/ÍËI =½ÆYè&ãvߌÊ,ÌJ>¿ÑS‹ÔÁ`ÔIýÅꎦ¡°s&C!ÔÈ.ë¬ñÒÈ9¿ý—ë%£6^ãD€^CWí ºï?ÅoksB¿ÇÌ2*¼ðGh“ýŠã{§h4¯>;±ª™PvïBõ×G×ÐÈ9½éç¿‹ ÇøÛ0„„~kΜk\xöç=÷íמÝ?C:ì9kºŽ‰ÐIÓuVÿ ¬>VõÏEÁ;15§e'$ä”äç¦Ü=ô%lü“™å¿ŽùËÝŒ’¬ç—™QÞ€>ù“Y~ka¯Î©ê]–ŠÓjõ<ËÉÔñžB·º¥;÷–¼¨9/?ùϳ¼’ÜWñA»'ö¡¾­ÓÛiCPzqNú­5éÝW'BumcõúÜ´‹[ŽÚ|ê €Š¹™ÈöwXwxíïɼ÷‡÷ùæ¯çÙ¯žì£&^î?fl_B¡5;øîÇs%´!cG4¯U½Š‰yòèÞµË?«ìÎ]B!éÑ6îUŸ›rv÷ƃ?‹P±°Ðó±úb÷¯Ú¼ÿÊ çŠé._VkÐrc³xÿâ…W2ÒŽMq]x3ëåÍÅ& îºúBdraIVzÌõÀ5î:>¢'õþ£—ïFúÇö¿×y¼3›ÍQP`|̬‚Â+œ&QËÝsÛùÇéæœÞ²ãR¡ñä€C+_ŸW3ϧòÚ•g¯~žÝ{f† ;˜ÄâL6ËË•éCd´dé^ÛÏûûÊG¬Ÿ:ovÿù‡–öy]çøïæ’ÞLæk9¯YæCéÖ:B¨䟚åää¹-(ZÜûkk 7pœÓìc)ì&š;Q§Ëê»2ttt@TTkõ[ÄíªEEºººâ5$ÏíQQÑñi¯‚VÙÉvã!„åœlã0ä§Ç@Õör52™õ «« ¢¢Z«}±÷Öªèééu ².ƒô*9Ú_mZ¬]R«<Äs,ÁeãÉ #”ã·ÍûöÇñòÖýå»ò" F‹Ó2òÎûãÒ^äº:ÛÄ=K/-­êàÌD:L‰A ²DB¡±­ÔœÜûS`8!ªN8Ñ0—D­¾±Óï—DzC–: ×ÑQ†ÒOÙ£]¨/ÓTèß-o=ˆ[;E¨¾zùâ? íøM^^ƒí¿§ÔÞܺpÛ?2Ó8z©«+A^7Ö‰B݃®ï9oõŠùãj«cvÜhh}¨0êÂþûJ6¬Ð«ÉâJ¡@HSTS‘>€F¥Bå½­ ”€$o1e½ŸÛÚõ“ÎMÐ '×|†Ïå >m_1öyT0Bès”Ëÿ×ÕH@6_tí»Ô²¸¿þñðÉ›éu" £Þ(Û9'¬Å2—Ç"‰<¿ÿuèõÍu.—¬ìÈ›Íw<ÜdÚÎu›nh ð¶xó C2ž×E}H㦠-)üxÉýÙbÝ?ØPKb®nÝpðèõ´ZQóŸJ2ëÚLà ИwWhP"îÝ+.èü4áGÝþ'bç†îš7ëÏx‰MYwž¼¹¸xuºå:¤S[öm¾²Ùœ—™ù‘ÑÏß™µåŸ/ˆŒ~þÞˆvá'8ç'¼áp8r2€®ã[ÅÜø‡ñ-Ö“Hdàr¹â~‚L&ÔÕÕß›x_à¥Ó!\. :hµËÖØæ³úJ)Ý:B¨ÓÙO›?€Qqiö•!í®æºfçÒ¬Ð_×}Æ€ââb hij”‚¶Ž6@~QÝ70é7¯Äí.“N”‘HàµøÿïÆ‘ .Û„êìp½üðvtœ¾Ø†Q~a†Ý’ûoÿ¨AKK tttò ;”|³-ïÅùÖkš »!àç¯~\ë{rêEIÈÅÅ“­ÃµŠªMk|çfå>|%·=äãd?‹gÂä‘Ë7¿0%ŒXéçF;=¡o|5€¢Ë¬ÕóÍ´'(|žÄ„òŠrý‘+~å̳eÒUõ´&+!®&ÚyyX6±ìæý0Aö’ßäÿ#•n!ÔéTTTJTíg-é-4$‰¤{-Ñ›hÒ— h=qɇ´›' ˆCf­åJ³ÜsGŸÅ@úÍ›Y~‹íÞ@ŒT=M‡ûdßÝr¶Lj>ÝwмÍ+±ª£¼P{;ö•Tw!„º‹ªŠ*@±ªÃÜå¯ÿ¨&ˆºq-såòeþÄÇJ¾Óu9Ñ7Ë¡¬ÝÁ¹’)~}*dJÅ…ë‘/«/¨+/ÿ÷Mk]¨ËúvÈÆÛe¶ÍžýÓOäú¼‡û·î ˆ¯_"¨ÚÏÛ4J©)ëÆkàÒ/ç p7ؽt7ÜÿcDW•ÔJßOÙDÞ6멱4ViÒÍ€¿cY`&id±TëD¡NGÐòXæïÑ(=&ReüF_ñ³-”ú;×]xq"¼@˜þ$ªÒÆñ´ùú$AJÀÜJ¿¬œ±ÎžW»oÞwçJàøêúl[KÓîÝ{;=ÒâB`"]ª×ƒûwïi‘å«“ÇE![ú<ò#1Ðí­Z Е*|] _îÞ7ÀËò“Y¥99‚¡–={ZÝ’Â|Í ÷!„Bh‘|Ö¦öáP2©ˆ¦£”X‘—•_Qª—F"‘H”H"ðQbCQ>go©ß³·Íê©‚•çò=iK"“EFû¼ÀgïéRÂd t8ƒ @`ÌÇH„‘eëÂÁÆ=c,£fcž(“ÍB@*“G<ý>€q•åÉ…à‹@pØêðÓô˜U‰E8íŠÒØu×]7óÇGy$U=I–Lö!´Bdù×çÏ|È¿··¡m8#7)Vfçèu:,êèr„D$Éq!’+•bI’ ãNäxƒ(‚ DB BÝâYþ0Û¬(–$É‚‚‚ììlŠZ8ºÝ¹s猟dÆÊ’™HÄ­['êkðÁq“³³L`tt:+w`ƒ šã¬««[x ôó`Aˆ •›t,&ä›êÒÌ~.ØÊÒû‰2Þà` Ÿ”̉W2T¦Œ(£û‰¸J˜ £½É=3"a£tŒBUÑúruØiwtö{üQ€eY‚ wÇn7e X–K$‘_Øa闯ϳ!¯ÏäÏ;‚$ ·™f‡àñü-¢izdd¤··—e¬Y˜­šÍf‰DÒÜÜ/0ñxP{¡¶}C³R8Žƒ© •) £Ì¬‘ÁN†¹3r0.†&Ôσq²·6 ƳDcÙú‰Vƒ”>Ó~:.Y5sl™2¢Œî'þÕB(ÍÍ c8:жÎFjŒ†Hÿž¶á™ÙéHD""‘( '’(æoŠñ;,- AIUÆÒò’ï~ïwì“!¸Ü´ÞéhŽÌ Áüs$‹ËÊÊÌfs__ßÎÌ¡Óéúúú aã Äšì,!I¤9å›*²'fD&"ªµJÆï@8–¨4r¡P–]¯Yá% DJµ„ e¹¥kò1— §¶ŸÍç‘GIó(*Q™2"ì'B(íPÅE"s#^ïè¨,'O)$Zc612H(‘—4·¤(G)’=Ñ`¬Y[އB¡P„æ8: …B&æ/¯p8ÜÕÕ¥×ëg tæ"‘( &Til´³×"/)ÝT#"è gÀ✜6¦Të·– ØÐØP§e 2ÜoÓ”¯Û’tX†Frò’ÔøûÙ«(][m¦&ì±ubÞ\—Ú~"„BŃR_Yw àswììaܽ]²ÒâÕ".ä±uúâOäõù SaeTHD#}ÓÁÞ²‡Ãs–¼.ßÝ]À…Ü=-úàh›û„f| ¥~`ò‡ÝîåêÐh÷®Q€¾†ýCû÷NöÓeÙï²ÌÊ:Þ»§ijÛÛ³»yEû‰B!´h‘¡};‡xÒ£cÖ¶FëâcQ>GO›#þžÍŒ¯’ßS€B!„2Ï2ÎÅòIr ŽB!„M8‹B!„2!‘x€n]]>x¡ÅùÔhŒ3ç‘C|Ë•V¶¡K/½ô÷¿ÿýÄ¿+ßzüæôs…[Ÿc‰­gÖ’¡­óJÃ.!„gN¤Šs±!„B(ó`‹B!„2F±!„B(ó`‹B!„2F±!„B(ó`‹B!„2Ï ¿õ!4éÒK/]dÉ÷Þ[\¼ÕJ¸q·¾Èú“*É­'uÏ'ZIV¶Ÿ‹–ÚÖy¥a—BóÀ(¡”YÜ5ò¢¸~9³~Þhˆ¿õ¥´’DIl=‰{~õÄoåû¹8©mWv !4ŒbJ¥Å\)ŸiKÎ,l‚­'¡­$IZëIÚó Iá²ÜRÛ:¯4ìBhÅ"”b‰^/iKÖ,l¢­'«Å¤HJëIÙó‹’3d¤¶u^iØ%„Ð<ðî.„B!”y0ŠE!„B™£X„B!”y0ŠE!„B™£X„B!”yð%‡¦ãÌùš^ðöÛ'éõ“ÿ.¹¡³œÎXù}>ßô¿Kÿ0±õ9­gôòZÜ}XŽaòv> »„Za8‹B!„2F±!„B(óàŠ„B%H’[µÁéÙÛé¢DÆõÕ…Š¿wwììá-™U´µ*—⸉Ÿgën‹—·¸·N¾â¤4»°Ø¤•‹:èêé±û˜äuÕ(Œe%yJ Ɇ}ÎþîþÑHŒŒü;™!Ö”d+Äð X,ÔÅ5Eá}M¶À¬íäÃ(!„B ô["¬wjÍqt¸½ÞMLl TÅU¹þÀ<…ƒÖ¦ÆÁàŒÞâ1ë<¨8ˆ ¥E’‘¶¦¶'Ñ—­+Ïo°ú—<ÆÕF’[l"ûö ‡Š‚µ•fïîn+óÁ;™—ÈPZ"ó´7µ@f¬X[œãÙo/ŒbB!¿¬¢­U¹BôïñG€c¢‘ÉÙO™É¨ðX;š{ã/wd–R1>¼ßåÇhAžR þpâC[å‚ë¸+ÈrÀŽ{|œY"XbÄI*UY¾áV_”ð9¬VB@ÄÊ*È©¬-QOýÄ:Ûvu{–Ö8`‹B¡DŒ÷îÙÙ YE[‹y~Iª¹„£e”¯iþúÚ<Žcè w¨×âðÈÌ[|nâAÅ)JÈÒÌÔ´¢§g‡·ýCThÄj‚R(åŒÏ'sìc4E ¹é=O{í±+d†ÛvPÚ²…¬{|Qc˜Û~2*A¥…sÎ9'Õ]@i-CÏ9Ý~å•WRÕ“iiØ¥4!ÐäèBÎÆ‰¯þeù×çKfüÖÛÛÐ6ìhn"€Hõ%ÅϾ¡0_qÞ:¯87kÃ6¶‰Q6àìn빜`¾c4ÛÔŠýš­Å* ˆ°m_£d›ë &óúgj‹‹³<]Mž¤,\Æ(¡U¯¦h~™x†ÌìsšâiØ¥E I²   ;;›¢vîÜG•„R£ ŽöO`‹Ðj“¹×T´22î ™îpú„àiØ¥E0›Í‰¤¹¹9^` iÜ \¥dÆìSËW9::è•âìÒb‘½Í6qóDÌ⼉¼Åiš&)1SiJkóü3o2Š/_…f8L§¥ÆÞptpÔ-V+À=:ù+­NÎxÝc!`þc4MÓÄôž'E"a8‰[ ³KŠdîÎ./Ï<ìÌc$‹ËÊÊÌfs__ßüÄ(¡U(£¯¬hdÖ2ÑÛ´ ¾Ó°K‹ ÓéZ[[ a ÊR}Có? Ê ”z½ÊôÒyŽNæsMçç->'‘·8ëóúŠ F…×à$zƒ†w¬à}òC–]l”[|4)Ѩd!ßÔGinY…YØÕædaÞc4;îñòãCNn4(½Îž˜¯ÊéKФ®öNï‚ >ÂápWW׆ 0ŠE!„‘H .ü,¥ƒL?£`s]øûš'M ¹,Ì÷õ>;2Ы..ÙX#$™ˆoÄÒ=<pòŸ›È_”Å5ë Žà˜ðøpoW¿' Ê⚢ð¾ïÚF ×W*f$¸;vvô•J2â²´öz[¶”F¤ù7š%®ö]Ý£@eå•媤&<îìí¶ŽEHYnYY¾JÌÝ}w€ÿ¬KF±!„J‹$#mMmN¢/[Wž7Þ`õ@ ¿±ÉR¨.ª*Ë÷ìîõÆ]¥HcÊW g¦D<N0dnâàḣúÇ#:Ü^ïž|«@U\•ë€D›+u·ÖûŒÕ9ê>‹’¢€¦|¿UZæ‘éW#d™Êœµ¥Á&d¹ååEÚ¦Îu¾Yàl®¦ò«Ê w¿/öY/ŒbB¡C™¥TŒï÷E9€€Ã1Z§ÃŒx‚zF}d®”‚ø£XJ®3¤3S‚Qû(dpâ£XމF&§e&£Âcí 8‚ € ‘¶°<µ¶ô/üšÖôAªL&©«×.+“€P&ÛA|ΑˆQ)‡/„ô‡† „…*!@¬³.W"ãºX„BèGQB–f¦^ôêéÙÓ2”@0Cª¹„Ã6Ê„ÝC㪊Í"‡›Î«\“ékͨ@šW óõŒO¿%˜GX¹ZM!V«¤B!ÀDiR"“¤T*ŽÒQ€$œu8‹Pjœzê©‹,ùé§‹kbžG¡4´ø3dùÍ×·¸ÏÏ…«JV=)êR¦!fþÀ±sã(R¨Ö(ØàpÆ.ÜL'MŽ.äl @ØÝÝì&¥9¥eùk{›'²@á4#ÔærƒÍnr§’8Ï@Ïøšò­Û8:2îô†A0™Üe‰9õÿYÇ£X„BtYZ\–YiÞžÝM«üRÏ'ŒbZm…©¦YcLƒ¹Ø ‡Âž_î4ìR¡iš¤Äd\¡)­Íó7î·G"  ‰D‘HxjæèK‹³i{GßèBwžÇŸsšX_R’Í$T$ÅÄÙ¥Å"{›mâþ% ´%9Áž–^:wCþXg£ÏXmPŒ¹2cVZªV‰Äâõ‡'VÖ)›C³cpŽ‹5˜g]üíc‹Ð*´º'œæŒ.Mæb'¬î=¿4ÜiØ¥ôÂú¼¾"ƒQáµ8‰Þ ¡Çft´Ä˜§µù*c61Ò‘à¢XR¢P©¢#qÜ´ÎiqV¢ER,Ê ”z½ÊôÒyŽNæsù¦{[F†)Dz 4"ÃÎþ‰Maîº-ò¡]Ý£â1QN®Üë ²ru¯-ÖcøÏº`‹B¡½»WR\¶É$:86Ø9èÆÝÛ%+-ÞX-âB[ç`¢Ù X›¾€˜Sq‹Êy È@Óƒ‰YIê’Úʬ©Ó3Üö¥ed W]\²±FH2߈¥{8ÌÄTrhÄZ³vkNÔeéO×1Å)ìèî•–Tl6S\Øç첸b®à=ë€Q,B!„€ º,-.ËœÔ蘵­ÑºØ:ÅZ³IC;{m!•Ù¬aœ½6/bm_bü9§MqçLZbü<–/wÎÝ›îÞ?ÌŸŸ :Ú÷:ÚŸi7ÌiQ{Ë®©m6è²ì?è\âÃÖÅ-³I†B¡Œ!kôzµ”J¦ØÈôÄÔ:D†?œ‹E!„вÚZ†9šv¨µÁÉÑtÆ'¦Ö!2Ìøa‹B¡eÁ1‘ðÄ×ÓÓž˜Z‡È0ã‡Q,BÉñ€Ï555»wïžøwåûàóù¦ÿ]&‰3 »´âfî:„Êh¸.!„BeŒbB!”1DSq±1 ã„+ B­*¤vëù×_ujYîëþøùŸ?ô^”?#‘]sÁµ—Ÿ²µXKùmM;~óÀ“_º—ZgF#¥Ù…Å&­\DÐAÏPOÝ7¹H’R˜+׃»ºGSÛà ”Bg0DÖ¡q6Õ]I)Ñ–˜u A=6K·ÝÏJô•J2â²´öz2êÖª™¤ù7š%®ö‰“„g˜@ÊrËÊòUb.èîë´¸ÃóœuñÁÏ2!„V ²ð»J*ŽÒÑÉœ|g]ü0ŠEhYÔÔÔ¤º +! ‡™†]â•)ýLcƒE¹¹ ©:ñh™ç_ï&.Èúß²Ô@4‰tz¸Ý1ÖºÚ>ÿWÛù¥ë.yá½3ëëÝ2—ÝΑq×™ÙfÅæ\‚ÁÄJb‚^‡ gâ\,@*\Ëþ†nA–iÍš"½§u8ìînv“ҜҲüˆµ½ÍÃÿa*m õ…¹Ü`³›†Üé4¾aFó Z³ËªªM\ÐÝ×å›Ì9Ã"Î:ŒbJ¾”<²tå¥á0Ó°K¼2¥ŸéÍcðÁfc®îè¯)u¼õ~ NngûÛ÷~ím¨ºú4kÿÀdv<;[4><:ý°]/üà›ÿ,0F|_yð½­¥CCC¼9ç«sUɘ¨0ìêis¥º‹Ä76l÷ÓÐcvwp“BÃB¬),7Që°Ò\U]vötXÇ2dž™TšÍRgG{@x •w˜lÀÞÑdŸU~©gF±%Ù!2Ç–†ÃLÃ.ñÊ”~¦¿ÁA€Ü5çœx˜Èúç÷›Y‚ †ÈݰAÖw›Fë~ðÇßž_$~í‡ß~´Ȫ:í»'¬§¿|ü=ôÖòRWk«‹7gÌ:Wš¦IJ@LÆšÒÚ<ã~{ æÅú’’lÆÞÑ7Ê€D_ZœMOlO›N hÈÉ+þœÉGÏy½+Çq@iK*r‚=-½tî†ü±ÎFŸ±Ú s-1¾ãÝKÉ'U«DbñúÃŒ“?+ëÍ¡ƒ‡ÉoÉgF±%Ó!2Ç–†ÃLÃ.ñÊ”~f„¡+ Çœz†™êüÃ]îý-8ç¤Ë.Û›uì÷ªÇK IDAT|;ï«̇]$­vrg$§öœ³Žcªè@qÂIZÆòÇ¿·òçŒYç*Ãú¼¾"ƒQáµ8‰Þ ¡Ç©ùj[ ÎR©¢#·ëKÓÛÓ¦à åäÎäcÇÇüE9¹r¯#(ÈÊÕI¼6?ÐloË(Ãp ‚ãX–c“²ðšw/%Ÿ¿¿agÿĦ0wÝùЮîQñÁÃä·ä³N@QY“É40°*¿(A!´Úp‚²“¾¹U'„¦þr‹ÀÙÖ-¨9êø¯lÖ|þܽ¾Õ?qMäÔëŽ;¼€íýëïŸýb0L—ðvýÆmGnÔûß|è¾?ìõ²¼9cÖ™ùf_ôiÿxDa,*.2çjÅA[wÿH„P—Ôn^S`T‹ y¶Éd2Š|¶ÑÐ|•.YÔ;<8蚸¿iæöÁ̹`ý+Ž ŒG²òJŠ‹L9YÜHOÏP€™ž©dhP™K‹t÷ÀÀhh©ýãÝKËJ ÐE¾ÁÑÿ0ùñŸuxƒÒ9‰„DràÑ"uuu;wîLæ˜B!”–Và¢/Ö˜4´³×R™ÍÆÙkó2+—x€@™W¤ŒZ­#‘¤Õ™ )Øu©Ã{~ÎI̬G’!„B(cä½^-%€’i'6V2ñBªÖëµ2*™u¦B v]zùX„BèP´}B Q޲SÌ &Î Š)‚ŽD.yu¦@*v]ÊÄ3‹ww!„BhYpL$<Mo¬`â Lt*5yu¦@*v]ZÃ!„С¿}E™£X„B!”y0Š]™e,.Î׈RÝ„B!t®‹])Ó ¨cptµ[ §üì—:>vbû½+ò.{{¹»†B¥)Ñ–˜u A=6K·ÝÏJô•J2â²´öz2äų“æoÜh–¸Úwu‚ȸ¾ºP1ã—îŽ#¤,·¬,_%æ‚î¾N‹; @J³ ‹MZ¹ˆ ƒž¡ž»/¡¥¹Å.„qu7z!º¼y>…¿xòúëßÖ{Ã]§›SÝ„Bhù‰ ¥…"WÛÞ¶!7UVšu®¶qm®ÔÝZï3Vç¨û<.HŠšNÍ[K˜ShD¦&û¢ÃíõîÉv TÅU¹þ¡Î7 œÍõÃT~U¹Aáî÷ˆ ¥E’‘¶¦¶'Ñ—­+Ïo°ÆzÑ\Q°ŽF"Qf‰/4>Ô¨¾í¯õ]_¾rå€îð«žÚ±»ÍÒÕüéë?ÿf™èÞ^}õÕw›Fg–ÛtÇ.›­ñ¾3Nºï½Æîö/^¶?g!„ZÈ,¥bÜéÐ,ïoþ²ÍIA@„H[´¶2O‘YÁ©2™¤®>ûÔ|ÇD#“(Qá˜ø@H±Aˆa°P(˜Ü!ÃC¾(ËÒ‡c”R*ʼn5Ü‘¬BTNemí†|Yªû‘IÔ'ß|µyÿN ™Ì-Wn§@|Ÿ»ãÔ¬ï¼àò'{*/|ô‰ËKç+®=åâí®·ßld Ž»ýŠã+Õk„Bh9Q”#ey›¶ÖÖV¯/ÕK €°{h\U±¹@äpÓy•kr"}­ýÞŒš‰•æè|ýãO÷‘jc.á°N ‡‰Ò¤D&&I©T¥£%dééyBOÏž–¡pBmc».ìóx¼¡L{„ZJ…výú’+ïúѳŸõz ”l©VÂèÇo¼þñžÿ[=PU‡ÕÈç)>úþƒ7=üô/^Ù 6æiV¬Û!„Ðr"€T*¸Áý õMÝãòâ"½ ìînnØÛî’äåSCím¶Ä†¦œP_˜Ë ö¹yVô 49ºÓ˜ü‘ó ZÙœªêê åxŸÝ³^Ʊl¢_|ã÷µ a<ýmžTw"D$y~AÁ±ÙÙ2já“äÌÙ ¹\>1ÍA  4g?»ÿ4D Ëä1W¾p ÃIø õF]ÝbGƒB(ÆizçÈÈz{#lFM/.¸±a»Ÿæ€³»ƒ›röbMa¹‰rX‡•æªê¢°³§Ã:–!·y‘J³YêìhçþŽPjTÁÑþ“«lÀÞÑdŸ•g©Ë51Š]ˆ@SX‘+pY,ÎÄf¹&Ñ—gÓö޾ÑLøœuŽÙœ'‘ÜØÜ<^`à —‘H`ômàËÉ„1ׂ (D£³ q&>£!„2GŽX|MYÙ9fóŸúúRÝ—4@Ó³ƒSŽã€Ò–Tä{ZzéÜ ùc>cµA=0æZb|7r´%%ÙÌrÅRµJ$¯?Ì8ù³²N1ÐØ8«”̘}Þ›ãiš&)1ÍjJkóüûí < £Ø…"¹J%OÂêLR¢P©¢#ÄÂ9ÓÁQ:ݽ­­ †°q±4Ô{á›ÕÇ[V_tó²¿ÞtîC»rýÎáyšÍZ0yî¹rï¾÷ßÕ‘ç_sáZ㙇 4ï;'ÂBhu‡ÛÕõà† Å°ãcþ¢œ\¹×dåê$^›h¶·e”a8Áq,˱Œ8a:䋳–1öð÷7ììŸØæ®Û"ÚÕ=u϶(K!ô ÍÿÀÖçõŒ ¯=ÀIô =îH쩦Å.„v´~1 \žQ°6}1”šV‚N$“SWø_÷\ðSêî‹î~æ qphß¼½;âm—?ôб6ž÷ÐCçu?ÚøîB»õ‚Û¿® v¿ÿÓ[~³79]@!”Ãá°2Ž•i‡†°£»WZR±ÙLqaŸ³Ë⢀™˜$ 8BkÖn͉º,ýK„M_ ¦ ö rY0X Ý½»WR\¶É$:86Ø9èK¬<±"P‹ô‚Q«ud©o=kÍ& íìµy3aEÁ"5Þ·-ノÍðå½1™<òÅWœòĬœ‘WÏÍ{unñMg€ço×Õ,øÒ„B™I¬-˜¸†Tf³†™¸,fJâ±A—e¿ËÂ÷+.èhßëHÞ®3O%šVf˜Q{Ë®™ÃéÚ5²p)6è²´ðïxà3 BHÕz½V–„p_ ×èõji†¬(@!„–ÃôÕ’i§/‹™’˜Z‡È0ãGH$’éêêêvâÝ3s „bŠ #‘%¿ø€ˆDG‡£1ûF]]œ·RÅŸs‰V¬!„BI4ç¯÷ôÕqYÌ”ÄÔ:D†97(“ˆ+ ÄDÃÉ9 IRM!„P¦:p5œqYÌ”ÄÔ:D†?\Q€–jÅæGq"!„BÓ0ŠE!„B™'âX‘ÆT\lÌJ¤×"M~¢E’X|vU w¡ôDjξôòs4/nMÒ‹#„BqQ,¥Ð Y"½¦äÙ‰IbñYU%Þy”˜íôÚlßR¢m÷î²Ù~}¼"ÕZ!ÛéµÙl6›­¿£þߺõøüe sN»óá{üÐ}g/±èºÙlÖ'¾¶Èâ!´ªˆuÅU›k¶mÛV»uS¥IE€D_±ykMõ†"u&®—æo<¬n[©²Š¶ÖÕ6¥¦D9‘‡”åVlÜZ[[½¾D'ž,GJ³‹×mÞZ»­fˆ²\E¢¯˜Ê°]jktA$‘ÕÇA{[£;±"I,>Ó":‰(ºìž LžþïgÿNð Ê™ÍýÉÓFsîE×þá©‘¯œötïr=çÚþüGì, Û÷¿%G¡Ì$Ë1ëÂÖÆVw$ÆÊMùZû˜W›+u·ÖûŒÕ9ê>‹’¢€¦ÙTw5!œB£ 2ó±úAkSãàìW'ê|³ÀÙ\?LåW•î~€ØPZ$ikj p}Ùºò¼ñëü¯ûšm ƒ)ÄÁÛóç\–‰F"Q6‘K3·`ÞîM%Î*>o·Éßù%îºEìÛ䎴¥=ã®k¶D?úùÝïŒè¿ê©»Û,]ÍŸ¾þóo–  ÿÕf³ýå‚lÓ;l¶¶_?ñ°ü¢W-];ûFv °Xž=¯=ñÈ=—þâ?¬°ú´“ò€oì}äuÏÿ«¡ÃÒ^ÿá_½öØ<@Wwå“ïïjé¶´~ùÞoÏ_/8úWm6ÛÇ·žtæoþ³ßÒñé“ß2˜¯Øa³Ùú[?ûÇߟ½¸t²áMwì²Ùï;ã¤ûÞkìnßùâek)€£l³}vó:Áé°Ùl¶¶ŽQ@WwÕÓ;v·Yºö}þÖC笕¨s{ݯ×wu6¼qý–©§fô1BÂ:ʲ ð Ã2Qš8‚ € ‘¶hmež"³¾µ%U&“ÔÕgÍŸM ¤Ø ?Ä0@X(YJÅøð/ʲtÀᥔJñü•ÌmzÑ–åo¨­­Ì¡d¦Ûóç\¢ùZ\ë¼uN'.8LÞœ‹h(‰Ÿ_Gz¢´ÇÝ~Û×¥ ßþÒ €ø„?wÇ©YßyÁåOöT^øè——‚ãóÏ,Õµ5€âðº*ÿ￟2dÕ‘Gé%²‚cêJço&ù‡l^£ÑÈ;v ޼åé›OÔÔ?xÅ5?ýS½bãÚ,@|ü=ÏÝùüÞ—x௶’3x⪵SÕ™N¿ ºëÕ·ö“Åßø¿o–ÀÈÿ¾é¦›žÙuð»ì´§\¼Ýõö›lÁq·_qœ:^¿ó¦ûwØØ½ÏÝtÓM7ÝùzðÏî8ÕØýÂý¿ú‡wý¹¿zöÚõSužþ£ïSÿû …1~ý¶Oá«á!„Iᡎn:¿º¶¦fÛz­§Õ2ÂBØ=4®ªØ\ r¸é¼Ê59‘¾Ö~oFÍÄJó t¾þñY“tÒüõµµ55Õ›«Ê ò‰X“‰Ò¤D&&I©T¥£%dééÇñ{zö´ …j{ñ± òzôYÐþÙg½°íð+.Qƒå·ÿé*JõýN9†€u½þ}Ã)⨷žuÅÏ:úÜãÉhûߨ÷üô»g»þòöÎÎQ i€ñááXö6ŒÁ™']}gG9œxí•G‰_:·ªÁÆ×†|íI§oÑ­)¥ÔO>÷ÜêþO_þTGžÍ…kg0м϶Žl8úòû®0 @ßÛOüs„¯xoc£Î8éê;:Öª¾U`klrÆef#„Ð"ÌŒC2Dóµ:±Ç!dÙY`4t´·e”a8Áq,˱óD}iÇßß°³bS˜»n‹|hW÷(:R¯W¹‚^Z ÏÑÉ|®X_ã±>¯¯È`TxíN¢7hèqGb *‰D2ýC]]ÝNþ—|1ùuáŒmL\M‰s½QW—yo|ÝþHï¿c}tûÑî—yÿ'¯]À½xÎÑ7$=ìŠûî¾èØuqphßÜxÛ+âè_íõ»j€Á§N®ýÉÞ©:Ö\úÚkwl ¾Ó©W½5O$•v¶?ÒûÇöÙ;wþåþÛú×  =xì²Ӯ¸á’Ó«,Ðp®öŸ¿÷Öß}îÈ>âšûïþþQzÁxý?»îÞØáè_µ½ú]ç£Çý`ÛtCæ+v|qׯ-¿wEÁe½·ìúà*ƒkÀ)ÉQ»?|ò–ëŸØ=±FƒÈ?ñ'ÿøÛ5ù’`ÿ3}¿¯øÛtÎQ×?pÏùG”©Ùáýÿzâ®ÛŸßëÛtÇ®®?÷íMw|&>ó¹žßžôù›Ï|n2÷!t¨JÆ%æÕ*³U¦Òœ, ÅE[ÅáŸ^ JH kLY‚¨ÛÒÚ3Me/å@ „,§¤8_#’LÄ7bµôºC±Ž)Í.*6i" ƒcC=–!ßôW~¼AéœÄù¢X±¶À¤¡½¶ÊlÖ0Î^›—ÁÄÕŸ8!#£Ø¸‘EGµÕ@æqÑ ß!;~û£©îQ†›q¦º+¡´3ç‚’†¾D/‘©rˆ sBúè£?yá‚ÂÙ¹óÏzbÇû?Ý®œ¿Îœï<ñÏ;ŽXl6ÞðÎóç™âÍ]xÁóoþpc<‰éaËÞ{ö»Æ¥×ûÅm©{)¾“!“-õHëSe iþÆÃê¶•j$úŠÍ[kª7©ãzUšš9"R¢+^·¹fÛ¶Úê å¹òÉà‚”åVlÜZ[[½¾D7ù–q ¥ÙÅë6o­ÝV³eCY®"Ñ·³Í·ËBCm.ˆ0ÀÚÛÝa0ñHÌ %µÚf—«5váìÉ#TŸU˜œ” ¦Ñ¸gÞy½é7^ð# “ò]¿ùÉyMßyª½å±oól¼áÍÍnÿðɇƒ ÞTtÍû­˜Õ2àÿ(­s ‚ÈäKª$Ú\©»µÞg¬ÎQ÷y\4½¢×´%›5"±¡´PäjÛÛ"ä¦ÊJ³ÎÕæ¤Pç›Îæúa*¿ªÜ p÷ûĆÒ"ÉH[S[€“èËÖ•ç7Xc½è‹Ï|Q,K‡ƒ/3g¢X€Úæ—8]çôÆ‚9—ØP;Ÿ&‰ ՙIšjjD®–M“JeÞå…¹¥õïìyv8‘<¹!Oho¹¤×+Ì^óJ™fïž»íQ•2ÿŠ"Ãz‰ ö7¹l/z\JeÞe…¹›¤ñ}6Ðóœ+Æ^H7)èw;%U‹>K6ц-•ï^Õ:è~믟]ùý-hwðeÝxÃ;K ]Ožóa‡g2•4}õú[~p\¥^0ÖùŸ§î{èŸÖ™Då‡Ýöç[Èû¿ß>Us×Íß«-Œ÷ì|ç÷Oþù³ÁyÞHd{ÛÏo>^?úùïn¿çÝ>6ÞðÎ ÃW^øâlùÑ{W\zÉËÒ‹_úÓÅrÖDÇ.|QÄ—8dÞW¯¿ýŠã+5Œ}¾ïõ€7¼sƒûg/^}íQzïî§ï¸ëM  ôS[÷?¾þŒ*ëh~ëá{ŸþrbÕI¹öÖ+¶¯Óƒk8" þ%öÀy['Ç\{ë•Û+Õ´½þ•‡î¹yùÎBN»æ/¼!,4ýúGuÔ•™™˜õµko­ÜÿÀ§}ýì»>/¹ñšfî:Éæÿ»©æ³ù†3~ø}ö«Ï<õìŸnÊ­­RÌ×-óÉßÎÿ÷ßÿþOëË®=ÿ°XßYþpîQG}ï™.çkWuÔQGuá‹1Aqâo©h¸÷ÜSN»ì ç×~|ÉæÉtŸršì•«NûÆÿ“õ…G é'¹ùâ[Ûÿ³ïžrú%òzów×Nýâà:'^wûÚæûÎ=ùëgßúFÏ|üx[WœxÝUû~ò¯ŸzéóÁïÜsÁÚ˜Åysò#þ½ÿ1â=xÇKÑ×N¢^ø¿ÓN¿öE×\°mê’"Ù\#yõê3¾õ€åðïh‚Ž÷¬ã;ïˆ:ã;_ü;-—c† 'Í+ÐùúƧ‚ô°{h\U±¹@äpÓy•kr"}­Â<" (!GÊò*6m­­­^_ªŸ|‘¥I‰LL’R©8JG's²43UÐÓ³§e(柋Ƅ¼æ˜àäöâùëŸ7çJbçÓ$qÁ]·Ä:3GdŸWp‚9Ÿò9ÿAÊÌ Q”Sà¶½84&¥UÇ—ª×((ðñ%¨,' ˜f÷ÀÇv@’UNÁ¸ÛõáØ˜Dä;O­^«¼Ìe1ó}+L8”`¿M¥eÎO·×h}ý—÷ZÈŸp…Uß´í‹û/Ü5ñ5IÂ,NA Zv¾vÿoưíxæÏ»¬ÖÙËLZgbÝ:ˆ¹¼ÜùÙãû«üR?¬dØ”½D_ZœMÛ;úFã-Äú’’l&¡"I,>Ó":æEP~ûo-þ°'\­Ž£¤$‚€‰…UÜÔjáô ÏYÝ·Éç IDAT:{4²¬#L%k ¾­sÜïçh€q·å&ëäjÅɯ<2‚×ë+²„Q ¿õýó:¿åkÃq—§išLßGªQ¾ øÏŸüpä²û.?úÝ{?žøìhëþkß¡²°úœÛvËi{¯üë—Š¢&v'Çršù)ƒ7\:(qf?MÇþSo?sN¹úìÀ3çœý±ÕžùØUóŒ‚aþÎÇ×:MÓý¹ñ‚?Yç+¼9c£ƒwÝ¢ŽÑMb^¼ŽwDü{‰wDË1ÌXuò‡óòÒ¯_ØóÏ/Z‘‹æ•ÄËnš4t€T­‰Åë›zº‰²N1°Ï*.Î ö´ôÒ¹òÇ:}Æjƒz`Ì•“Ñ|#jlÍþÃ<{–e&š¦IJ@LF³šÒÚ<ã~{ÿ7eΣ•€”(T*¹ˆX8ç48+Ñ"I,>Ó":æE ‰ÐÞagk„NìÕ¯›…&ï¼\ã…†,€H—? Ñè@–6ïÒ¢Šër§º ²oÚ´ö²¼ìµbp@FXwÒ¥Po–ÉÖJî]W~²"Öÿ ’£ñt£ÖLPН_W‰cä\)á}{Û·|ãìuZ‰XYò3ŽoڗЗ÷ÝÃ'mÒ‰…ò‚oÜûÒÏN:ðè¡hËü°ê†kW…gÞ|Ý©[ ´TtÌéô2ó?BžkÒ Iaö_Ýîìp€}È–_st…VWzÂU9cõ­ËîÈÚxĦuvI+ˆ•8Ðm1Ô¿V%’ä~ìf¦»;VÔ?%‘KIë6œZ“ЙL QŒ?40h¬=¦B«-:ö²ó¹ê:VëÖn‹~KY .9óÎû¿Ws½)oΘÇhî^Jì-Q–¹8GD u‡»9ÔÞ÷ÀñŽˆoì¼#ZŽaÆ®“÷ü,<ëîûn¾íW×m—,¹e4-‰—Ý4ièÃÎI{z½¬³}gã€ÏÓÛÒnó1@Áq,˱Aq߈‚ìø˜_™“+§HR¬ÊÕI¼ã±;Àú¼¾,ƒQ!$IJf0hèq_b3l.6`múbbõ¼Eš¾L¬H‹Ïª*ñΣy‘ÂÉXƒ &6ØÑç:¬¢ÃIYl4ðaOïk>pþÅž}MŽb“xà±Aâç%O³óæVŸ¬7-¦¸hð³þîÇ8Ïsí}daî÷+²El¤gdð_¬«¢ì˜‚Â#'þÐPÊÓ •áàc‰­IO¶Á×ï{8ÿ¦»_¸@/ïûâ…Ÿ¼ÐÊTýðͧΚ˜¨þó'—MÞ[=}k6À+Ÿü´ÿî¬K^òîxô—ën¹ýOïé…þ¾/ž}ð½™áH¸ù©_|òÂíWמÿÀ—ÁѶNêâk~u…Y'ðv}üø/Þ{cдž¿?ÿå®ùÃß ÒÈ`ÃëwßßÈ€óÝ'ÿ|Ô=½úž·øËÇ'Ÿ;;øßßÿö˜{~þòY"ýo/¿ñ;o¢wÇ£¿\û½¯ž§fÍoÿägõ1ÿ‡Š»ŸCïÿþ­cn~íï?ÙûÚƒ?zèäžú\zå~¾¬#;ž~é+?~ì/ß±¼r÷Ÿ?=ãÂXmÇh}|Ç£¿^Û¯ÿz™Z´}ùâýÝQˆqŒxsÆg—ÅóK³½»WR\¶É$:86Ø9È{+Kl„Drà3d]]Ýθš}‘ÖlÖ0Î^›wÉß8ˆµ& ”ªVÀuugâÉ€šÏÌç¦!Óœ ÊôÕ0¤:p…]ŽÄʼ"½`Ôj‰,¢Îô¹j§`×¥oP:'1ÃV¬øà _zWïã‰_3þwG}†¼¼¡Ì$6”ŠÜ{wïÞÛ9&1›uH´¹Rwk}O ;GM•q±™0§Ð(ˆL¿ýƒg˜@¨óÍçþúú¯¢À ˜ÊY$ñt5íÙ½·}˜2•çÍóND>·§VÇF#‘(“„÷h°t8üöî4¾‰jmø3“™ìMÒtMÛto)”­,¥(/Ê+*²(Š ‹, }Q.‚€ŠrQp»Ê"›Š,E¸\® ]h)Ý—´iÓ¤mö¥™Ì¼º°eJ+-¥íùÿøfÎyN2™<9s2ÇÑ5u!bÏw€LØô¬H$oô°=>þ_q±¯ú ¹ Þšð]¨Hï¿$$¬ò'@* |³ï€ñƒ¿é×ëµ@™wãîKêwïß+Ñ[ÐÌ[ÖÝ{Çýÿc\ï…~".€tÞà„_ú)ã½#?¿³ÔpKœŒ=]«=]c6ÝÜŒÛÂöÀ ð——g^©´×YʯüòÁKo­ÀƒF,Ù´'éÄ©c?o]ö¸²þ /Ÿ°ùÄŠ§]öÝ¡Çw½ÿDýW<`Ä’ÍûŽžóë—¾/¾Qêæ ù§ää]‰‘>¿JNNNN¾m¨8èÉQòÇÒiö-ÝÅ)³þè·ÓC0Ntâ΃ï=,¾kC·ßô¿M#¬î††Öw'8™´{éCÂæž:·/±[!¹¯ÓýQçîXjyHH‡{HÄ&­ÆJÑ´ÓTzõÒu- 0††`\yhϘÖÕÏL¸4(H +©´7þí¦›À! Úf±»\V«ƒ$ɦ-«*ÌNš¦¬M-!‘´î:bçz¢:á3xpŸ@áÝ·DZÍRlõèå5Pl-­ìÆe³¢ƒ‡rm¨T—(ÑÈðè ¬_Ë$S¢•ƒ óî¼üí³@$.{):x(Çð]Nî!»pTDä8AëvŸüÏ~R¥ú³Ž?<,òÙ¦—çý¤Øöoç{=íÍoMœ÷‹#5ùbÌ+Ÿ.øP˜ M3£¼“õÏ™ãžzáÝóáK^Ù'¿ÿ þÞùãŸûgáÐiO€ø‰…Ë£SWM3.q‹vÔ³û·îÆ×~ãΠ™?aì K¾Îð+fÛïÿò›C²VOóÌìíæ±Ë¦ôlü°1ã„{þ1îé…ÿœ?ëaÀr>9­G|}jæ/9ûg&ÛW@·­ß¯¾³öH9úùÀS+fÌøðJä‚éCX¯“‰ŸX´"6s大ÆÎùÁ6éý™=Ù6t/ãÓ§‡ 6ï×[hÝ=!…ßO6lÚ7ùÚýó† 6lØ­ nEŒz’ûÇñlX·tgÍÑ/v0SŽöVLX4Nõåæ³æ»5Ô"w ~bÑÛ=¯®™:ú©Þü¥ˆºËSwÇKìëâÖuº=êX¥–…„tuA2¸0 ºßÀÁƒôŽð`Žê “4º0WSMÄôð­+É.5²­~þ@{™KËLMghwÝ—“ÂùBŽ <'ålØ’¦šF÷ôE—¯U´n-w”ÅÞ ã0ëõF;šÐê2uý”1fCfý[–/Ž"À\«ÞYQñ¯J#¿‡˜e8#<8GÄq•T—}œ[¡¾G&ƒîŒAÿ{µ0QO¶96îwoh}GEÅwÅ¥I5•XãÄY½«¸üpE @Àá´"Îû§êÐò—ÖœÁ^°í·_¶,¶§ ("R{ö÷4½ÎýóúU‡‹;dO;v¬ÄF›®gdÛʨ(í¹“™z‡½òìéT^TTë&ñâNzxy‰1caÊþµÿ`½fN§mœ6ÿû«µvKÅÅ´RooïÆÿ(>¼í@®‰¶ç^ɪSÈÀpîlvÿÁƒHéø€³¦³ž×ݶ~¿úÎÚ#õ±ov]TéÔçΤÓÊ Ö ʨ(Ýù“ÙšÒž>qYÓê±à;µøåhÔkÔŽcÇ šÛÄ}œŒjÿçIй_l˜Býëó»·ÓBw ÁÑQÚs'2 N§¹¤°¢®¹ÀÍKìëâÖuº}’Y¥–…„tyà1Sž•z%£À$ õ!ÕWSÓrtü€@¢"çºÚܹÒ'ÄŸ)/©¾y6’»n0úrí;`@´ÄTRinØò&ã/­Ðá½<—¾ôº¾£ƒèªp•AïPøWèf/†“ÍÅ0@â,,LížB­W°× ‘½^Z£/û,W‡a€‡Oô^ `àspw'÷»ßh±T}o¹i{š¡À¡yÿRÆÐ ðjiœ÷“³âüOŸß½)è¡ß^ñÉ|õøuH’ ¨†'ÀRpîÏ;ö©Øÿú\ IÂåjØ’¢(’ [ÕvÅõ_ÿcÉ×/úQeiÿޱ髓%N÷[ cž{w鸒rbb?ø«©œi; ȃKŠCF>9Ð’™¥(+(ô{èÉ~^ãéªL;ðéšï¯è@:hö‹ÆExФ|‹ZÇ)Ü>yE’Åm¡û:ü9ïñUyeÏ'kw_5€0vò»Ë¦ 曊R}»u×9–…áZqâ©òuÃgzY{$ì•ľWÎþö%Oxåƒ×ÇÇzÑš«¿}¶êëKµÐ´*UþÖÉgrõõû÷]|hqõêÝ!ó ó1þõõŠwºÿâÎÒ»àÝÖyó÷¸¥IóËæÌÞ]q¯/‚ Ã98Ð.ºÖäÄ=$b“6ËJ€©ôê%0††`\yHT­ºVjìDi,. èŠ+…‘õ˶3.g]ÉY¤ëUyvIÐ6‹Ýå­RJ4}zذaó~½}1Û°1ã„{þ1îé…ÿœ?ëaòÎØr|+êD¤³õ<8Æ·Cñ‚dpa@t¿ƒèá#ÀÕ&itÿ`®¦š ˆéá[W’Ý©RXA@°—¹´Ìtç×\¦ðÇ4êÚúÎòp\ à9)'A4åjÜQ_tùZEë.«¢,éÄjªKÖåæ®ËÍ]—[v•ÀÆq\%ÕeçV¨€/Ž"À\«ÞQQñ]qiREM%ÖÊÞ6ž©0WsU[–íÀ°Îs C¥=w2Sï°Wž=Ê‹ŠòƒZmÆq  çHc{*Ø ÙêÔ?™m¡)íé—e112À1œôðòcÆÂ”ýk7þq{æy×Õ‹—í6›­àÂ…j›ÍF’$Ði§Íÿþj­ÝRq1­ÔÛÛ»ÙNÞv ×DÛs¯dÕ)ä­iÈ}ð­¨AÎÎe3êõfGŒÄ¸DÌ”g¥^É(0‰ÂB}HGuÁÕÔ´? ¨È¹®nÝÄÐGú„ø3å%Õnfôr<}½ìZ­µáOF_®¢}c ˆ–˜J*ÍpËBa ÝêòÎóqŒ w°Û k¬7Ôî)Ôz{½Ùë 5ú²ÏrÕyNP4Œ¥êûîµ–)I.WÑ¢(’ €QgöX¶kß\³E“öɆ¿Ø Ùê xnÝO#) øvu*¬ÿ2øK¾~Ñ*Kû÷ŽM_,q¶"NaÌsï.ARNLìÍ4À4žæh†Æ[ù•Ämð÷X'‚ ‰CWt]×Q3Àª*-”¡²ÚÖO,‚*=Æó ‰ "4ª*‰2v@¨C[”«2t’Ÿyá¥R ÍÍqÜq “xJmµ¥7WikenFå-ÛÜë— ”Å"] £Ò¼©-òz<þ²<øy/ÍZ íàÏc˜ˆÐ˜õyu ˆ|¢·†J1:}¼kþ6Œ¢(œÓ“q8Š¢|Ç-’ç&wÁ»WY¡ô?Ñr¯ˆ‘ÿxéaÑÿ™øÞšeomXô8¿]"Dn„ÃóJE\ ç‹›·«¦†: uÚd°H|ýEŽó¤þ^|£É”¾øZŽÚì 0†¡i††½j` IDAT¶Ãm7Ûž¥45¥Áåb#­ÍIiHa¸bÒli~h„6Í~ 1‰ã„ÐÏÏ“2™[7:€Æb‘NL"UÌ6<®©4ÿa±œ«–ö úÁ8mçJ vý¹*nˆïÈà`ŽË‘^QºW_ÿp'Ô ·9芌Ç6®ïýöª½/Ê\š«W®¾Â”ý¾ø»]ÿž .«:uǪ·vdº- _x`ÛDØ•œù['ÏÚYf:¶ñÓÞo}úk¢ŒcS_Ú¹¶À €Õ^Ï#^~mëJ/Ž1ÿϯ>>ÒÌÄØ;Uýö·áËö_X“¶ÝÒOFÿsÛÇ0g^Ö”†{ìI~r¾œxïw p¼{Ú#[w {óÞIEÿ¹ïÏÑS›þC_|­Ì ·æ¨ÐH,‚Ü#kYÆ…ò† =VUÆ…²“{ڱѦ†: u‡¦ XÝ_I0³6¿PG@ô/{ÆÞ£ç@_§®°ôÞqÛÍû ‹„6«õ.íÚ+ Šùa‘ý‚¸@Ù åyåæV¶ÂçßPHHHHIIù±"]Ï/ ºøÁ š×gl]ñ«Y•ÕÊýDŽXytÌÅño$Y#ÃfmùL²ibÆswŽß˜ÞÑÁ"ÒÜö“yRÚbµ]ªTzº´Åj£«Óv¬nÒÍzn“ÒÛ ÑŒ¤»ÂA<*Y]Õ­RXpfýç¤ô彇;pàÀ¯¿ìûäѪ¿_w[ØÑ‘"Ò5qDž>>2„P^ÿ v¬nÒÍ–Cc±ˆ{Ý`,A¹nû@Á8\.ÁP'ÝøÀÕy ;V7éf½–ŒÅ¢y±‚ ‚Ü?Œ«ÎQŸ(5=è<…«›t³åÐŒAA¤óAY,‚ ‚ Òù ,AAé|мXé"¸Á/Xúò#1>„±äžOÖïÏnÍj»½æÿ¼u’/`xÉ·Ó¦ÿXÒvaNÜòÝKº “ß=al»Jï“™?|.ûôÙ‚ ]Ï+,Ré%ââŒËaÒç—(¾OtL°¯Ófë;ɳwöí«äër.Ôx„Œõ'ïQëÒfÿUh\è(å1¶ê’¼Âj.ð ’‹¸eÓWUš[55e±Ò5(&¼ózЖÌ\Zè ýî+_̘´-§å»_ÛüüðÍÐwñ¡¥mWå™­ëªl©/…EikB_¥—C•ž]í¾"¦_ ¼Ò`”û ª³¯˜|e%z8AEµjýÃGú†(8u7/cSe¤—ߺ¤& Tr´W¯T±Q~âêR3Ï/"”_s=㺕áûDöŠ 0¥ªZ3ƒf Ý’(xkBÂw¡Þñ¡½¿‹¼%FÜ©îç·O\Lú‘ýÙ5v‡¡à·_ÏyÆÅùhÔ'ÿÙÚ°ø„'þtpa_ ð K6íI:qêØÏ[—=®læ,€+†/Ú¸'éø±ƒ?~4¥ëv‚Ç×Þ:Ñ»þÈWö˜ßú.>”œ|æ×/?|)^Ü\¾“¶ìŸ×óÆ#VžøàQ–¨ú.>ôÃÌø'ßÛžtüèÎÆ4/Ÿ°ùÄŠ§]öÝ¡Çw½ÿ„{ðÂØÉk<|òô‰ßøÒC\¶-Ã_þ)9yWb¤Ïį’““““x1ˆuwA–qQNšv¹hÚå¢]NŠ ÃÃ0®<´gL€¸s%g¸4(H +©´7¿‡$h›ÅîrY­’$p‰ØTUavÒ4eÕhj ‰„׺¦ÿvÐÒÙI¼ü:«ÿ43¾2åxY'Oc¥R©ÃljXO•¹ðɸ×öiÀr>9­G|} é/9ûg&à1jÁ›1Yÿœ9î©Þ=¾äµ‘"¶JÅO,Z›¹rÒScçü`›ôþÌžlÚÎ'_‰\ß">^|îì5ÈøôéaÆÍûõ–ÕhÝÔYU\$ô÷ÇE#ÞþiëÌžàãç§.)fˆõ$±ã•qÏ,øOèk3ãÏaüþƒø{çC§=ļ߸…3è_æOûÂ’¯3üÇŠÙºYøýÔaæ}“¯Ý?oذaÆÍÚYƶ;‚ H 9*r ¨Àƒ Šï-×gÖÐਮ0I£ûs5ÕT@Lߺ’ìRc§‰{™KËL·,6+ì=xð AúÇFú‰êÏÓ.'…ó…<xNÊ @$M¹wÔ]¾VáhUÛ(‹Eº/SjKyÅn­ ÷âvòÙ5vsîrØ4ÎÍî?x pöÏt‚""µgOÓÙë Ù?¯_u¸ˆõ4 ŒŠÒ?™m¡)íé—e112¶-Íg“3ûÇ$¤ññþçÏf°žƒÝÕY\RîïïÒ«§<4.Fæçç]ZRÎÞÕ’£ÿJ*²ÒöüÔkŒRéÕPjO;v¬ÄF›®gdÛÇ<Žá¤‡——3¦ì_»ñšÖuÓíî‚ -Dz‡… ks3¯^Í,¶yGŠ1GuÁÕÔ´? ¨È¹®nÝÄÐGú„ø3å%Õ7Ïèµ”]MMÏÈȸšy½ØÈ óã0úrí;`@´ÄTRi€[Æš¾%nNþÉ ÷ ~æyý›ëäC±À07¿ù1ghªÎžU͊—Ç÷H9þ— €$ Šj8MZ ÎýÉ^)IÏ­ûi$ß®Îb¿‚^s6¹øåøÞXŠW|ôÅ—ÙÏÂîê¬*.ñx(,Ä¿úÔ)AdŒ¿Ü^|ÄÙ\WÐ M·ŸÃ*ö¿>—=øŠë¿ þÇ’¯_ô£ÊÒþ½cÓW'Kœ­è¦ÛÝAZ†#óö´Uåm €£¢:°¯¤ÔlÀxž!QA„FU%QÆuh‹rU†Nò3/\¢T ´¹9òF)MÕ9:ਬ¶(„Bm­Ìͨ¼eÿÖf­·CY,ÒÝq0 ¨V|ÀFžØƒp6ôÍ£/æÍ˜·¿ ÔÉgk7ÄÇô—÷IM^]ŸqQ…sÆ_q¡§ 3×XÜçbE•î[2s»ªT%ŸÕMŒéïÕ7óÜšf. ¹­³¤ØüÜàHQþ‰£~³‡ÆòË®–¶¤ÏA4\•jyðÖœßÖ.ø HIÈ€Éo¯^>.mÞ¯:ÖnÒ cøÝvoI¨‚´¾OD˜7U™[RÛ΃–m߆ãÀ4fn 08Ž!öµ]+¦üûòÒÍŠ~²2ƒ®s|& dR.×{ˆ¢áoI‚¸,ýº= Œ[y]]ÿ3-ØG‰(ŠÂ ÖÍzF °¤gUÖ±n4£é¾DR¿çüü§ûy8 ­ä‹/GfZNÜÓ/ô’óy’ð§Ç?lÊÈÔ@ÉÙdWü¬ qÙ¦4̼/+(ô{èÉ~^¤¥äÂwë’ª vám w3Ø•œù['ÏÚYf:¶ñÓÞo}úk¢ŒcS_Ú¹¶ ÙËçÉÉ’—¦i6nh¼«VßŇ¾zN{’_œ/'ÎÞ]á¶N¦¸ÂzæÛ*jË<üå¥ÍÅz š·íÈB{Ù•½ïþ3ƒu¼Â]CXíõ<âå×6¼ªôâóÿüêã#5,[€íô·›†¿ÿÑî‰\Ë•Mÿ·äÆíî‚ÜWVUÆ…2`Ú¬²2•TE„ÄŒ §U_Z¤q€«~¨×^£±÷è9Ðש+,í±lèš²bYXxßA$îª3×T±¦¦öÊ‚b~Xd¿ .P6Cy^y+?‹1>ŸßôGBBBJJÊßéJ~IH˜Ð…QðÖ>dåµÙÅ]û>¦I2\¿G^ÿè±³¯®8Ýš›ð=¨ú.>´¸j^ýénû@áɃƒ<)m±Ú.U*=]ÚbµÑÕi ;V7éf=·Iém…hF‚t]¢ÇV;y`ãó†mŸu‰A®€#òôñ‘ 0 „òú¨°cu“n¶‹EÜëâc±‚ ÈýrÛ Æár †r8鯮ÎSرºI7ëµd,Í‹EAäþa\uŽúD©éAç)ìXݤ›-‡f ‚ ‚ ÊbAAÎe±‚ ‚ HçƒæÅ"Ý—Höq/?»ú´Ò¢Žæ‰Æ¬ÿ}ù¸iíYÓ‘7Æ||ñÞjí5ÿç­“|ÃK¾6ýÇ’VïÏ ~|ÁÒ—‰ñ!Œ%ö|²~¶â–&mçAÐSEÖÑM~y®â–&-¬˜[ÿ¬›ß Ýi AºÒ?v`°#ç¯üZ8>1ƒ|ôW®UÖ߬YÔ·Yr¹È€ñ<ƒÃƒ½Å<ÌeÕ—VYÛq¥B¬Œé¥°å],¨mf+œï®ôs1ʦWTZn„$ìÛWÉ×å4_C›‡„$("ÌOÂeìzuaa¥Å\Eï!â›6©ÎMÉ»÷û[ßÙ[n[7·KH(‹Eº%R61$ð¸­sßZúKÒÒáIÐÖIÞµÍÏß }Zú·vWLxçõ ÿ,™¹´Ð8úÝ/V¾˜1i[ä=uÖÎ2ŒôŠ_üÕ{3Ïù4µM¢E¤ÓàÈd„ÅÆ•y@­\úZs˜LŠWêh ¥RžAmàúE„ õ99V*¢{†ùê[µ:iËñ}#ÂRÜbnfõìz<¿ˆ®îzÚu;& ЉQzé®kV~$}Cœº¶Š¯å!áòÐ(O[ÞÕ| . ëhJ+µ8«r®T7Ü2‹# ‹õ·4·¤b ¹kÈí†n[o—ÐŒ¤{âú‰©#…åE]%‹eƒŒX²yßÑ“'ï\ÿòY}¡tÐìÏvþv(éÄ™S¿íÞ{xÍ[¡û:ÃmÜ“tüØÁ?šÒǃµmnŸ¸˜ô#û³kìCÁo¿žóŒ‹ó»é¿gõ…s™‚àik;…y?úÖö£'ßõáØœµ›ò1ë~;=àD'î<øÞÃâæêDä>Âe2¾¾´Â*•5¼/z½M"‘Ôß¿T*õFp‰ÔÃ\UavÒ´Ó¬Q© ŽÆ[™òð¸Aû*%mtoS§¥V[’]jºÛR万DlÒj¬M;M¥W/5¥°€Kƒ‚º’J{ÛDÔò@"—[5åÆ:—Ë^­Ö\.`\κ„—B¬/k‹¸Ü5ä–ÛÖÛ%$”Å"Ý“½â´œ$K;^›z0ˆŸX¸<:uÕÔ1ã·hG}0»?ÏÌ{¾öëiO5c{‘z×ÜI–B–:­ˆÍ\9驱s~°MzfO¶Æ¥R©ÃljXÍ•¹ðɸ×öiÜlÖê/ÊÑÏžZ1cƇW"LÂaëfÍÑ/v0SŽöVLX4Nõåæ³~‘aé*0‰LlÔõz‡T&¨/rèõN©T˜D*1ëõ.‚ ÊÕpŠ Œ•eµã’¤@Ì#H¡˜ßFIŒËR£ÕÛZp—)‚ \ÝoààÁzGø4- ö2—–™Úld¤å!ñ¸PWÇxFGøêêê¸\îMÿ‹Ëþ˜F]ÛŸvÍ7ä–ÛÖÛ0$”Å"H—¦ŒŠÒž;™©wØ+ÏžNåEEy€A­6ã8††s¤±=•l…luêΟ̶Дöô‰Ë²˜ˆvó0‰ËawÞrÒÂH¯!C{ÛJJ ­ì”úØ7».ªtêsgÒieœ­›À¨öž¤˜ûņ)Ô¿>ÿãÞg„!ÒFÄ2³ÁÄPz-“ñêË,z=.•òÄR©M¯§¯?ûôˆ2¤Ÿ²á‘M“ŸS­PwßooŠ.3åY©W2 L¢°P€ô ñgÊKªï:nÚpgãŠ$‡ah¿)³ãxúzÙµÚ¶¸vß|Cn¹m½-CBób¤K#IÂåj8ÍSE$0êŒÂËví›k¶hÒ>Ùð[![Ï­ûi$ß®Îbû:Î07J4ýì "qÇéÙ@;L•×~_½& ¦™=o×Ô#—ËE[7€Êúù fÊœòmIîé"™Œ/÷†eD…†³^Ï ’5¤”ÖçÕº6œ\Úœ‹Z„k:5PÖڶʃZ‡ÆPUi¡  •Õ¶~bT%J¥@››ã ïD4McæªÎý«€ðÃhúÆù“xJmµ¥wZ{Ï ¹å¶õ6 e±Ò¥Q…s¾.s8Š¢|Ç-’…TW\.À\.·®îF†(’J\†¶šªÛLC·…Ô\ëmšQ€tWüA Å3 ¹ Ä(OIyR{(+(ôKx¬§”Ë÷úhWA€$¸žÞÞ\‡ÃÁñÆkþn ÝSúÄ%(y¼ð ï¬Ë6øàÈLˉ{ú…^r>Oþôø‡M™Z¶8¯]=üD)ÉSŒ||@åµk¦fùÉIœô~hDœ#/·š¥›œ¨é‹‡^þláÊÝØÔ£äMû‡L|oͲ·6,zœßl?i¤LFšL Ùd‘È~£EôfI`_¯o˜ÄN›ôf¿1ÇI…ŸÄXSÛC ü£zDFö óæ´s°ÿÈèðˆž¡^xcH‹Ä×_Dà8OêïÅ7š,–ÒÔ”—‹´6'¥ýRØ;Ccm­Ð7@Br8|¹Â«©i¤æzˆI³¥ƒ-ÃÚÐ!±·ÞÆ!¡±X¤›y¸þÌIHÆ…H¬U¶ß mu‰ãÁa<¶q}ï·Wí}QæÒ\=¸rõ üè÷Åßíú÷lpYÕ©;V½µ#ÓmaøÂÛ&úÀ®äDÈß:yÖÎ2Ó±Ÿö~ëÓ_e›úÒεN¶ÖË^óYàïí˜éÃ1•\رrG6Ûõ'Gò¶¼óÖOG=]—÷}ôS>kŠŽÿpiîkßöÔ•§þüÞÚt†¥›XàÄ%Ϫ¿›žj¯ÉüüèØ5óάN±苯•äÖ‰Eû#ó™uiŒËdr(e’úûmQz½-BR§oºãÐäòÂ#úð0§Y[X m<Û8íÅuYím5+ ã[Ÿ÷HðWÕõK…zpÚÌvŠtYì'/‡¦ XÝ_I0³6¿P×nSa[’«º8_Öw—±ëÕyåM)"& mVkÛýàŒ­¡;Bbm½­CŒÏ¿1‘’’Òfu#Ù/ ÐÁБ#VsqüIÀȰY[>“lš˜ñÜ…ã7¦wt°‚tèùÜ&¥·¢±Xé^œYÿ99uþÞÉNŠa`LÙ;Ö\wêÝvt¤‚ Ò”Å"H7Suz]âéu·—º-DAúu‚ ‚ Òù ,AAé|P‹ ‚ ‚t>(‹EAA:Ÿûüë.бþÓ´¨\ö_…F\ä(ŒÓªWj,·ÞN6(Ä~õjÛÝ< IPD˜Ÿ„ËØõêÂÂJ‹‹­!·8bEdx€„Ó³¶´ ´¶ñ&’„XÓKaË»XP{¯ýF<2iЫ!¾½øMÙ25%ÛÊ-Z.êA%³þ÷åCঅ^MGÞóñÅ{«µ×üŸ·Nò /ùvÚôKZ¹wìüÛÆ]\:zíyð[ûûJ¯¯'þßnÿ¥I›ÆyÜx‹ŸzwøJÛ-+ÜUÚwñ¡ÅUón[ú AéŽîÿ= lªŒôò[µ }CB¸5Y©6L ˆŽ õ©ÉÒ°ÞGýN¸<4ÊÓ–w5ß‚ËÂzFšÒJ-îr‹ï„i2/WÙ9âàž1Jã_z†ï®âs×» >˜tjdÐ Ìx¨´–çô¤2ºÖô×·9µ$-žmä]ÛüüðÍÐwñ¡¥³Z0(>ÎgpúÇ÷çÐkÖæ=õÖcÙ¶DAV­Qà:°o@Ã: ’°A}¼†Â@©wdßAƒõ‹òií²Ž<’0hµЦ–£ƒ×°OÚ³ÿ øøAýÃ<›[cN"—[5åÆ:—Ë^­Ö\.l®1B7h`_¥¤i‘M›^¥ÖÙh†qšôfFÀ'Ài©Õ–dg—šÚmQ¤cqù2—½¸ªìÇÊŠ*D¨ÛÑ1µ <`Ä’ÍûŽžÍ5Ÿs½zP|(@¯øØ²œÒ¶Ùó~ô­íGOþ¾ëñ!8k7åcÖývzÀ‰NÜyð½‡ÅÍ׊ ‚t2m5/VàフgýuùZ 4PÖÜ2ì‚ÀÞƒ4 l¤Ÿ0«2rªê/ãB—¢œÀñ ›óÓ.]JÍÑØšY¬Œàq¡®ŽñŒŽðÔÕÕq¹\¶†H˜GB1¿±Ä^£ª4º#Ä‘Ëlq€ËR£ÕÛ\ÿù@pÍGiiKJ€qH…`quÉ—[üÄÂåÑ©«¦Ž—¸E;êƒÙý1xfÞóµ_O{z̨Û‹Ô»æ®H²°²Ô¹hElæÊIOóƒmÒû3{6Ó~í… uƒã}Câû—]¼Òô G¾²'¹ÁŽ—CšÛÒ-åèçO­˜1ãÃ+‘ ¦á°u³æè;˜) G{+&,§úróYskž9A¤ãðx<§óî×åÛjFM[¦µ¹¬3Ì'ܯPn)»šZÆø„G‡ùé3+€ó$Þ¾>^^žB§&_cPä¬-5S €­Ù•’qgãŠ$‡±Ó8Ž7ÓØ4ù9uB—±ææÏIŽoÌàpmÕ\/2µÝò¾È ç ôzÞß;š‹Mª}Õ]2‹UFEiÏ}•©wœ=Ê›åi:ƒZmÇ1 0œ#í©„Cj·…luêÎoͶÐ`9}âòŠcd­gÙ«¼xA4sôc"ó…möñƒJó·N¾c΃û-ÝRûf×E€êL:$кí&0ªýŸ'=½ö‹ .Ý¿^ù£¦UO‚ ÒQADD„N§»ë–m6/–¹ñÃXÇbiªÎÑp‘ÞQYmQ…Ž4´w”Ì¡­Ôä•ê-ÎúŒÃ0†iIBIÓ4†a®êÜ¿ª?Œ¦¶†€²Öj­·Õ᪺žR…ŸðèH¸–[ÝŠY¹Hç„ Ÿ"ÂkLºŸJ*ŽU[Ù;9’$\£ÌE‘ Œ:£°Ç²]ûæš-š´O6üÀVÈVgÀsë~IÁ·«³š‹‘wáRðúɵ?¾¤çŽo>ÖoÙÔ#—ËE[7€Êúù fÊœòmIšæÛFä~IHHèèEQ:®¤äî¿)n}Ë@c’ê6YÅ0ŒfÍ>yÞaÜÊëjKcM¸§Â¯®ôòõª[æ 2wk¨UW\.À\.·®ÎÁÒP=ŽÀÓSä2Õ4Gè%'LZc0”­Öè “‰¡Ý“ Ëóð#âèµ9¯ÔÚ;:–öDQÎi˜=Ãáp(Šð·pHòœÑËoIÜݲÖYºoÉÌí-ùyæD®¢æ\96¢¹÷q+¶¼ 'å÷ÝàÅMÏË*´¸jÞ¬e»S‚ H²X¤[Âå3"}SR¹^ ü_ÿðgk«·::ª{`IZ:< Ú:É»¶ùùᛡïâCKÿn Fgï‘ħNZo.Ìÿzêm¶Gð‚ H‡f ݇.ÔVR•ÑUÿeqPfWG‡Ô>ð€K6ï;zòÄáë_аR™tÐìÏvþv(éÄ™S¿íÞ{xÍ[¡û:ÃmÜ“tüØÁ?šÒÇ£Ùö¯I‰ù?â¶ìæýè[Ûžü}ׇcCêOaîº)³þè·ÓC0Ntâ΃ï=ÜÆQ ‚ ì–,–¢(×Q¡ ÈýãÔ(.>Î Þ×™—óàõ¬ŸÌR»?±pytꪩcÆ%nÑŽú`v ž™÷|í×Óž3jÆö"õ®¹+’,,…,u.Z›¹rÒScçü`›ôþÌžÍ@§ŸLŽùÈ­ dä+{’ìx9¤ÕRŽ~>ðÔŠ3>¼¹`ú[7kŽ~±ƒ™²p´·b¢qª/7Ÿíš/1‚ HwÁãñœÎ[=¿%‹Õjµ¡¡¡b1²@º…Úš’u¹?›yÏDF>οûö2*J{îd¦Þa¯<{:•åµÚŒãΑÆöT°²Õ©;2ÛBSÚÓ'.ËbbdÍEÀdžü3dä#Ò›Ëò·NÖ`ú÷­žm êcß캨ҩÏI§•Ar¶n£Úÿy’bî¦PÿúüšV·ƒ ‚<0ATT”N§»¹ð–y±*•J©Töèу$Éûò HéNK];ìÆ‹v¸H{Œñ}Ê[x¼Ìz÷}:’$\®†ÉE‘ Œ:£°Ç²]ûæš-š´O6üÀVÈVgÀsë~IÁ·«³¸Í†À\;õ_ÅœG<ÓÚ¦GÐÔ#—ËE°t¨¬Ÿj¦Ì)ß–¤i³Ö¹' Ò)Q¥ÓéJJnú¸%‹¥iº¤¤ä¶-¤ë!½¢wFzæ—¦­¨p`†utLí‚¢(œÓpÅ…ÃáPà;náä9£—ß2cÀm!k¥û–ÌÜ®jiY'ÿ£øÇˆRmë‚¿+‚ œ”Üw€7mÚßUP  ®§·7—Ãápp¼1yw[螪 Ð'.AÉà…Oxgí´Ø»^¹¹~ê?Þÿûˆ¼-: ò’“8éýЈ8G^n5¸ï&'júâ¡—?[¸r76uÁ¨͇L|oͲ·6,ꢳHAº t§-¤[ª«ú2ŸŸ¨ôz*HJ;mçU%;ôôÝ÷ê|ŒÇ6®ïýöª½/Ê\š«W®¾Â”ý¾ø»]ÿž .«:uǪ·vdº- _x`ÛDØ•œù['ÏÚYf:¶ñÓÞo}úk¢ŒcS_Ú¹¶ÀÉÚ|£¼Sÿ¶¼8³éÏÈWö$¿ÒøÇ©w‡½ºå=*:þÃ¥¹¯}ØOPWžúó{kÓ–nb—<«þnzª½&óó£c×ÌK8³:Å  /¾Vf[sTh$A¤SÃø|4¸ñKBÂtݧ+"G¬<:æâø7’,€‘a³¶|&Ù41ã¹; ÇoLïè`é Ð ÒNÐX,‚t/άÿœœ:ïáD'Å0 0¦ìk®;õn ;:RAi‹EÜC_A6>Pv‚~Ý… ‚ ‚t>(‹EAA:”Å"‚ ‚ ÊbAAΧîQ€‹¢Ã½ppgUAžÆÆÜ}éxäˆýæ{`+=]UÚÑÑÜ Ñ˜õ¿/Ž34 ¦#oŒùøâ½ÕÚkþÏ['ù†—|;mú­^Ô/niÒ¦q4í0UdÝôá—çªo2.»A•öˆU?¦›TŽ\¸AuEiy:ª-ª‡ÄÅúsÃìªôôr[[TÙy„ «ËÊPß¹òOs/‡$lPˆýêÕ ÇßnW#Ò]¯¸Ç•ßÛh,V$÷ª+˼–u]GøˆÚ¦NigòžD×øÊeIZ:|øðáÃç¨ÉÿzêðáÇßs ×6?__çß®¡>˜£g|^1|Å̸› yìé¹û]/¼>!ÀŠ×þ|wê¸gæ|Zôðû †‹@1á׃ίš9nÌäeGijV¾Øãž;„ ȃÌQSZX¨6´I æ’Ô .\«¼ûÊ,ˆ;mür܆à y÷žƒ¶ÑX¬IuÕÌá‰=½e—Ùàïc/¦ådUVäaÈ¿ª23À“‡†{‹IÚa¨(*¬0Q¬["H»âH§‡zCuÕ%™o|GÇÒ~ð€¯¿ýêc1ž®Ê´Ÿ®ùþФƒf°h\„§HÊ·¨uœÂí“W$Yܺ¯S1|Á›ó‘Q•Wö|²v÷UÓÝ¢`œÕÎe &„H!õF)m¯øëjÙ¼ ?àÊôÊ8:?×@\9p²ò›Qðßk}âbÒü#»Æ PðÛ¯çæÍˆóƒ [˜÷£o}´ì1ŸÚó_¾ýþ‘Ú}ßåcÖï|6ãÕÄ%xtâë[¦­:knýÓŠ È=àˆ‘áR>NÙ Ue¥êZ; ¡cýI°–¦ÕXóNBê+$ §u˜µ<-W+ æÌW BB=¹”A•›§±2¤,8*ÔẆISœ¯2°g®îZïî0®<<:Ü›ëÔ«òò4V†ååhHá<¸Pç 9tÅÍ…7çu÷QÅ’^‘ýô÷˜‹ó*GíÅ¡bs~꥿2ËhEd ˜uKiWxOeØÿrô?Wß5ëÌÄO,\ºjê˜q‰[´£>˜Ý€€gæ=_ûõ´§ÇŒš±½H½kîŠ$ K!K‹VÄf®œôÔØ9?Ø&½?³gËùõË)ÎW ¨¬©Tê07žúLf“L&ƒ†Â†³'sá“q¯ícMa”£Ÿ<µbÆŒ¯D.˜>„ÃÖ÷š£_ì`¦,í­˜°hœêËÍ(…EûŽçÈT^»r9íºÊÈ•Š9¦âË)))Y·Ž›òü‚ýªôË]Ê(·ÙÕ™¹Z|}9×._ήæ‡zb —š Òÿº|UMù†+Ä­l½›ãû(µyFaÃóéöåàø„†‹Íùi—.¥æ4MeÉëî—¶Éb92o©!/5#;¿¬Úæj,5é ´‹vY z§‹va8 Šêô:³ ˜º‰H¶-¤qDsýxê²t ¸€á$Áíè¨Ú2*J{îd¦Þa¯<{:•åµÚŒãΑÆöT°²Õ©;2ÛBSÚÓ'.Ëbbdw #½† ím+)1@DâŽÓ§Oÿ÷ÌïßL`ö|v 0ì¶÷<†Ám….‡ÝÙÜ€‰úØ7».ªtêsgÒieœ­ïÀ¨öž¤˜ûņ)Ô¿>ÿãïO•@äïÃ0‚K@Yõ•…Å:öaSÊîhL)0B,ná²U©4Š¡-3ÍãqÀXœ~­Üä¤]½ÉFr›=·´õîá--¯µÕÙkkŒLýóé–@(rÖêÌølÖÆl–¼Ž. èés—Zî–8Ž{{{ÄÝg¤Ü´†ãYp¯ÞA@ëK¯•YvÂ0ŒçÓÏ‹œã²›ï–¯&$$Ü5¤ ¥tåUd‰Ã@Ùû»úl£X5P°ùÒõÓ®»ìØÙ$ár5tŠ¢(’ €QgöX¶kß\³E“öɆ¿Ø Ùê xnÝO#) øvuVsŸ‰;NÏÚaª¼öûê5iõ…ßLŸµ×{ÑÞU‚/?øñª€ÏÜ6…ˆa˜[ ›~µÆ¢©›.—«þæ¶ï@eý|P3eNù¶¤f†vi7Ma)?$¬w¶kÔ%%:ÖŸ„;LVqx¿¸`—Ëa,.24•37Ô§±d˜¯§i x`¸³¦µÞ}RŽ[?ë›Î¶ Ã4“–aÆÜ~²ne^ÇóŽìáã(̺ý»CKžyŠ¢jjjŠ‹‹é›> nÉV•J%ŸÏ¿zõªÃq—_Ý֥ɾآ†aì•Ùå7ÿîn?ë&yr?kJVÛê~áØèàþ”n[aEzœEQÎi¸âÂáp(Šð·pHòœÑËo™1à¶µÎÒ}KfnWµ$€‚o¦»¿u€3m玢Ý/?»ýâžr0 <‘ˆà±Hl0èŒF#OìA8úæÑófÌÛ_u· ‚pRNpßw^Ü´ñ¼¬âÁÓ&ýwWYÓYñÈc1ÖË'.•×µ¤c‚üm.‹¦ðš¦#REDT¸¯1KãömÇõ •Ö^ý+çîà \ŸÿgïÌã›ªÒÆÿÜ{s³7I³woÒ…–"´ÐÖ‚}]~âèˆ(Š(® ˆ""8¨0â«#"¢Ì𢲨ŒŠˆË Š€Œ8:hÕ²u¥ÐÒ6M·tI›¦Ù—{s¤-’´…B[8ßOÿHžžåyν¹ç¹ç<çœ85]_TÔA3¤ztFÈYíе_ .Ç…:ë 0Ð=GÖ3Wȯ !O²:9C€át«¡×?ûly‡“˜˜S[{fÇœ³" d2YmmmŸ.ìEàr:Ø" Àùê„Q‘B´_-b(ðºm…fs¡Ù\h¶·3´»Ül7]K ªuªœ›SÅl®râétuuÉb‡Ëål‚ ¼'z' 00õÕ:EFN €£þ¿kJ»À©¡¶½Ûö*œu-À]Z\1îö{E®"}ÚÍ…E•îEwÞ?ZÊ刴wN»ÎZr¼4:ZJâ¤|ÒMîÊÓíAl ’Y2ñøß¯Ü‰=¸è6iOþ¸¯¬^úâÛÏÞ½0kD᩵ñJÄÊã¡à܈ù3àF²Ù8†tt.†18¦s|$‡K{õ»vŸ].®8\@’nc}‹T›‘ïµ6éÊk£Æ¤@i™5büµ?äi\N 8êŠJ ®€µ#Î!Ðåp{õiÒèŒGS¥¡Cå¿.òë|CE%{tdxsEë…´»Ûí>'äãrÏ =äääôs,½ÿ)/’ËVâvåäLG-%BÞ´rÿ”#ÓžßgŒÔÌÞôwÑÆ%÷œ/œ¶¡x¨•E WÖ¡àÒ¤LeçñòVçE§¥²ôúK¸¯ÌUâr µ™ç†×^°ÿ9HûÅ"ˆ‚·ì¿?>¸ð‹ïæy)†a€±žÚ¾ºÜk jMÄUÏÖÞ—>!Úïò0”ÍPÝÐ}Äpç¼bòbˆ«ŒÖŸ×Îûyí¹Ò€B:<&Ý ´"hu@ bäq^ìe‹¨¸"T@ 9W‰Ë1 ͼ`•ÐX,@ bä¼X@ ÄÈc`«»eJ¦F þΆ åÇtAÏzãEM%kúÚC—‘¦f†¹ê‹‹/é~µ#–0&et„³òHutmÞÆê^ÙGOÓ9ç·ÿ)ã„ÇjcåBF;Ì :]ëÕ¸/)õybx™þø+Í#xÛ@Á”uß/»zÔjÝûü”7\\©£þkó}JÀðÚzäãÚ¾3'ã…} Ÿ»³ ¢flúð±¶·g¾|0ؽ  ¼oÓŽ¤í·¬þýb*@ÿj¿Le¦-ܽeê‘n_ó Ü›×|¿R¶uÆ;Õ/ìÛ85ìÌÏñ?/_¿²-`ʦ@…Ž]²gIë‚À§¦!Ñ&3ÎUZÚtéŽ`:¿Æ ©JVoã¨/.5¸çÊâ´12!ɸ­­z]}çÙÛI“ª´±‚†]'#ÒdŽV Àø(—¥¹¦ªÑ:Ï3¿(3A“e/>ÙÒÝQr£Æ&c•% Cëµ Ì‹¥[Ë·@Xü§¬ÄПÇúÆV[x¸Ââ'h¥¸‘W™ ãvÛ9¿`g}I?½ü~¦d«´|sEI…øÉ©¥¹¬íù>2±ï{áú}0ØîËÉwî½þ»dÏ ƒRÜšm^Ûê,<'rÈk¿˜2}¼Ìì4ø£„HÏN'|Ý'ûVm}ðìë˜,%¸H,5ÇלëÛpT ®éTQ¹ F¥$ÇÙ +M½|SŽ\Ái¯ëì1rÔ—\8G™xFm*Žcre&×í&Ù]g‚°IÒc¿|/AœˆŒ#ÕŒÎÈÌΚ0.%ZDð£Çå䌋á³Õi99999c#¹¤$vtzfvvæ¸Ôq_W²¤ÚŒÌ ccD}=w¥áµwkOª³R—¶\$³µ6Ù¼>Ÿ×ÖR_ß龚Z)_™žùYvæ†Ø°¡Öå‚GÞôÜ;_îÿñàwŸ®›3^âŠ3çþýÓoöì;xè?ßìüâ»ÕSÁ„ËŒ¸þÙ Ÿïû÷o?~ýkBµqý³vî;øã¾/Lâûec—ìÉË;ôõ»{,»×Yçü´™k>þîÇŸîÞö·Ç&E±Ï.Gpí‹ß|ýҵ¾SžwËÚŸ7Ïû¿$Îÿ|÷Â1Ak?ß"å}›¾Zz&ÁM+®¸1Èã2`™c—ìùhVö­¯|²ï‡ïw¾~·–ÑLåí™Ùñ£³Ó*êB$@JL~㋟ìÿñû»#ίy ›A:eÝþ‰ÃˆäyŸ~ûÊu! G Ž4>5=3+küØäˆ0ÖYÂììÌtMx¯Ìyx˜(ÌÚÚl§|´ÇÒÒæ‰Îz(rå ²­í¼WŸ»ÓæbsºžL#Àé·™·‡M²“%_›©F²ÁíöO ¡™ƒâÅòø¥²øØñuER´ ÅùùÅõOsY~~~~¾ßëEkÅÖêâcÇK ”RÑÇó’ä 9,’/ä^eÑ»´Ýd4;ÏŸàEÉÊÊÌŸž–¨„l“þ¥d±H†¢»Þ#)KsCÇ¿U]6é¬DõÜö]]ÃïÎ+8ŒBø§ÅË’ W=8eê¼MÆÛVÌMÇ ò®÷vl}èÎ)·=úIaÇ“/í³)óÙ—ÒN¬¼ïÏw<þ‘ó¾Wg¥I üÓ³ËSKW?xûŸïÿ뮚®—²’õwæææ.øú¬] UÓ?êÛµpú÷?·µD•vÖ£›>ÿùÌßßøÇa[_){ãü#¯ 9ËïWFdg ÿíd°ÚXÔª¯á«Õ¸à¦åŸmž• •ÊP«r£,4S¦ò?zꋊZ8ûº/í‡{²²•qÙé G z~ø‰ó?Ïëbûœ¸P)sû½QÿyéÑGÿV¸è‘k r3˜öÿßvæÅ·Ë#¦?;µþÝw~йæÄ…@(â„¶ªÂ£ÇN4ø"£„]B­ÐVUtôhaE‹³×¶øCæ °X¤ïLIS$Ù{öš¯Pàmmçÿ^pŽ8ŒëvwMkŽ7¦ßfúÜn›óùÉ&Ýî.§aÍ”Sx|§£Îæõt´wâÑ|6XOL[ôÅ'1šö˜­N0è0ŠgKU…‡O[LÃ1¼ärco(-lÂ#x m²Fe>$f¨ÿ)»ÞšŨ 1`˜Ûp¢¸þê8…#ˆÇÁÚÑ´³¹“¤Äw‹û¸G,1IIÆßß;avüös!gn’ ŠÚ: ›Ç0ÀpBœ–{ …ÁÊlûcó)»ì?<þÒÃ)8e˜269Éøû{':½µº¦PÁ*8†“a2™kÔ嵿¬WÈ´9Ïg^3ûˆ½¯”ç`û-ïÄ3ÙÈý‡øÙÙê?¾, ú¶È"}m£Z-“¦Jã•)’B•¼®´1Deзe÷i+€µ Ì“)h ’k>rX0ëö›¶Ã[\Ó²º¤U›gž8e@ Þßq¤ þP±o^´Àðf¦þ«ì»sÍÿ½M·ýsþh‡yÄe€ÇxÌu6€6µu&F H°yy|·£ÎF1N‡«×¯uè°8tUX7”£Ãèè+ÑU‚ò¸»³ÜÍíö> °oÚÿ”= À*ŽA?^3˜Ç o0Œ ¯|{I’EÓ]ÏŠ¢H Œ¡D7jéŽ/Ÿ´Ù[ŠÞzû@0a°2#ïYûÙd X\—¡,è+‹u¦öÐ4í^÷nìÓÏm}XE5ý´}ã{?Öúc¯x·¼ú^½å¾cξRžé·<ýœì1X¾,;ùÈÁãÁ dQ«¾6l’&NÝþŸÿðSÔR—~ï@ÿõÜ^>Ƈc!Ç(*]7³ããÇÌìi¡ íwÊž–§išÅbA›¨²}ÛòÀã[ös³ˆAÃ0Ž*eœÌ8A»lœíHœÍy!:ˆ0¹œ2–õŽ|uÔ—4±ã3’ˆÚÊFk>ܘ~›éq{H‘D@Ø[:Ù a"ܦî¼Cgæ x± Ã@·çzÖÈs–›ÏVÄ©éú¢¢š!Õ£3ú À"xááÚj²¸¯à9ßþÁ‘'hØÍåÿxÓ»U ¾T& -íþ·×)Ï¢(ŒE`þ{g³I·ãêYÛÅ0,Vð·®‘EQ8Ñå?AQ€rêâkó¿}ÙY£î…Aˬûò¹YŸô½¶ˆ¦éžÚq<¤ç¨øfÍ¢o€ÅŸ¹üµeS‹|Ýà<¸r±iÞê'þgïª_m!S 5ï·¶Ù)é²±'~_"\& EµzÛ=Y‰‚ªƒûUs'¦qJûC½0€‡žŽ0ýÞˆÝònìÊ3°X,/å…À7'ã¡iœ2}ÖC3¢ÙÑÐÓ£ n¸9ÅqüàÑÆ«ç±€¸<0 ãj>UÒxÖqz;½ÿ3TžEQ8ÑÝE²åí^«‚‰2·±ä¼‡ c14:ÆE«;›ºmþnLÿÍdT¼;cîÎæŽòJÖœgÞ~*FFXª~}ïͽ½ã3Ý¥[ÞÌÛ¾|aÖ#ou†LyÕyy¢ÇjÙðv÷C)PíM-bôµ £«r6u4„©¥uÁ‡b–J«sé5ð„™Rè2øÇþ;V/È9ôšßã7ëO6tJõh$1ØPF½^˜:>†…Ñn³¡Úá¯±Þ Máhª4t¨¢{R_O@¤É­ò;Dé9±]~ˆ»¹º–«•ËbÜVc•®+ê—($vcMàcmlt¤G«ÍM®Ë¥|ÿ¹H3½n·ÏCÙ=”ÝÎx<=C±Ch&ÆåžyÓÎÉɆ§ë"†„]99ÓÑÍp%BÞ´rÿ”#ÓžßgŒÔÌÞôwÑÆ%÷œ/œ¶¡x¨•E WWR‡BÈGeHÛ N·ÇôR1lÍ<ÇS”±X1bð–ý÷Ç~ñÝ>†g¯+8¸ý½~¬uÃØ%{–´.˜ýiÃP+w6q³>ú‡dýÝJÎ’FÍØôácmoÏ|ùày}D(÷\,Qt‚F%b3.³A§k¶÷ëHë„ÅOHS³˜žØOÓYÒoö[¥^>.Œ“Ìi,­ôŸ!ÀU§]í©)ªl£ºSŽV  í¶µÕUëMƒà]l{Ž3Ñð褦þda»ã«“’â¥%•¦À÷W­‰ÆZNouÂØÔ”˱j3C*ãâØ¦²Â&'Æ‹HN‹W˜ÊZ»ÁlU‚–o®(©p?"9U£4—5_[œÓÖïLFÿg·ÆÄ&Fgb–=uyô­1ÉÖc\nÒ5sWÞѱ‡­²1·=±øéÉK÷…<`ØÑ|hóÚVgáxmD_ì¹pi|R¸³²´ÊŽK4©IQÖ¢º~œ’Ý'Îú’âFgŸµÌ{*±Â5IáU'zŽÁr›êtŸ¥÷a™Žºâƒ #%ñc#M¦š‹~^d{Ž3É‹õй8åìlm¨3t¸|À‘ÆkcåBÒçîlªÑ5Y)膱Áãö¾žnXRí5Úpº¥²´Þ­çê€äóÙÖf£“›Ñä‰ ÀäR;ÍõÖ6§ŸÕlcb¸$€‡C²:F;å°›,n— ð׈‹Äa¶ÖS6/`k©¯Çˆ~Ì>ÌñÙkj:Õó•#’Ð.½©áãf ›ÝšÏgƒeÞºHùDœz,E{íGk>lu GWŸ©–6þRÐìò@cÁ®íî9š“ßøâëKoV˜oùßW¾ÑÑxäMYþÔÍ)átsÑîõ«·˜•÷mzWþ3Þëj6ü¦•ÿ¾áç[Wü—›6óå¥eÅr­5ù{>ؼã÷Æ`¶Ÿ_&ÀØ%{–´¿¶3ná¢ëä¼ûâª}õ>íœÏ>™ ð^Þ €®óÀzŽ¿ªÚ<óÐis¿ÊÌUXŽm}éåÝ:€ßo=Äpà¼N?`Ï%’J-Ç- ÝГ,å×ÙC&}Áô»ß„«ÄQ&j¸-§NZh€®‘`uE&û¹U0^s§¥dã¡ÏÖ¾`‹ú¯üH1spâb9ªø(¦ùdÁñ¢òz [,$E|‚ÐVUxô؉_Db”°K¨ÚªŠŽ-¬hqörWIžÃ"ùB. ÔÊíñ $`‰˜G’Aß5\¦úf K(Ð6»lõ%]§Î²ø<6E‹G`±H†¢»®einè¸2¢;0BÂá(9%‡ä€»åõ¢¢çê,€±Ç‹ù`§2'…Kf'ÇNd;¨¯?J &k“§ .‘Þ‡»0ïHÊüõ/̘¤ Ãñùº^1Sîÿå•Ù³^+HXôX. Â?-^–\¸êÁ)Sçm2Þ¶bn:­ú¾Z nZþÙæY© P© µz¨¦-~Ô·káô;înk‰:+M´úe@üm·²¶ÏŸz×¢ÿÆ?3+Ðm{07÷¡÷«Œ_-ÈÍÍÍÍõG;”¬¿377wÁצþ”©™2•ÿùÓSï\üSÔÂÙבÐ@ Îëôõ\,<&,*9AÁóxC?\‘Çàœ êè{Õòd6f±ÖÙ>»Œ+Lb­ÕðiS'ßœ %dê;ãå¦uϲnj3¹Ñ–ù/TÿðÉÿ½³û”Àðýæ~«Ðÿ·Èód„ %&)Éøû{'Ìn€ß~.äÌM’A‘¾¶Q­–ÇIS¥ñÊI¡J^WÚ Çp2L&bºü¯Ö„:?2P™mP»ÿŸûjU…'™'bdoì¿EÁÊÔ·e÷i+€µ Ì“)hÁû­'êôÏë¹Ø8Î0 ƈDÁ¸|8>]ö†ÒÂ& 0‚§Ð&kTæMî@µJüèd¾³¡¤­ï¹!~̸ìhÀpÆÙTQ>HÃÍÑž#ÇÌs½Øœœœ©óóOž-ð;Mî]7N3&’ãsYL†ÚÚ6'†qT)ãd>À ÚeÃÃ0† 1@9:Œg, ­Æ•M~~¾ËXUlÔ8CûÕèHQÈôtky~+Æâ)´É‰pòt»—ÇI’¸Í-•uf»×AÚ3¿@ßU‚±âˆDñã5¯ÍHƒ2ïе6xªŒoZÚÜdmû¬¶é@»c`~:†“”Ša€Œçè%ÁÛôÇgoþ±scô¤‡—¿ôÖBôµ‡€îz¦iÇp IV¢(’E4ékÃ&iâÔíÿù/1E-ué÷zšv¯{7öéç¶>¬¢Š~Ú¾ñ½kƒŒP* ç–ò1>k`oÍý)ÓoQÿõD ó;}€=ø|> ÃèöÓÇÚX*ìÌÓEà£<î®qws»=‚Ïpª=pî©ä¨¯0J´uÛÉfWhÕõÅ%àl©6-5ªüœ°Ý àâÚsĘyž›ŸzƒOQÑ56H8EQ´½Ew²E‡±x∄$­ÒRÖâaÆÕ|ª¤ñ¬ÀºF±³‚0 ^x¸€¶š,n_?Ô¸²!…r Þi´x€$IÊÛ3ðGð¥2miïôc|™”e5Z<ÀP΋W#B{gx„ÊSw¼¼µ×paàöÄåÆ"0ÿËÎf“îað9`×)“éL\l˜rŠ€0+ž©î8çíZ HÞ/Æöié©‹¦` €‡c@`Ѓñ½à8îóùgÃoïüËôÙqáp8`JŠ¢p¢Ë'Âÿ+®ÕÛîÉJTܯš;1ÛPZà¨øfÍ¢o€ÅŸ¹üµeS‹|ÝÖÿ2{Ãb±¼=“t=îgHú,ó Aõ$ÜpsŠãøÁ£(PVœÝé çÊã6› €Íf{<öÆ‘'hØÍåÿp㟓 X{—žgw»T‰q6UÕ‹Ç$E[ËêƒïzpŸÇÜéL– pp^Ütû@Ûs„š9ð¸X—ÍF„ËE,çÈe"ÍFO­WŠx$ÎP~¯Èåt°E.€óÕ £"…8¸].®8\@’«Ù¦Š²qœ ‹P‰,¦Ža8Q~ѰHM†ÝqWDÄ]uøDó…|‚Kë/!~Ÿ.[5 ÂðȇÕ³Uažªó"Õ‡ª{Öo{ùîñÑalR7ùÖ öeÁ&ïªuªœ›SÅl®râétuu´ÔÖʯÍtTUœ>MšÄèk½XÜô¥ÏÞ‘+ey;F "?`™£Q²qR6ñÆtWEE{Wê¶æ–°±“Æ)%òØhiÐß|°2Ï#¸žq3^Y½ôÅ·Ÿ½…²ñÄeæÜN?pÏeéèà+#E$Ap¥rÌdºøIh/Cˆ 1ÇpR¨”ñm6{¨~ó¼nwÀ*¹[«õ.ER¬¸î †sÂÅ|¯Û}Ñ£lÏ‘jæÀãb}uÕâDmz&ɸ,MÕM¯ÍŽEÇ¥ÄòHÌë0ÕêŒ^ Œz½0!u| £ÝfCµÃ^c½Aš4:#ÂÑTièPE÷”ëuÙÝ›>+VöªÅÝ\£hÓÕ„Ïmm­ÒõÄ y6EÒöî!{º½¾6<19#‚…ù¼ÎÎÆêf'\‘’£è)®ýt~eà—Ü-U:Ž6ášHæµuÕÆaéž 2I䣒®Ï¦fÛÍc¸L¡æ4|ÿ<]ÏŽUÝæó:Õ迲]…LËÞ Ÿ©ŸZ´ñ©8e¬øåãe–3¶ذnÌòU_<,¡[J¿]ùZŒ¾4ctUÎ¦Ž†0µ´® £¼’5ç™·ŸŠ‘–ª_ß{soЭ»– a™ ¶ì]Áw5|ñò%Ý9þ`ãõ¯¾¾sÛ^°ñ‰çö4÷ìQðyÞ|¨xwÆÜMÁÊ<Ÿ zšõ':¥ŽŠz4‹@ +Îëôö\t»¾ŠŸ ;žÍ¸Ì†ÊÆAX·á35è%íØL§=6“®ºÕªß<·Û… PÉÛ®«MÐXJ«LÜîÅûé9±`¯-ôïšÏMω†ö8­ÆêZëÅÛ9°ö±fÆåž¤ÈÉɹº§ògØ•“3ý ¿f\s‡GÿTYs{߉À0=s@\f®‚q™8ÇS®ëTˆK ΋æPy†VäÂ"1Agw!®V|m¯ç ´D %ëïœ=Ô: âŠÅ"@ FÈ‹E @Œ<‹@ y /@ 1ò/çÊ4£Ó3³³³Æ_“¤tÊE7!Ë/#¸Šäô ™ã¯‰— UeˆKpÎøœ]9½þRþë"Í»99»Òc5-R»9'çÃøÐÇ Ä³Ö~²çàÏ¿ùxíÓ“ã8c—ìùèáè¾rq³>Ú½xl/AðÚ£fl:°ÿo· j«¸ÌŒö}ø@Ä`ª€@ ˆËÉ x“UB»­¼¨Ü… ¢SRbdmåF —Æ'…;+K«ì¸D“še-ª£¥j^û©[Äx¥¤ÖÜÆÎbE¡ƒƒ mý¾ÁÔun•ÛF“’qQÿ‡;‡çÁ±ƒÆ5sWÞѱ‡­²1·=±øéÉK÷=¤`¨i>´ym«³Ð2ÜËD Ä0f0Æbñ0‘ÐjlqP>Ÿ×ZWz´ÜH€H*u´4Z<4íj7´TÊ ÃÃ0¶4>5Å0-1ˆøì¿55}ëÿ39}oœÚ«k¬¹(/–56fôûÙY[R#µÃó–åDª¥' š]{cÁ®ýu· ‹Éo|ñ“ý?~ÿÙêiZÿÙ€xäMϽóåþ~÷éº9ã% ¼oÓW R{ ÃoZypÅ8?mæš¿ûñ烻·ýí±IQì`µkç|–—·c^¢bÆ{yyyyyg†`Ï«}ì’=yy‡¾~÷oe ÏÐÏŠ‚è°Ì±Kö|4+ûÖW>Ù÷Ã÷;_¿»ÛöˆëŸÝ°sßÁ÷í|a¿»œ~7@ †ƒñXf±HçG&›•5~L‚‚‡‹Ã‡ ‹JNPð<›Íw{“UœœËni§"SF)=µ§ê,h$1È`„„ÃQr8JÉWÓÿUì³_Ô&”ÆÜÍqœtbrqÌ]lTÜ…yGRæ¯aÆ$MŒÏ×í´ÇL¹?þ—WfÏz­ aÑc¹$ÿ´xYrᪧL·ÉxÛŠ¹é´êkøj5.¸iùg›g¥‚B¥2Ôê} š¶øQß®…Óï¸ÿ¹­%ê¬4a°ÚuÛÌÍ}èý*ãW rssss{Îë:¿ö’õwæææ.øú¬qâþVDÏ€e€fÊTþçOO½sñOQ g_ç·ýÙå©¥«¼ýÏ÷ÿuWM×!ãýo@ #ep\$dË Jª­M¼‚ÀqœaŒ-‰xÃøpp·W—U´q#£XMå=Õ#gÁR<Ÿ‘±)#cS†6kNµáÍ*ý¦f NϨîÖ=Ë[}»nÑ–ovmZvwª Knø~óG¿é[ûo‘G!€˜¤$ãï?ž0»]Í¿ý\ÈIJ’èkÕjyÜèTi|FŠD¥’×Õ6àN†ÉdBÌ¢Ëÿj͆¡p~íéwEõ šú»-»O[}®ÓežˆH)Ä&'?x¢ÓëµÕêš<þdýo@ #Å‹e€élm¶S>ÚÝÙÜî  |>†atûéc…u6 ÃüCC'<~t¢È\ßÊŠIŸ>:F<<ÄH†2ï8}zíéÓkO7ž¤XX×ë `XÅx›þøìÍg¸kÖ[qóÞZx­aMw½,Ò4c8$«GHQÉ"ZõµajM\lûþÃKLQ«]úZ/@Óîuï6e<·õÛß~üÖâÉqä€u:¿ö€ô»¢Àzƒé¾þ>Æç¯Å:c{ýo@ #Ë¥(ê¬ï ÃP°ÙþH4`³ÙXRm²Ê£?Ye¨Ã:+‹ë¼jÕðœEŒd×)“éˆÉtÄd =v(P$oÏÊÚž™z+ç2©v)Áqÿ¯™q6üöþÇ¿ñqáARR…]?}‚ ü?àZ½M•(¨:x¤5vb𼡶ÀQñÍšEM¹ížEï½lÙTy( z\Å  ßÖ³ßÐ4Ýc{w‹ ¤A 7Ü9%+x0@ .ƒáÅú¬v‘R-`á8G¬–q-V;X::øÊHI\i„3™@™õ'+ 60ÀÆçc|ÃwX qåÀÍŒˆ¸+Bƒ°„7DDüYÜå´Fó…|‚Kë/î¡Õp0Pݳ~ÛËwc“¸ɷN°Ÿ(3IÚP­SåÜœ*fs•oL§««Û ¥¶V~m¦£ªâôilÒ$F_ëÀâ¦/}öŽŒX)ËÛi4Zh€‘¡mÍ-ac'SJä±ÑRb Ê ¢@z€¦†Æˆ¬ë“¥Òøç=2±+ê¢ß q3^Y½ôÅ·Ÿ½…; š1Ø Ê„¾»¥ZÏÓ&§Ç°·ÍX¥k£€n×Wñ4cdz—ÙPÙh_׬ËÔâ•:AémÓÕ]áÛ!†þõ±q×ùß—X¢©q"G«óûN7Íc¸LÎ!Öp0hÙ»á3õS‹6>'¢Œ¿|¼ìò`¿-Ë ëÆ,_õÅú¥ôÛ•¯0ÀèkA3FWålêhSKëê:Ê+Ysžyû©a©úõ½7÷†ÜvþüÁÆë_}}ç ¶½`ãÏíi˜jì’=ïÝãýT¼;cîÎæþWPÏ@e6Ìn:°õ³V¼óå}ºÏ_ÙñÛ´Ùl³þdC§ÔQQï Õ¸ä`\î™…œœœüüüž¯ilt8eÔ\☘pÚ¨7X.Íj¬€!áP ýìÊÉ™Þëf¸<šqÍýSeÍíC­ @\Á\ â2qާ*¢€„+,¾Ôÿá°"$*áÕ΋æPy†VäÂ"1 5‹l6‹¡Ü^_÷‡K´1VÀŠp¨„~Ы3@ Ô¡ ‹s<ÕPq± íqûšž—†€!áP @ †?èHE@ ÄÈy±@ ˆ‘G(/–­ÑD„áÀò@«Aˆ@ 1ü å¶°„2•*œK ÷@«A8ràÞ;6g×µIÙ¡SŠ—srvùÿ’e—G³!Aœ1kí'{þ|ð›×>=9Ž0zá¿~ùå—_~ÍÛ>+n¨õÁd¼°ïÃ"§¬¸Yí^<¶_I£fl:°ÿo·ˆ^ÉØ%{>z8zàùºQÞ·éàK“.<ÿ 1˜-@ ¼¨±×æd';L€1&ç,’¤?!'çÚn2µA¸ñ9Y þƒPqYrvΘˆîã(¹ê´¬Ì$yÏ (‘&Ó_fvfúèxé•pje¨Õ]®¦òâ6ðÐàk./n„W…ðJÃgÝS]Ç’Ü'Sö'=ÎNr½NKÝÀ…r®™»òŽŽuOL=l•¹í‰ÅOO.XºÏtò{¯Æ.ÙóÂP«‡8͇6¯muZ†ZqÁʸÂòŒokEA{×F—„X“¦¶;ü_œõ%Åý:•‡I„`¶b"±WØmªÓy|ªWJG]q‰Á…‘’ø1‰‘&SÍH¾„òb}´×À¦û^ ÂaˆH9/V5–O‚×Q`¨ÙÔb÷ˆ5ÛSU|Ù²ýé£[:Å ²Roö4®mä</UP[OUþâv]Àaý¹Ÿ^,){rt\{Õ‘µmÁ[e©VejÒÎ|g~9}xCÈs­.9œHµ´ñ—‚f— v­xlwˆÓbñˆëýuÁ-)ª¹àó·Öì,µŽ]²gIûk;ã.ºNÞñÇ»/®ÚW¤ÔÀ)¥Óßù"å‡ÕÞ»–ÜmÍ{{ÉÊZðÈ›þ²ü©›SÂ鿢ÝëWo+0€8sîŠg§&„ Ä\»¡Ð}2ó¥}ö€Ù¥9óWüeZšÌ×RúÍßWm=Ú0饃nÜà¹~–lïš½šùóÆY9÷ƒ“T@Edï¥|®ÂrlëK/ïÖÑ] òÔ-£ÐÖêá;¿ Úœm»dÏ’Ö³?m€Œö-lx|îNÞœÏ>™ ð^Þ ¨Ú<ÓŸ `™þÓȪ6ÏÐÕñ€í{n“®æPÏ +G~«ÐùS›çÊî”_š³î}–ouºM:Ý&]c¡€qúÐtÜ…yGRæ¯aÆ$MŒ/Ä+‰ðOϾ”vbå}¾ãñœ÷½:+5¨âo»•µ}þÔ»ý7þ™YÙ¡SrÓ3¹_,œvϺ‰ý)„Z¼,¹pÕƒS¦ÎÛd¼mÅÜt "ïZpoÇÖ‡îœrÛ£ŸÔv<ùÒ>{àìxúœ¿^[öÚSîšû‰íŽ¥t©I¤©šÖm<’4&ùÑêý̃ÄOÉ ™2•ÿùÓSï\üSÔÂÙבþYžZºúÁÛÿ|ÿ_wÕv‰û°ý\tÛÌÍ}èý*ãW rssssƒ¹°P²þÎÜÜÜ_Ÿûjt¾žÁˆ¹ýÞ¨ÿ¼ôè£+H\ôȵD0ÛÃn[ô×”²7fMýóý/ÿ¡}î™É‚^epÓç?Ÿùûÿ8lƒ\£ÀCŽ!O IDAT—8ÙòÄp†+³Õ5Xû9B„K"ÔX‹¡£Û±äEÉÊÊÌŸž–¨„zúRf³O,aóÄ"W§Å_™U áÕ vp…I,°u¶75}¨¯Û×djÆpðXµ¶WSŒ»¤µõÇÖ¶òžoû}ãwM¦zA ¤"ÙÃññs¢¥r€8yìœøø»ÄAÜŸóxkë­muÉ’*ÖWìr\¤‘Oëže­>„]·hË7»6-»;U4eLRRÛ?ž²û(ãÏKRR$Á„P»ÿŸûj>WUáI&&&T\qà”®¢j>kyÉ)püÿñ„ÙíjþíçBNR’ : Žc`8!NKé)ôÜì¾¢ -ÜVÚá²7)ª“Ëåþdté‘ã.§ÓY}øp»Óé$É`.pvýw[vŸ¶ú\§ Ê<‘RˆMN2þ~ðD§×k«Õ5…œH+]$çë Ã÷w©o3ü~¨Ø- f{tB¢ñ·ï‹Ú\žÎSÿZ·ê»š3}™6çùìÃk6ñ{«ý¾F/qÿ-PË#ÃR§fkÛûû*F„+e.£±«7±7”—”””ž(×[¸qU¨(Vw§™+dbÚÜÙ‡cÊ—}mö„Qaf}ËÐw\M¨Á7w[Myô|@«@8ìÀp€ò1ÀØ[·ÙûJïc(p·¼z´cò¦ÉݪöG)€X¢ž ÷¶|Û4ÆÇb…<&%dʦ¯þòdwí4Ý5{FQÉ"€1”èF-Ýñå“6{KÑ[o;¯ðžìü”{^~ajIy1¡ ÎOØÁ²÷VÇp`±ÎèÙ'ýo¥‹ä|=ƒÑ£¹Ó™,ààƒ0L¨g ΊÅ6'Ìÿ ¯á°Ãe«¢@ùˆZý¨6ù/ɉ“»Âä= N@<5>rJddf°ÙŒ›®TN– EÀOV*' .z¬ Í€»‹ÍÔ(…r²R™6ä;–¨îY¿íå»ÇG‡±IaÜä['ØO”ƒ$­¯Ö)2rb8íôÿ]óPLa1%'eoLwUT´‡Ð Ÿ)ªuªœ›SÅl®râétuuÉb‡Ëål‚ y,WÀÃ#»æŽL¥C-dÀ%@ö¦†Æˆ¬ë“¥Òøç=21x|²½¹É•ù?ÉRYÂä§»®Wö¶æ–°±“Æ)%òØhé@^ˆ@-%qR>é¦ wåéö`¶7TëT“n'ã‚Ø;W}öÚ­g¶óñžÜ¶öPÚ’g& r^âà rA[>nÆ+«—¾øö³·\šhwÄåcv|ƒßoÚë ó»8®·øŒù~€§NLÖ&¤ÆËÎzø°Ã„¤ÍÞóšèe‘B!fãN •2¾Íú ’±ÔŸ¬hîïÀ*†sÂÅ|¯Û=²]X=ë¨/9Ü ÐPr¸±kâ ¯xá°Ãgþèt=;N996– ÝÅMu_˜ýŠ2Gë«ö‘q7(bö¹öZ ÇζàaSµÚtÿgò)­ÒÐhûÃ~qkFp^$891Úæ—Ó­eÁçz.-{7|¦~jÑÆ§âD”±â——}XƤ-Þ½e†väÍëZo=°aý˜×=OB8 G?]S퀀BË\°eï ¾«¡à‹—ß( u‡ô3¥åÀ†uc–¯úâa ÝRúíÊ× €ÆýÛôîøi.ÐCáöU/n?èyÜ´ÿƒo®_úÕ¿›Š¾ZûÂ[·¿±åMxüÓ~·RÀì Ê%5ØúÙ +Þùò>Ýç¯ìømÚìåžo»qïæ¹¯¾óÅ}5ß¾ñ寷?Ø“Ôùó¯õõ3Øö‚O<·§9`={|ž7*Þ1wgS¿Í„štôÉg¶}§ây ÿõÊšb&˜í;lX7zÙòOö)H{íá×îëýúá.ÝòfÞöå ³yãhÿ¯QÀK¼AÎ#hË›õ':¥ŽŠz4;Ò†ßåì7½N›‹"i»«wVL(à;Ž‘ÏÔ —h´c3IœöØLºêÖþÝ÷XרmÏé9±`¯-,mr?6='Úã´«k­V~¸q¹g^ksrròóó{¾r¤±Ñá”Qop‰cbÂi£Þ`¡‘ðÊúÙ•“3½×Í€¸*é½;Ò`¥ yÓÊýSŽL{~Ÿ0R3{ÓßE§m(¾²†€‹²}¤0¯bˆ9§C†ß ô›ˆËÀ9žj¨¹8B®PHx°øRÿ$¼„ÄeÆ[ößÅs¾øî›Ý»w½ëË·nlÝþ}ùP+…8 tƒÈ0ìøP¿9B 5‹l6‹¡Ü^_÷ ¯¡4‹@ ˆAáœev|ƒÒo".çxª!7Ρ=nÿÅéù€„W@ ˆKÇ0ìøP¿9B¹œ¾ @ ƒòb@ #äÅ"@ F´ý;©N›ë®8VÕqAûårÕi×D{jŠ*Ûü{v ã2ÒÔlÀ0W}qèÃÐÂâ'h”˵Öäïù`óŽßƒ`?vÉž%í¯íŒ[¸è:yÇᄌj_½@:ý/R~Xí½kÉ-ÑÖ¼·—¬ü¡¼é/ËŸº9%œn.Ú½~õ¶3ˆ3ç®xvjB¸@̵ÚÝ'3_Úg˜]š3Å_¦¥É|-¥ßü}ÕÖ£“^:øçÆ žëgÉö®Ù«™?oì‘•s?8yqdz!bØ3ð¸XL$Z̳Ù-–ð€îè°$b€#6EkÅÖêâcÇK ”R!«þx~~~YsßžVÀìÀU¨¹í§KŠ«,‚¸(IP¯‹PÄ'mU…GhðE$Fõä'yB‹ä ¹Ã7"˜Å"œ™À ÚeëII9:ŒŽ~Ú;$äèélm¶S PÍíÎqB´š¦%Äñc’$ncsKeÙîõûF>ÊãîšLu7·Û#ø|ÈÉ`f~Þÿ6V1‚(~¼†ê cЬ†“”ÆÞº­O‡ÜÇPànyõh+Æ Ä³äˆnUû£@,QOÐ{[{±Ué‚aÎmµÁ¸˜M»×½ûôs[VQ E?mßøÞµÁçQz*ô1>ëÜGKÓWyH’EÓ]/‘E‘,C‰nÔÒ_>i³·½õö±ó5éÎÎO¹çå¦&”ªàü„¸j8·«ÉïãÐQŽDB×1¸@œ0A-!ZÚh©Ã3Z,ì`‡Y;ª}lEœš®/*ê R=:#äLdúÎŽa˜/x?Í0Œ«ùTI£ë¼ÿ¼ðpm5YÜ>èÛÞ¡—ŸÐ×Ë=!øR™€¶´wº|xx„ÊSw¼¼µwŽÃX]ÆžƒÏ5БùΚGòk€ñfF_q±AUl¬V+G(dP& ³ÙmÀøœèšÜÇñ¾Âh|ŒÇÎJ䍸fÍ¢o€ÅŸ¹üµeS‹|ÝÖ§*,ËKõv)ŠêQ‰ Š¢”S_›÷øíËúvò•SÞïxæý¿Ú|ÒéïìJë+½ ᆛSÇ Ћ@ ˆË£CI‰„´Z»|›Õ.’ˆü®†»£Ã'‰R‰f¿C€aAƒ“aJ1ÇGr¸>€Π٠—ÄcKdbŸ#ø2—ÓÁI¸8ÎW'ŒŠvÊS'JL­‘dþøòâ³vÚEJµ€…ã±ZƵX»ûvž:1Y›/벆Åb1Ï9‹X¼ !R(ÄlÃI¡RÆ·Ù‚¹>«Ù¦Š²qœ ‹P‰,¦Ž¡^ãñ´¥ÑOÄjEzÿ'š/äXZ ¼ë²UQ |D­~T›ü—äÄÉ]A¨ž' ž9%223XœÆMW*'Ë„"àˆ'+•´]¿Tl\'Š«Òï|0=R¦ÐüÏ·Å––œ€æ&CTæÿ$Ke “Ÿ~ì:Ae´5·„4N)‘ÇFK ,núÒgïȈ•²¼F£… £Q²qR6ñÆtWEEÐmʪuªœ›SÅl®râétuuÉb‡Ëål‚ <ôs‚`±¸Ù5wd*²èh!;ÄS,nÆ+«—¾øö³·\š¨g@ %ë¤ I¸ÀÖÖíÑV«;F"òï·åèè`EGzô5ÝsÙÆú©6#+ÞkmÒ•×(FIÒ2[D×é9±`¯-,mr ãÇQû_ÇåÄ€£®¨Äà ˜ÝØÖÐwMf2ásYš+«­³SF½^˜:>†…Ñn³¡ºg™»×ewSlÚáÆ£º[ªõ¨JƒNÃW«7Å¿øÊ?ç*9æß¼¾ò Œ{7ïÈ}õ/î«ùö/½ýAèÙ£àó¼ùPñ;›œ?°ñúW_ß9ƒm/ØøÄs{Z:Ê+Ysžyû©a©úõ½7÷š‚V–¹`ËÞ|WCÁ/¿QÔJË ëÆ,_õÅú¥ôÛ•¯0û·é?ÜñÓ\ †Âí«^Ü~"Ð¥nÚÿÁ7×/ýêß‹ME_­}á­Ûߨò&<þiPÌÿŸ½3¢ÈøëžûžÌ‘É1Éä& $aÀ,êO\@EPQð@DPXqñ`aQVV”CEDåPDAÅ‘#„„„„Üç$™$sdîé™þý‘ƒ@ºC†B ¾?›—ê÷^½ªé~]]]Uš[i’Ùò+ÐH,@Ü~`\îåA ­V{+¾aGô»µÚɽÚXŠ~;£ürJϾQã<™8h¼«ô…œš>¶ÁM'ð±Í[bwL~ó¨íÚe{öKzù ëÞ·Œ;5ñŸû­€±ÂŸÚð_ñ‡×ïaD/Ñë7ÄmÃU™j·_˜"7œ§æi¥u(…½&ºß÷^˜öÆ÷ßÏÉÿîÕùÛK{Û.áÎùýÈ´¹»~|ÖM$ dÓÅ/Wæõ¶S¸ÕAc±jУs†%Q«¥.}u¥×çˆ º¡ z 4‹@Üî¸M•%×µ;4@ }‡[w+@ ‚”Å"@ ú(‹E @ô=z4‹åÇÓ^^ã“)V÷<49yȠ耫ŒIš4dP˜ÍÇE nòlH;¼ìo,ª¿%¾ºÿ³Ç» ”Oúxß’$&€$qÆêmû=¼÷‹Õ/ŽÒÐí¿`ßÖÇÕÐÌØºg~¼O•¸&]׉‰>·ùðá×G\–Hf¾ûå¾C¿ßòö?bøo¦Ÿ-´‹<À´U_üxä·Ã{?šÙSNõ”}é ºÙîÔ§OÙpðÀ¿ï_·ZD߀¥Š!Á@64>ˆrÏn@\rR´¢Ë¹Dtò‚㇄‰®ÓgD/уY,Ë_Èpµ-.ŽË¢ýì%Ù¹Õd`t°€+ à5\Ì(±)ü¥Îd¢Á`DOƒ³#ÅâPÊDîvG¨&Ê/¤ÜßUàè±Gf0hÖÛã Ÿ<7aÌÄ×òâÅQ²žòô& ·týW_Í ¨«m'äþíåå#Š?˜9éó·»û÷Óýp:a/Ð.ò;>1[|øÅ‡Æüýñ¥?•÷ŽK·5l\½úËÓæÞöqcá(”œ†zSçûÃ8Ë‹‹«M]Ý•¦K:}»Z㵚W_Vãhˆe2[m•Ùåñ8ªëA&ã $†a€a[Ö?öòÖ°DÁ’??`Àc’;°g±S´!mÜQ4DÛ¯U„Ž|yÝŽý‡ìßñê~gÂVÔcÆÊ<ïNP€¬êBFÃe­ÊØýÖÓK4•îWŒÉaŠ{^ÛvàÈÏ_ÿ{¼€ˆ™ÛÓÒ¾~6J9åã´´´´´–³d“×~ýÁ{}¶ïð¡¯ß­™vöÿvüõÈíÿ}.¹õu®¾wá‡;÷þõàwÝÒ‰N* …'÷4ï•YMí„CîYüÃWgë­–Š#;~ñŽI#ñúá?5~Ù–o?˜4dÔÂÍ»¾xføqSW}ñã‘£‡÷lù÷Ó#‚ÙtÆiüăî]¸þ›GÿøÕš™C¤´‘÷dsZÚ‘eÃÏÞ~èèуk'(hCG¡“Æy*([3~Á¾­3RƼ±mÿ¡_½5.¤ù·DÙm(Ž®î#_^·sÿ¡ƒ?|ñŸÇÑxQŸ¿`_ZÚßôï§S„­%iªIiˆ2tˆ[®Bɪ¯¿ü¬‚±eñI)Iƒ£ýy ªÕ­–\ÞJ^64>X¢ˆŠOJNJˆQñ1ŸtòÕƒµÚÁ!|v@œV«Õj[k1Ž,|@bRJòÐÁ±j1«ƒ¡ÁÑJ´¹u/ÓSwz^P¨ÜR^ÙÔö Ãä°Áå"EÁ1‘JžËåb³ÙàlÐ5IbBÙµ DPl?WÙÅró-¼,ѧÀµýΧŸ=}ª.EÖ,Ž~yiÿì•ÓþþÀ£Kv·nM)l%rìö/‡.’Îsi§bg¯}uʈp¤×Ûé@FÈßÿüëëO>ùyO co™–š:ý“Bý·sRSSSS/ïìÅMHâîš;qÒ;ÅçVà 3— ËYñظ‡fm³Œ_ôX·$6çxtÙɈ…/t¦³Öü£?Ÿ(³^!“(ýÉz½+~Æþ5.T_§W*•4BFœJ·æÃSѳ§²¶®<@Þ3\ š8ÿIïÇ?ºpsV@rœÒ2Ðù)=q̹åÓÆMxvƒ~ì[³ÚßiÛG¾î›çRSǽwÆûë²ÔÔÔÔÔ–-‚)BG£“ÊyŸ;†ùåì Íû=ì¥)8Pwʆ£«û˯Ç]xû‘Æ?³ÕþÈ›3úûº¬µ¦¦¦ÎùþÊ=©ªIk¨Cè·$|¥¯¯·´ý›« à6\Ê:_hh‚¥4•žMOOÏ©¹z9lž¿?C—{öìÅ®&ØóE§­ò|zúù ›«&'=====«Ú EX¤À\pþÌÙ å.e´ºu. O©ÄªrΜÍmä…5»„è5z&‹e)5dUYC»û!Žã$IblXÌc¤ÇqgCQö¹ÌüznP0S—ŸWmñôˆy¢®üñ°°™j™@£öÄ—‰<å쨨ùíþ›æ×—æ%`µƒóÒ3½¦ô¿Zm„ÆDëO¾`r»-eź–ù>”ÂŒíô´®M€ã¸×ë í•Ç?ùâØä§4~ðé%©OoSÃdº‰ÖäÎKzqìZƒ¨þãæ>jûdê£Z¼²ÉëwÇ5K ‚¸lˆï'Å,Vw—uRbÖë™ …À J…²®NO#TR+°åï]5o/°Äš!S—®X] –±p–bĽ‰Î‚K­ZêkjEñ#ûK¡jÙåO1®„Ádr<8òAã“ümrµZÈÆ¡²¨X5bÌ`9‡%}pùöcÄ¾è¤„Ìø3-ê¡i 2¾@}+¢R‚i&/zy|b¨Œé6éõf@§óú;øYYT¬ÒÞ×_Âæú¿'ÁSTÔ’wˆ¼Ðéì"t­) ÷gã,ùð{ùù @Ým¨޲îEÅÊDm€1ù_«¦Çu:f|ýMì£!Í”7V.zíý—ïGéÜdxQ1‘ýÃäí²\ªô³é®|¿ÁàpY`l©\âµY}~ÖðA§ÛédФ"6‹Íã²0pØm©\ÈÄq¶T&&m¶–’ .ŸÆ’ÊÄ«ï.!z’÷·§¡´Ð$2d@0®+¨²€×ã!µyÿ¡‚ú:´ðâ&€«ylçáêFûµ ÷IZmLNv^Ë¿¬YÙ5ôñ4ܼÝ;iý7[—DÞ}¼åc}J!÷®1Ãsýf¸¬´ö§uÛ Ãç}¸ûÐÁoÖLr}±ø³@ÿÓÆ¯aòú][Åfìù³åô’C[O‡¾´åÇ_~Úò¼ì§7>=ßúöýôÃjívìÙ±þ•TšNÐøt¯ø…o}¿þI|׫ïÕ>¸éÝÉ*0\·¦pðÒmûíùð!ûgÿÛßà‹N€aK¦¥¥}?oïwÓÒÒ.`ÿý¿ËÏÆþó‹½»ÿ÷gç²­ù^ RbÈ+`ÞûÒû_îÛ¿sÍÆ×þÔéÄØ~š®[Sš²|×Ï?~þRÐoošAÒDÞhtvÊÖQÒœM?þéóÙ²}˶d‘@Ým¨޲îM×­­¹wí÷¿þá¿r2Îu:£Ãéñ ö¥¥¥}ãRC®\ttŠÂ††»rš1@ôWeªwàššˆ;œ§æiÕu(…¥GòcâOJCW曊<L¹RdÔztñÍ¡qkÆbÔÜ^c±è5Ð ÑS ±X@ DŸe±@ ˆ¾Êb@ }βX¶Ÿ:<Ä@ ­t¶­C—w¾\ðÖäo— »%DÜj˜Mº½fˆ÷˜Ü/ºéü…ûöZGƒf½=Þ°æ¹ 5ÉŽ}nþ‹£2í§^“?wý?F®‡øû^½~Õü±quýœùÚ%û*ôñ¼ýëŽ@ ½IgY¬×ãv‘à%l=@ÂîÃ8x=^²íàÖö ¡±j 7AÀóþ<—¹rU¾®ÜGï-ýU¶CNîWQ~Ãý8?êœbqÐsš€xÓã¶žª*ù¬Îž“²€_ýJfE9$G¥,Õ.¾DþsP«&ÿ}"ð• XªßÍ«*èÝ5 9A²ªc5Teì~ëé=Í›£â#ç-™s¬”¨ÉØùÞªÙ´ÍP–ÄÕ÷¾²øùÿ‹U2L¿mZùÞá oÄÌíÛf†|œ6 7N¥[?~Á¾'ÉšËüqÉØ&\аb‡fî¼T¥ùÌæ×—í)¦yÊ»\ò.…áäG¯-ß_áM^¿+ö—•î‡ܯnJ{ÁÛ¿ÔàA÷¾²ô…ûbý<5™{֮ܒa¤vž¦šü¸©ËMOå6•¤ïûtã×'ª\4Â.CYw*>Ä@ WÐÙ«n¾zPrr¬?øÁ-Hx'ûb¹j¨»áO é/ ™(Å®O‰Ãå²ÈÙlÀ¥OÅ„gÛ©¨8MFEÄL5'°Ù \úT\ìCÆÂÁé¨i¶®PÁŒYI™Xý ßuZï1œçÒNÅÎ^ûê”á"Hoó‰pô˯Ç]xû‘Æ?³ÕþÈ›3úÓžOYR4vÞ’ØœwfLxàÑe'#¾4JP¼eZjêôO õßÎIMMMMí$åÊZû`jjêœï¯7¿óÅ Îÿ-xîSwu¶Í}ØØ1Ì/gOxhÞïa/ÍHi½\q’¸»æNœôNñðé£Õ =q̹åÓÆMxvƒ~ì[³0ç©«©š8ÿIïÇ?ºpsV@rœVØu(ëN¥Ó‡x"â :Ëb=v³Ñhq’àq´ á ìC45Vl¨ÒíÐ7àröuçà$ €c\a4,†ê¯tºÏkÌÜ~B¦Îáœ-KîI‡‰„26XN XË?¨¨þªÎ€I˜½þP·oñÓ+ÿÀîš·iïî ‹î/‰Ž®?yä¢ÕKè>+•ÒNYR¥?þsf½ÃeºøÝšå?–ôÌ ïÒ7í¹Ôäu\ÊÈqÉ:)Yvàóý%6¯£ð\."o‘:2,³{›ò².:€Óì¼þÄ‘ F§£æøÑsœèh9ó”ÕÄ1œ%’Ë…˜¹8ýÛUë~i:a7¹:âÎ¥³[¯³¾$¯ÚðÞrtÈ­Ûdóü »þÁP kV…á,ÂKA’ÀÂq›ÕÑ’0?`¸\¡¬– 5€<^’ð4;ÑÛC±nÝÉíïžÜñ¡zÄãK_onõÄÕ±XÌ I«·"€ÉuTç°éN¦,Éb1 ¢å}¿µèÄŸ=ä(ÙÚ‚^Ò‹ceÆíK2;<)è¾}åùVç=ž? ‚`1Y@ãƒæºc×Ê6…BåCÁšE!RŒ´œ08Áa)ò€Ð/èñ€À§T"W¡Õ .GWrÜ… ¦K[Nã–œx¡š´v˲‡‡¨El–P3jÌPë…=@EQ±2QÂàDLþתéq´“P)KV«FŒ,ç°¡.ß¾bLëšQõ5µ¢øƒý¥ŠPµì®R& ÷gã,ùð{ùù tÅ*‹ŠUÚûúKØ\ÿá÷$xŠŠê霧ª&¦™¼èåñ‰¡2¦Û¤×›=^a7¡×IOÍ”7V.zíý—ïçvÛ2@Ü–`\îå+¤V«MOOoÿW ’$Û á Ø­ÕN¾¢3ô&~õs¡þq<¦Çm=[]úi­Õ!Ý8(ÈÏí4â,¡×‘©+ù¨ºÉ€ß›2GêüáBæ6 }ºé¹³Ÿ’¤§ÑÞt´¼d—ÑéJ‚ŸU ä1½nÛÙêÒOj-vàMú™¦Ý— úücÛÖ~ðS¡€2꟯=?2JʰWŸþjÕÊoó7Ϧ)ʶ[>Ч* ŒQ ?{O¬’e-ûëËÕ+¾Ëky4`E>üæ›Ï a[3>|ná¾J—Ú¾Óo&ÿ£)³vèâì[P7§ù¦ÄW÷Ï­|fÖÝéïÝeµŠüùŽÊŒ]ï¿óu– ZÖ(Ø~ÿÊí‹2BFýséó÷ÆH=µÙ?|°bó©F qž¢š˜8nâs3' ‹ ‘3Ì…~ñîš}….J!uä)ãIU÷zTñ”ܳxÓ«©¶=¯?óiVï.€@t“[ꆂèÓ\•©v–Ård¡j?B_Zí„„øyô¥ÕfÞþÂfnõ‹ŽàryÕžL4ÞUúBN íÈ¢oÐ>ßE }˜[ý†‚è;\•©v6£€!ðS*¥< ˜|YóÞ Â¾ ÎSsˆ´ê:”Â"q{ÓÙX,Æ`³™$át{[7s­@ ¢g@Y,@ ¢ï²X@ DßÃç,ç)Â$ MNIJ ôq½sQØÐø Ÿ—ð‡' äøzV߇?L›éwbLaÈÀ”«‹Q ;€qü4ýMNI20ÊŸßçŸiü"wjµ»Ûý÷I˜ˆ¾4÷ñÚÝâSnž7IâŒÕÛö>zxï«_¥áÄ/Ø·õqõ³™øêþÏ 쬄fÆÖ=ó㻤,xʆƒþ}ëÎ 0`îwÇŽ;ögÚ—34=éRCôðL[õÅG~;¼÷£©‘]÷Ág¨£Ôu?»ÎͪQ®¯5¯À‡¾ÔB:Ñ /8~Hg·ŒÛ¡&qذaôÚÁÁ¼ÞöÅw:ûº‹ Ž*2ŒÛ˜—•g#¹Ê¨ÑAMç*¬7ij;–¿&áê|çI®dD ·Zœ×RÂVEFðùYù6àÆô÷7æÔôý­.Í&Ý^cK5ìÖ[s·ØÁ Yo7¬ynÂ_MòcŸ›ÿ⨌Eû{Û)Ÿ¨ùcãê:û¹¶€s×ÿcäzˆ_°ïÕlˆîßž˜->üøC»tŸsó»R—ýì:½W£ÖšÄmCà¯djŒ7oKÙ¹¿Ê@64ââÉyÖÚFGnââc‹‹Ä¦º‹›°ÕÖBƒÄ°:YÒÐè0!œMµ¥…&7Æ•‡E„È…lp[+ŠJê[6îÄØ²ˆ˜Ûm¬((¨µ‘À‘…E„*„,¯Ó¤+)Ö5Ð&±Áåô2¼m›û0eƒ"ü<µÙæ[r'О—¨Õ¼úÒ~¿“Rn«A_VÝh“ÆÊø )mˆ%"KÝE‹›°ÔVT`ŒÛ`½X»Ýt²Ñ^³Óݺ?BþûDà+A°T¿›WU ÿ²¿Š _¬•x~¹xz“ Äâ g5ƒyLËr¢²äóz;’9ÉýïsU­®â<&S†Í ®¹·m/À U˨q¸ *c÷[OïiÛÝSÜóÚݧ4þµé_oì-öàA÷¾²ô…ûbý<5™{֮ܒaôdÃGŠÿMùøbó)ø½oºû蘷~§¼Úà#ç-yáþJ¨¯sñíß\ι?VJÔdì|oÕŽì&ˆ˜¹}ÛÌP€Ó¦@Û&a2íì·^™'÷Öfïýïòͧ Ðn—¯ÂSÿ¸d쬢†h\¢‚ÒPü‚} VìÐÌ—ª4ŸÙüú²=ÅÿG6?oÀß¶šÝºñEè e;±_VºZp¿º)íýoÿR;âõÃT­sœ!ÿiÕO᳟?õö¬Os ŠºSG‰: TÖ©œ§¬z7kDP~ÜÔe‹¦'‡r›JÒ÷}ºñëU.š6ò¡5Õ÷¾²øùÿ‹U2L¿mZùÞá /M_êvgh Ý] ÃÉ^[¾¿ÂKSwÊ(QøIS#Ê(Q ïŠ~CU¦ÌæA~hB,V˜Qf¡ÎXõ…¤*\Î% %y…õN†00*"HÂÅ »©®²¼ÚàðM"ÑEøêÁñj@œ6lå™YÕjëe,×g½œ+SG„úº‚zÚ2T™•(lh¸»°š§ óc»eùz€(lh¸+'«Úâð$#;[çË‹*¯cøÇ&GH[Kxõy§ŠŒ el’¿ñ\Kk† Žeg”RÿâÝnFXì E]I©Îìê©üÍÇwÈL&ËKxZKÎæêœbu„¤©èü™³ÙÕ„D °¹¨",B`)Î:s&³ÀÈ ×È[&p•s¡Ò,„fa„ÐR˜yúô¹üZ{»ê²xB“ÅrûüëïÎà…Ê-å•M×hgµQo´{º ¤‚Éd‘m­I˜k* ·`ræ;ª€Ø ‰‰7$Foò"V¨Ç`Æ¿¬¤L¬~Ð{ý§Å§\`ù¹¸xCqÉv\útLèp†é³üKûü±‘QÚ^¯pc„ößê­8Wþ â–ÜÖÞy.íTì쵯N.Âôz[ûNȸGÃŽ½ñÔŒ‘óžNe€pôüÅ1ç–O7áÙ ú±oÍJÀ ®´„€ î]º}ãŒþ T©ªËJi˜…£_^Ú?{å´¿?ðè’Ý%D›ðõ¸ o?òÀøg¶ÚysF(Þ2-5uú'…úo礦¦¦¦>õU%ž0sɰœ{hÖ6ËøEõ€¬µ¦¦¦ÎùþÚƒÇT†¨]¢„ÎPø¸ ü/NxpþoÁsŸº‹P÷Ís©©ãÞ;ãýuYjjjjjó6¹¡k†›ÄÝ5wâ¤wЇO­`Ä©tk><={*këÊä=Ã5Ôu§ŒµŸtÖ;8OI·kD…jâü'½»çNÿèÂÍYÉqBÚ6¢„²¤hì¼%±9ï̘ðÀ£ËNF,|i”€.JÝì 6v óËÙš÷{ØK3RZo*êN%*?©]¢Œ¥ðÎÀc0˜R €#•0  Ðd¸XÂÐåž=Wl—)¸ÀQ…“5¹g3ó*ÌlIóÌFÚÓ»„­ò|zúù ›«&'====½9ù£´N—±tÃ:`,qPÌ X©Ë˾Tk£­¤Ë¬xJ%V•sæln#/,XÚR”y§./=====ýÌ¥z—³¾¡ š[SØÚš ÓØHûÐJ˜+/f8¡q#ü>NH¥Ã×TðŠØ´Þ)Í¥çs«šÜ^ÓØdg±ÙÀåó]½Ùåõ–š’Â:[Ë©N}y•ÁîrÍ$‡Ã_à2Ö[<@ºëM,€Õ,tê-Izì¶öãÏöÚÂü¢ÂÜâúÛxyS–R@V•5\ÏÜ/´4 CÙ/%%%eذÁ!‚lñfÐØP¶úÒ¥Õ—.­¾T™ÝÚs¬åTTUgÀ$L&¸šþ¨k("HgV]Ý‘ºú<WÍ„&Sý&ãÏ ÀýÛ&~»¾.­úQ×XÀcôЯ‡©Û·øé•`wÍÛ´w÷†Å÷omËêŸ7n=^ZWuü÷LW@  B¢£õ'Ž\0:5ÇžãDGËJ˪šýea‰±R•JQ^VEc(4&Zâð“Ûm)+Öµ …DGןwK¶ÁaÕÊ,W(>V“Ò¥K>Qúã¦=—š¼ŽK9®À Y'Ö;„™–Ù½MyYÀðdŸ:ë°ÛíEýÕ`·ÛY,VOÔÒzïn¨À1œ%’Ë…˜¹8ýÛUë~ilÑÙµÎ@]R¥?þsf½ÃeºøÝšå?–ÐÞ¦ºßÊ|¾¿ÄæužË%CBhëN%J?)]¢Œ¥ðÁc0XD À”J8FcM&à5×ëí ,f«·%gÁ0&›ÅÂf¬).­wwzz7é`.céŽu®*v`(ÇX}±ÂÐùûvºÌÊ®¯ÔÛ=൙,$Ûu§ÌëZ`ÉÂÃEÆâ2£€0,"©`J¤ÜN’XðØô%9Êì’¨AQ2_ç´Rqµ­VÛIéôŒR*1CîÏǽ^`rÀÔ,Ä0Œ$[†ƒ<6ƒ¡µp›$I¬µ$G;XîœáqX°«N¿ÂfÐÛºèp_$ýTnHO)ß ÐC?Cê(µµ¦GŸJâ°!áÔïc8¦S¶«„/Ixš+H÷œŠaL‘2f«œŒ\FëýÓKà¬}ótFö褞Ä­;¹ýÝ“;>Tx|éëïÍ­ž¸ú/ðxZø<ŽáÀb1Û„A°˜,]i™hD¸& á×_yQ±2GéOtÓ²˜Ì˧·Áb1ƒ&­Þ>Š&×Qæ:€;iÙ«"Y„ªàŒ¯•¤4Dé’O´u}/émŽõ¡»Ý·¯< ¢<½ûu§´ÞEç}ÒÙFk¨ÑíYóQè‹ 7?®"*3ûòÔ¹}è ”%Y,&A´¸d-:ñg§Îw³3´“yõý°­î”Q¢ô“Ò%Ê(Q ï܃]-‘-˜êMÍ×eªL =Κ‹šj‹Ë¹šðA¯ÃÜX]VVo';=.OH÷a;±6ëtKw¬“$Ib8†]{ •.³òòAWô\ʼXòðpaCA–©õWæ2j©Œ,©À¨ïÊTO Ãq¢}ÉëÎå®þÕ^£Qq3XKÀü"“ƒ¬çsešOEf¦ÁC²$¶Œ¤“$ ­¡Ä,&nuåH’tÔ\̪r\!„v§_Ñ" žŸŸÀÓÔhvz¯íp_D*as8‡µ~Y+Ö +ÏŸ¯´ƒ/“ <擳£©£„+¬­5q6›å´Ý)ó²€ô’ÆlíÏ@’@SCñ?+Z&ÝÄU·¯ãÖ}€ã¸×ë í•Ç?ùâØä§4~ðeI‚ ðÖüœÁ`e¥–IÉQ‚ÂÃT³†Çq+³Ëé y<ž¶ÓqoÓYþÍÂÛ*®.}ubå?nO¦>ú§Å+›¼~wœ¯Õ¤4DéÒ€2t]†¾î]K?»gýÆè´åï]5o/°Äš!S—®X}O”u5\$B[Ôd(j¾QfÔx¬µÅ¹µÅ“' ŒŒŽð7çÔº®qzÇ›`Ç´‰’~ãr)ÊŒ¥{Öuyla‘¦ŠâŠ;ý þš™†aÞ–4—.‰ê l%U^,ED¿¡ ÐÜî^è4ܱR¡˜%47^#9a Tšˆ ^Så¥lýU3»˜Î]Õp>^ï½³E¤ ²pœÉW©üˆ&‹ 0 c0‰³DþŽ—Åá2p vÇO!báíB)× IDATƒç=8FA;tì°ÛØb)Àù‘ý‚„88®ÄOÀbñd!AÒv¯pyÑý¢¢„+nÍ׺=€µü\z gKÍ^}~zs À ˆŠ‰ˆì&ï™Û´·Éh©‚„lg‰Ubs£áFÏa¸…ʇ›ÿ-¦pUÚ=’ aAã‚‚’8ަDBiŸß_±|@ôß…}göµjÒÚ-Ë¢±YBͨ1C­rô4E+‹ŠUÚûúKØ\ÿá÷$xŠŠê ¶¬L1,ÉV˜é6bYJ?.¤«¬ L#“…ÝóìÃ[&.T+µ!NÄä­š×:¤W_S+Š1Ø_ªUË &“+àáÀ‘Ÿäo“«ÕB¶/Q¦4DéÒ€2t]†¾îWGéFX¿:1ÍäE/O •1Ý&½ÞìðB'¡”%+‹ŠU#Æ –sX‚Зo_1¦u©±Qê~g…„û³q–|ø= ŽüüŸ¢Dé'•K”Q¢€fÊ+½öþË÷ß’ð{ §Áà•«Ä6ƒ±%•¡Ì(áD„ù‹y,œ$\.š‡!º~:-n§“)’ŠØ,6Ë¢Íû( uß:a©)̾XåUöÔ/P@{:]fÅàòÙ8`,©Lì±Z]àt:›“(¾"4ØÏׄ‰:¯¶2"ŒW_Tn¾2Wµ ¤D ¶6š:Kb™’ƒ"Å¶Ò J¯Na¯_g%8jŠJ¹áQƒÕl 즪‚* è+je‰Éaî&]q^‰²ßÀXÈÎÑéK‹‘ƒ“Øa7Vëésõ¥¥ÂÈþCB˜˜Çi¬.²yÀ­¯¨–EH ´é ª ªË¸V'ÁöØzv­†¾Ûnq,ÕÑöè%HŽõoîžý´JðÔå.6R ©ô9k ‹9‘ƒ‚8˜Û¢/.¢o£¾„Xø¤¤å¸±Æò ].äéŠÂý,ÍÝÊÇ½ŽŸšªÏ8Ÿç— 'cl¯«¤±*ÍÒwzYíOë¶¼0ïÃ4bBŸì‹ÅŸåнØ1\·fàÒå»—zj³x{E di„,.´ë •¢Y9íP,4ܼýî·ÖóHñÎ7¾>>ñ)h:¸níÀ×Ö~ÿ¬”a¯>ýÕª¢Ö¾d?úé‡#ßüÏŽ)lkƇÏ-ܧ;ðéÞ‘‹¾=4¿1óÛÕ¯¾÷÷w6½ ÏÌÉy¬å“|€i³[>Ÿ›¿gÓ%|ölËg锆(]¢¤íÛÿö†ºdêÐuêºïÐuŒR ¥ŸÝ³~#j†¼æÌ—Þ!DÎ0þùñ»?5Mgèzkš®[3`ñÒmû•,kÙ_Ÿ­Þßš\vˆR7;ˆ’ælúé-¾£2cײw²hëN%J?©\¨¢D)cin¥If˯¸}GblSä*mû2 Äm±bjMl(…¹meÍÙE×O§ÅÓPY&‹ê—€yÌeòê¨?w¦4ÔÖ€t+ò² 6ãòSMë”™S:phÃë0é Š›\uåÕ~ÑìµÅºFÿ z³Â°!š|kCZÖg Ìëê$r?&âRZ×(«ÁÀ °všš2n]Gï«—{ùyO«ÕÞ†/è×Ån­v2ê â¶%~Á¾usš—;@ÜXz÷†B™ÛÜ´„çÆ[o¿¨ÖÍÃ0À9²ð¹!çRÃõްv= W•ì‰/Ä@ w yÌбÛZWZpÝ)lw@Y,@ î@²Ö>øToû€@tŸ¦Ò³Y½fÜSŸªfè_7}çã@ ¢”Å"¸m¡œpyÓ¾ê]ë}…ëÊb@ }”Å"@ ú=“ÅâUô !É))I‰£T-ëõâ\yø€„¤””ä!ƒ¢8p•1 C“† “¢¯Ê> ¿:hÈ—))_$ƽ(‘÷ÀözTB7jµŸ…‰¯]òV$ñÕýiÇÚñæÝ7Çèg^)“Oúxß’$ß~âæ~wìØ±c¦}9Cӹ𦢙±uÏüøv‚øû¶>®¦-ßsô@Ý;8M¨Z³WÕê*Îca2%aØ|±àõF/½‹lÜš¯ÎzáÙ/Ëð˜g¿X¸aúòã–øû4¬Ø¡™;ï.…áäG¯-ß_áig¿õÊÄ8¹·6{ï—o>m€æeá›K¦*Íg6¿¾lO±9oÉ ÷PB}‹oÿæ ‹ê1ce‡ß9ßü£ÆÕ÷¾²øùÿ‹U2L¿mZùÞá /tï+K_¸/ÖÏS“¹gíÊ-”ËÑW©S?Û׈7uÙ¢éɡܦ’ô}ŸnüúD•«Åù9÷ÇJ‰šŒï­Ú‘ÝDm&bæöm3C>N›вצ¸çµÿ,ºOiükÓ¿ÞØÛ.èì¦K4%)‚Lã<õéµf{hºÍäõ»bYé~hÁýꦴ÷¼ýK-MSw*—(£D)¤ñ³yÛ³ÂSÿ¸d¼Úùö=¹ëíN]MÚxv¡5y÷¯>0ùÌ”ÙßÖ@Ôìk˜+^Òy þløHñ¿)_l)pïÛ‡î>:æ­ßïä›)C$áâ„ÝTWY^mpx€# ‹UY^§IWR¬k"€0 QP_HªÂå\ÂP’WXß|ñfÊ"Eøyj ²+Ì>ï‹g±¸%R41%"‡ÅÞ"ìhÝ/2Eé(õÊ‚YuEz~¨Zd*Ì®°´i!ÝF“•éÏÆéöîêUp‘XØT—cq“¶ÚZCh˜VvØÐpwa5OæÇvËò ôŽ+7b‡'iÙÙ>d€/ ¦_°QHÿh×…Kz'M“ôÈŒKEV~]ó…Éç± Â Àd²Hœ3xhrò‘JàlÐ5IbBÙµ DPl?WÙE”Â"®‰Ó^é‘"|qˆÿ`.Ããv·^!@,W u7üi!ý¥!¥°ýŸ W­º/*­|ÙÌð€À¥OÅ„Žà8ŽTTüé⎠z˜€KŸŽ Î0}–iŸƒ?62j¯E§PtnÉq`*¿Ð‰Ípc„ößê­8Wþ ¢×ßi@Ôìi-|9SÐxà_’Íÿ»"pòË*>Z¼år6v óËÙš÷{ØK3RpRæ‹4iõöQ0¹Žê¶OÖ ÍyÇÓ®ëì¦K”%)ƒÜõÓé[“‚ŽA¾¢vß¾ò|«¡ŽML×:ºD%J¡OtìÉ×GûjR6GW;Xãñ´Ò™)±tyJÌ©ÃgéJg]i™hD¸& á×_yQ±2GéO>Æãö¡¹aµÅå\MøÀ Ž×an¬.+«·“€aG;XîœáqX®&tÖ\¼pù_„Í ¿þÒj4ñbÝUÙn\pmëí±UœÏªvΖEÄõÎ;_eï¤poA;Ï‚¼|€a´ÕìjHz›¯’$½Þk\ z"‹ÅýU®ò³yuí!ˆ+]#I˜²ˆ{In)0(ØTpÞ8D%­4Õû<qG±ƒ8DµÃScÖo+çÿm` ’sÅ'œ ÂK²d!/ú 2J.|j`Œ‰8©¹éuðšŸw9¢T³Öb, I ©¡øŸ-³ÖÜ„x]Öy^Ç-ýN“8}"'§4yúõ±¯+¯þ±1™L7áð7÷QÛ'SýÓâ•M^¿;®…oÍùq¼]6À:öžêCOëÚA\.É÷“b–F«»½Á`\}¥¸×ö³µF¶ü½«æí–X3dêÒ‹'dÎù¾ž ˆòoÎØVÑ%k]Ëw|ÐÙ=—(KR™ÒyÊÓi[³S.™ÆÏŽML×(êN%já ¢íîK«K;^?%%6AáÄÊN¦ÕSê,+µLJŽ> š5<Ž[™]ÞúAäÝ÷ÅÚÎ>M7s¸ÏC£õ탷\C<ÖÚâÜÚbŒÉ“FFGø›sj]$I:j.fUuñc+ÏÏOàij4;¯cTKc½•ã68 å5•uÁ5´x]F“=F&ÀÁ~ëŒ3XKÒê™d=ŸSÓ¾†aÞ–çEZÓÙ–ÿß  °'f0™LÒåºêVäm2YÅþ&Žs$r®¹É „±47¿Úâ 0’ôzI/Ü %“·L‰zUüàÑáO¨C^ SÊ€¸`nù*R QMR<¡8‹mŽaàB6W-–õcxÜ ñØ ©Ìa)$@èôD@À“1¯ÄDâ8š  ¥ |~UÄòѶübÿ‰­:‹¬4:{/¾Âˆ~bÁð³ÿÿölÚ¼±mŽ‹BÂýÙ8K>üžG~~ƒÉä x8päƒÆ'ùÛäjµMsuÐUV&Œ‘ÉÂîyö‰á—/Ê,협…‡Ž4\.YYT¬1f°œÃ„>¸|ûŠ1â¡ö¾þ6×ø= ž¢"ŸrZ?;ÔÓL^ôòøÄPÓmÒëÍžæ¯%*ŠŠ•‰Ú'bò¿VMët$¸¾¦V?b°¿Tª–ÑÎé²ÎîºDY’2È”ÎSžNך”t25”MLé'•K”Q¢Ý¢íîS«NKs¦ÌxxHaZzg#€”:kËÊÃ’l…ù—.a#F¥mCÓš)o¬\ôÚû/ß+LÕ¿18,†ŸBÌÄqŽB.vY,ð"ÂüÅ<NÍù »-–rqœÙ/HØiÊà ˆî5 \qóÃHsEn~Íå1T߬†sü$|·ózÒè×b¶ˆTBŽ3ù*•Ñdi~Rbpùl0–T&öX­.p:\‰Ÿ€Åâ+Bƒýp£2À™Q€®ŒÕ^ž.Øp)½ ÑY[TÊ‹ˆIa’N‹¾°¸ž€–aGc­£_ÿ¡þîúâr4‹èÂ\½QÇ|X!'ÃíNëÑÒ²Ï=ÍO´S8&ÔOèu¤——|o§­j›‘ÿH`Ô VýÖÜ jb‘ %Õ•[/U°5þ£BCçy]ù.# `ü<¿ ×<£`{]%Ui/`õ_Wsþ.“üC#s»­¿—”~g§R'íWä½JÔìi³[ÿñë²Ô7ž²ðáêÏž8çh¼ðÁñ+çhÿX‘nQÒœM?½ÅwTfìZöN  ;ðéÞ‘‹¾=4¿1óÛÕ¯¾÷÷w6½ ÏÌÉ¡²Òxpóö»ßZÿÍ#Å;ßøúøÄ§ZÄÜ»Æ Ï=ô¡]IóÁuk,^ºm¿’e-ûë³ÕûZ„—.ßõ¸ÔS›ýÃÛ+2Hˆ›¿gÓ”æKÈ×i϶|N)¤ó³C0C^sæKï¿"g˜ ÿüøÝŸ éີ_[ûý³R†½úôW«Š:} k?úé‡#ßüÏŽ)lkƇÏ-ÜWCYªë:»îeÝ)KR™ÒyÊÓiZ“šA¦†²‰)ý¤r‰²á¨[“’¶Ïüv¦Í†ü¦ÌÚ¡£+LM7ÚÝ·V”–&~zzíº÷[—U¢tžR'YZá‹ í:C¥(@VÞ6k,Í­4Élù·ëH,€×P^$‰ŠHHb‘³®Hgp[¬˜ZÊcan[cY±Þ „¾´TÙHó8ÕE5åvXÛcst3…ÄZ²3Ÿ¬óC´¡@z\ö&}QÙ­y‡GMQ)7îm—X@zíMGËKv·Æ^)¯|ï>`xÁǾ/“Ùu0ÑÀgßÿ7ï_yâFÙð•à)>{ºþý©Ëß®‹¯ ˜ûÝÆGüÃË>þÄeíþÒåºkflý@ºöáuY7ÔQyxTˆ\ÀÆI³©¶´°²u»U¦0$v@ ½àT‘@¨2Ðß”w¦ÈH.IŠfWœ» ëd;·^å*ç;vçÊ5!r!#ìÆêâ¢k÷ww@Y,â&a6éöš•_À˜ ¨Y¶Œwê}ÚxôVtÉlÒí5C¼Àä~ÑMç/üxK¬2ujÕØ‘« ñÕýso˜ õ¸¥K¦ cçg×Þ0×EÍW×ÙÏÝ®),ä®ÿÇÈõ¿`ß«Wÿåö¯;Ñçàû‡Èç/6¸;8XVcª#¸þ‘Üj¹*Ieˆ¥B06ab‰‡[âfB¥ót5êG©a×çeæ90:66D^Ÿ§ïv"€²XÄMÂbÑÿPmƒ&æ°¸Àpê­!ÊðÔ²H“ @`Æâéyu]ýõ¶ìzP¸ ž÷ç¹Ì•«òu¾n×M—,ýU¶CNîWQ~Ãý8?êœbqÐsš€xÓã¶žª*ù¬Îž“²€_ýJfEóÎ:ÉQ)KDµ‹/‘ÿĪÉŸ|%H–êwóª nÈŽƒíWªO|uÿÜÊgfíýðUë\#gÈZõSøìgãO½=ëÓÜ ö-hX±C3wÞ] ÃÉ^[¾¿‚Æ#CáÉý}}¬pØ{‹¾¶õŽ:eÚÙo½21Nî­ÍÞûßå›O$I³ÞzyB¤Ÿ@µV×3Š·M}}¿9oÉœûc¥DMÆÎ÷VíȦÛЦmÇ£ÂSÿ¸d¼ÚzªÒ|fóëËöÓŒ—Óø9yý®Ø_VºZp¿º)íýoÿR €ÝûÊÒî‹õóÔdîY»rK†põ½¯,~þÿb• SÁo›V¾w¸Â @éÝøõ‰*°ËPÖJgÄÌíÛf†|œ6¥¹<ÚÂÑ'aJÔÑaþ|“‰Nf«Ê¼¤ç‡ wVó4a~lÂTq© ÖFúE¦(¥^Y0«®HÏU‹L…Ù–›¶a¨‡p{Y<¯ÇMxÀm5è˪mÒX¿]Y‹Å-‘ò ‰)9,v…½¥ó45ê. ›ô96šÊ³O÷ŒOh^,âæB’Ãó{$Â?ÊUûVvþ!»§°*ïÅ¢_ß ˆåª¡î†?-¤¿4d¢ôz·dîžK—Ë g³—>:œmÿ¥¢â4!3Y@Ö8œÀf+péSq±  §£y?K±B=3þe%ebõƒ~=±Ÿt—aÄ©tk><={*këÊä=Ã56v óËÙš÷{ØK3Rh¯ Öü£?Ÿ(³vÍTxÂÌ%ÃrV<6î¡YÛ,ã=Ö‚šóÃæéŽû䶒ꯟ}¿@8úå×ã.¼ýÈãŸÙjäÍýi­d­}055uÎ÷WïJ>n狜ÿ[ðܧîêlG{êºs’¸»æNœôNñðé£Õ =q̹åÓÆMxvƒ~ì[³0·$6çxtÙɈ…/óª‰óŸôîž;yü£ 7g$Ç i…]‡²îT:‹·LKMþI¡þÛ9©©©©©(…EôQ8ªÐwÅù³gNgUÙÕ.雟Oyþþ ]îÙ³¸šà–kªã,.3 B±Ê"=Ȥ¼›è§Sw©ˆ’œ””2Pf¼XÜèµQo´wx &ŒF¯DÊæIÄ“ù¦åÙ¾Béðç}çû03Ì0Ã]D‹uk³´Ô2M³¬¬Ì235Ý´lÛÒÍU3Ûüi^º¯¦eVš‰«éÖVhÞ@QA†Û00\æ~}/¿?ðöÎ0(èûýøÇx8ï9ÏyÎyÏyÞçÜzH$Š@ž(k«îËúúÏõfÞ@VïtÊ‘‹%wIG‰d°9]Þ«§m-ÕÔè¾l´ ì†ÎŠÅ'ò‡£âøñf‡ÃÁf{çZŸ· IDATí»ªýŸçVÚIgùésTd¤¼G²º&M²pÝô¹Ÿ·:mõ' «CBBÀ¤ÓYQAAY’”äHˆLHhúãðy‰~9”/MJ’v5wí[v—YHgYA‰[.늜à,Ðï‚€ëé2¸Ž@çv{W&ðQ¤C$‚¤ÀéÒw˜+mh U¦²¨óÎÞÙy:äåï[_~ò³*@ÅjФPV›õ†¢N½`æÁ{ØêiOS9nî£ö§=ú»•”MÞð] ('Ì‘÷ÜK®\¦€ãxõ7‹fl­éYI““Ç;ôÉb±p¿*Kk‹ÍC/¼½tÏÊy{€-ŽÎ˜¶ô% ç|ßDØM|¥IoÎ ãÿ|O’=ÿÐÉ.­Èe`¸)p”1’ÖâS¥}ãXß ( T»eM…úu#`mi²q=­Nè™y°>K “ s³ÉIxûËKPTO,ð7¬¡<‘D"ä Àây0·C`/áršO%VgÛÚz’to¨R1*$dTˆ,CÄõéhsXJp‡D/Œ‰]¬–"à,1·YBIè¤Ð°'Cƒ\{Û ¢ˆ,˜ëÌ\¼~‘@$R<½8RŠPÖ£­.pZ+‡?¦z:4À]nó€Û©'Q×SÞl*C82pÕ;{gÍSEÑşǧ‡ð¸’ÄG&¨+>k}½."óO‰2yüè—ž¹Sè?‰ ÈX%eËGÞ•æ,-mî±®I“…aða7ühR>—Ùöª®®d>íöQ¢uëÅZ^”r¨RAx¬¿Tj÷Ø„&,"Ǫ+¿÷®6TÍç¸éZºÜ.ˆ%ª§ÄD‹Ãô]iå~'´~^VÉ Dzì¿VjwYÀ©wplåN›ÄJ v5¸zÃX°ÿºqEê’Å_ü¨ÀLš#[–í¨0ìÛ¼=ç­ ;§Vþ°ê›ßxÜoA™s¶ì{[à¬-Øùæª"ßaÄkÖŽ÷îAz7ï~°î[4vÕñ@Ó¬ßÿÉžQ‹wœßR¸kõ«ï=°jË»ðÜœýŸi?ÝþóL ìºÓÛ–¿¾í¬åÀº÷¿þþ÷³¤,‡îä—++|ºH;öé|7J?ìòY¹–Ý|`ÝšÁK—ï|BJ4ÿ°ìª-pÐ’¥[sl[ÕñOWç6ðH녋س/¯}1RÎ2—ÿ¾ñÝ}->éI™¿{ËlÏ›ÕvÈ]Ùõ>ÓtüòÉúQoýó«)[ÁúçíÕµçjM2{i ã‰eè8 uŽ!C³Ô@.³îbYõ& E‡¥®¢1>:eX ^c¤ ÃêÄÙ„­Ãsãj¨ÐòãÓ"1Êe5”kzä¼M„Ç»4¢fgg_~S-W¥Æ ZSL´:3ÁÞú^¾ËΞìãÚâ!˜@æýÁÞ7†Æ–†<Œ0tSzú¦Ô„ádËçµM=`/¢|5ÏÓ5^Ç|xo‰ÄО’ÿ–<»óÇ=»wïþþ»oÞ»«qÛ.Ül¡ú"¤µ¹ ‹H–‘‘‘‘‘‘–$sé =13ÝOèÝAáK ™ ?íû÷ç‹EXFá.Ùþƒ`oƒ@/½í‹e````¸M`”ž¢÷}`±¹‚»Ý]>÷²'é’/ÖŸÅMî¶CÙ:~0·A C¤—}ÂÓßLþä7f````````¸…9Ö·=swCÿƒ±bú]]Q ŠÉƾt®hKù‰‹Í7sð- &ŠL¤r\FyìF]¥¦ÁÖÇ#z‚b†¥„aí¦a8Js©=]>sTƒ3¢E—=Ù\vì¢;:c°ÒtáT…‘Tž˜™À©9}¶¾wnyì>ë(@‹¥K1ã:ÖÅ:j‹ÏÔÞ(â¶„§ŒSIP›µÓFŒÊb‚‹Ëm¨469!ÂRXÝ~â[­b¹ýùÆ K‹Jí P%&Ç*%zæÜs:̦ú=Æ6Õ8l}±siçÄʱ£VBú«¹so¶$þàýéÉÙâCO<´³p;Ô©ÿuóêFÇé¾lHÛðȨ ºpï«7[’¥h¾›ø®¸[¿ì}nh|4§éBá'"T'%EÊ›.p¶2:šÓRrºÞðU‰)1Š–’†ì莚¢3u4wí\9{K šÛŽ·bIbSÂlv¯!ÆKE`´ b‰…¾zÂ#mn±³ ôÌî.vØ taS9+çá­•Ê›\À•ÅÄE…ˆØ¤ËT_©©·àà+“Å ‰ &.טo{×®ÇÖj¨ÒµØ¥I2ÿ˜b™ÌÞovͺ¦ÈD™ Úf@%j5¿I« ð“*–YÏ[=€µ¡¦aõÝC€Åâ(¹°Y!bqøóÑa©|ŒðØNÔU~ÚhˆúžÊúY5gR8±µÜ|O¢jÏþ]ï‹ÃgE‡ åc„Ûz´¶òó&GWo q8L´ÝFš]žö;J×âªWÂ…`Õ½{¡î" JYÌKQ! 0öÄ•$=Áåçù§¿š;·ö¹™_žqèþºuîQ3äûVî‹=+õIJ™Ÿœ´pïÂæw¾Šž;ïÎÖ?>|}yn ½#$îÙ[Ÿؘ7 í)@Ãï~eé‹÷$úÂÝï¯ø¬ÀH/‘rêGßÏð§gCÛ=[P•ožökYû£²Év&ý´ÂóÐÂ{Õ–¼µ —ýÔ H™öæâéãx–Êc{?Ù¼ýhÛ‡H´ÐÊI›QàȲg¿ýÊÄ9ÙP¼ç_Ë?:Ù Ð]9Si«ƒ6#IæÌ·LˆJx6]K³uÚ¹6T5jÞksîM’âú‚¯ß[ùU±¯ÙZÍ_Ê=Ga>õÑoîÖøØ·ìCN:}ÒjUßýÊ’þ’¤`™.þ¼eÅ{‡jHZáiôé#0`è[]7Cç Ab‘ÅPbÇÀR]|ÒÊec&ƒÁ†“¶³+”ÇðaÅbuBŒRÀÆ0w¹{]a™A3,ÖS®ãGÇspSMÙÅ;Ÿ¥pjIY»±Â ˆR™Ê‹}߯Ø+\=S„ÇÝö2 Ô*‘±æ¢@`µz$R>X0IÓÚgo¡¥­£À-–Àcv[‹Š%¬úsù§5ixXŠ˜x‘µüôÉSgkIÕ€ø `óE\Œ-ñ˜…º„­Å`tpÚÆå€ÛME$Æ+øn·›ÃáxÿÀ’[«k-þßV cSxû©p¸Y_ÛÚ‡Œ¡aI›ÒÓ7Å˹Þÿ£Ò§£Fr?ÕԜą£ã' ½á’$ŽÇÑ=©â¶àXŠTÌE¥Ï$Fd™>--ÛëŒ0½¹§§oJÙnH‹CÔcãq%« F€%›1 l0jý±ºö¨£OO…±RBë׬?‘0{û‹û©»FF@ÌØ1ضÙš÷¿˜—gdùz5Ÿ=ž“3ýãrî999999Þá\tßü%‰§—?>n¬M†±oÏLóõEÔøÍó99ãÞ;Eþ÷Íœœœœﲇ¢÷ÌÉÉ™óý5—¯òÒ2y;çNœ´J3rú}j8ÿ)ò»¹“Ç?ºè£¢°á)"Ÿ"ÑâSÎk2 4íÙ×F”¼óظ‡fnµŽ_üX2@÷åšê Ï(ü¡9´~4ýÁqcŸÚZ©Ûþ¹6Ñ} ÞH9»lêýãŸûÂ1õ­É>sñ¥ùØq_¿4áÁù?GÌ}úN6í³>ä}Òj>hì¼×’JV͘pÿ£oþ·èåÑBð!<>釶ìݯ8†ÎÀ06… ‡>í °ŽnW¯( ½2¡ƒcÇÎ8êü­‹uéÏŸA¸¡ICå$ ,ÂiE|no½¬>ý‹qkÓ…“ÒH’D„h.;Õ €…"$I âÈH¾¡¬ÔÐá@¡¿ £@ëýAJO@“KõÙO@p:M'Zì@JÛ^peà$8EõñI† @"ñ 9 x, kŸKm¹_ ARáU€ ¬ŽÿÞŒÍ"=J†yLƒ™h﯉–^“…aðP,±B!á Ê)å«Õæw,æ‰ØVÛUëÎ(s͹RýÍØÙ…òD‰Ó©6¯# ±Xz…Þ»7hµ¢øäŒH !\F]…ôàqÚ\8‡°÷¦ÅÞÆ ORz»ÉÙ /œÔÀã°:q6as¶{‰fm¹ >65ƒC9º‹u]\Œéj(×pã⇄sÕ ©0ô£™3²õó²NT蘨 ÒcÿµR»Ë aÁ´1Ÿ—V¡ÑaO%†pHweK]žÕÛÊP5Ÿà:¤ké´ßKTOIÚ~·è­?è"yšvÖ…,T ‡ ZV×[³âi¥é5ì¿n\‘ºdñ?*0“æÈ–e;* û6oÏykÃΩ•?¬úæ÷÷›DPæœ-ûÞ8k v¾¹ªÈïÒÇ/Ÿ¬õÖ?¿šÂ±¬~Ñ^½ùÀº5ƒ—.ßù„”h(þaÙ;][Ùб[àë¼ÙmÐÆl½p{öåµ/FÊYæòß7¾»¯}Ýâ5"Ñ>ÞM9SæïÞ2EÛófµíUßÿÉžQ‹wœßR¸kõ«ï=°jË»ðÜK¹Ý“hª£ž.£9û?Ó~ºýç™@Øu§·-}ÛYËuï~ýýïgIYÝÉ/WVø|µ×|ÀrÒC«yóuk-Yº5WÁ¶Uÿtun3Ð ÐÕ;m =´GWv}טQ{®Ö$³—Ö0žØ®àj¨ÐòãÓ"1Êe5”kšp¨")[Ñ©¹ìØEÚ uêC†fy÷`R„ˬ»XVg½1’û€l©ÕJcãR3Ù(á¶¶h*ý6D$8ìv/ r£—C€½¦èx-°޾޶X|Æìwé2;;›™Êgðò]vöä[¼1ŸJ2Þ­}±Dï×íx›pù™\ 7@«ƒ}÷²ýãNLük® vìÓ›þ%^?qÝ™!#Ól¤T–©4å_h$P¾:%ÓtvÍ-W¥Æ ZSL´:3Ñ+}–«,ÕÞóÅ20ômP¾š‹çi–¡ÿâ)ùßáÇçîüq–§( (Ëùm+.Ül¡zÒÚÜ6LíõR¸UWѧτéYXÂ`…Âc­Òá™÷‡¹wû Œ/–žÛÀËÀÀÀÀp#`”žaq8…»<$ý a뿎—æp' ~2>ê® ®€Âó«Î®itðIM{Œß¼úøÅ]Í<8þëmz{p—¦µv£ÆPKË¢æÆƒuáL­Ï3…„Q›‡„³õçfj¯ÚßÙ ‘º‚$}ÆÒW&gDòmÕ‡¶müäp•ËÍývóT% hÕ'ÓŸüwÕõä=㋤ï?¼®¨;_?S6}úLÓÚioêé­´òI?OülÒªS=Ñ?Ý0-ÑgÔ{Zê„h` ý –H5 .\ÌCI—ÕP]QÝêÀÄêøØP1‡ruÞF&á³—Å ­¨1y@1XiºpªÂH*OÌLàÔœ>[ß÷IÞ èŠÙݘgÞý$èñ4–4·Ý˒Ħ„ÙìÀ“…ñ›ÏXUJi•±‰ÃÇ™‹®“¤ð؇$X©¾2×V{ÏÜÙ`6Õï1á±òAEÜ së - ¥/Y¸¨Ë®ë‘O3hì¼×’JV͘pÿ£oþ·èåÑBÍgçäLÿ¸Ü°kNNNNNŽÿ{›bÆŽÁ¶Ížðмÿż<#«½¿á¥eòvÎ8i•fäôûÔ>rwü‘W8äd¸åá†ÆDPúsù…j̉È÷&nhT˜§æLþ©“Eu§îl™Áû™ÃW*YõçòóÏ7ó¢#‚½MQÄuiªŒÂ(R[a™”ß;Â;[jôfL$V›ãrÀí¦‚"ã|·ÛÍápp—›J¥ \©„Ïf{}‰¸ÑHJ¤¾Dì4™{ÅÎî-h‹Ù͘]¡×­XV°Rî4¼æ¶«¹¢øtai/<«/½ ³2_Ø Ã JÀÀbjúÕdüO³a²ˆëogœ€kZ76æ;Hp[~ml®À(WQcãáÆ¦ ]¿Ý<4,iSzÚªh)×ݲ¯É„ýDcãa“ãŠÏ-Ê^Øêrn½Ói&Y ©ØCx;·¥öÝrí&½ fc="R`4î]òÌŠ_‘;çmÙóݦ%' "šþ8|ÞFâ†_åK“’¤¾§©Ž`8òŸÂ&§ÛtþÛ5ˬìr‡QµÿóÜJ;é,?}ŽŠŒ”·…: ¨r– EçÀõ•»õHÞÙ´¬alIVVØGŠ|~òF&$Ž>kt9õG~9ÍMHûЉ"(;H.!fͱ]+×ýt¹™7hì}®+.hܲ»ÌB:Ë Jܪp™/9ªÙõA®ê…ÿ[ûþù?Ñ/ãð ­H>KtêºÄµ%2étVE@P–$%9Ò÷³´!pÍÓCŸÈw:ŽŠãÇ››Íö!'Ã-„ "5ë ’”lÁ8l p»Q¯Ñ6ù^"†;;5E0‘¨Ã0u4Ö4ØpŠ´™¬$—ëµ,FI„Ýdô$ ]üÌê ,eRvöˆŒ8ŽîBµ…@Q”¢(„#‹ù,Š"Q Œµ•– „aY™Ã†Æð=—Ö¾ºLF–D!—FSÿòíѳ›1»Boßz€ˆƒ%ŽÖêöšB¸ÁÑ j¬¡¦Q™’ã2T–Õ˜n5h ½‚`AŠÄ/ä ,à±P€Þúji®ú™ùˆØóCiYžO‹“´:ÝîðØ-™„ÍeÎÕÖ—·ÿÁíñ8ØÞ»{±Ã¤ÃSÿÇŽwÿøj½úŽ'–¾ñÞ\ÝÄÕÇÙl,|Òê£qÀxN]‰Ïo_Ú˜l6†ãmš¶Uý½ë2Qí^’"1ìêþ¦~×+/øÎZŽäiŸÍŒ“g%ž8”ï»ÊÙlŒ ÚþŒã8ó齫߽æÃ¨—}ôD(^[øó¶õWµ –hêØÑæs.ß‹t¹ð(‚ú”/ùö‡†Çž«Û’ÛЩJ©Óu¨®K\["JW¤¸xû7/Xm …ï­=åûYÚÆ¸æ»)'Ã-„£¡´¨ùòÞ‘ôàTƒ¦š;8œK:Í-ºªª&‡/Ÿ¤ËbÅ M"—Y[yi…uéÇ î|ˆÆ ÇŒ¯ˆKçÊšI’D„h.;Õ €…"mdNCùƒ†…RÉ .nÜf4ñ“Tžºbzã…¿~|³[1»Bo[±B‰˜0éÛV*c²¸D¥£òœaºxƪʕ֚šú•÷œá†CQ8€¥Yóך¶5ÜÏF.ФC.ëÒ„ŠÄÍ1 ¬_Ÿ?èwë§Óiú¦û—Aa÷„SÑJoÇŠÃ_ §¾É?¾ßH㥩§AQ”$IÊQ{äãÿ6ùéè`8Žãxõ7‹fl­éôqÚ˜8Ž£¬6Kk‹Íp=Ɔa~ê͇œyGš¦d%¥ÉSÏ]á§Ú.—“Åbá8I]¾ã£ß^ºgå¼=ÀGgL[úÎ’ …s¾oÀ†½Kwð™zÿ¥ð¥Onúô‰ÜíðéSÔ¿m¯í¢ F'm‰|rý¶žrÂüyÏ=°$€=´!p9é«£kãÿ|O’=ÿÐɺޚÑ`¸P¸ËIÓP[ƒæ\ƒÁøU|BœÒ\Ò@[ÏeŒ¤µøTišËe ä2Ìb0»Â­fO¬TÍ­n7p8,¯Ë…Ãá¸Ý.`‹B¤¨É`ö›ÍÆ=mš@ÀÚÒdãzZÐÅ › N[L` dr!an6yW8û‰Ù zù#—$b[mí$nÔž+ÕY @¡(’¤È›ñ½ÄÐ÷á S©R©R©þħå"A"iš@·|PÂ"?íÖ]ë $bÂÇ…‡g¶O¹ª"‹æÆßxmsý~+% ÿ €%ÈR*GKø(€P(­TᤠxC•ŠQ!!£Bd"®ßå=ô"õ0¡“Þÿì͇3ÔA¶(zô˜a¶³%€š "=;’ À›ü·•ÓS|ºÊhcÖVhBï3TÎe £\¾ã1í~ƒ&}CPêC•Ò(µÌß!ºA‘±JÊ–¼+ÍYZÚÜ¥Ü@——çÊšñpFyÞ1›j+4¡Ù÷$K8<åÈ»ÒˆŠŠ&Ð×ë"2ÿ”(“Ç~é™;…€DO^¼`|z” ó˜ 3Ð6yÇÎ3ªüàaŸú•“•ðä‘ùÿš¿ì+äñyc/ͤ%z‘hKä“€«ãØ'8$„Ãb±Xh'“­´!p9骣‹DOùûŠÅ¯¯]p/ïzžfèãðÃâb”b>¥p·ßßü(‚°9A¤ÏX‚ØèP†°xÁÓésk«@.f³X<™*ii±*‹‹Q‰Ù(‹¬ a›Ì_”¹æ\©¾íìðQL~؀ĸøä9ÚYÌîл¾XD$8ìö޶H¶M=9[œ“‡)=MšjÆËp üQQÑ£@WgúÙbü¼´ {*1„Cº+[êò¬~Ö Q'kÊsÙÑVD>A:÷Yt§\€ªù×!]K`]„ë`}Ëäùƒ*ÑOú GâÚÎ(«_ †c Å­†MÊg"ã2Û3­«+™ïs=$­H=Mþu;Â^œ·þÅh1n(ýíßK>-¡,Ö½?øõ÷¿Ÿ%e9t'¿\Yနù»·LQÀö¼Ym»Úicš¬[3hÉÒ­¹ ¶­êø§«sÛ­<Ç/Ÿ¬õÖ?¿šÂ±¬~Ñ^½/±‚2çlÙ÷¶ÀY[°óÍUE>ßvÚÜ*òòÄÏLoX·¶ý¼¨ŽÝ÷_ç͆Ò§ÌüªÞ|`ÝšÁK—ï|BJ4ÿ°ì û6oÏykÃΩ•?¬úæ÷€Ö ±g_^ûb¤œe.ÿ}ã»û¼µÆ»sÌÈs?híLËtr"S=¬ûôÉÓΖ³ì¿bNö¯ïxmîÀ´D+m‰|rMF´Z¢{²nÿgÚO·ÿ<»îô¶å¯o;Kû–Ð6Z9imut £ö\­If/­a<±·"« QG'EñÙˆÇÞR¥1øšºqêC†f©€"\fÝŲ:딢¹¦*x@bº CHÃTW¡wѬ-ÄǦfp(§Qw±ÎàÒWj…qÒÂX¤ËÒX®i¹Æ¥Œô3÷m1<«g6'ÕYÌî€ðx—>k³³³;ÖÉ2ô{¾ËΞ|ë4áSéCÆ»µ/–è;s¶DxÄõ‘ìÿ]<¿ÓJ*˜4pàh§æ‰ ýê¿Àå‡+õiDcVîÌ9<ùÍÿÞn5Ⱦ{Ùþq'&þ5×;öéMÿ¯Ÿ¸îÌÍ–‹áV£T–©4å_h$P¾:%Óh}ž!x‹Á•E©ƒqƒVç”DF­ÎLôX ¹­ÒðÉU–jo¯‹e`è |5ÏÓ6öˆ - y2õˆCïB(Òèhù¼¶év3€n!$“úÇ÷o߆5è)ùßáÇçîüq–§( (Ëùm+.Ül¡üAZ››Â£Ó†©½{)ܪ«è§^ÿ€% V(<Ö*.y˜{.ðÆ_‘Ò}_,=·–/–á¦Á (=Ââp0 wyÈöDÏöW,ã‹e```````è‡P„»í´ÜŽ=Øaâc````````è0V,Cÿƒ±búŒËp !ŒÚœýiŒ¸ó˜·"’ô«·î=ôË¡=ÿ^ýÒèhß·+ šûío¿ýöÛïyÛfD_g^Ñ3¾Ø=?õ:î>S6Øÿ{{¡¢å“6î}-³‡ö ô†–zÈU½ðkÃ?ÿà'úe~ 4#ºG«êÂÂB¢%ËbÒ“¤¡¡!ÕUu~ræ½°SžýkÖñ•ëOø¹)*1ÁpôÐY“Çc­ÒÔ»½Ý¬8Úx£eè߈BBHC“ýR€ËP£39Ý.c‹x<¶¯çpgÇé¦&u¦ŽÆšN‘6“•är½¶”Åh" ’°›Œ‚$ô¦;&@Å"ª®ätAQ…E£h+¦ËddIr a4ù|_ú$(ŠR…p„b1ŸEQ$Šú&lµÅ§ÏŸ½ 5ó¢cC{bõo?¤‚$) §(@ºÞe$EÞË oz×%<õìx÷¯Ö«ïxbéïÍÕM\}œÍÆÂ'­Þ1ŒçÔ•øüJ¦Éfc8Þ6^Ø*ŽþÞu™¨v¯I‘Ø5õ»^yÁwîÐr$OûlÖ`ä˜<+ñÄ¡|ßÇr³ÙA´ýÇq6æsü«ß½æÃ¨—}ôD(^[øó¶õWy¼ASÇŽ6˜SåCxA}Ê €—|ûCÃcÏÕmÉmèT%4žÑ54j«‚îˆkþïù’ÂdNí>O éÐ<ÿÞ·6 [¦žò;‘‰a—Òì ûwm ¼Ñ2ôk‚BBpCÉåŽj(ŠBüôÞ.‹]74=Š \fm¥éÒó—~ôÙ¾›ÊÔ¨·áà&}³c¨H8€Íhâ'© ‰›c$@Y¿,>°Û¯MŸEQ’$(Gí‘ÿýÛä§£ƒá8ŽãÕß,𱵦ÓÇicâ8޲Ú>¬QA°±¶Ø<—Y[ƒa˜÷t)w€Æ¼#MS²’Òä©g®ðSm—ËÉb±pФ. ßá°—îY9o°ÅÑÓ–¾³dBáœï›°acïÒ|¦Þ)|é“›>}"·D;|úõoÛk¯±I»ŽÏŠ»&Í*­uÒðÂòCûCgŽLáÕWƒ…øÄqhÙü–Y+žÿÓ¾å¿û\PA\«Ï¬¸Žæ»Ñ ãÿ|O’=ÿÐÉ:·¿ò0ô‰Bî2Ñ·AHÊ—1ÄQÆHZ‹O•öËÛ¦®~; w¬-M6®§Õ >§’ú$¸Û  €‡ãvwÔ)K “ s³ÉIpCâc9ú :ïŒOO}i0+ n5„båÄа'Cƒ\¶¶C- X,07þvkš°¡“Þÿì͇3ÔA¶(zô˜a¶³%€š "=;’ À›ü·•ÓS|:)icÖVhBï3TÎe £\¾ã1í'£4é‚R杖†D©e~NV ÈX%eËGÞ•æ,-mîRî ËËseÍx8£<ï˜Ý׳mrfß“,áð”#ïJ#**š@_¯‹ÈüS¢L?ú¥gî=yñ‚ñéQ2Ìc2Ì@Ûä;{̨òƒ‡} èWNV“ Gæÿkþ²¯Çç•uÄXK+äÚ4ªªBFdÚËKËÊ;î ´U_ ñƒçÜg«MYøòHß{» ¾¶N5|T¢Ls׬'G ýËÙ…Š»¦ù,{ô”¿¯XüúÚ÷ÞzÇ1Ý~ RE°ÝÐ|å‡-‹Ëc#€p¤r i·ùúTA„Íá âÏ]ÛW!-&›X&ÄP”+ “óÌ–ŽU<”¹æ\©¾íì0·¶ ”áb6‹Å“©B––öWž6 1.>9FÞfhz(–X¡pPe‹”rÕêgSÀ0¾X†[gÓv÷™ä‘h™Çcû_¥öÛ¶—Uó9®Cº–þ×EHþu;Â^œ·þÅh1n(ýíßK>-¡,Ö½?øõ÷¿Ÿ%e9t'¿\Yနù»·LQÀö¼YP¾yÚÓ_ÖÒÆ4X·fÐ’¥[sl[ÕñOWç¶[yŽ_>Y?ê­~5…c+Xÿü¢½z_beÎÙ²ïm³¶`盫Š|Î4ÑæP‘—'~fzúµíÛ˜SîÝ8Ék(~7J?œ2ó«zóuk/]¾ó )ÑPüòw (0ìÛ¼=ç­ ;§Vþ°ê›ßxZ/\Äž}yí‹‘r–¹ü÷ïîó®båÝ9f乃´v¦e:9‘ˆ)‹Ö}úäigËÙö_1'û×w¼¦[ÀZê‚B®I“ÒVAì`M¹£¾µ6(LV] à­¸kâWñ–wó¶-;üÉU'éíΖíøóÛ¾™ªùúïÛL|Ú¿œWÜ5 ÌgšFí¹Z“Ì^ZÃxbû=¨T!µ*/7bMµ¦¨è!™‰,ÒiÖ_¬°øzÖi¨s šåÝœH.³îbYïI„›ˆ4nx’Òûý:0[Dã…“cC…–—˜‰Q.«¡\ÓtÍ< Òw—CÐB4kËñ±©ÊiÔ]¬ë0M=«g6g[÷C¶Ôj¥±q©™l”p[[4=ñ&#<Þ¥ÏÚìììcÇŽuü—+‹Rã­Î)‰Œ & Z™`oý@/ßegO¾¬1ôs„O¥ïÖ¾X¢ïÌÙÆÐƒ¤.Ü»°qŽÿíù}ј•;sO~ó¿ýê˜F†~ÃU +d`º¬© ¬ù:62¡²„L¥)ÿB#€òÕ)ɘ¶@ëÓè½Å¸Á–@ä*KÕߊ–0X¡òÀ2ï&ðv¼Aùj.ž§kdLX:$“úÇÁ<Æ„e`¸!`rEÑÐz}{ñIks‘6,######-IæÒzbfºŸÀXWáÏ‹°8ŒÂ]²ýÁÞ^n-_,ÃMƒPzŠl ôA®²Tý­‹¥wÛ¡l?˜ÀÛ ¡ÂXWÁœQÀÀÀÀÀÀÀÀÀÐÿ`¬X†þcÅ2ܾ œ »ÃT£ÅÜ®åÉÀÀÀÀÀÀÐ`¬X†Û—`YÔܘècª›-I÷Ž[óÛo¿ýöÛo¿çåyä.Îêvªƒæ~ëMsÛŒèn&•þjî§u(:bʦûÿq¯ØßÊ©›½qG·² ,£žãÊbv:á£g|±{~êe© ÷~ñ„:ä|ǼÑZòOà%bèϰDቩò²†g¤¨í¼°”á™ !ýí${Žjpö$xFÆÄêC‡ ž1$!Lx¥·„‘:";+>@‘=<^Š òĬìÁ*î.B7ÁD‘ƒ³ÚŠã“ ˜aÙÙ#ÚɌ둧¿µ†ž£¥¡ô% uÙu7[’îcË}uT.ôô­ç6<2j¤.Üûj$w ý¯›W7:N›;Ù_2ê -1ܺ Á‘즢|½ P¤ãÌ-WKµÆMšýÞ˜Üñ4–4·OŒĦ„Ùì€Êb‚‹Ëm¨469!ÂRXÝ~$[­b¹/?ôŸ%–ŠÀhAÄ1 ýêÔ?ž2>N%AmÖ@.ÆtÔ©ëÑˇ+–á¶„«z7=:jj‹Ôú»%³_ƒ†ßýÊÒïI &ô…»ß_ñY$™3ß^0!>X(áÙtM,ÍÖioäÚhéÓTš÷Úœ{“¤¸¾àë÷V~Uìó¼qT5jÞk/Þ;HMnã€Ëîp*ß<í×2c[LAÊ´7OųTÛûÉæíGë.ïà…#^ß¾]ùÔŠãÖNb^}F´ ¡áŽ7Ý_·Î=j†|ßÊ}±³g¥žX6ó“s8íãtÅ TKÊ©›> ù¿)Ï·‰w÷<úŠ IDAT²ƒþeÌÛ- ®>îÙ[Ÿؘ7Åû§¶Ï$ä®×ÿ¹ø…ñø–¿ý}ÆÏ&ãö˜­|¸ô­}U¤-ÞhcÊ&oØ™ôÓ ÏC ïU[òÖ.\öS€,{öÛ¯LL‘“ Å{þµü£“­Þ:ZØüÎWÑsçÝÒúLJ¯/Ï­!¯óR‰®w†>G58#ZcòÒ2y;çNœ´J3rú}j4íÙ×F”¼óظ‡fnµŽ_üX‡>bÆŽÁ¶Ížðмÿż<# õU¢Àë¡Ïã®?{ìØ©JÕ\vìØ±cÇŠë]`Ñæ;v¬Dßy§Ì óÔœÉ?u²¨ÎáÔ-3x-H¾Rɪ?—Ÿ¾™ì}µE\—¦Ê(ŒR!µIù½Y0Tª Ct­$`\¸ÝTPDb¼‚ïv»9Ž7?Þ~¢¦Iwô×3d¤ÚgÌÀƒÏ˜Îª¤åBÑy'pÈÂuÓç~VÜê´ÕŸ(¬ iXµÿóÜJ;é,?}ŽŠŒ”û*Q7ëáVwvjŠ`"Q‡aêh¬i°ái3YI.×k2ZŒ&’ »Éè!HA{÷Z*V°Rî4¼s{(ŠR…p„b1ŸEQ$Š¢lEtUWÕ|Õª —ÉÈ’(äÂhºe‡%[mñé3EEEÅg/hͼèØÐžXý{õŠ‚ìììH•¡ßrŒ¹^å–‚ÍÆ¢­ÃÇqœ±€Òi.ÞþÍ V[Cá{kOø ô•fø¤Õ;Fã€ñœºޝ˜v)wÿÔï^óaÔK‹>z"¯-üyÛú‡«¼þ½om@+¶L=åè,f`Ð*¤›Ó3`-5j«‚îˆkþïù’ÂdNí¾®ÎtäNŠøsM\Ã|.( ¼1t³~×+/€ iÒ›¯NˆgãD —"Rí~'’";Dº¶Dݬw†[ —Å.ŠšE.³¶ÒÔN]úqS.QEÄÁGkuÛúP’$!šËN5`¡IR¨82’o(+u\Õ÷ØŒ&~’ÊSWìACo¼è7w»ÚŒw—¾Ù¦YLë—«»1ƈa`¸…Àqeµ™5, Çqå„ù#òž{`ɓĴ>Ó¬þfÑŒ­5Æ$¢#÷6?„/ì¥{VÎÛlqtÆ´¥ï,™P8çû&Ç¡eó[f­xþOû–ÿnõ30èÒh§-fàZªÒZ'  ,?´?tæÈ^mqµ¿Ø$Eú7TÃ0îË ¼1t!渹Ú?žöèïVR6yÃw)]ÉO½ ãÿ|O’=ÿÐIf¡ìmG#i->UÚ÷.™JÄ„Iß¾5 w»ÃaÀápÜn_*áp¹ƒG´d"ÎÕž©¬-M6®§Õ ¾'ˆú,L.$ÌÍ&' À ‰åè/è¼ÝEO}i0+ nKX‚,¥r´„…²ÑJåþv°I`ÔVhB³ïI–pxÊ‘w¥MlŒÂa±X,´c~6žš "=;’ À›ü·•ÓS|º3ëkëTÃÿŸ½3ªÈÿ¹·÷%ÝîtgßIHK€$&2úSÜåÁ°(* Š""(( <@\\`”瀠È( ¢ Ž0 ÈÚÙ;Kgé}½Ëï,,¹7t“¤¡¾þhNªNsªúÞÓuëVMT*cîûôh »J,zʲW& RrÝF½ÞD\y¦æ¾´cã¯)‹_-½QIO` Ho«3ºéy”«ª‚F¥ÙÊŠKJ°1cèÊžç›†Ž¦QEE(½ÞèX¡äá¼ 1÷ w––´°”ò|0x^’Ãå %"ª!Ò46UD„”DÆjø8O5úÞTGq1›Iìý=õ­uËÞxï•qÂ=GÜ9àÆãóq ðÛ2ãÊ ?@ʳX¯ü¤3µµ‰5a2‡#T†a­­6kõùœr+M”¾8çBmǃ&ÚTs©¸Á¿ÞìêQȀĸøäUG¢é¦92µZÎÇ1œ'ըċ³&7íQ€¸+áÊÿ×±G20âÅ@È)Õ8ýkM½'˜ŽnÞ4xÅš½O)ÈÆ‚¯^{ލ;²£ò³Ý?? ¤Mw~ך7v]dÆ-Ú¿mªvgÏíx)Þ|tóûƒßxÿÛ¹ Ž]wæ‹õå¬YWëÑí{þ¼jë×Ó´_½µûÔ¤ÙpÕÖ_eσâ§>ûeC[Q)wÎËゥâ˜ÊN~ôÎwW/{tl{'{׊éOo8cï±ä505TÏ^Æ“ÙMÏ£DWVAì`m™½¾­6 DY]Íj<€ý—O·Œ}ûï_Nå[Ïmy~ÉÁϯøáó3/¼¼ãP°ÈUwþ_o­¿@³4ĺaÛ;ðÜüB€€´ùÛ¾[%vÔžÛ»rC>kw°ö»¡òR­Qi+®A3±~Nש™Q0tèëìC†e´o)L“N“®´¤Îrë e“JÄv›íÊ&[*ËÄñ±CGði‡AWZçaΆݞå7".=IÓþ“z`¦Ȧ¢3Z¸íÁ#­ŽŽP­µ•ŠØ¸¡i<œtYZµåM¾øÒbBá•_°™™™hE¢o23§ Áp'»oõ‘ñLzí°0^ìì?m™š?¹»pÒæ ·ÛXÄm€q„0ÏK²àÛíýÞPpeBšÆ˜[ÔD࢈”dnå¹JÖýþî0ʨˆ@B_©sÈ##I}¥ÎDö‰°ßr]¦Šæbˆ» wáŽ?¹`n‚¦i Í—w­+r„·ÛRÄíq„ô²$á+(KKsXtêȈöi¢+÷Å“i?# T«Ý–*!V¶0õÐ_@s±fÐ\,@ |º¡ø ŒÃçsiÂé¦:?}#ì· ¹X@ ÿƒ&]»åv}è¡¿€ö(@ @ø(‹E @ø(‹E @ø(‹E î$ã78qâĉ'³³Û?^–Ñk­ƒü«]ç®YÑ7©"zÖçû õ]I˜Ôxî&ˆ=¹þŸ‡Žÿ|ìÀ‡3âûج[‚¾ß>ši{sŒ—•†/=üÙ¡7.w=áS?>zä¿Çɼ¯‰¸EˆÂ‡Žˆ èÛ6ø¡ƒ3¯!A À K2"=#}ݤH9@="3=^àªÄŒÌÁ¡þs ‹›Ìpe‡LO1$!Dâõ©-Ì*}¢@Ü^¬‡—Ž= ¾Þ€óÒÖ¿ŒÝ C\êu¾ šäÂ{žž';öÔã{ë1± ×gˆ#ú# ¿~²±É~Þv+Bôî¦âs-pä±)!VD$„Ò5—η81qHBBŒ2¿´€#SHÁ`ÆdrŽÔö7˜ÝdWÆ$ÚK ʬ¸"69!ÜœWÝû=ÒP‹¸+á¯I‹½ê,wúDÉï›YOòcð°û^]ñâýIdCÞþ÷×í8gyÚ³«^™(‘ ­ºfŽvçŒ7[…Ì:CÇ.|}þ¸$Ñpî«w×YÀ²ßxÜœ=;çD|”= ãè/&“XJ*3ç­zuRŠŠj,8ðÁšígÚXݧÌX¹lfz”Ð\‘sðÓOvŸ®c;F9eëޤ׹_<.œýÞâÕ?6²xĨ“¡$‹ñ h¦mÿvá €{öü0:Oäbì#F;™»#â¾W—¿ðÿ’ÔcéÏÛÖ½{¬†ºæÇÌð¥‡Ô>÷ì—õÌ:=ÈÐÅ·¬ý2zÁÂ,µéìö7Wî×’žûÎXÝãxþ8æãƒþwêG—;\¾oõþå¡UÿïC'õÆîåøúgÖýÎrÚ:váë/ޤ†æ&—ØþõáµvŠÆm<2åìÔyûš`À¼¯6q×þ×Ö‹]g¡•}2ã×C}äñ÷èN„+HˆÑˆy\.N8]˜­.¯DïÅ»ñ¼AÃ%Íetp¬JH´U•5;02&>Z%åÒNscEy­É ŒBqİ¡"€”̰Uçåëú"m¤I·«Ã)qD¨ÔPSêà‰Å|sƒÞN€Eßê •I •°XÜr…Ì\y€ÃâW§Ð2ºÉŒL©´5æš\$@‹®92Q)®fOy=­(@Ü•P¦kµkµkëλhGŸ\Ån?Ò-O<¿æÉñç~¬xÕ³©„=>ÿ/mÛg>6þágvVèv¿ðæa+‹Eç+o¦\\=í‘ Ï}nŸöö¬d¶Æµ;žÌÊšù2ý¾ùYYYYYíù “IŒ%ñÔ9¯*\ûÄøÇŸÝi™°ì Öv‚'-z†úfÁ” Ó—lÏIO‘öajšpï‚I“7hGÏ|0‚Í#FL%™Ýd¢éë糲ƿ{–úieVVVVVû¡²Œ}Äh'#/|=©pì‰L_ù[Ü’—xå»ç€ØñÅ_½4ñ±E?‡/˜ý'ž7¾3V÷8žM•â\rߊ=ŸÌJup°®ª’º‰Ð Sç½–vzÃÿ°¥°Ò_Y‘\°îÉG™þú7D—°›öß²Ï%¦gHB32¤§O]€ü÷ËÊÊšÿí5?‰ûÈãïш 8*Ä]s!÷ì™ü:»CwÑ«¶\&çÔ_Ê=¯µ+‚„À Љ—˜J/œÍ½XíR'DÈ€Eh«½“s¡Ææj(ÌÉÉÉÉé›ö[¡!X£®Âé¢$ 0B.âñÚç ƒ’+ø"¹Ìa4ùçYèW»ÉWÀ—‹OŒW‹\.ŸÏ÷E³>Ð@ø”=·©éxSsµ@1˜G\¨,þ¦×¿û%‘ úÓÇ/œŽ†S¿œ$$¨À¨ÓYpÃÃ9ò”äH6!›ÎæßŽ_¶R„þ—c¹Š¤$EïMb‚ÊÛꋱä78Í6iܰáQ$é4UV{£©áòEÀ0Œîa4MãÆ&¼Å`²@¹½­º+_uèË.赜&)Nð °®w­£()Ô]WàÆƒo½•½æz7 ( Ã0²¥äl 7£(_L:£,q——D,S ÌÕ«* wî!ÜAàœŽlƒÃá ™¸hTös.¿ÆkF!«ÎꯗÌÚYã‘Ýò&“KjÆ/˜nûÇŒé'-”rÊÖo®ZÅÜ[ñõ O=bÆŠµË'æÍÿ¶Ù#ózðˆI'«ï7—Öu¶Îï«ãâ@fiµºiо"ô~£—]샆ºé¬ª´LN );v$øÙÑ)ÂÚ‚jð6töc«µÎ]÷ü=ß­9ɺ H’ì:;›²O5OÍHJU ½xz]·oÆ>ò.Èw|MŒ¼­àl±OO‰¢i:“Ô®ä•Q@ pkRZ‰\FºV-ð¤A ܨ7¹€ÇãîŽA‹¥µÙ*p·9€íñT¿æ:7€#Vª$¤©ÅØ>MD¸\ÀçsHàóù.—/^oE+ w%¸lÎÀˆxÜyÁ@ TkÐhRügco¨-×gÞŸ,ç 5£ïM%ËË›x\~`PŸÃápp¼ó:Î(d¦¦\«ž)ÄMùÛú™)¬“©Í CÇ Ó(‚¢"”“Kr¸\¡D„ƒ@5dBšÆ¦Šˆò™/XXô”e¯L¥äºz½‰ðnjÉ#f¬¾wsÓsXâyõ1 S x’¨ÇÖìYû êuái÷$*Uñ¼ô×?õ¸R–‰^v±꦳±ª*hT𭬏¤3†®¬rƒ÷¡s_Ú±ñ×”Å/îaát}m]húØD¥2æÞ¹O–ôl§.;Û™1ë¿F”eçô´$‰±¼ òŽa<>Ç0̇s£»M PI¹8ÎW(e´Íæb¸Nn€"€Ïã‹„¼>ÍfùRžÅzez—…ÄÅ„Êx8GÄ3šºþD›j.7øÕ›]W¸ÞMQȀĸøäUçuÛÔÖ&Ö„ÉxŽP„µ¶úb!š‹EÜ•à¢0>2#ã2è%M…wà¶G¦£›7 ^±fïS ²±à߫מ£êŽì¨ül÷ÏÏiÓßµæ]…q‹öo›ª€ÝÙs;Þ@7Ýüþà7Þÿv®‚c×ùb}yïí¿|ºeìÛÿr*ßznËóK60™ÄX²þȧÆ.Û÷âּ}—¾ûè†mïÀsóó§u7©®­¨”;çå÷^ŒTqLe'?zç;ï¶›`òcÔÉê{77=o5 žW´|ÅÎÃjžµê÷Ï6nýwŸìÎz{ëÞiÿÞðõÉGŸôJcn2Ò ß=']Y±ƒµeöú¶Ú€euu§ïÞ…ÎY°íì]+¤?½á ó´õèö=^µõëiÚ¯ÞÚ}jÒìží,ÏΖýufãæ÷:wÕêÚ£à«ìyÛP0ö‘wA¾£pèëìC†e´¿vG“N“®´¤ÎÒË™YB_Y!OH ãÓÜXZfb-µUÊSC0ÒTu±¨©Ï.þ˜T"¶ÛlWF¦³¡¢R7 5„C9ÍMeÚÖn~c·h’Ø—tsÀm·8iutŠÉ–Ê2q|ìÐ|ÚaЕÖùä)(& »þ“™™™““ã µ¿ç›ÌÌ)h0܉ðî[}dü“^;lŒ;ûãd[¦æOî.œ´ùÂí6@Ü \}CÁ• icnQ €‹"R’¹•ç*ï¢Æzƒ@Hè+uydd ©¯Ô™È>ö[®ËTÑ\,qwá.üÏñ'ì=4×MÐ4 ´ùò®uEnƒðv[Š@ î@(KKsXtêȈöUª4aѕ߹ï&øŽ$P­v[ªt„XÙþÁÔ7BÍÅ"˜As±ð è†â+0ŸÏ¥ §›êü@ö°ß‚æb@ üštul¶Ûõ¡o„þÚ£@ á ,@ á ,@ á ,¸Œßtâĉ'NœÌÎnÿpxYF¯µZð¯v»fEûÀÈž‰žõùþECû¼ØÝ ŸúñÑ#ÿ=NÆ\ïæzrý?ÿùØgÄûFe·Ð ]|ðó§"|£ÜûÖ{‹fÚÇÇÞãC…ÞpKC‡¸ iôðQ£FÊÌ.ºÝ¶x.TÅJMËÈH1$!DÒžZá’à„!#Ò32Ò†Ì.”FÈLW`¸*1#sp¨_ÃÕE 62½Ýõ>ñ¼¤çûD ¸½X/{†.>¸¸iþì/j}¢õÒÖ¿ŒÝ C\êuýv7~ýdc“ý¼/·Þóô<Ù±§ß[‰wàAÄÍa©:ÿ{ÄŒŒ»Ý–Ü‚àøh~sQ^‘“D$%Eªš‹ôOÍo-<_oÇD¡‰)1êÖÂF7“€#SHÁ`ÆdrŽµ×ŸÀ•1 öÒ‚2+®ˆMN7çU³lœæyIošïµÂÁcƒl‘þUFú¶!‰ã¥¾ùQØÁÃî[²õë#ÇúbÓœŠv¡<íÙ¾8pðð±_:ðåÞCëÆKØ„Ì:CǾ²ù«Ã?ý÷?ÿþÄ€ZWfÎûß½G:~dÏϧ¶Ë®žë¾ôðgO„ÄÍÙ“½{îõÔ²³³³³; 0ψ8eÆú:þ˱ý;þû¯cÂùívFÜ·dËW‡ýtô_Ÿ,‰³šÄÈÐų³ýöÃÿþk†ôjáç³2zkçá¿ÿòïÿÇa'šiÛ³³¯¼6oÏ¿ürôý‰A¬n*§l=öæc÷.ûìà±v¿ý`0›™,¡,èÞ7v9þýžu“:ìô¸ã˜Ýd¨ÎÔºfÚÇûæ'wéÂï[}lÕ½øM¹)õÆoßÅ~^,cäu² Åv78òŪñ‘]·Ãî¡c`ˆ›% fäаŽM>e±iC¼yäÊ#’‡™–1*cDjêÈD5§]g¸ÈöŒ›9t9~z̉·fÏZ{.~á_³xàEÇ1»ÉT©õ¦Ê qH.¹oÅžOf%ƒ:8XWUIÝ„›ÂÔy¯¥Þð?¿[ØŒdüõ:Yû=æá‡¸»æM||áb^ž•³…Žq€!n‚à¨wܳͅgòëìÝÅ}ûîP"†S)7÷r‹0:<°}€INm•AŠÕ–ëA©è›Å \.ÆÅa‰ÃF¦§¯a–šüâ&W{±ˆOn6!a0Pr_$—9Œ&Íp|p¹è€ðÄxµÈårñùl?ò~Ñàt4œúå¼ !AF΂ãΑ§$G° Ùt6ÿvü²•"ô¿ËU$%±M’Ry›g.ØQÐæ°Öÿ‘Wä ãÁ1œ RI1“6gßúÍ?¶DÄПú>¯Ùá2^þצ5‡*ðÞ›•‡¶í/1SŽ’s…®Ð0%x:ïÜtä=Ze§ÌEù—àõ29Ý÷Ÿ|~ª²©îÔò\!¡Jð¢ã˜Ýô¸zeU]HHPô deÌð$EppPuU÷nòRæ¼–ñûú-ôðÈ‘5ò×ëdí÷ª#ÿw¸ÂF9ÊÎ_¢##Ul¡c`ˆÛáèÚÔãJ¥]‰©½©¦ÑJДÕh¡‚ö Él0R$EÚŒ7§ªBb IDATI‘Þ7s±€.“Òu…çÏå—›%±1j^»È4‘ñÉ©©1¼ÆªFGB§ÑÀ‘«UrÒ`¤úÆÆ>Çqš¦1¾D&qhšÂq¶¼Òó’Þ€ÖÅ"îJhîMÄ…(Ç úèÚv»áñ¸$ÙqÁ'‚Çå­Ë×\¶ûë,ÖÆ¼wß; À&dÓ6yãžà ºBÖßÓâ¤É+—NŒçnL =¨ôÂxFê÷oú0ê¥%ÛŸ &jó~Þµå£ãUnàñ¸ÑQÝZ~ú¤/Lºsž„¢)ÃÁ›Ð1rC7ë÷½ú‚÷vvé$I²ÝNÏ;˜Üô¸zSeUÀ˜Øè–Ÿ~ H Q:*¿s{ë¦hÜÛ[ñòmÓÎöølõ†‘ïÒÉÖïW»ÉåvÜ»‡Žq€!nN³M7lxI:M•Æ.9}åÃ-¾¢Ó@›¬ „±¡Å>L*&G38AáÔ74–V¬îöä”Q`5EI¡îº7ꀨ?BQ†adKÉÙn0FQlSÉž—ô”Å"îFxÊÈ—4’s?mã<”4x²_½ê AàœŽß»‡ ÍÄE£²Ÿ{tù5s\ŒBVÕ_/™µ³æF5ãL·ýcÆô“J9eë7)íRš¢»Lºæ·xWºÔ“ñ,ØŠ¬_xx²è3V¬]>1oþ·ÍWWÇÅ ÌÒj d4©wx:F¼p“n¡ckȳŽó²z·Ö«*-“ÓHÊŽ ~vtа¶ ¼uÓ~lõ¢Ö¹ëž¿ç»5'Yxyæ¡x5\.×M°g¦L $ñ¾?É–{ìLë†V ®@Ö‘gb^ç›|MŒ¼­àlq?:dêúáLÓ4ìªÎ-jºúoŒB ,­ÍV»Í¬ú%„Ë|>€>Ÿïru½´Ê+UÒÔbtP7(٠ЊÄÝŽaàR¾0B¦È!ÝÙÃa åí¶ª¨-×gÞŸ,ç 5£ïM%ËË›x\~`PŸÃápð®çkŒBfjʵêᙑAÜ”¿­Ÿ™Â6EÊár…Õ i›*"BÊÇ¡¡^žvO¢RÿÀKýÓUïA574 3L£ŠŠPrXŒg‹ž²ì• ã”\·Q¯7‘TGõ1 S x’¨ÇÖìYûŒÍ¤ÞáEèñØMvº…Ž;ÎËêÝZo¬ª •f++.)ÁÆŒ¡+«Ü7á¦ûÒŽ¿¦,~y4ûTÏ#ÏÚ>ÎS¾7ÕQ\ÜÂRy€DO}kݲ7Þ{eœ°go×àt:…ò@ 'Š ôöÝZÃx|>Ža˜÷pA™V™&DÂÅq9F…ߨdo@s±ˆ»gkÝNƒxZ耭úÏ/]<8M%•ë wÜr7ÓÑÍ›¯X³÷)ÙXðïÕkÏÑuGvT~¶ûçg€´éÎïZ󯮋ŒÂ¸Eû·Mm_2¼;{.”}2cöµæ£›ßüÆûßÎUpìº3_¬/g›Áª?òé±Ëöý°¨5o߯¥ï>ºaÛ;ðÜü/¿ûdwÖÛ[÷N«ø÷†¯O>údWqû/Ÿnûöß¿œÊ·žÛòü’ƒ LÆ3ÓVTÊóò{/Fª8¦²“½ó]k‡ïƒ–¯ØyXͳVýþÙÆÃ-ÀhRþ47‡.>øÑäö_6_eσâ§¶¿ŒÕ æxz~/òÜMVº…ޱ”ÇÇ kõn­Ó•U;X[f¯o« QVWßœ›Î‚mïdïZ± ýé gïvžGžy(¤ÍßöÝ*±£öÜÞ•ò½`†ÊKµF¥­¸ÍÄzƒ«©Z˜0hxˆ½Q[ߪ ïÁ!íËT†eF‚­:/_Ǹã”C_g2,£ýM@štšt¥%u¬3ö·gcy¥(.15’K;-ú2m3ÀÇW'e^y碥$§ÔÂ$¼vô`~¶Àl©,ÇÇÁ§]i]׳·Ýâ x¤ÕAߨdoÀ„Â+¿!333srr|¡á÷|“™9 †;Þ}«ŒÿcÒk‡­€ñbgülËÔüÉÝ…“6_¸ÝÆúŒñD¡»ô:ò¾Ý\Ñ>¼¡àÊ„41·¨‰ÀE)ÉÜÊs•fŸ(ïÿ”Q„¾RçGF’úJ‰ô™ÐÔVi°r]¦Šæbˆ» wáŽ?¹`n‚¦i Í—w­+r„·ÛRÿ€1ž·Û¨»ù»ÊÒÒ:2¢ýÕ<š°èÊ}2©çp$jµÛR¥#ÄÊö&ß }y¾Ë­ÍÅ"˜As±ð è†â+0ŸÏ¥ §›êü@úNèS±h.@ ¡IWÇn¹]|(ôCÐ@ ÿe±@ ÿe±@ ÿe±Ä€dü¦'Nœ8qâdvvû‡ÃË2z­uЂµëÜ5+ÚFÞ†/=üÙ¡}¤œ= áS?>zä¿ÇÉú¨aϸYßŃž\ÿÏCÇ>vàÃñ¾7«g¢g}¾ÑP*ÔLûøØ›c|¨Ð†.>øùS·©qÿ‚# K:2##}DJ¨¸S( IIOKò¿7vpIpÂéiÖt¤V\YÄÀa#ÓÓG I‘pXKJ£Gd¦Ç+0\•˜‘98ÔßΓäJ#gdÄÞ¨C@zÛ²O´ ˆÛ‹õðÒ±‡Á×[`^Úú—±[aèâƒK}¢ÎÿaHïŸll²Ÿ÷Çj@xÏÓódÇžz|o=&øâLHâ†àᑼæüÜ'àXçYhàl­Öº(“÷§0ßfxšèh~káùz;& ML‰Q·6ºqeLB ½´ ÌŠ+b“ÂÍyÕVÆ’™B 3&“Ëp`<í¡¿"ÔÄÇ…Êq«å†×Æ€ô”Å"îFC}#+¨È]ÕèAè;ãCôE³Ë Ô«úxØ}¯®xñþ¤@²!oÿûëvœ3€<íÙU¯LŒ”È…V]3G»sÆ›‡­ŒBf¡c¾>\’‚h8÷Õ»ë¿,`Ýo\œ2cå²™éQBsEÎÁO?Ù}ºÎ%yøÝÓ~Ÿ:oŸâæîù@¼aÒæü!‹.nYûeô‚…YjÓÙío®Ü¯%ðˆû^]þÂÿKRsŒ¥?o[÷¥uÒLÛþíÂA÷ìùatQÆØrÊÖ½I?®s?¾x\„9û½Å«ld Sov7)nΞs¢>ÊžÚÀÙ?ŽùøÃ ÿúÑåv]ø}«øó/­úxo’dÔ»—ãëŸY÷;ËÁNŒÝÁ¨“i0\qóOAm¿}øÆšÃ5í,èÞ7þ¾ì~µá÷m{뀖duw/üÐÁ#¢¥ÃÒ£¬Uç ê1#SBx`«Îkµöx°W‘£ó¸\œpº0[]^‰^32Ö]¦EÇò cMIi£ŒÏP;*)e8¯©\/ŽŠ0–ÔX¼?ïÆx\£^o%(k«É,¸eJ¥­1×ä"ZtÍ‘‰JqµÕÆT’°XÜr…Ì\y€Ãâ_§Ðº­mú*]«M‘¤÷\’1 ½mþšAþ6@xO›É¤H àˆd²X .Lw^ }pÑòÄókž?qîÇú‡W=›Š@ØãóÿÒ¶}æcã~fg…n÷ o¶²Yt¾òfÊÅÕÓ™ðÜçöioÏJfm=xÒ¢g¨oL™0}Éöüô)XËΘ‘!ÎÈ:y±ý¦;~¢ø«—&>¶èçð³ÿÄ€€‡¾žT¸aÖÄG¦¯ü-nÉËHØZ—>øÊŠä‚uO>úÈô׿©èi‡É$ƆðÔ9¯*\ûÄøÇŸÝi™°ì v/!ÿýDz²²æ{ýùÅÝ=ò<ÈÀI ®ß´å„y3xŸ¯;Bß;:š¥7}÷¸š¾~>+kü»g©ŸVfeeeeµŸ²ËØ€05M¸wÁ¤É´£g>ØÓsóî¾3™¤ÝñdVÖÌ”é÷ÍÏÊÊÊÊšýE-4UVˆCBpÉ}+ö|2+ÔÁÁºªJê&L¦Î{-íô†ÿaKa{èŽëu²†˜‡âîš7ññ…ÿ‰yyVFÇí4rüô˜oÍžµö\ü¿fñ€eÔÝŸê/æäœ­0Ò-%99999õN0Wææää6Üø`dApTˆ»æBîÙ3ùuv‡îb‰¾}›(‘Fé¿”›{¹EØ>B¤§¶Ê ‰ ÅjËõ TˆúÆ%KM~qSûO®XÄ'7WÀ—‹OŒW‹\.ŸÏg) „Á@É|‘\æ0šú"Ïî;Hk«Þ`÷`§.æ€ô–k²X½^#•Þí_1ÄÍTH€ @€Ó¦Ü;p"ô§_48 §~9/HHP€Q§³à8††sä)É‘lB6Í¿¿l¥ý/ÇrII ¶’8†óT*)fÒæì[¿ùÇVãéS—SÓÓxòQa§N^è|å¡mûKÌ”£ä\¡+4L ñô§¾Ïkv¸Œ—ÿµiÍ¡ œ­õ¨Äýécn·¥J[ßÓ4£IL Qy›g.ØQÐæ°Öÿ‘WäMØÙ<ò<È@ü‘ë°Ûíå¿ÿÞb·Ûy<Ko2úîy1ÂØ€#ïèÑ*;e.ʿ쀞f<ºûî±I•Uu!!Aу’•1ÓÁÁAÕUuÞ›ÄK™óZÆïë·üÑÃKÖî¸^'ë`¨:ò‡+l”£ìü%:2²Ã$Ý÷Ÿ|~ª²©îÔò\!¡J`uˆ›†ptínŠq¥Ò®ÄÔÞTÓh%hÊj´PA{†d6)’"mFƒ›¤H ǘú\ ÓDÆ'§¦Æð«8ŽÓ4ñ%2™ˆCÓŽã,%œFG®VÉIƒñ޼Aé׬(¨©©‰ŒŒ8p Çón„r×Þf)4Ñã”I|q ŒK› çývÏçáñ¸$ÙáA<.h]¾và²Ý_¿`±6æ½ûÞY6!›Î°É÷<@Wèвþž®ß¿éè—–l*˜¨Íûy×–ŽW¹šNª™1ÿM™10燳]owÎ?P4…cx{CÑñgkùé“ì­s¹WÜìF“'M^¹tbÕö^FRªrÈùìµ=Üͯ6*0K«ÕÍØ:I’WJöüûžÉ$¦†Ç/˜nûÇŒé'-”rÊÖoRnììñ"ÈŒ0õ&³ï^ô‘Ç õV“ºòÜNª*-“ÓHÊŽ ~vtа¶ Úk“ìÇV/j»îù{¾[s’uAçÝ¡¹á`àr¹n‚},3@ÿçû“l¹ÇÎÜÝ e½ƒ¯‰‘·œ-îG3x`h°«:·¨éêaI¸\ÀçsHàóù.—“¥$–Öf«ÀÝæÜ!pÄJ•„4µK@z Úi q—Òj256(,d8Îüê•P/¨-×gÞŸ,ç 5£ïM%ËË›x\~`PŸÃápð®çkŒBfjʵêᙑAÜ”¿­Ÿ™Âö䋞²ì• ã”\·Q¯7‘óU§²ÉŒÙS†_>™ÓSàk˵Ác¦ð$Q­Ù³ö![ëõµu¡éc•ʘ{ç>=Z®’Ù$¦†8\®P"ÂA 2!McSEDHù½½\zdF˜z“ÙwûÈ‹†z «IÍ CÇ Ó(‚¢"”h¬ª •f++.)ÁÆŒ¡+«Ü7a’ûÒŽ¿¦,~y4û9Ï»ƒu0DÆjø8O5úÞTGqq KuÖ/DO}kݲ7Þ{eœ°goWƒcÏÇ1 ÃnñŒ++\.—v¹®OLMmmbM˜ŒÇá•¡AXk«­$ЦšKÅ þõfWˆB$ÆÅ'Ǩ:¯œLé5hÄÝŠÍTH„ßÏ烳þ¬/¾KýÓÑÍ›¯X³÷)ÙXðïÕkÏÑuGvT~¶ûçg€´éÎïZ󯮋ŒÂ¸Eû·MUÀîì¹PöÉŒÙ_Ôšn~ðï;WÁ±ëÎ|±¾œu ª­¨”;çå÷^ŒTqLe'?zç»Îõ€Å§N)ŸšR¶~mWlÓÑÍ›-_±ó°šg­úý³‡[€±õÖ£Û÷üyÕÖ¯§i¿zk÷©I³Ùu2šÄØÐ‘OŒ]¶ï‡E­yû6.}÷Ñ ÛÞçæçOcH×_eÏë|ÍŸæÈ{~×bêMfß=ï#Ïê%¬&ÙùtËØ·ÿþåT¾õÜ–ç—l +« v°¶Ì^ßV¢¬®¾9“œÛÞÉÞµbAúÓÎ0~Á=ïŽzÆÁP6Ûw«ÄŽÚs{WnÈg5‰õ‹`¨¼TkTÚŠkÐL,@ש™Q0tèëìC†e´¿ÊG“N“®´¤ŽuÊýÖ€®NÊTwý¿¥$§´•l©,ÇÇÁ§]i•­¤ë:]ý%9÷E\z’¦}ó×™j ›ŠÎh à¶[´::¿Œé-˜Pˆ~"ø&3sÊ»FÊï“ò0¾ì‘p5èò_«»ƒ~ÿÞÞ}«ŒÿcÒk‡­€ñbgülËÔüÉÝ…“6_èƒö¹<Íþó«¿ÿÔ‹oþⓢŸÀù¾ 2âÆôº;|»7óŽo(¸2!McÌ-j"pQDJ2·ò\%ë~weTD ¡¯Ô9ä‘‘¤¾Rg"ûDØoÉÌ̼ú4‹¸KƒÿÈ£]Ú퇺»(…wáŽ?¹`n‚¦i Í—w­+r„}Ò¼äþµ_n¸|èý·îªX"»º{AÝá§P––æ°èÔ‘íïÖÑ„EW~]J8’@µÚm©ÒbeûSßý4‹`æÎž‹E Ä-ÝP|Æáó¹4átSȾö[Ð\,@ „ÿA“®ŽÝr»>ôÐ_@{ @ ü”Å"@ ü”Å"@ ü­‹Å$¡ã‚8€cÖšm«÷{߉‡&ó*n~³ ®42iP¨½ôò¶A@X\Lˆ\Ä!f}eyÑ ¸$8>.\!âÒn›AW¡m´öt^q7¸P©’ò1ÂnÐiˬ€@; R%áã4é47V–Õ{:S¦›NïJz^á?ðéø¨{bšÈ­º¸©É7m”ŒßôýòQ€á8MQ`þîµñïüÑGÍEÏúüïÿ׿ü>Ò‡ ôäÊåO¤G -—?[òÒWå>õãÏþÚüÞŒ•ÇÚß´à_ŸLÓ†W}:óé^ur" 2â·œ2TR{Nk¤bFƺ óuwÌ4üÐÁ#¢¯>u£¥$§´•)‘F¬1-7Ѐ«Óø5ç/2o–Ûñ8³ ˆ™Âí<·™Ô_>«íýf>ÊbÔÁ„.¿¨E14>HЪ»•ÑjâãBå¸Õru£ ¡tÍ¥ó-NL’£Ì/m%yšèh~káùz;& ML‰Q·62oΨSÍo.Ê+r`’ˆ¤¤HUs‘žk"UΚ —[Ü M®l0v;Y®ž—ô¼:ÂS’Âb—s‹*›ÁbóïƒÍ­‡—Ž= hË~…ðž§çÉŽ=õøÞzL,èúâ6üúÉÆ&ûù®«÷¥­»†.>¸ôöX‰@Ü>AjAKµÑÇjô?ÜMÅçZ:0àÈcSB¬6`N$82… fL&—áàW™¼ç™Økò/øvve±¦Ê¼ök2MSTûx ˆë.Ó‰¢cù„±¦¤´ÑF€@$åQNc}…¶ÞL€8bØÐ@Jfتó¼ú5æ¶¶é«t­6E’RÜ)ã‰Å|sƒÞN€Eßê •I Õ$àqz½• ¬­&g°PÀk&x€LjÖÚ0Wœi—’„›â‘$$I‘n‚uv—I§%=¯ŽðYÌçƒB``HüÀ(¬4\°ûw"Ëvß«+^¼?)lÈÛÿþºç ¬%CÇ.|}þ¸$Ñpî«w×Y`nω[Ö~½`a–Útvû›+÷kɸ9{vΉø({*@ÇùUŒÕA9eëޤ׹_<.œýÞâÕ?6²´®Ìœ·êÕI)*ª±àÀk¶Ÿa}ØpŤ?µýöák×P, 1úŽGÜ÷êòþ_’šc,ýyÛºwÕP̾ƒ8eÆÊe3Ó£„抜ƒŸ~²ût‹EÈ€fÚöo¸gÏó ã@¯®S¾Ê>™ñk kWôMˆ~†0HÍk¾j>ã+ãã‚ønCMiGÎÀW‘£ó¸\œpº0[]^‰^ÌrÆg¨•”2œ×T®GEË j,·*e¦I·«ã…qD¨ÔPSê`K$,·\!3Wà°ø×æžgV}‚ïÖÅŠCS†$)­º–®«ºH£áÔ_ÊͽÜ"ŒÄ€£Ž‰—ZÊΟ9{±– .[í…œœ 56WCaNNNNŽ·Hk«Þ`¿vsÂé¢$ 0B.âñ¸`©É/îxhÌ‹øÁh&\.ÆÅa‰ÃF¦§¯aÎú’r"|DzZZÆ`¥á²¶•5‹eÒéEIÏ«#<ÀÞ¼C«=b¦Ügkµkµÿ6Þ‘±•>¸hyâù5OŽŸ8÷cýëžMe=ÚPúà+o¦\\=í‘ Ï}nŸöö¬äyìø‰â¯^šøØ¢ŸÃÌþ@»ãɬ¬™ÿ(Ó••••Õ>ïËV„©i½ &MÞ =óÁ–ÆñÔ9¯*\ûÄøÇŸÝi™°ì‰d–ríÄ<üw×¼‰/üOÌ˳2:¯aÝbô=àá…¯'n˜5ñ‘é+‹[òò6ãƒ'-z†úfÁ” Ó—lÏIO‘² ™húúù¬¬ñ~Z™••••Õ~&mþûeeeÍÿ¶•­Z'}d¢¿!V«ñææ+‡Ç Õ¡¢¶Òüür“¸#g`D⮹{öL~Ý¡»X¢o¿zwO9¤§¶Ê ‰ ÅjËõ TˆúØ%&pEhÖ¨k£€-‘ J®à‹ä2‡Ñä_SÓžgV œžž–6"5e@°Ä' ¨o²X\Äi)),(hÄGÈ:Åö¦šF+ASV£…ø K\†f ´«µÙÈ“Hx>i¿´¡¶Â02#mä°‘ûÊCx\ ÓDÆ'§¦Æð«½K—1ÀeRº®ðü¹ür³$6FÍ^PlŒ¸­äbAÁÅJ{P|¸ÔÏ@¾[q[N45]p¡mm:ÞÔ”kïi´ß™ ?}ü¢Áéh8õËyAB‚ª‡’Í¿¿l¥ý/ÇrIIŠvyå¡mûKÌ”£ä\¡+4Lémupä=Ze§ÌEù— `©Måmž¹`GA›ÃZÿG^uPPPNUù¿Ã6ÊQvþÙéQ·†}ˆ ?õ}^³Ãe¼ü¯MkUàlÆãÎ P©¤˜I›³oýæ[MxËè]ˆ~†4(ˆÒ7Û®œúêº6»ËÑÖj¢ÛsFGצ¦W*íJL»§fƒ‘")Òf4¸IŠÄðÛp‡æjT½¾ÃOÆDœFG®VÉIƒÑÿîEfVÖÚ‚óòóó .Uš„ѱÁ¾¸X]³¢Çñ¨¨¨   .÷Æ+ ®>;¢¹Ñ5…s°æš+c’¾ò¡}è`&N¦¢çËFTffæ [gÄ¡/» ×rpš¤8ÁƒÂdyÌà…SßÐXZm°º½)4ÐÆ¦+Aalh±“J É¬ ´7•šì4€³¾%|¨ZVm1z©¸×°Eé&¸a`~Ç%ÉŽ >A<.ëïF6yãžà ºÂŽ[HçJ| h ÇXö²Uï¢~ß«/°Û)Nš¼réÄxáÆ¤Áp¶g§®6©ûµª«!Fßy<.At­å§O²_¿Ó‡Q/-ÙþT0Q›÷ó®-¯r3 o½ 2ѯ "ô…W?=§;¿Û4M÷”8Í6iܰáQ$é4UV\¹ãvK9ú˜,Pno«îœLcJ$«Á(J u׸ñàÛh®÷xžYQ„ËÙñÞ³¡Å*ôúMŸkî‘‘‘B¡°  Àé¼âëÓ&‡¾ô¢Þƒæhšv4\ί떪Ó@˰ëžWy´ñ¤A ܨ7¹€Çãn vUç\«úê IDAT1¼}Å+UÒÔbt°wA\[¦i ÇÛmïp¿òKÏÞ–deŸ&‚À9©'‡Ã¹~_[²úë%³vÖx¤·[Jë]õëÑŒ_0ÝöÓOZ(唭ߤxXËåºÙŸ^1ú~µ*0K«ÕÍl¼­øÀú…€'‹1cÅÚåóæÛÌ,ì#zdIüŸïO²å;òv¸`rµÊ©Ï¿‰$†¯‰‘·œ-ö“E`¹Œ46t&=Œ‰–Öf«ÀÝæÖ'fýÏ3+AP|,¿¡HgßýÒ¸fjE¥RUUUÝ0…í»/Sq\?0LÚÙ¾Ûéä(ø<¾HÈók¸,$.&TÆÃ9‚ÀÐ žÑdàr¹´ËÅt… HŒ‹OŽQõ´À‚2­2Mˆ„‹ãyˆJh2[›Í T pÀ8â @±Íf÷F§—%/©-×gÞŸ,ç 5£ïM%ËËYS®šr­zxf¤@7åoëg¦ô¸Ú§¹¡1`è˜aEPT„’ãuõëáp¹B‰jÈ„4M!å³"c5|œ§}oª£¸¸…­£ïµåÚà1 S x’¨ÇÖìYûŒÅx,zʲW& RrÝF½ÞDP,Â>£—AŽžúÖºeo¼÷Ê8aÚˆ@ܸBhÓ·ÜÌ£ Ãx|>ŽaÖf\YáHy«µó¿Œ‰D;´©æRqƒ½ÙÞdVnš#S«å|ÃyRJl±XjyÝþÕÿáóùv{Ÿ†ÐWVJã“GDr1ÒiЕÛ:ïdKm•rÀÀÔŒ4U],jò&‘VÄ¥'i800S dSÑ­¡¡¢R7 5„C9ÍMeÚV€ƒ®NÊTwUlß¼ Üv‹ƒà‘VÝ£ÎÆòJQ\bj$—vZôeÚfÌuåMñÑ)#ã¹´Ûf¨®hì´ÜCž—d«Ž@°c:ºyÓàkö>¥  þ½zí9Ö×ÌG7¿?ø÷¿«àØug¾X_ÞãíÅþ˧[ƾý÷/§ò­ç¶<¿ä`ƒwÕ¯§þȧÆ.Û÷âּ}—¾ûè†mïÀsó¿¬g.6Ûw«ÄŽÚs{WnÈgõˆÑwÓÑÍ›-_±ó°šg­úý³‡[X|ÇÚŠJ¹s^~ïÅHÇTvò£w¾kezA×_eÏëØ¸ eÑþmSÛ/K»³çvnG½²¡òR­Qi+®A3±ˆ~®P+¬úŠ›ZãÐ×Ù‡ Ëh‘&&]iIå•n˜T"¶Û®ÚmÁÉ”H\[¥-‡ð3+ªµ¶R74‡“.K«¶Ü'[´cBá•ê™™™>˜ö¼d/alè–µî/ôE@¾ÉÌœ‚‚Œèw  qÿ㺠'hàpeó¹’–›x˜+Ò4ÆÜ¢&E¤$s+oþÈ$C ŒŠ$ô•:‡<22ÔWêLdo…WàÈÂbÔœ¶šš›8¼êVq]ƒb#¸epUꃾíæÖãP––fnxêÈ#FŒ1"5IéÔé}ñdÚOàHÕj…®XÙþ¡÷Â+`"…Z­ûè$[‚?ÙŠ@ îzòßlöí¶@ô¢éòÙ¦›®íjÕ^¼µ{Üõ'ìºËç›h‚ªþòy=Ýþ²X/…W šKÏ0¢ÿNÄve±@ ~Mº:vËíúÐkáUn&iæ&Wܲe©Œ ¡E±×‚@ ân­‹E @ø¾Ébù±±¡lÊð€ÐØØð@Öãäè£þ/hà7™™kBX¶€ç¨Wff~Óþ/ñ†‡¢ÿ24ó›Q ¾6òÀ÷Ú–/;þý7Ÿ­šš,´à_'Nœ8q2{׬èÛm_=ëóý‹†öîáKöDhEăž\ÿÏCÇ>vàÃñÂð©=òßãdÿg펾4è—p¤a‰CGfd¤H w …!)éi Aþw'âHC™ž‘>rXrÔÕóA\iäàŒŒøÀë+ˆÂ‡ŽÊì³dV~W1pØÈôôCB$ß”ô¼qö?ñ4ÑÑüÖÂóõvLš˜£n-làÈR0˜1™\†Cû©jŽú¢ Íàb[L6—_0»Û±³Þ—ìeC¨ºúÈï ÌË˳¹ŠiÑ*Íí¶¥/ ò·W#þ³dÖR-þèÊÿ]ýTþ´mÅ—¶þeìVºøàÒÛmÞŽðž§çÉŽ=õøÞzL,è:´¥á×O66ÙÏ›:ÿºè ä5çç68ǺöÜr¶Vk]”‰õ¤ìþŠ0$6k¼˜ÛäàH£’“"MgË ´P*Ç­–îÇ8ñ4Ñ¡×Õ[0dV~®ŒI´—”YqElrB¸9¯šeç3ÏKzAY¬€Ç5êõV‚°¶šœÁB! `±¸å ˜¹ò‡¥ã /Št»h ØÑ¡)·ËÅþg/Jö²!TÝ}ÔoÐ(c^Š Jàƒáª+žL67:d˜ˆKº,§k+þ¯ÙNÐŽ z¸\›Å2””ÇîJ¨–gªÈ/ŸÙfd*y‹]õþáI¾{ér« üÀ·§ç?3<ŠËâ¡c¾>\’‚h8÷Õ»ë¿,0€2sÞªW'¥¨¨Æ‚¬Ù~¦ @9eëޤ׹_<.œýÞâÕ?2kd®>tñÁÅ-k¿Œ^°0Km:»ýÍ•ûµ¤äáwOú}ê¼}zˆ›»çñ†I›Yàb²“IgÜœ=;çD|”= óø+f7™øÊ›)WO{dÂsŸÛ§½=+ðÔ9¯*\ûÄøÇŸÝi™°ì‰ä®ÒÂÔ4áÞ“&oÐŽžù`‹JÖê±ã'Š¿ziâc‹~_0ûO<ëoÙy32¤Á²S'/²ÝT˜ìdÔ©ÝñdVÖÌ”é÷ÍÏÊÊÊÊj?Ù‹­zwKJ|eErÁº'}dúëßTôðÃ¥éë糲ƿ{–úieVVVVÖ³_Ö@þûeeeÍÿö†ûZöÖxÂßpÕ_ÌÉ9[a¤[Jrrrrr ê`®ÌÍÉÉ)l¸ñ©´‚à¨wܳͅgòëìÝÅ}ûCF‘Fé¿”›{¹EؾŸ¿TàÔV$Q¡Xm¹”Š>º|;ZkL$`\©LBZ¬n ­­zƒ½ûPQX”ÊR]k¾úÊÇ”Yù\\.: <1^-r¹\|>Ûû5ž—ô†žßîÂ2Md|rjj ¯±ª±cŽÛi4päj•œ4;“Òn2,NÖy>§Å`09<Ø„ìF%{Ùªîƒ>ê'$18˜Ûê¿lhØÛup‹0 fcó¯FÃ÷-À$ÉR–•7Œ%]æ_›ZÊ Ú™ßÔt¼©¹ÈåÎÛ †]} ét¸YƉLHhþíøe+Eè9–«HJRPy›g.ØQÐæ°Öÿ‘WÔUÚ‘wôh•2å_vÛb-Öꕇ¶í/1SŽ’s…®Ð0%OŸºœšžÆÊ;uò‚Wv2ëôªzwKF%&èO»ht»-UÚú[½ ¸çÆ#w„£kOSŒ+•v%¦ö¦šF+ASV£…Ú3$³ÁH‘i3Ü$Eb8ƤÐ7p4I™™£FÄñuEÕföD”§Ž¡ëªZ®ûeÌYù8ŽÓ4ñ%2™ˆCÓ޳¾~ãqIoèaEG38AáÔ74–V¬WÝ­£()Ô]WàÆƒÛ%ÎæŠ¢fvM¤¡º¨‡'j^”ìeC¨úMWïw`€¤éë„\€uâç*098SjÞ%o/ô5±Àpœ¦Ø®…<7lòÆ=À:t…|'M^¹tbôa¶ÊÙT”Ó„qEê¸Äp©¤…qR—EFŠô%ÅN€ëÞGîžYùEaF¶”œmàcëÊDÏKz{‹†»ªs‹š®”†¥µÙ*p·9 ó…o¡:>6ˆh(©jc¼ès£C8ÍZ­¾ûgïJö²!TÝ}Ô_ i.Ž·k’¦ s‹öµs»ÀM°ßåêJ"8b¥JBšZŒê%{ûµ™ËåÒ.ãj0ÚTs©¸áªõǸP*—Køl?~0¾D.xðöF%{Ùªîƒ>ê'¸\zi`øÜ¨Ø…¡’¡Ã\J@€T‘*'Ç­”ð¨L˜ªÑ< ’Ê@ @£-á2—pÕÚIùʰñaaiýçżâáM¤ dqMú“9ÿ¢ž¥hM¹V=<3R ˆ›ò·õ3Sx.W(á P ™¦±©""¤|/üô®zÕ©l2cö”á—Oæôô..“ì474 3L£ŠŠPr¼ªÎX²¾¶.4}l¢RsïܧGKØêú†^=õ­uËÞxï•q¾5èàÆãóq »vÕmE,åba \ìp°]Ù¬Õçs:È­4Qú✠µÉT·ÌÊO0µµ‰5a2‡#T†a­­/l‰B$ÆÅ'Ǩð•ì =¬(ÀW'eª»þßR’S꺮DDzÕäÿ^ 4Ûä0Ñxù÷&ö?{Q²— ¡ê>è£~‚»yo]ÐâPÉHqëÆzKÇ®{”áÿŠ«ðègƒøÔÿgïÌ㛨ևÿÌd²§Iš¥ié¾ÚZ(¥ÐR¸ý¡¾. €¢\\@-‚\. xݸp‘‹Ëå (Š ›ˆpÑ" ŠbÙd+-K[º/é’´MÒ¤Ygòþ‘Ò:“&4tó|?üžyžó<çœéÌ3gΜc+m¬Î6R€ûMŒŠJvY ^Œ PWOVÒi8ÏTe±ÃïR†>MY¾oVŸµ2iö5ª¿YùaðßßÜ–©d5—ŸÞöζ«N€Äùû6NqýoÏžÕúý{ó¡µ ~íƒogIYfõ™¯VÛj~¶Ì’=?ÎoÌÙ³zñ{½»ñßðüœž>*Ó›_fR/8~\öôä¢U+Ü^±éâdÆ|ô³Æ¼õ¯S8¦óýmÑZÏÍi5mÚq×Ûë¾~¼d×›ÛOšÞUÜDÛ»²g·.\@ÛÝ @Wv¥J/k)¨D#±ˆ~KÛÉéa­ Ð)Z4Õæ!CÓ\ß6:I«A}­°ÚØsÒ@6T–ûÇÄ "0ÊnÖW»’QiTj|€klèŽt%õùgJºž¹‡õÆtˆn@6” ¢#“R8N‹N}­ºmñ,»Ùhq°I“ÅÙ•fwÀx¼ö§÷ôôôS§NÝB)\YXˆ¿CS¦6п­ŠP²š*+»ºÆv¥ÙMGÈÜsó½éé“oéd@ ÜB°ÙNŽê®Wþuïñ_?ê“ËèÛøð†‚ËbGèÏåד8?$1(;_Öì“Âû>m·r‹$4ÔŸtÝÓo‡°ÏrS¦ê›w£,¡¿R)å3¾­æK•J™ÀƒÝ8ºÒì¦#dîƒ>B ºƒðÞ‡Žì[ûWýÆQ ‹@ ¼…26h‰àäá))))))Éñ2«Zó'º”´ÝÊ ¬íž~;„ýߌÅb,‡p:¬v†ôÅæ˜Ãf#»|aÝ…f7!sÏÍÑX,@ |º¡øŠ¶[9Õáž~;„}–›2Uߌ½9I›Õ]¥I»ÛÞkvÓ2¿es@ ½Kû­¼Ã=ývû }òkk@ Â-(‹E @ô?<Ëbq¿ ÈÈ`Æ-o9þ!‘‘A~ŒÛŽuaÞc޹ú@ ¢àa+ðW©BÆI´„H®Rù 3¤.Ì{Ì2÷A!ú$ÂñkŽ;vìØ±ß³³]?²–¤u»Ô;ç~ã*s[f¸‚DôQwN]õåwG~9¼ý“ѽ âO'(±u‘ï?üऑé7Ô—…Nk—ˆÂSÒS£¥.KKÄí…8oBrÇÐá©©)Cb…n÷Nò\Ósçi‘Úâ‹°3n³c©É¿¨Ó¤à®Ì{Ì2÷A!ú$¦¬Åc² iá…õsZ×Òï6WÖýuÌ:HZx`±OŠCôMxÿ÷Ìlñá§Ù]ƒ ¸ýe j¢ÀbÙÚÖqçDGIp“ñ¦¿4–X*]3&–ˆqèWwb\ëo¾–WdÂ¥‘ ±ÁÍ9 +Ÿy®é{´œ”Ýf³3¯“E‘v›ÍN1ïʼÇ!sôÑ@A,´hð°/ÓÒ¾6x¾J8PçRàƒîY´îëƒG÷Õš)R—P2bæ‡_í?uø·Ÿ÷ïÜýÝÊñB&!}™Ac¬Ý•õã¡ÿ}ù¯§†ø1;OZx`KfÚØ7·fýxð«·Ç‡âÌæ²Éë¿þðÝK68üãö·P¹©QÈ=‹>Ú•uøçCßlXrÿõ2éªI[¦ÇÁÓ:¢­QÒÂ[žvm$Ãgm~*ˆ©HzMAâ“«¾üîÈÑÃû>ÿçs£ƒ]§¢,}öwúùÈÁþ-õú myQ£Î­ðø¦ìì#oü>töŽ=ôÁD…»à;÷&}#Óu}ÇÑOÛ ´BÏÍ}–4*%%Zê•ãÊ"’G¤¦¦$Åù¹b#$! CS†H™–’œ<Ëé¤pœñó5½ÁÃy±ºŠ|›ãVmi¾öÖÍ{Ì2¿e󆳔œ¦úÏìþ…l6A’­|‡ÃÁ&ØàTç–ܱdû×/Mu9ï½€IÈTæ ÇVï¸ÏÏ¢¾ìîyÚyý¹‰rRAxb^³ç•Øß.yîHÇ™µIÊ&ŽÖ™ŠOüÎ\Mº2½žM父Fݤfßšõa/-Úô´ÊQ•ó˶>>RnAüco,žÍvØ1‘ Z{ƒ¶¼ª‘ûVê÷uïØÈѶ'mð´ B+ôÜÑçÀ1wb-•ôm )†qUñCåà,ÒbdN8­Í-¢¨¡ÃÂHÒj(+Õ·Éí?úÀ&ª¸84”¯),°xò§fÒéùñAöê<;îfFU߃¢( ÃȆ³ „ £'.z®é ž]ƒYþáq,mI‰†~æ?O©pÔ–7ÑŽåueÞc޹úh`à¤ì|×s9×/CHÔu×lýê=ŽG8œÕú¼Ëb±@ÀÄù#³Ÿhé ©;­±ÌНen­ô*‚ ì»7ævC]•Î{[p¿36šìtÕìnð´Žhk䤜íšnGè5[ ö¯š·Øâð”'—­X:1gηøø¹O´|úä¿)Ùäu{€©n­Fî[©KÚêî¹#¦Ž£ ž¦A´´B/Ì„ÑwÝßrîð™j zJ[tÅ*«/j$œN§¥öjnu—_6q"$Myg úú«C¾TÂár¼>O^œ.ªºx±ŠaÒ+ÆF­‰ko²€Þðô › 8 ÇfkK"X™\Hôª ÍnàÙx.ÆJ$~\ÆepžH"r˜~º2ï1GÈÜ}40°‹ òôL`à³Qq¯ÄÅÜ70çÅV—¨ÒïMpx£îN&‹‹µl‚ã¯PpX, o{¿F+¤§²¸D9,=” ÀšüUÓÝ3ø…Fpp¶|ÔÝÉ–‚‚oÍék4zìP9—- {xùŽcÅ Õìnð´ŽhkT[£ñq2yô}/=÷Æâ4±ðÉKL&#ìzÆ@P,‚à ù8påC&Œh‘‡„ˆ88}yW#ÏZ‰‰Îu÷Üm{ÒOÛ ´BÏÍ |Ê›+—¼öþ‚ûyÞÖq[p«JE­ßvYÌ-±”‡à‚Àè;‰_Lc›ÃÁ1 ÃúÀˆ+3¦Š §Z9Wf 4§SXp*¯Ôö¯/» MM‚€Ab6‹Å“)°ÆÆ–ÖüÀ˜¸¨è„9Þ•fwðl,ÖQwõt}ûÛ¤N´Tæž®b>Þ•y9Bæ>裥ÛRXÉ ¸/,ŒEZ/ÖTìÖ Èº­]3xÙòÝOKɺ¼ÿ½³â¼ úàçe›·ÿ2Èõ…mË_Ûv‰V5߯)JØž= Š6<9ý«ªæCk?üÚßÎ’²Ìê3_­*v÷¾ÖoĜ߿-°TßýÆ»¹NðÊœ¾Fw.]¶5KÉ6•ŸÞ¼:«¡šôxîÖm4ßoØžñֺݗþïݯh*sð´šMù׈/¿ÿb¨œe(úýãß?Û?fÉžç7æìY½ø½‡ÞÝøox~myW#ÏZ‰‰Îu÷Üm{ÒÑ5­ÐssЕ]©ÒËZ *ÑHl_j®,iJŠ—ä–èI‡¦¬LJ`¤U§.našjÑT›‡ Ms}ê$­õµÂjcÏEÝM¤Q©ñ®ÄýŽt%õùgêoPÀúÂt/ ÊŠÑ‘I)§E§¾VÝö²Èn6ZlÒdqv¥Ù0¯ý¹4==ýÔ©S4Z,ñ %«©²²‘þÏŸ+ ñwhÊÔú·Õ]˜÷˜#dî¹ùÞôôÉ´'¢ŸÃ¾çƒãÿ˜ô÷,`ìÈéŸ|(þhJîc…“Ö^ìž+ß.^ÛèÍÑv\·ûÈs^o"zÞPpYìˆý¹üzç‡$&eçËš}Rxß§íVn‘„†ú“®{úíöYnÊT=‹ÅøR¥’m­aÊXBÌ?w" IDAT¥Òn,WwžÅæ‰y9Bæ>è#D?Ç~ù×#Sçîþn–Ýát:ÁÙ|uÛÊ|»ŽFØÛ‘"n€¶ãz;(¢§¡Œ ÚAáÉÃC\xÀ~ŸÛ™¶[¹C k»§ßaÁ³±X`±¹æ°ÙVÅÇXátXí é{æ=æ™{nŽÆbáÐ ÅW´ÝÊ©÷ôÛ!ì³ÜÒX,v«»J9I›Ûã]˜÷˜#d~Ëæ@ z—ö[y‡{úíöäJï@ ˆÊb@ ýϲXÜ/(22ØŸqOŽHddãên]˜w('Ø]9Ýv„Ì»ßG@ }³X¿J¥2N¢%Dr•Ê_À˜!uaÞ^ŽPᮜn;BæÝï#D_eØâ¬ìcÇŽ;öÛÑŸlýwæPQoGtÛÏܲo~ÒÍÒà)Ÿ:øÏûŽQÃgm~*¨k=è5ê#$-<°åéÞŽp! œ–íßµøÁI#Ó[å¢ð”ôÔh)€ËãÒÒq{$b_À œ~±2feBrÇÐá©©)Cb…¾Ùeɳ¬…Ô_4€qc8KMþE-ؘ&weÞ†¹6ÿbs9Ýv„Ì»ßGˆ>LѦ©Ó¿ªœ4þ­Í¯Lþuú—å½RRûÛ†Õõæ ýh‰˜®x5B &¼€è¨ n2Z»º`„±l×µd‰¥"Ð5cb‰‡þt'¶×œohݧ%‰L 41îÈ…Ë"býÍ×òŠL¸42!6¸9§¢ûk¤y6ë¤ì6›y,Š´ÛlvŠéxWæ€á,Ž8Ý—ÓmGÈüÖûh !™“š¾whhš"æÃi_%ÇŽé?¾]BYjÎæU©T*ÀƒÆ,X»+ëÇCÿûò_O ñàß¿úè†) —nÌì]ûæzMÙäu‡_øî%›þqû[¨@øäª/¿;rôð¾ÏÿùÜè`×4ZsZèÍݳhÝ×þî«53R¤ŒÞ£fìÈÎÞ>+F9åãììììl×ø\ÒÂÙÙ¿}»þŸÏ¥µ@'-<°%3mì›[³~úaç¿r=øKFÌüð«ý²ÿöóþ»¿[9žqÇXOCj­ûάÃG²v.}}+cÏÛ“/jÄ`ÞªùãÁ¯ÞŠ» ž®šxÈ=‹>Ú•uøçCßlXr«9mh{Óó3„V“ Lq÷k[ùaû?'„ãŒÁËÆ¯9øÙ3á+nÖWÿ{ó/÷¥ÄŸB’04eøˆ´‘i)ÉÉÃã”,¿ˆáIÁELÒˆÔÉq*þÑiqÁ1C†%¨ÄŠÈÁÉI¡¢Û´-–ÝÔ¤)¿zµ¢ÙÑ•—„„ðµåµ’U£Ñ.‘òD?‹±_íBë$í¶VyHWU˘ƒ‹e²–ºjƒ$- j-Èd¾ØøÝ³,–ˆOMÌèP2$55>€i`×csA°Ûr|ç™{k>0á*ÆŠÌ¿hM8Oþ°bàl®Žó‚R“BkjkD,x=ñÒ;?8áù-æÇßÊLóÉìóq©®ä((-Mtâø ×^òÞ{·dÔ´B@5iþ³ÔÞ¹“'<±hSn`j¢Ü™w‚Á|þÒ¸ Ë§ŽŸ8ë͸·g&_¿×Üì½äó©Ó>-Ò왓‘‘‘‘áÚJ*÷ƒ‡322æ|Ûx“¯Èñ»^šøðü_‚çNÿ =2ç¯M›¦=<~ܳ[KÕÛ_x=‹i,Àã@ôÀ‚e y+§>ôà¯î-u\7÷´=iñ¼FLDŒKl›=ñ‘y¿F¼œ™výJOôéö?*µê¿]¤BCdŒ}ä¬Ü󟬠þûþSŽ/þã¾HD¿Äai[Ô#D¢¶ÄÔ\_Ygr8)“ÞHq¹® ©Y§§HŠlÑëì$Ebøm‹õ¶2<ÐY]ÞpÓ­U¯cI”r ©Ó3¦}–€Ü¢Ñ0N'ÀqÜétb¡XÌg9Žûb•,çÅê*òunŽ[µ¥ùZ_˜»/Ç‡Ž¹—æÊékÝ[gê1gÿ¼rÜ@ñ§ÏLß­X°{9ýÛ_æY€Í&=¶zÇ} xõe@ãñì²iƒ±Sò´¸?Ÿ#Q³5{^yÁõcßšõa/-Úô´ÊQ•ó˶>>RnïÚ¼½s’l½196qó(c›w¯p^j£œŽáàTç–ܱdû×/Mu9ï½–ÙÖó¢]³£¹‡íÙÍy¢I7_éÛ¼ÓV“Í&ŽV¡©øÄïÌ5¢íMÏÏZM&Úâ$IÒU#¦>r\þæuO=_½1«ÎM !ú-ÖæQÔÐaa$i5”•êÛäÎö½Ÿ­Òƒ‹CCùšÂ+ÀMW“NϲWçÙqæ©F}Lì/17UtžÜEQ†‘ …gF¹™>ê9že±,ÿð¸@–¶¤DC!O©pÔ–7ÑŽåylÞ"‹ŠRŒåøÎ2÷Ö|@C ¤1h{ÎWÛJwÎxt뻪GÅ׋2·VÞ¨TŸ}\;%->YžtéÄJW3hÒÑR°Õ¼ýÀ‡§<¹lÅÒ‰9s¾Õvßgµæd,Ëá¸y"Ù t™Á10qþÈìçZêÁ'ž‡D’d›fÛè‚ r›!Âî`Ì i«ÙQˆ ü¥˜±Ñd§¯]ozq†Ðš{\#¦>â›6‰{¹,uÚ”cÛ«Úî”Âè»îo9wøLµ¦TD!iÊ;[Ð//Û|©„Ãåy}!qº¨êb1``lÔš¸ö& ÈÝÐWJĤþ¦)±,L.$ z à°Ù€ÃaÀápl6_¤žÝ 0ŽP"ñã2¾rÅy"‰DÈazøñØœÅõsWŽï!soÍýí÷Ÿ05s$*‹K”ÃÒC¹Ü¨ÉÿX5-±õñ_mMË|4¥(ûTë &ÍN`á“—,˜0,LFØõ ºo^U\¢J¿7AÂጺ;™,.v›Êhkëü’F *ÂBd^³l‚ã¯PpX, ïâÝ¢ç!ÕTU¥Ž‰“É"îžǫ̃֯Åë"|Ê›+—¼öþ‚ûÎø?'8†±9Ã0¬¯Ž¸2cª¸pª•seJSpêbUëÇ\NCå•‚Ú~õeW;?Ûhºqx€!¿žhššƒÄl‹' R`n¦xŒgc±Žº«§ëÛßPu¢¥2÷tóqÏÍ«rOW»Qô#dî¥9¢a¿øÕÖ’3&}yzWõ¡µ ~íƒogIYfõ™¯V_“+ÎÎ?7­níû×—qjfÒìDSþ5bÆËï¿*gŠ~ÿøßß7vßÜphíšÁË–ï~ZJÖåýïçÝž‰æ£Ÿ}4æ­íœÂ1ÿèo‹Ô&-<ðñc®teWöl(X?eæÎ:Ëꃟ—mÞþËL [Ô¶-mÛ%Úû†ç!5Ú´ã®·×}ýxÉ®7·Ÿ4À«¡Åã1â7bÎÆïßXªÎï~ãÝ\Æài«i8´vÍK—mÍR²Må§7¯Îj`¨F×›´BÏÍé)ýqË™^þü;ßV}á›7W]t2OYô¨zó3,—þspÂÊ9é¿­p=ªéÊ®Tée-•h$¶cÑT›‡ Ms}é$­õµÂêÞþ†O•àz¤¾#] d}þ™­°Ë¢°>;‚L$˜[Zn¼ÎØÍF‹ƒMš,×ÅdCY‘ :2)…ã´èÔת»¿Ì`<^ûsizzú©S§h´XâAJVSee#ýŸ?WâïД© ôo«=5·HBCýIÆr|ç™wi¾7=}2íÉ€@ô[Ø÷¼spü“þžeŒ9ý“ÅMZ{±·ãò9I ,¬ŸãZÀè}|xCÁe±#ôçòëIœ’˜@”/köIá}Ú|évû,7eªÎ(àK•J™€qà–%ôW*¥|Æ·Õžš™»r|ç™{kŽ@ ì—="™±û»ýûöíûvï×ïÝ]¿í‡üÞ @xelÐÁÉÃSRRRRR’ãeVµÆ'ƒzýÚ|évû žÅ‹Í%0‡Íư*>Æâp§ÃjgHß=5§º(ÇgŽy—æh,@ >ÝP|m¾t;„}–›2UÇÞH»Õ]¥œ¤ÍíqÍ»(Çw޹—æ@ zÚ|évû ¾Xs@ èYP‹@ èx–Åâ~A‘‘ÁþŒ»ñpüC"#ƒü˜ óØœãì®ß9BæÞš#@ô)<Ìbþ*•BÈ8‰–ÉU*c†ä©9!T¸+Çw޹·æˆ>ŽpüšcÇŽ;vì÷ìl׬%iÝ.õι߸ÊÜ–îƒ á™[öÍOê5÷ÁS>9tðŸ÷‹{-Ñ ÂoPܔԴԔ¡ñ¡’÷8á'LO‹öwý% º#ixjZêð¡ a®‘#QxJzj´Àåqi郃¸=· Ä!w žšš2$6PèvÏ5=wî‘©-¾h»…鸥&ÿ¢lL“‚=6§jó/60—ã;GÈÜ[sDÇ”µxLøz¡Ð+ëþ:f$-<°Ø'Å!|@íoV×›/ºÖD =„_Hl³òÊ…+&Œå^kl½Û²ƒX¶¶uÜy‘!XÝ¥sõ–(,!>Ôp¶XÀKE kÆÄ1ýêNŒË"býÍ×òŠL¸42!6¸9§‚aå3Ï5½À³,ÖIÙm6 ·¡H»ÍÉ|Ücs§ûr|ç™{k>ð‹Í Ê'H›ñDUéZ³£·CºàƒîyeÙ‹÷Æû“µ9û>XùùyHFÌ|{ÁÄh¡„gRkY%[Ÿ|=ËD+¤/3h̼WçÜ/uÔžßõÞªyLë'-<°°aÅÎð¹óþ¢h:¹þµåY•€lòºÝñ?­´?²ðþæì÷¾óSCœxÈ=¯,}áÿÅ+Yúk¿l\ùÞáJŠÁ» ñÉ7–LK ã5—ž:ðÙ†í'ªm BÏÍiˆš±cëŒ0€³§@ц'§UÅP#:Gž6ÿþÕ'Ÿ2{bfïZC¬xtÝ¥¶ ½Š6<ù[áõ=€:—ðø'ëÿòñÕV…{Þùñ®£cßþÕÝö®DoÃÅD ’ðp‡Y__U¡n²0±„$$6"@À&Üaµa-Õ9…AÄðH{‘šáÏqè+ ¯Õµ8ý£Ó”–2JÌ®/ÖÂBüôEy•ÆÛp›c œæZÙFM£-H,„F. ákËj1‚V]³®²Yk¦œ@5ëŒÎPžkÜÖh´K¤|h&$~cÿÚ…V,“µÔ3ØH€µ64N&¨0Ño-빦x6£€ˆOM,`:.’šÀ”{l.v[Žï!so͸ô¹¸°Q,ýæ‚ÂÁ¸è˜‰üÞé¶ z`þÒ¸ Ë§ŽŸ8ë͸·g&c0è‘9mÚ4íáñãžÝZªÞþÂëY&!C™ ^O¼ôÎãNx~‹ùñ·2Ü1n,±möÄGæýñrfÚõë /yo÷ÜI½[2jÚ!Lqú›÷jüåw3'>øÄ'£½|ŸÉ»jÒüg©½s'OxbѦÜÀÔD£Ðss:J>Ÿš‘1íÓ"Íž9ícÞ45¢qäqÓ™OfŸKM¥¥‰N¿¹<œ‘‘1çÛ¶i¥)³¾¬Tˆ ïY¶cCf(U*uyJa}®*"ØY{åü¹œüJG"b~ßÌU…Ú+/ž;{&·ÚlQ_*Ô¸†=ù¬š+çÎ]mà…û»–îq­%å:aXVU¬™ôö\èV%”J À¸R ŸÍn½Õò…ÉUÍ홳¥±²Ö@FˆÄBÒhríMíÐé(‰”׈-zC¿N"¸°Ùœ~ÁqÑJ¾Ífãp˜¾¯ñ\Ó<ËbV£Ng°0¾é'ÍÎheçóÔœ´¸-Çw޹·æ ž_,ÍzíozÝ FÀ„ n®™ý˜ÐØX͉#—tVKíñ£¸±±rЫÕFÇ0Àp–$1!€IÈT¦öä‘«&Ê¡9zøœ4>^ê&€òƒ_d•¶P–¢ Wœ¡¡òV©%çСr3ÕœŸ{Õ\¦8C¢c4ÇÈÑZlú«ß¬Yþ])ÎäÇp¶Ÿ\. %§ö¬ZûS#0 =7÷ºuväyÓg_JNΤ¥ž<žË˜„Ò•YV^¨¿3A1,^ªR)*Ê«½¯q{'¥Ý@|ÛG‹®¶¤Lkg´wXÚ5Å‘¨-15×WÖ™Nʤ7R\®+CjÖé)’"[ô:;I‘~{¶¥rêªJ›ýb‡§>4‚o·¶ŠÙÊð@guyÃÍïùXñéé#S¢8êüŠë ®U¯cI”r ©Ó÷¯'NÇN'ÆŠÅ|–ÓIá8ãç7kzƒ‡óbuù:7Ç­ÚÒ|­/ÌÝ—ãCGÈÜKó†~ʸ-r'`,à±p€—ijÙI¶VËáp° 68Õ¹%w,Ùþõ FS]Î{ïŸ`2•9è±Õ;îsÁ³¨/»{žv^n¢œAÜ|½©ÙóÊ Ìq²Ù„ÃÑ*4ŸøÙ{;5ëÃ^Z´éi•£*ç—m}|¤ÜN/ôÜüÖèX£Î޼hºÆãÙe3Òc§äiq>Ç|jÒ•Y_Vî7:2<°áçŸù1ñ2KÙ÷·Z!Âç˜ë r:¦“”Ýà¬+©à…GÄ¥,†Fuy¹ÖÌ4êbmnE F’VCY©¾MîlÿÑÓ›¨Z4E5%,ÜIR,ՃĀ‹CCùšÂ+À_{YŸª#øÊ¨¸¸RØ&žd¯Î³ãª¾[P…aÙPx¶€PaãÌDÏ5½Á³,–åÈÒ–”h¬´ÇyÊèH…£¶°¼‰öZÛÁœV³MØ"‹ŠRŒåxã™ûÖ| át:šJþ^Ù:1Ñî·y‡Ã³ZŸwY,–Ãá˜8döó-½aÆ­±ÌНen­ô*‚ Ü´1]œ7q¿36šìôÞ[ ö¯š·Øâð”'—­X:1gηZZ¡æLPN ǺC uäMÓÕg×NI‹O–']:±ÒÍ_%m™åeÆÇRc„E‡ªfŽJäUåU\?"Œ¾ëÞø–s‡Ï0LýE n;N‡ÕBóiª+¹RW‚|IPtlT€áríIÊ ˆ4å-èK£l‘BŠë5;°Ùl‡ÝÀ—J8\îà‘A­:âtQÕÅKѬ1ØÀé07ì‘R4Øc£Öĵ7Y@îÆQßÃa³‡Ãrq8›­írÅÈäBÒРwÍpv£Ù <ÏÅ8B‰ÄËøÊç‰$!‡éᧃ9­f›ÅõsWŽ7޹oÍ–ækðI“‚UÔò;c È@ªŠKTé÷&H8¼€Qw'“ÅÅZ6ÁñW(8,‹…·½_£ÒSY\¢–ÊàFMþǪi‰l7Ê~¡‘œ-uw²¥  Á›8¡ª¸D5zìP9—- {xùŽcÅ Þ±ðÉKL&#ìzÆ@P BÏÍ™ÑÖÖù% U„…Èÿbh[É«¦Sgg[Ó2M)Ê>åîÚ2ëÊË#G´b£G;ËÚÆ–ç¼¹rÉkï/¸Ÿç®ŠDÏÃŒŠóÙ¸Óa³9 ÃÈêMàÆæpp ðžqeFE‰Ù8‹ë¤`ë &SÅ…S­œ+3Pš‚S«Ì PD†«DÀâùKKÛzNCå•‚Úþõe€¡©I0HÌf±x² ÖØxýzÅŒ‰‹ŠNˆã]ivÏÆbuWO×·¿ìDKeîé*æãÌi5Û…U¹§«ÝøñÂ2÷­ù@ƒÒ}QPއ>§àP¶ÒÆêlcÿš‹ä!†Ck× ^¶|÷ÓR².ïï¬8ï¨>øyÙæí¿Ì²E}aÛò×¶]¢FÍß·qжgÏjý$¿ùÐÚ¿öÁ·³¤,³úÌW«ŠÝbû˜³ñû·–ªó»ßx7—ñü¢‹ ‡Ö®¹sé²­YJ¶©üôæÕY @çkÊ¿FÌxùýCå,CÑïÿûûF¡çæÌ˜~öј·þµs Çtþ£¿-:PK«EÛJ^5gg‹Ÿ›V·öýë«jµ­Q°+{6¬Ÿ2sg m™Î²rˆ\Rd®iªò ”U´ ÅêÊ®Tée-•h$ÑǰMXHx|ŸÙ[ËK4LMµyÈдp’VƒúZaµ±ç¥ÃZ[Z&ŒŠIdQÖæú¢’F¦b²¡²Ü?&nXQv³¾º¸Ö pã÷¤XO‡èdCY‘ :2)…ã´èÔתÛ^èÙÍF‹ƒMš,ή4»Æãµ?“§§§Ÿ:uŠF‹%¡d5UV6Ò_ú¸²°‡¦Lm [ÝnN«Ù&´HBCýIÆr¼q„Ì»i¾7=}2íÉ€èç°ïyçàø?&ý=Ë;rú'Š?š’ûXgᤵ»çÊ·‹×"ˆþŠo(¸,vD€þ\~= €óCˆ²óeLëý 4hó¥Û!ì³Ü”©z8£€/U*eÆ[–Ð_©”òßV·›Ój¶ Ì]9Þ8Bæ¾5G ì—="™±û»ýûöíûvï×ïÝ]¿í‡|ZaoGŠ@ 7C´Dpòð””””””äx™U­ñÉ ^ÿ€6_ºÂþ‚gc±Àbs Ìa³‘ôo1‡C8V;CúÞnN«Ù&¤º(Ç Gȼ›æh,@ >ÝP|m¾t;„}–›2UÇÞH»Õ]¥œ¤ÍíñvsZÍvaåxá™ûÖ@ DïB›/Ýaa@~—@ à ,@ Ñÿð(‹åøGFù1ërüCÜ(t4§ÕlúÐ2÷­9@ DŸÂ£´…*T*³.!’»QèhN«Ù&ô¡#dî[óÛT¼xHʶ´´/‡%¾$‘3}ÉR¾‘ž¾×õ/îÖv5áý5)}ïÈØ4 ØŠ;ö¦§/t·*}cØâ¬ìcx뮞qºù© eòÇ>>ðêï–»¸sî7ÇŽ;ö{ö¶Ìp÷Â%Š÷¿ˆáéé#¯3"ÊÕ£8Oygòˆ´´Ô”!±BDá)é©ÑR —Ç¥¥âöfàÞBˆCî:<ÕU!7{'Ñ7Hw{¢d®Í¿Ø6æ9¿–šü‹ZF…Žæ´šmBÊw޹oÍ}K63.4Ýiü¥Vcæø¥††¦7è³h׺¥šgÒÇÃå=`×àœhÏn6Tô•Ík‹6MíýÅYƒtôãó4Lºáʺ¿ŽYI ,îJø'áÏ\w_PûÛ†Õõæ †®5û ý:x/á*”܆ ý€ÝoÇ\™{±ú†í¸¸ªèpŽ6?'ß‚ CâãCåÚ| K,®KÄ8XèKë›à²ˆXóµ¼".Lˆ nΩ`^ù¬sƒt²X'i·9b>Ï(· Íi5Û„>t„Ì}kî{ø¢8šë+×Wè`+›Í¶ˆÅƒf…å¤Íx¢ªô ­Ùá´\ÔX€K»ï—lüš¯Í}qÖ¶r™¶ü¸1iá… +v†Ï÷EÓÉõ¯-Ϫ¤dé³ß~eR¢œªËÛÿáòMgšÀµmK3Ci8»éõ7ö•xИy¯¾xÿJÐÖÛæ¯oð2vœìð»]-‚‡ÜóÊÒþ_¼’¥¿öËÆ•ﮤð©wÔu IDATA÷¼²ìÅ{ãýÉÚœ}¬üü¼Î»*¹³c‰O¾±dZj¯¹ôÔÏ6l?Qmk ~ÎýñRGíù]ï­Ú™Ç°XzÔŒ[g„|œ= uß2Lq÷kÿZr¯Rwzã?ÞÜßÖ ”ÙÍ4i™!xzsw½Ù†ÓfòºÝñ?­´?²ðþæì÷¾óSCÓŸ t!Ѷ­!N×gEžü­PwsðÏdÏû¾šŒíéAoòï_}pòÙ)³÷h fö®5ÄŠG×]¢ ž¦Ì€Ç?Y¯øï”¯¶*ÜóÎwûö¯}öJÄO¡dkK\ùº_ÄðHÛå\µÄ‘#Â-yy5Vz3B `î°Ú°–êœB bx¤½HÍðç8ô•…×êZœþÑiJK% f×ka!~ú¢¼Jc¯¦Ì¸ŸXÔ¬¹Üâ€æŠ¼3×åF£]"åC3!ñ³û×.´b™¬¥îœÁF4¨µ¡q2A…É[ËzˆG¯ÁCRSã˜3^Aˆ;…Žæ´šmB:Bæ¾5÷=Vs~ŠÈ¥¡Cy,Òn7.}..lK¿¹ ð€E0.:f"ŸÁœV—N ͵©¬üÝÆó¨À¬ý¬¤ò()ù¤¤ô73ƒ9K–87~WQuÂÜßn1³we·²mF8@ãÁÿns>5ÿ!EÐä+ׯ;ÞºOcĸ±Ä¶Ù™÷kÄË™i8ž<ãÕ‘—W<5þ‘™[–<•p½ÌÈñ»^šøðü_‚çNÿ D,X–·rêC>ñêÞÒ›Òýèqc9?ýxÕuŸð7ïÕøËïfN|ð‰7NF-zù>!ˆ˜¿4îÂò©ã'ÎúD3îí™É^½LdŒ³S@5iþ³ÔÞ¹“'<±hSn`j¢\Á¿žxéÇœðüóãoe&09*ù|jFÆ´O‹4{æddddd´ r‡Ž"âØ›Ó3Wœž÷\Û›2»½&]#ÓOkî¶7o¦s#ð’GðvÏôØ»%£¦= ]Ìp2ЄDÛJ´BZr?x8##cη7o#ÜùL¦ƒ±ßéªIßžžõ¦ùdöù¸Ô4@PZšèÄñ+LÁÓ”Y_V* Ä…÷,Û±!3”*•º¼¬ÿ]³J%®Õz½y,Wh¯¼xîì™Üj³E}©Pãz$á°j®œ;wµìﺰˆ¸Ö’r0,«*Ö€LÊtG¹Mðƒ§¦Ž‘’œ£â@l'.7txjjÊàhåõ:%‘rø±EoèWCÓ—6›Ó/8.ZÉ·ÙlÇv§é6BZ :ÑÊܰ¤ÙBGsZÍ6¡!sßšû»vÃ5õE;'-8êÍäáÅFâ<¿XšõÚßôºŒ€ D “lh5y¢XŒMêm55›Ë*²jk1lÍ¿Õ7;œÖÜúú#õÚ|ƒ9WCsSÍÎÚÚÝî7ƒáÉŸŽˆ˜"S„+ÂfDD<"ñf-_9;&f~‡Sý}2·hÓ­<óy98+÷ü'+è…ÿ¾ÿ”ã‹ÿüÔvo,?øEVi e)ºpÅ* rÖN›ûy^“ÅTóGN…B¡¸®YöÝÆ}…Í”¥ðüe[Ð „ÅÅjN¾¤·Ûå%57ˆÝ9îë¡‹[ÿ£9þCŽÖbÓ_ýfÍòïJqÕœ8rIgµÔ?zëÕTgÆ8;Õp gûÉå"ÌPrjϪµ®Ê‡ÆÆjO¹j¢š£‡ÏIãã¥Þ51€ú‡ [Ž—ÕWÿ5Ç$óªÌn†D«IÛÈž›»ëÍNtndKΡCåfª9?÷ª¸ÀÐÅL'Cçh[‰VèÏdï «fçà=ïMãñìKÉiÃÙ’´´À“Çs“Pº2ËÊ«áw&È"†ÅKU*EEyµ×UêmD ¥Ñz?lç°´-jŠ"Q[bj®¯¬39œ”Io¤¸\W.Õ¬ÓS$E¶èuv’"1¼'gàšªò.\ÌÍÍÍ»”_fà…Gª¸€.9«/_8Ÿ[Ü,ŒŒP¶^û­zK¢”KH¾=Žà8ît:1ŽP,泜N Ç/A´ Ò]<|³jKóµ·®Ðñ(­f»Ðw޹oÍoNMSÅò¦ê@±ì°Gd/¨š^5`€Ÿ2n‹Ü  x,€îÕF§‰álå§©þs7‰(½9Æ äò\ñØ@×,HÇ”Ùëþ§÷xz,Gô…BÐAPf®ÞÑt›f×:.󿺧ž¯Þ˜U×.l«$夂Aüco,žÍvØ1‘ ÎÒjâ˜k0 IÚ×±xÒ¸û ‡æ”_ÿ?›M8­š¦â¿_¶™;6á]ïIœ®Õì[³>ì¥E›žV9ªr~ÙöÑÇGÊíÀfƒ[½ã><‹ú²»aZÚ‚'IÒÕ ž—ÙÍh5iÙssæÞ¤¡s#ßP»=¯¼pÝQç.f::‡DÛJ´B¯è|&ß«IÛžž`dzËf¤ ÆNÉÓâþ8|޹èʬ/+÷ØðóÏü˜ø@™¥ìû¾2=ßcü ‡æò­¼=·6·ˆ¢† #I«¡¬Tß&w¶ÿè ß‹Q›µõõ†µ¶Á$˜œàÔ×ךNpèkÌCEB¨w˜tz~|½:ÏŽ«z3jo¡( Ã0²¡ðl¡Â(橉t Â0iÄs<Êb¹Ê¨(Y[XÞÄðwÆSFG*L Íi5Û„-2Ÿ9Bæ¾5÷=gס¶µÍÖ Áÿ Rr¹àt:šJþ^Ù:™Ìî`¸4Ójò(;ßõ´ÍõËuFÝ5›ÀI90ŒÀ®_çhÍùN'c@`n/‚úÒgN•7èßÃnž+TÆmˆ€ÓøUÞÕ™þ>]æ=wØ´IÜËe©Ó¦„Û^uóõ… »Ã0~î-Ÿ>ùÄïFJ6yÝÞD7’$‰³Z“€»‰áãîVÿø\M›Àáp´k ü¥˜±Ñdï(d±X‡Wßuçõ´ì_5o?°Åá)O.[±tbΜoµ‡£âëE™[+=òæY¾ãE™Ý ‰V“¶‘iƒ§5gìM·´72Cœ»˜éd ©;]+Ñ oÝèwoN°úìãÚ)iñÉò¤K'Vº¹™Ó–Y^f|,5FXtø jæ¨D^U^Åõ#Âè»îo9wø ÓÌá¾&QÊ­šÜŽõvÂõë®Ûë/' BÒ”w¶ ¯o2ÅUDGrjóÕ®á”ÖÄúæ žóúÓÆF­‰ko²À­­ÄÓ[8l6àpX®á&‡c³µõ)K “ ICƒÞB04H·ñè¢ÅâúI$B³Gœ'r£ÐÑœV³MèCGÈÜ·æ>‡„¬Jº"6ò™Ð—"”2p\2˜ÀÒ|Í~"i²@ ŠZ~gìC"0^r@À}r‘¸’ûF zM‹±È"ÿAÏ>÷J\Ì}­ž¶*3 ™1hü A#¸@on³iDþÁ³Â"ç o­^!‘€ÅCý±n?búVì3 Gûpþ;;±©óƵ½Fõ ààlù¨»“- ,‚à ù8påC&Œh‘‡„ˆ8 W‡šªê Ô1q2YÄݳžÕÞNìô±cŠ~<ÒЮYU\¢=v¨œË†=¼|ÇŠ±âVaú½ /`ÔÝÉdq±W¹cœj„…O^²`°0a×k4€€Êâå°ôP.7jò?VMKt;¬­­óK=4@ª ‘1. ãq™Ý ‰V“¶‘iƒ§5gêMZ:52=´]L']H´­Dßt·‹nô»W'˜:;Ûš–ùhJQö)w¯Õiˬ+/WŒÑRTPXˆí,kšŸòæÊ%¯½¿à~Þ-Ô¼çÀ¥JÿMC‡G!«ÕÊ“ø Ùl",ØßÍzM8†±9Ã0÷ƒ ½ÝÉ+•ŽálQ€\`4š¨f½I($pœ+ ”ó Ímï †Ê+µýëË.CS“ `˜ÍbñdA ¬±ñúÉÌŒ‰‹ŠNˆ·ÞJh¤Ûx4ÛR•{ºܼhm©Ì=]ŨÐÑœV³]è;GÈÜ·æ>ÇaPo¨!UÈÇËp³Õt´¬ü‹F@÷EA9ølœ‚CÙJ«³à~£¢’]f€£ÔÕÆ“•tš”nKa%'<ྰ0i½XS±[×:ôz¦²(‹~—2ôiÊò}³ú¬•Ö\»»Z±0H8\иºÆ˜íï}µð>ÀzXÝØ×¢˜Ù»²g_ÿÏÏod¼õkð”Eª7?sÁÒxé?'¬œ“þÛŠS-à7bÎÆïßXªÎï~ãÝ\'@ÍÁÏöY²çÇù9{V/~ï¡w7þžŸs™ÎKã¡M;îz{Ý×—ìzsûñIÓ[ż¿ŒuåÇÿ4uÐ4Z»æÎ¥Ë¶f)Ù¦òÓ›Wg5´ /[¾ûi)Y—÷¿wVœw@âü}§(`{ö¬ÖÃi…LqvªÖ”˜ñòû/†ÊY†¢ß?þ÷÷Ð|híƒ_ûàÛYR–Y}æ«UÅn_Ú~öј·þµs Çtþ£¿-:PK«åy™ž‡D[wZMÚF¦ žÖœ¡7ééÔÈôÐv1mœt!Ñv}oÒÒö™?À®ìÙP°~ÊÌ5LÊôt£ß½;Áг³ÅÏM«[ûþõUµhƒ§-ÓYV‘ƒKŠÌ5MU~²Š¶¡X]Ù•*½¬¥ ²OÄâR¥Ô¤)íØ:¶ú µìÃÍu%5ƒm-šjó¡i®u›¤Õ ¾VXíõ'b·ª±ªL•4‚“6ccIq½ ¬uÅeü¨¸äPÂi5jŠJ´^Fa}b:„ç eE‚èȤŽÓ¢S_«nKMíf£ÅÁ&M–ÖK}ƒtŒÇk`KOO?uêTÛ¹²°‡¦Lm‘„†ú“š2µDÂ/t±7=}r‡“áÂg‡ ™`+{ñr-ã@Uï“´ðÀÂú9>^YV4vÕîŒ#“ßø¹7V:¼-5BÜjdÄ­sÓ …¥¸c˜L{¾°á†ÔqYìˆý¹üzç‡$&eçË×§`ôp&й)Su7£€%ôW*¥| Ìõ ÿ BÄ­ƒóC¸Žlu}Nao’ÿ76éäÙýj±nÑ+r¥ŸNÓtk³B(cƒ–Nž’’’’’’/³ªÝ/)3°@™ÀM¸‹ÅXátXíÔõ$þ „.ÐX,@ |º¡øŠÎú 7eªîæÅ:I[ë¢lm?ðO D ÑA™ÀMødë@ ¢GAY,@ ¢ÿá.‹åø‡DFùáÀñvý@Â?ƒ@ ¢ïã.m!Dr•Ê_€!T¸~ áŸAØ»HÅÁ‹‡¤lKKûrXâËA9ÓÇ’,åéé{]ÿânm«Þ_“Ò÷ŽŒMóØ€­¸cozúò@7ë˜{]¦¯Ž_sìØ±cÇŽýžíú‘µÄGQOùäÐÁÞ/îZ“ŽðÌ-ûæ'ù&Fîœû«îÛ2Ão±ïã¶8kóSA·è®@×ïZ)iá-O‡xTždXæê­=¼ÿËÕ/ÝÎH^t ãI»yZ0+èÿ^þ`ûÃG}»é£ÙŒ§÷°ÅY­ÿuñÖ]ÐAøÛÑŸlýwæP@âÜ}Ù?¾6ŠÀ»wÕÑìM>ê9Ìoðß6>üúè Ò!¤¬%Ã}â1pð‹žž>ò:#¢Ä OIO–º¶†’Ç¥¥âör˜^AˆCî:<55eHl ÐÍ~tuï¾s7Ç,5ùµ`#ªÍ¿Ø6 ÿÂÞ„%›šî4þR«1süRCCÓôY´ #SÍŠ‹³ éãáò€žŽ²/bÊZ<& nË¢žµ¿mX]o¾`èZ³×¸²î¯cÖAÒ‹{;’„û}ÈÌw&4­ùÛÄÓÍòÁãþ6ÿ¥ûÎ/ÉjÌyÿá1ïß|ÒLz}iôÉÅÓ—•P‘O®úïß9ýâ7ô§÷0€¢MS;Ÿí­Bœ4þ­Í¯LþuúYŠ?"-Næ²’Ó’Y”g;»'dü²W§ŽääÕÝ(/ÝüÌ3_–ûÀb€b®Ì½X}ó¾8,±TºfL,ãЯ–,Äe±þækyE&\™ÜœSÁ¼òmÝ»…»,–"í6'PNp^ÿÑ£B‡ÕìÚÓ¢W¼û*ø¶5; i«éÞ¼›Þ»jäÞ„/Š# ¹¾r}…¶²Ùl;€XAÚŒ'ªJ¿ÐšNËE¸Äƒ7f±4š.a˜*IÀ{Ëyué'u&›$r[‚J _š. ºzf£žÞ<@ñR˜"–ºN›¬ÜC™½ 4fÞ«sî—:jÏïzoÕμfM^·;þ§•öGÞÒœýþÂw~ªýúá«×ÚÆdÊ¿_õ}äìYI¼3ó³+w^ßI¨hÓ¿ê\E&-<°°aÅÎð¹ó2”†³›^c_ KŸýö+“åT]Þþ—o:Ó5cÇÖagOq2ý«*úh$>ùÆ’i©a¼æÒS>Û°ýDµ¡Fž×¹ç•¥/ü¿x%Kí—+ß;\Iy'4fÞ«/Þ§´õ6ùkƆoo¥¿(šN®myV%EÛòø {^Yöâ½ñþdmξV~~^G'Ch[‰VØ™€Ç?Y¯øï”¯¶¶Ø=ïüx×ѱo7.èÜï ­˜âî×þµä^¥îôƼ¹¿„þY˜;(PV}ì|­ÅÕç÷¾ýÜ>Æ-dÙCÓ’ò¾åj£àê·ŸnÀùm1Ie©9›W5'DPß0"-rýÒ« *º2õ„¦¢“Yë·+ùÞÿÅú¢<„Ç’؈› p‡Õ†µTçjÃ#íEj~x„?Ç¡¯,¼V×âôNSZÊ(Y0»¾X# ñÓåU{ý>G‡Ñh—HùÐLHü,Æþµ ­X&k©;g°‘ jmhœLPar·£²q÷ Y2$55>€Apëž¶‡ÑÞ}ú#vö“ì-+:ïûÁÃs¾½y·ÏÈñ»^šøðü_‚çNÿ OžñêÈË+žÿÈÌ­Æ KžJ(ù|jFÆ´O‹4{æddddd¸’Æ:¡š4ÿYjïÜÉžX´)705Qä¶FžÕÝoܼWã/¿›9ñÁ'Þ8µèåû„^Å)z`Á²„¼•Szð‰W÷–ºªˆqc‰m³'>2ï׈—3Ó®_k;µ¼èùKã.,Ÿ:~â¬O4ãÞž™Œ1ÄIm+Ñ i¨/+âÂ{–íØ™J•J]^FÑö;}+@èø'"޽9=sÅùèyÏe0M·±^Èþ#~ö‹§ŒŽôÃÁI1?2K¥R«±¹ukÒæó{¿8®vÓÈ1³we·²mÆMÓIp^PjRhMm-@ÓéÓ¶Ô´€ð´äª?Îûä­“©àè'Ê;:…g~zèСƒûwnøÇ£q<CD7áªÂí•Ï=“[m¶¨/j\Ê`Õ\9wîj/<Øß5Mĵ–”ë„aAXU±dR¦›GOœš:bDJrbŒJØzapèt”DÊáKĽ¡OæÙL\ØlN¿à¸h%ßf³q87Útuï¦7ÇH³A§#­N -­?zRØFox÷Uð´íIÔcónzﲑ{»vÃ5þ‹iÁQiÁ5ïÕ–òüb hnÐþ¦×ó8Ƨ¥ÒkŸ™î>D«‰‰b 0Ö«·Õè1I)¸µ¶æßêíÊÀÐ4¶5·¾þ—¹€ÎÜ$ŒÀ¡¹©fg­ží<*aþ¥-³— ÕžÜpÕDéèás¯?/…«:KΡCåf€üÜ«€ÌûãœÅ<Ê\|útƒù>3[æfúoÙw÷64Ÿ¿lK$¨ËY;m.˜Lv€?r*–&*n!¤NàÎö“ËEXuÉ©=«NykN«£9¾>Gk¸úÍšå%8ãu”Ö<,.VsâãKz;@yIM›€—ü"«´ èÂçßBåpJ@Óò¡±±š_ÒY޽À+‡-mœ´!Ѷ­Ž²òêÀ@E¸,A/½ RTäU»¯U'Ô?lØr¼ ì×Û A2€:ZµúKŸÓLyæ‰yg/.þië×í»JÿÚÃ\é‡ð¡Õß/N ¯Ùñ·©› ¼· w zÖ¶£3E€¡äÔ®÷öU@VûÇiaæC÷ §7Z&¥2Õ&zú—¦ ê ÈýèñEš˜Ô;qõ³çŸØÉ\6áÕ•‹'𵫯ck„G8,V²5Å‘ˆõV0×WÖ™½‘’p]—êfž"¥d‹^g'$Æîõm©LUyj0ÀX|eT\¤Jw©Àª×±‚•r©«¤T’^Òpw:G(³XN …3_Téêní®wY¬U[𝀶=(¤ £·Cº…à™*âíQ_z晴{§¦©bySu Xö@HØ#²ˆTM¯0ÀO·EîŒ<@—ÅbtšÎpPNpšê?w³U!½9Æ ½žàßl61è±Õ;îsÁ³¨/ßœ„×ìyå•WŶ5å¤p Aüco,žÍvØ1‘ Îv'¤öØö­YöÒ¢MO«U9¿lûèã#åv/Ìi5ÙlÂáh=wLÅ'~÷2N‚ HÒӼޭD7_k¯·<°Ùíe:6ÁfŠ“6$ÚV¢ÒQ_Vî7:2<°áçŸù1ñ2KÙ÷ôŠÌ´O’¤ëd`À^srÇ¿Oîü(dôÓË^o®zÒêÓt¾œ­íf:¸ôžƒ¼à'»ôîDñ§ÏLß­X°{9ýÛ_æ]¿M^;}&lÍ“M_>§ãLb4­øvÉsG:>ÀY›¼šd7Ô×´N%®ÙsøÚ“±‘(‹õ5ÖæQÔÐaa$i5”•¶w³ýG¯g«LP›µõ„¶Ö6˜‚;€I§çÇÙ«óì¸w—ã^†¢( ÃȆ³ „ sóž…®î·5‹å)£#ŽÚÂòYT”‚¬ýÿìy|eþø?3™ÜwÒ$½ïÖÖ–RJ[ Ûuõ»¨(âÅâ­ ,ˆ °êz€¸ˆûcñ>Q@tDŠ(¬,X”³\miKÏôH4Mšs2¿?Ò úL&iÒË÷‹?†'ŸÏ|Ž™Î|æ™gž§´ª ZcÉ`¨¾fp F£÷|"ú†àáð]ÝwëCÆ ç»ô6²ÁdØT-úcz˜†ÏŠrt´Tü­¦k¤ÓEs£EJ ÜN!Žð¥ùb¢Ñl¼è (7€aÖ}ñCª ) €À1 0Æ+c¿}3.—«úËÅ37ãcoh§Î¿»óÃ{îþÉìVMk{Zï/=uî\ê,Ù¹zÁNàÊb²îyvÕ²i§æ}Ýì»:RÒåráœ.wp‘R™[-Nßý$I²W¾Ëá ‚ =g/w‰Ãá¸\.:?ѱ£²„nDQUi¾3'Q\¶onÎÄ4Aí¯CFûeÉwpw»Ý”µöð‡Ÿš>+F G›‚&S;_"åzní|­NÖXŽcÂyêóÏ.m}Ǧ_¿¨ÀÎÜWÖúsvý²ÓÔXÀm¡7þ}qÈ—K6—EAï5Cœð§?§tß÷zˆ2‹Ïð´±ò¶3ÇJ†ýkäÀIˆã5ë=Ý)}ªm ̭;³Í›tg¸p9Àãq<=K<Ïáè)L9"•ZLšZÚmn/±„·ë.Èåb¾Ô³ÄFFC= ¶¡ÁhôžO$¾«h1ÉÃ!\1vUR܃‘QOÄjTà:k²€­ã¢ ¤E¦H”ª‹_yuÒÍ0A¦V;Y-‘_>Y«(&Ð’6s™ $ÊðCCŠO~:9q²ÈcÍQk%äÓb熇gó­îp$ʈ¹Ñq ÂÄLôÛç0SS^¡—ÅàÇOÿûêûÓ¼ AÄBøê1·dk;Õ‘‘žçâÒÜÐ(͘4V«‰ŽTqüq ‹™¾ô©[ÆE«g»Á`"Ü~E„”¬-¯ÐMºq¬šÏGߺr˪»çzñÍÏúÚº°œk’UªØkç>8‘átFÅiy8W=ñÚL[II Xmy….ïÏ©rž@;ñÚL²¼¼™ÎO”KÈ,¡S‡¤±ª*dBvgYIi)6iUIÓgK—%ŸÑݹvÃówdEJy\IÌäÇ[Ξ3 %í§~;›që½é!jÌ=wŽ-:x˜ö>¯4ïÞ°[{ßÌ =CSÉSÎ_¾ýÒ€væ#F—xüÍ7ek\¾*mÚÿÅ_8±ë—˜/¼²ô™7Ÿºž)(8†qy<Ã0æ~…‡“âÈ49Çp®D«™Í=¯)SÍù’†áÿšÂ_Lmm"m¸ŒËáTa!Xkk÷§]ÂÐÄäø„ÔXuW¡é%öðÖÛYSt´(  ¶èh]×ë± 52êýu F#C>‘¿ú® u¦$#NF[ IDAT.“þ½zâŽõTnµ[TV}ÒJ?)©ÂcBJá¹—Zë ÍnÀ¥Óâã3=jbíãñZ}ù—”¤Û¸±´†£Í!í§ë«·»º^«)+àÆüIõ€Û¶»CÌŽToÞV²(L<^Ôº¦Þœ› ôAÿ}vμӱwÝÚôgÖ~=WÁ±êû|u¹¯‹3ºç(ø¢ð1(y{Æœ­È×£õ{>ÚyÍÒ¯¾_Øzê«5KÞ¸ùÕ÷_ƒ¿ÎÛZ`=ðÑúk^üÇÖ<ˉõ,ÞÕà»KmʼnÙO¾ùx”šc*ûé×v·ÒE”¶pÇû34°¹pn×XI¤¤iïº×¯^öì¦ ×Ruôã5ÝÅ¥o~¶îý`ËŸ^zëË»*¾xaóáÛgyÍž4{Þû»_ÙjOl{þÕ"Ú?.ÓÞu¯§?»rÛ ²ñÌ7+V èüD¹„¡²„lDCUVA\zE™µ¾­Vªª®ðrÜûeÉkúÒ¸{Ý–ÐǬµ0c,$FWTªÞFpÄJF!Ä€©<Ald4,—|7Ä0½;$ˆ±û®î»u–aÇmni&"2Çgeeeeee¦¨ìzC0ÞLµ0•€·¾XŒÃã”ËîtwoÁkì[è#%Ñî¦!,xazw)àýW¿b÷]Ý‹u¶/–…………%(°7”`1¨…c!1¸¢Rõ6.–"vO(=Ald24—|6D/Lçýÿ5˜Ö™bgaaaaaa na6 + ,ÀÂÂÂÂÂÂÂÂÂ2¤°U, ËèÃ[ËSFÆÅ…Iqà)#<Ald4,—ê4ɆÅÅE(y‡éÝyFëÆî»ºïÖYXXXXXXXFÞªXB¢Öé”"qˆg#ˆŒ†‚åR&"¥N"&Ó»óŒÖŒÝwuß­ YÄ’1YŸåæ~:.íÉ0¹šîcIŽæù¼¼ížÉ[êD𗌼í’r}Và†\µ=/oe(Í<ûxȳyyÛÓÂò&`Æ-)Øø€g EÁÕó6}½âºî´DÌxwïž—¯ïžß®žÿïC‡ú©ð³™1àµ1@‚°Ï˜™w,ÌðGcÜ’‚ï  ¹QÀ•G‘¥ŒE»ºO&äãf®Ù´kß};?]óÄä>@æâ]žWxèСC‡>¾?€öÇ'×nÞµoÿÞ¯?øû´.ÍY‡VWMëÀ ¼Â:²1@d÷­ÚðõÞý?|óùëssh/!,à Gžœ1>77'+-LÔÝ(MËÉN þ;‘¿àb]Ò˜¬œÜÜìqé‰:±çË‘„]•1>'7güØÔèîN"\ Ž»:3;77'kLR¨ILV^N‚³”‘:97/=lø—ÌñByÕØñ9ž€¼¬†"Ÿ—7¡›ìx½¨ƽüf«/>Ý Ü Å§[ÀA³‘ÑP°\Bª£!›ËO›Ài DpTs’£ò(ó +Oš•×Ò^€œÙݱ«¼¼PÜ£Öµ—#ù¿4éØÊ¹º'ôo8øÞš&ëÉžu5Ï¿õ—kÞ‚ŒE»–ôÑB6È`ìóž+f€Œ™³â–¶×™v´C>å‘…OL>±´ õÔ›·^óæ•SÞjonYÂ/Kf=[Ꮋgõ¿þvÛÑÇÿÝ»4lß³®¥>dŒ™½òêÃ…3öé¹ Y¹jAþƒ/þÔɬÆ2Äàʈ(nsÑñ;àXÏÚröÖê ‡ÛäNÏWÃk=w²ÞŠ Ã’Ób5­ç‚иH¬ñìñ&Gše:Vn¤øº„^sñ©b&ŽLI‰R782…Œ˜L.Ãa¸ïÄ~«b“”Ö‹gÊ,¸".5)¢ãT5ýÌgÖš¢ÓuA]ŸÌ[ë& ÜPÝAld4,—êh(·Óáðü`˜Þg´`쾫ûn}ˆJ’ èhªy»º6q¹\'€L>7&t¬ æŸk/}ÒluQ¶Óð‰›.¯b’žÆh]†ˆ ÎÎúKï6Zò¸ÏRu"õ²<5ùÃ…ßÞoG«kU±OD‡$ñÀèó¥5:2cm$ÿxù©ÕÿË ,lÚó‹#¿Yôä)+@ŸE˜ÊÞ»ç`©186Di÷<¿ôþœhAÇ¥#»>zoóÏu<ìšËç]Ÿ¢p5œøâÕ[ÏÐNBŽ”Ä#¯{zÙ£ÿ—¢á´_üñýWÞØW㎟½eÓìh€w gxB˜õy-zØ5 –?~ýÕhnrˆ¬_Òúž±h×¢–U[cæ/øCHÛ/o?³² Æ  šþÖ¶”^qÞ¶èúÈŽÂ7­ø¡¿îégÿsŠ’l8µcí+NÑ~ÒD„̲±?Ú»Þ};ä_3޹Е±ëV|ÿ§7¾ÔúTÿ£I“%ÀB®}æKÿ¬1}ÿï/ì¬@?áòÃCUu‡N4ØPwbûKï ]«–;67ãÌî§/´:.|ýá{¸°÷îqÅY7¬(U§ÿýÝ¥7À…ï6Þ;>~:5Ü^±ô…–ž#PŽÍ‰°TÎY¦ÆÄ*y®öšÒ‹”2!Wc«t«"¸MåQt¤´½ìLy0ns|.Ñn0X\nK«É®œ`5Öt4[ݸ;Œf*JÀpIe’ùNtTŸù­{f³S®B!—ÚÌÃÿgä2•ª³ñ¸ÉA´è›£’U¢jË>7zQ Š“““¢%@ѵÄFFCÁr ©Ž†Ð¦ä䌉¦wç­»ïê¾["ìÖZ7HCâ–EiÇ 8¤Ói\ñprôDNûÇ%¥»l¢) ‰Ó„4êHI\1+9zß¶¿¦æ'‡àš¸Ä;DÖæ*j~u€ù»ŠŠw+.´Ò¨sT3CÓqó·Õµ?[iW£¿ ®æ¡0‘«£ö“¡.a›øÐ˳œï¼°¥²«à.Z{k~~þ¼¯½­áé/ºÛ>äÞ>ú-w/þ (4'M ¹á©çÒή¸ë¦[þºÑz׋3SiÕ‘’Ò) –§œ{uæ´›î~þ—øÅONTl¸/?ÿþË _ÍËÏÏÏÏ÷gHuÉ O=›zæ•ûn¾éîåÛ/1V¡¦!>,´8êÏ9rìR;ÕRzäÈ‘#GÎÔÛ £òø‘#GÎ50_5ùºèPgÍéãÇ~+ª³ÚôgK žg4¡VË©?üø…AL„Ò3”D·WTÅÑaXm¹T º›G€˜kŠJºÖS%DBžËå[kMƒ‰ŒÈĤÙâ .…‹Â“ÇŽÏÉÉJOÐt¯0à2ÝrO(—ÙÚMÃÝäŸ%HNÐçíûaDzNNvvVfZϸ‹ñ¶Òj2Ív H[×F Ë%¤:Ên6M62ð0½;Ïh=ÀØ}W÷Ýúál~ï¢þ´“—ÿBæøõÉ¡q8€@šD@G{óÁvãw-fÀÄ©š‘7HI$‰s›þ³úú+« ê[0›ZÊ]”½¨©iSs±ƒF/ŽÅ¡£­~kCÃ6ŸVˆÁÇEEãX¿©lð}‘ù ‘8gÕ\þžöõ"ˆc8WªVK0SÅ‘¯V¯û¡ *)©ù—ý,n—áÀ¾ãŠ”ÚÒ)™h8üÝ©f›£ý¿__ùí%Ú+R=:9Éðó¾³íN§¹ª¢žamîª=Ÿ\êtÛÊNž§¢¢ºÛNíÝ[euw]°ßcÈðóþ³F»­áð“ü¤$5ŸH—YB6¢¨¬ª ‰¹:U;.E¡Ó…TWÕyªúïÞÛx¸²©îðO9BÃTtbM»–=üÊAì Þß¹ýÝew¤Šé1Ìs»ß¼æÀþ{pË#WÀu ³>ÝwoÞªDKºl|óìØ—¿ùá»]›E·ëcÆþÞpÙz&5ʼn¤§0µ6Õ4Z\”ÛÒnvóùžZªÃØî&Ýdg»ÑIºI ¼³çË´Q ©™™±ÜƪÆî1mJ^Þ„¬xž¾¸ºƒ p™„ª;wòDQy‡8.VÓõ„io7r䵜4¶ûÖ[2RÀqœ¢(Œ'–É„Šrã8íÕÛR{æä颢¢3g‹+M‚˜8]0FÿzQ`o¾TÜ =Ald24—êHHcu±1(a28ÏdA=@ëHI&ëCeh«^ÙV*SÝ}›*öQ]ÛrFH5ÉÕ`ppTÁ¡$1œ àrS@Yš6x)DÑꀤ|¾CK£æKÌÕû,Cÿ<]öá²½—/žñÃü¯jïBX¿ãõ·£ŸXüÁ:Wí©?[ÿÎþ*'p¹Døk¶Lv!°éÏÑ>Ž#%¹\Âåê:¤–òŸ¢·ŽT'‚$}}ë9–nÊMW^ë¿zúÑnC=ût¹\\‚Kç'Ò%d–(š*«¤“âbB[þóabJ¨ÊV¹Ûß~ýçI’Ä1/ýÎú_¶¼öËÖõ‘“xö¹7æëo_se‹êÊ›eϲëö@æSßüôt½ÉYWýõÒ‡÷÷íP¶·µÓˆºkö®¸ÿ‡ÕBiµ‰ïø×cGUÇ‹/Ø;:%ñcÇE“¤ÝTy©÷L z7†øÙ…#MORØ «gïÙT|¤ #„šøäD8_ÚPíM ®ö†ëX‰š\c»0%ÌYwƉë†ÖùÀp»Ý†‘-¥ÇZæå…ŽÛå°w½°±7´XÂD"{ ö½U±MB\ˆ«¡´ªSB6”Vµ‘Akl# ùîR|¯†Ðûç(c’C9Í{€azwžÑz€‡c©c´>D`¼p¾Ko#L†MÕ¢?¦‡iø| (@GKÅßjº†Z:]4wt¤¤ÀízÁùÒ|1Ñh6^tP”›À0ë¾ø!Õ…@à¾ôêt6ît„Ü®ÐÝ*mØÐ1ÔÏÔdÕ¶d°rÎéG>,´á %;W/Ø \YLÖ=Ï®Z6íÔ¼¯›].Wõ—‹gnªaÔFJº\.œÓUiá"¥3w ŒsSîËK0¤:I’½êô=W@í©t¹KÇårÑù‰Ž•%t#ŠªJó9‰â²}{ts&¦ jÏT{‹¤_–|Çq·Û @Ykøé¡é³b”p´ !h2µó%R.€øZ¬±¼ @CsÖ9Mµ>~ЦL½q"ÿØžS- T©ÚÛ{ÏÅ úsJçñ}¿¡G#³ŒxÚXyÛ™c%Ãýê°¸2Lç¨>^ÜÔwP G¤V“(—µÍäŒSH ¥Ýuù¸›î§CÀÀÜÚlá;Ûl0°Iw† —Ã<ÇÓ³ÄãñŽž"‚#R©Å¤©¥Ýæà‡$ÄñŠõž®¤`=ix»ðá‰\.æaÀáK=Ald4ä»K=øn ÆËåR>'ð0½;ÏhÝ÷؃•:FëC!\1vUR܃‘QOÄjTà:k²€­ã¢ ¤E¦H”ª‹_yuÒÍ0A¦V;Y-‘_>Y«(&Ð’6s™ $ÊðCCŠO~:9qr×è_G­•O‹ ŸžÍ´ºÃa(#æFÇ-£}ÝÚ iÛ]YWNñ§Ä„†j²ÐPõß¾²¶ææOެ1ÎXÌô¥OÝ2.ZE8Û  à€šò ͸¼(>?~úßWߟF7-Y[^¡›tãX5Ÿ+޾uå–U7vOÁÒÜÐ(͘4V«‰ŽTqèÔëkëÂr®IV©b¯ûàD†£$ŠÓòp®zâµ™¶’’:±Úò ]ÞŸS壻sí†çïÈŠ”ò¸’˜É7Ž·œ=g@KÚOýv6ãÖ{ÓCÕ˜{î[tðpÏ|ƒÖù`ÜôeOÝ“©à Ãòï¾>äĉ‹]?ÄÌxᕥϼùÔõ‚aõ%Pp ãòx8†a#f´A”Ãqå¸pQH\ŒNB`R.²ÙlîŽv‹L*&pœ/U L=¯)SÍù’†Ñõe€©­M¤ —q9*,kmíþ´Kš˜Ÿ«î*4G¦ÑÈy8†s%ZµÈlöeŒÞúb;kŠŽÖEÔ­ëz´F&C¾»Ôû«ï†¸/mòü`˜ Î3Y÷=ö`¥ŽÑúÐà2éß«'îQOUáV»å@eÕ'­$€ñ“’*<&ô¡äžÛq©µ®Ðì\:->>Ó£&Ö>¯Õ×™©AIºKkx1ÚÉÑÑÒ~º¾z›±«ëõ·š²nÌŸ4Q¸m»;ôÇìHõæmu!‹ÂÄãE­kê͹ 4£ñú@Ù>iÔ­ x0¤éõæ¡ÿà¥íÀšWr6þ}É5³WŠêž£à‹ÂÇ äís¶Ö§-Üñþ l.œÛõU;²½ÿâ‹Äì'ß|—æåå9r¤ç¿|Ut¤Òe¨ÔÛäQQJÒP©7‘Ak4õ €’Dâ]’§òÕzÿYx¬†ÓVSÓê0LïÎ3Z0ö¨÷·¾=/ozŸ“…åwÁpMbÊÂò?Mo(¸*)[Û~¼¸‰À…‘i©Då‰JÚ©ý~g jaÆXÆŒ®¨T½(àˆ•Bˆ!Ry6‚ØÈhÈw—zðÝL¨ÐhT""ð0½;Ïh=ÀØ Îh……………eØq›[š‰ˆÌñYYYYYY™)*»Þ§Ùc~' jaÆXHŒ@¼õÅb \v§»{ƒ ^cßB)‰v׫$æ³!šýs¸|s9$`˜Þg´`ìPïoí‹eaaaa ì %X jaÆXÆŒ®¨T½õ½Q¤£kR¶ž 62òÝ%įŒ†ÐÎîŸ “Áy&ë ê ÑOë,,,,,,,ÃËàfL…Ä$(K'°°°°°°°°°° )lËÂÂÂÂÂÂÂÂ2úðVÅò”‘qqaRxÊÏF ùîRŸh¤aqqJ£!šd Ô¦wç­û`¨³°°°°°°°Œ(¼U±„D­Ó)E8âÏF ùîRŸhDJ.DL0¢IB}`azwžÑz€±†ú¡E,“õYnî§ãÒž “«é>–ähžÏËÛîù—<°¥NÉÈÛ>!)×gnÈUÛóòV†ÒNè?¼ÈÇÍ\³i×¾ûv~ºæ‰É1ô+T_=ÿ߇:ôSág3ch+fæÆ 3¨<8 K3ÞÝ»çåëeÌ’>áßá™·¤àã{üIŒ ?YX†B•ž‹˜S\‘1!¯»];>/oB7Ùñ2Ädåå$(°0½;Ïh=ÀØC}ˆà¨æ$GåQæ Vž4'**¯¥½9®»cWyy!¡¸+F­j/G&c欸¥íõG¦íP§Oydá“O,-@Oªþ­¿\ód,Úµdˆ]üÐpð½5MÖ“>.ˆÊ{8XXF;mB|˜·˜û¯ÓÀÕÆ„q}ocÖš¢ÓuW®ÑÅ‘)$`ìÀdrÃ}'ö \›¤´^ó]Ò¼U±nÒé ÀMÕ½„F—ÝÚo¥ŠÞÆ>’¾»Ô åv:žV7JÙè]}`azwžÑz€±3¨££ú!”$ÐÑTóvu;lâr¹N™,|nLèX!A:Ì?×^ú¤Ùê¢l§ 6à7]^Å"$=Ѻ œ'ô—Þm´8äqŸ¥êDêeyjò‡ ¿½ßŽVתbŸˆIâ‘i.¹,âñX]º€cµ[Ššõ[ëŒÍƒ”¨þðÃCUu‡N4ØPwbûKïð¬nЇ]³`ù¼ëS®†_¼±zëÚ¹Á‘’xäuO/{ôÿR4œö‹?¾ÿÊûjÜñ³·lš ðNá ð¾Þ~ÝÓÏ>þç%ÙpjÇÚW6œ0€jú[ÛR~xÅyÛ¢ë#; ß\´â‡F?\ÊX´kQ˪­1óäkLÇ>xîù$KȈ|·.J»çù¥÷çD :.ÙõÑ{›®sô®žUöÞ=K]’òì9/=5-A)– ,úfNŦ{ž+H@ø  Ê{쥧oOS»ÏìüçÊ~kózL¯€.LT’}ŽÈç$wI>~ýÕhnrˆ¬_–Ÿ½ÖÿÒöËÛϬ,¨qÓ8ä>'-ÍéL²‘eàHÂãÃåÜemoª­Ö·ÙèVh&ä‘I±Z— p—ÝuÖ*5ˆbÇÇ9Ëô˜X%ÏÕ^Sz±±“R&äjl•nU·©Ü ŠŽ”¶—©1ÆmÎii3Té[;)ªËWaÆå‘‘ÂæÊQ¢÷Õ™Íf§\!„B.µ™G×*´2•ª³ñ¸ÉA´è›£’U¢jKg€’~àmD(rLNNŠ–QD×FàÞa”dØ'¡MÉÉ!ê+‰TGƒRb˜¾[0öÁ°>DØ­µn†Ä-‹ÒŽpH§Ó ¸âáä艜öKJwÙDS§ iÔ‘’¸bVrô$¾mMÍOÁ5q‰wˆ¬ÍUÔüêówïV\:h¥Qç¨f&†¦ãæo«k¶Ò.{²{“£róÖ‹e›ÍB±ÎÍAÁ~²ð×”ÇÖ.™1)NŠåö<‘Hnxê¹´³+îºé–¿n´ÞõâÌTZ}¤¤tÊ‚å)ç^9í¦»Ÿÿ%~ñ““ÅîËÏ¿ÿÃ2ÃWóòóóó󽬃%¹aá²ä“+ï›:m)/ÍÉì"ÈÌl›û¯VL¼ÿ†H¿\€¸©ÓD_<1íÖ…?FÌŸõ.K´±ûf]wû‡ÜÛçO¿åîÅ…æ¤IŠÖÞšŸŸ?ïëË:¹Ão›÷—¶î¿uꔇ6]Òo~ô¹ ÚOÖ‡gó{õ§¼Üˆø2ǯOÃÒ$:Ú›¶¿k1&N¥»¾!%’$ÌmúÏêë?®¬.¨omÀpptlj)wPö¢¦¦ýMÍÅu¾8‡Ž¶ú­ Û¼¯ƒRÆsȪ–Ú×Jëk#EomüO IDAT´4íZöð+±?,xçöw—Ý‘*ˆJJjþeÿ‹Ûe8°ï¸"%EA§Ž”ŒLH4þîT³ÍÑ~á߯¯üö’“šD%%~ÞÖh·5>p’Ÿ”Ô=€ÙvjïÞ*«»£¸è‚ h€Ñ9_ùíû;J;ܶÒçaá*Õ}´Žc8WªVK0SÅ‘¯V¯û=: ]¯7ã8††säi©QÝíýütŸZwÿü gÚl–ú_OU‡„„ÐîÒh“ì[D¾'9:9Éðó¾³íN§¹ª¢ÞïþIßý€ª=Ÿ\êtÛÊNž§¢¢hOä>‘'-2LdB|?î,E‘‘{)Z.†<.®NcCEe³“Vßeë™Ô#$’žÂÔÚTÓhqQnK»ÙÍç{*¤c»›t“íF'é&1|H—¥âjbB©ºª–¾Ï|–Ú3'O9[\iÄÄéº.Aöv#G®QËIc»÷Þ’‘ŽãEa<±L&äP”Çi?þñYÒ¼uÚ›/{^ˆölÜè;“$Ã>Icu±ÑË®öT^˜¾[gPgŠ}0¬”¡­ze[]¨LuCdômªØGumËM Õ$oTS€q@ÀÁP7†’Äp.€ËMeiÚà¥E«c’òá!Œjû¢Â ŽVßxõÝàn4Öþ³Tq(¯GÎú_¶¼öËÖõ‘“xö¹7æëo_s”Ë%Âï\³e² MŽöÙ)Éå.WW¦-å?ÿä§C\.A’]ê.—‹K\ù]\ýWO?êUé|ÏÁpSn£½2ÆîÝzýŽ×ߎ~bñè\µ§~ülý;û«hn«”¾¨âª¥›¿|Ôli<õÆ›ÇzÚûù)J¹óù%Ó¸.'&ÑÁ1ôîü„1ÉÞ#ò=ÉÑkhPý¼Â:A\y›ê9pÈ}"OZd˜È„ø~ÜY層¨¥o9évº¨ÆŠjAL\z8ßm3µê«ªš­t—]{G§$~ì¸h’´›*/µ÷´S½#`U\%4”–Øúœìn—ÃÞUÕÚZ,a"€Àbl¦„9ëÎ8qÝp¸;PÜn7†adKé±B‡¹iG&ú.éÞªX&!.ÄÕPZÕ©Š!J«ÚÈ@½Ã×0H2ì“£ŒIå4WTì=’}ÞÕƒ¦ïÖŒ}0¬/œïÒÛÈ“aSµèéa>(ÊÐÑRñ·š®1N]9’¸BÏ#8_š/&ÍÆ‹ €rSF`Ý?¤º¢ó~e¤j åË —”"é¤ÈøÙªè¿¨W†¬{Çq·Û @Ykøé¡é³b”pÔårU¹xæ&æna¤¤ËåÂ9]e".R*0s«Å ÀT?¢Ô9ŽËÅ4°Ø—héç’êýé,Ù¹zÁNàÊb²îyvÕ²i§æ}|ÔN[8¡ð¯7/cþLA;uþÝÞs÷Of·jú[ÛÓâ*L_“ŒŠÈ÷,‘$Ù{20v¢âg‚ ýs§Ù'ò¤E‡‰<Ä´Ç]œð§?§tß÷;P6@(—݆8ü¤¥±â|cFåa IñZÓ¹Fd¦yÚXyÛ™c%Ãýê ¡BÎãóÓ'tOæ!˓Ԟ.¶…ÇñŠõžËEŸjsk³…ïl³ÁÀ&Ý.\ðxOÏÇs8zŠŽH¥“¦–vÏg/’àíR„ $r¹˜‡‡/õlÞèFI†}b<±\.åsúJ"ÕÑ Ôƒ¦ïÖŒ}0¬ „ùéäÄÉ]£µV@>-6|jxx6Ðê‡@¢Œ˜· LìÍ{NÈ߯¦Î Iås€W›c{buw®ÝðüY‘RW3ùÆñ–³ç 5åšqyQ|~üô¿¯¾?¶ )Y[^¡›tãX5Ÿ+޾uå–U7vÏ.ÕÜÐ(͘4V«‰ŽTÑž5µåº¼?§ÊyíÄk3Éòrÿ>vóÝy¤Kþ©_ 3}éS·Œ‹VÎvƒÁDÐL.ÁS†„ð8÷þ¾’C±¾zÌ-ÙÚNud¤„çï+µ~aúœdtD¾g©¾¶.,çšd•*öÚ¹Nôú§ŸÒ¨8-çª'^›i+)i¡CîyÒ¢ÂD&„þ¸ÇÌxᕥϼùÔõ†ÐY†04>V+rqÊåp¸ OÏêàÆåñp Ãú†KõÉ#]¯4¹ %GN×ZG¦ÑÈy8†s%ZµÈlîyü¥L5çKF×—]¦¶6‘6\Æåpª°¬µµûƒ-ahbr|Bj¬g’ o}±5EGk¢j‹ŽÖu½ã °Ñ;L’ ût5^8Úäií•Dª#Aª/Lß­û`X\&ý{õÄ!ê©*Üj·¨¬ú¤•0~RR…Ç„>”Âs;.µÖšÝ€K§ÅÇgzÔÄÚÇãµú:ó/5(I·qci /F;9:šCÚO×Wo3vu½þVSVÀù“&ê·mw‡þ˜©Þ¼­.dQ˜x¼¨uM½1`/–Ÿ[7k"ÿÈ'(§õçêòÏÛ‡0Ÿ»×m }|ÁúÇcd.CÉ¡O—}|ŽèØ»nmú3k¿ž«àXõ¿}¾ºÜ i w¼?C› çv}BŽ”4í]÷úÕËžÝT áZªŽ~¼¦ »ž°øhý5/þcë žåÄúGïj@údÚ»îõôgWn{@A6žùfŪþåé-ý\òO½mʼnÙO¾ùx”šc*ûé×v·ôÎQðEácPòöŒ9[ëöl¨üxós€ìÔŸülå3ŸEí²~ÏG;¯YúÕ÷ [O}µfÉ7¿úþkð×yEw!‡ïaúžddD¾g©uï[þôÒ[_ÞUñÅ ›ß>Ë{úð¤ÙóÞßý’ÈV{bÛó¯ÑJ"÷‰Ì¤H»I±´ÎÞyþt]`ë“ù1G›t:(pS@uoøÕØ åv:ýZQ0IúnÈ@6@ÝØ}·Î„ïΆ: ËH€zõ8qs¥‹S \m—ŠËší_›£–”½£ñRy­É ÈFQäØŒH!@Z^(tVŸ*ÒÛ†Ìw™JÕÙxÜä ZôÍQÉ*Qµ¥w!VÊil·ZN¿äõˆƒÏ%Ú ‹Ë `i5Ùu€ %„·×Û¢È199)ZD]~5öBhSrrÆDˆ˜Ýa’ôÝP$RѺwu?b÷Ý:¾;?ê,,,,,,#\&çÔŸ?~²Âª'$6AlºxúØñ³ÕMR¤ h;kO9rº¦ÓÑpîÈ‘#GŽ e @ðyàpPÒˆäÐápðx—}‚qår¡ÕÒ9jJX0ו4yý$DBžËå­„F¤çädgge¦y{àÞJ*Òj2I;¤­kïÆ^(»ÙhäØ|˜…ŒIÒwC=’HuFëÞÕýˆÝwëLøîü`¨³°°°°°Œܦfƒ•0›,nB‘ØÑVmvºÚZÚñHLdã°úã8EQO,“q8”Íã]¥œ(jln$`8e­/)îô¾“Η…h5jµRäl,k¤}*°Ôž9YÆjâ“ãtƳõö@m{«bíÍ—Š› g߯^Hcu±Ñ'w˜$}7dG ¢î{ì¾[gÂwçC……………e„ao¸p0 £¨®nŠ¢p £kVÜn7†adKé±B‡¹»ÇñuÖœ.ÒÛç©âÓR#Š<:„pä±éI »¡¡ñbµÑâôÒìv9ì.Ϧ½¡Å&\ÅzëÐhRSc”àkâ=~5öÂQƤ¦Æk|øìŽI²ÇÐðª#ÃDÇî»u&†7v–‘ EQÐ]¤ö¯ÈF (€á(i]ðx]7bçp\^ƹÆv«Pœ—íC® Ó9ªÏW5´^YÂrD*­F.莅’.îþ‘ Rþ½e Här1_êÙ𫱌'–Ë¥|Ê7&ÉCÃ«Ž »ïÖ™ÞØYXXXXXF*6k'_¡–8ÎS¨dTg§ƒ®Ài·R…”Çå Ü!­fMmm"m¸ŒËáTa!Xkëe£0œ¯”‹œvûèKåp¸¿C“ãRcÕ]…¦“âÈ49Çp®D«™Í– Ø÷6Ó†a@QTŸ ¿;bvˆA’á÷¡RG 2Fé{¢ÜØGÚÄ(,,,,,£”àÞP¸¡W×ÿZÞÖ·„Ä%D©Ä\°w4V–Õ´;é0‘.)1J!ÀHSÕÙ⦀ßkûã½<*!V+åQ6£¾¢¢ÁBÈⲯÖ@‘k‡¡º¼Æ8„_ù/,=+FÒ§¡¥ôÈÅVBŸ¯$KÏÖtP˜H¡sqÒan­©¨l±  òc¦-¾**Ré2TêmòÈ(%i¨Ô›H€îJ‡§êm¤‘ì†# ‹ÕpÚjjZ™†U3Iö2!?C*ud˜}2ëL oì,,,,,,#gÃù_û5R¶æŠsÍ>4P¥EƒäŸwœí5ŧk.k2]:vä’oÚ|UtwÕ§ ~£¯8êÏ©Gþâj­8ÕÚ·êl*?×äóž}ÃÛˆŽX©Ñ(„"•g£/}½K&Th4*‘SL1Iö^uÆ„ Ä:Ã; Ëð‚¬C£q´àmDÆáñÊewº»7úVçXŸFï’.ŸÀ\ó¢U ’zÿC­Î˜Yg`ˆcgG°°°°°ö†,uÈ`4ŽXüQ@‘»'”ž ä¯L’¤ÕŠ‚A’BïÈÕ™2 ë oì,,,,,,,à ²ŒÆÑÂè™Í………………………¥¶Šeaaaaaaaa}x«byÊȸ¸0)¾7l$<´ñûo—ÿa O§èÔæØÓºø~† $‡Ùy–‘!‰JÏÍMPö4`|eLêØñ9¹ÙYé‰Ú— Ã!‹¼jìøœœ¬1I¡b¯k'ù.é»q/¿Ùê‹O7ƒƒwCñép\1æ—l.?m§Í/I˜${ ýÕ™^çYF՟̺objD–Ëi8øÞš&ëIÓpû1øÔìû׫åÆ"vh?ñý ùß9—X‚ƒ@›&Ç-æ¾ -ðt ñ"cIQI'ˆÂ’Sã´Æs £æ¯WÅ&)­Ï”YpE\jRDÇ©jš5¹|—ôǼ—ßܤÓápº) º7.ƒr;'I]&é²[­ö+çzê#É“¤éÉïC‰áuže”‚‡_·ø­/÷ìß÷íç¯ÏÎRxUÓßÚ÷Ü­×.ýx×¾ï7¿xƒÎë°kŸÙ´gÿw›_¾%¸¼ƒ¶·SMž=矟ïÜU°ïàvnÝöí+SÅt;DZÇîyjÝßïýæÓÜ;F ݆fæÞøÂ¦‚ï÷|þÒÔ(ܯˆâgo),Ü<7Q3ãÂÂÂÂBÏ‹vüúí—Îí]m¦×ÐßmýÇñž.?"Ê{ì_Ûöþgÿž-ÿ|$GémŸxØ5O­ÛZ°oÁÖ%“D^²ŽŽ:DB„ÓÞ,,,,,üñ«½{lÚm þûäÌ\ÜŸˆ*6Ü—Ÿÿ‡e†¯æåççççÏú¼ŠÖÞšŸŸ?ïëÖ+<Š›:MôÅÓn]øcÄüYàúž9{ù„s«îzÛœMæ[–Þ›J¿OÉ O=›zæ•ûn¾éîåÛ/¡VïCÿØiR‡HˆõÛÅùùùùùùO~ÓÞ³Cd’¥S,O9÷êÌi7Ýýü/ñ‹Ÿœ,¦K_ \ÿØ‘©C[G:¯»}áCîíó§ßr÷âŠBsÒ$´þ °þRx"9ÇS†åæJ~>|hΤ!”$}걩árEâUÑ` ¾.:ÔYsúø±ßŠê¬6ýÙRƒç%£P«åÔŸ?~üB‹ &Bé¹2HøöŠ*£8: «-7€J!NÇHK«Áh½ü­(Ap)Ww'’ËÔPÛ6”+âÁçÃAI#’4B‡ÃÁãÑ=Mú.éÞªXÒj2Ív H[ׯePv³Ñh²‘}%Ñô‘d€I2@C#Z‰áuže45ëãö>óOKR’áçýgv[Ãá'ùIIê.QÛ©½{«¬îŽâ¢ 6à{Ù§~­iÖÿ|ð´;*RE'Ö®×›qÃÃ9ò´Ô(ïŽö³•”ÔüËþ ·Ëp`ßqEJJWkÕžO .uºme'ÏSQQê D„¤òÛ÷w”v¸m¥'Î9ÂÂUþDä>µîþùδÙ,õ¿žª ¡ßgtr’áç}gÛNsUE=ÃÃþ±Ó¥~ “™h8üÝ©f›£ý¿__ùí¥àŒÈëï<*vÚÔùè<Žá\©Z-ÁLG¾Z½î‡+ŸM0.<›™;ž ÏÍ ýåp‘›N2@CUÛW<³jåÂ7~üêÿ<.[Ϥ¦!‘ô¦Ö¦šF‹‹r[ÚÍn>ßS!uÛݤ›ìl7:I7‰á#³“³Ë+ŽæªÜÜÜÜ ÆFѾùqà8NQÆËdBE¹qœöóŸ%ýÁ[Ç ½ùRq3ôlô…4V¯”DÒG’&É hu&†×y–Ñ@ÍÆ9WŒ‹år ’ìºà»\..Á½B¥þ«§õºÏu’$ ‚ö‚Aé‹*®ZºùËGÍ–ÆSo¼yÌ7‡{¬s¹Døk¶Lv!°éÏu=£SÝ]nÊí±xDhÿûÂ1ܯˆD)w>¿dZ×åÄ$:èì¿O‚èuÞ/—úg¾oê¼'¤d’¹\ÂåêR·”ÿü“Îùï<2vºÔùè|ýŽ×ߎ~bñè\µ§~ülý;û«œþxÙz¸°rvn:vD›üë¾ãôG&PC?íe­{G§$~ì¸h’´›*/õ¾n z7FfµJG—㤡äWÈb³â¨Ñ3ºÏívcF¶”k t˜›và¢ï’þà­ŠhâB\ ¥Uªøø²¡´ª­ï_9G“Êi®¨0Ø{$Û—>’ î0IhhD«31¼Î³ŒN\.ÎézÞåp8.Ã[l/át9€rS=ûì~˜ÖN[8¡ð¯7/h?“ËåªþrñÌM5ŒÖý‹¨§~ôß#ÒNwç‡÷Üý“Ù­šþÖö4/¢$IöK3=±#ñ=!È$÷UÇEJfnµ8|Mêd@;Š>uý¬£ÏÎ’«ì®,&ëžgW-›vjÞמgu^ò”òíÅ{¶þÜàÅý¦ÂÃÍ3rS2Õg~ÅÛ¥Ö tê$1“þl+úéD=ûm`ð´±ò¶3ÇJ~?¯].Fp0O5‹óx\{ç¨ù¶ \ðxx<žÃÑó—Ä©ÔbÒÔÒns3H€·‹.Èåb¾Ô³qO,—Kùœ¾’húH2À$ ¡­ÎÄð:Ï2:©-¯Ðåý9UÎh'^›I–—ûý6@©ââÜI׳_,m€†z}Dö“Uê„ÉO<üÏ‹/.ÁS†„ð8È;»šò ͸¼(>?~úßWߟÖÕ¡(ŠÓòp®zâµ™¶’’¿#jnh”fL«U„DGªü:»}ˆC±¾zÌ-ÙÚNud¤„Gsa­¯­ ˹&Y¥Š½vîƒÞö‰ï A&¹¶¼B7鯱j>W}ëÊ-«nìž3Ê·Ô¡N´ó¨ØéS×Ï:Êy,fúÒ§n­"œíƒ‰èxý#³gOÕZ Þs úÂB{îÌ;²Ê tÒKy1„™º˜é+^{þÅu»žýø Pp ãòx8†aØèêq¥ÅÝa4KuáŽs¥a:™©µmàý CŽ©­M¤ —q9*,kmíþS†&&Ç'¤Æªq&É@ðÖÛYSt´(  ¶èh\ÙÃíj¼p´ÉÓÚ+‰¤$L’ÑêL ¯ó,£ÓÞu¯§?»rÛ ²ñÌ7+Vðï_ú~ão>¹á[ÐQwòß/¬>M€a÷{›ó_|kÛ]—¾yõËŸn¾ nφÊ7ÿ8ÈNýÉÏV>óÙY«Ï†:ö®[›þÌÚ¯ç*8VýoŸ¯.ïêz”fÏ{÷K"[í‰mÏ¿ZDù‘õÀGë¯yñ[gð,'Ö?²xWCÆ¢]ïÜéÝûEácPòöŒ9[ëQš¾GT¿ç£×,ýêû…­§¾Z³ä›_}ÿ5øë¼s¨¶îý`ËŸ^zëË»*¾xaóáÛgyÍIÿØ‘xOŽsÜTWÉ…L²iïº×¯^öì¦ ×Ruôã5Ýår¿Ô!­£N´ó¨ØÑ©ÛZ°Žrk+¾HÌ~òÍÇ£ÔSÙOï¼¶»{¼ªâª«´ä¹uÛN3vוʾ¿qÝ›Ýse¡Î¤!Ús ™:cuI}‡¦óbíèéd©Ø uÖ1cs=¥R¤Ý¤¿XZgf§|GŸ“¢õ<Ü\•§²©ø· ccY?>aL8sš 忬 #dKe™(!.#‹GÙŒú‹u=ﯜV³ÍÅ%-6ŠI20 ÷‹É¼¼¼#GŽôü—¯ŠŽTº •z›<*JI*õ¦ËFÈÂc5œ¶ššVG¤ ý¶ºW’Á&É hu&†ØùíyyÓûœ ,,^à^·bÏÔ_oÿ[0nܬwÿ)[ûºÓí5cÑ®EMóð|œˆ|'ÀعڸhÜÔ!7÷Õå¼ÝôâOCzSÎçaÂò½/òÿqçŠCìËûBo(¸*)[Û~¼¸‰À…‘i©Då‰ÊŽ ì|äƒ,Ì‚Õ8°âdˆ¹¢ÄÀéºIDATRõ6¢€#Vj4 !„HåÙ¸ L¨ÐhT"¢¯$š>’ 0IhhD«31¼Î³°xÁyî¿ûå³·}»sÇŽ_oÿòk›>û®x¸ ˆQ‘æš…ÿÚ¼ý‹õÕý´âÝÂÑÔ¯"R’Ûvl.dKØß%nsK3‘9>++++++3Ee×þ‡&~@fÁjxë‹Å8<A¹ìNw÷Æåe:‡Ë'0—ÃARZ!Éäƒd€†F¶:Cì<ÛËÂÂÂÂØJ°@fÁj ]±WVªÞúÞ(ÒÑ5)[ÏÆeÎîV -€d‚A2@C#[áuž………………exAfAk…g†k–¡„­bYXXXXXXXXFCRÅâÒ°¸¸¥+æ2Iò”‘qqaRÚõÍF³:Ãk…………………eDáuŽIØUãsrsÆMî.p±.iLVNnnö¸ôDÅeg„{>Ã%ÑYIêË×@ÄEJ.DìÃ÷ïL’„D­Ó)E´•ÜhVgbx­³Œx2íÚø@$⇘™w,Ìð¥18¨ï|g×òl‡Æ+ˆ˜ñîÞ=/_/ëÛÖÏOÚ0ûá»dðð%L$¨Ø‘ â C½ ñïüdùßC3n„ òòÆF‡Û¿‘ÆŽÏË›ÐMv¼ç/U/!‰JÏÍMPvýW“•—“ Àpurn^zÈCByÕØñ99Yc’BÅ^W—ñ]@ ‰U3eÂËåV‰5ž=ÞdãH¢SS¢LÇÊWÃk=w²ÞŠ Ã’Ób5­ç{§q!”qIÊö²³-—ÏìB6—Ÿ6Ó‡iO˜$mõŧ›ÁA7 yT«31¼ÖYX|$ì†)aÞ9ábn¼’†ƒï­i²ž4yÑø&’Ñ;’'„åsÕÉ£U ?Üž kMÑéºËÖEAÖKmB|˜·˜¯X}•#SHÀØÉä2FÕ$q¸*6Ii½x¦Ì‚+âR“":NUÓÌ|滤ŽH.'½-! à½/Öj¬Ñ7[Ýåì0š)¡€ |.Ñn0X\n·ÓÒj²óûÌÓ|mbœ ±´ºß¼¹”Ûép8™§Ùb–t“N‡Ãé¦û}T«31¼ÖYFXȵÏlÚ³ÿ»-¯ÜÏ€øÙ[ 7ÏMÔÌx§°°°°pã‘4±hׯ™¹7¾°©àû=Ÿ¿45Êsi¥Ý³úÓo÷Ø·cÃËOŠè°"¿vù—»7>šÙïi:òÆ)ª}{O»éåÙsþùùÎ]ûþgçÖmß¾2U ±hWaáÁ¯ß~ùá\I·ÚOT˜—õó[Rðñ½aWHn~ù–/;<òºÅë¿(Ø÷Ÿ½ÿ~oéõ]±ãá×-~ëË=û÷}ûùë³³“žÛ÷ò¬[žßðÕÿ»3kòâ¶}ú׫ûv\¦*ï±mÛûŸý{¶üó‘œî>Õô·ö=wëµK?ÞµïûÍ/Þ ër¾_ìÈÌÓ$á'MD(ë(?ý1Dw† O†+‡†Ðç'ËèD;¾ûý-Èâ²ÇøÛóHÈ#SÇfÏΛ•™9>YÃñì3B’˜‘“™¬a LÈMŽÐ&Ž—ª“…Ä¥gfDI†rNTd½ä´´ª.\¨î¸üÙÎlvÊB‰\j3û¾êáH@¦Ru6Ö™$ikÑ7ƒJE»È²ï’~àåR`k­i0‘€™˜4[œ`®)*iò¬îDˆ„<—«»×E$GPÕõÖþu¡MÉÉჿL’¢È199)ZºäQ­ÎÄðZg DM½;öÐ ³f®:‘°àá|.@ņûòóïÿ°ÌðÕ¼üüüüüYŸ×Ò4ÄN¹‘øì±i·-øoì“3sqÐݾð!÷öùÓo¹{ñE¡9i=U–"65\®H¼*Zp… Snäýðýо1ü¶yiûàþ[§NyhÓ%ýæGŸ+°­½5??Þ×­}´hýì&}BnþKÄž{è¡—O$.xpíû+é”ËSν:sÚMw?ÿKüâ''‹@rÃÂeÉ'WÞ7uÚÜw S^š“陦õ8v›æ˜Œ=Ž#;ŽÇv¥©§#'•d‰¢HKâ  ‚8Ä=ú$H»(ñ¤ÿïùøvß{»Ø?Þ¾}K@”~÷.;¼éÛ²fúŽþø¥S^ïÿžþ¦É”ÌÖÔÞüÃsƒ¡4ÀÅ_=ùˆ‹$Àîtÿøü‡Ñ ÀÞ;«¸Çi‚A~øÔ™tê¦ÔäÉ“áÔí)ƸD4S|毾‰DàÔàÔáÝæ|¶ôàÑ£žÀÈÐÅ´RvJöÈ‘ªgH²ER¥Ë׳²‚JÕ³¨3Tx:$ ©þYâ° k—ÎðËÑ(Akµ*,ÝO¼s €[ˆ zÅR„´]xŸ\ˆæx3O0[4›˜>;KA©,m[ôÃÙ ÈÄK’2 QªÑb¢ø¨W°é·¦–[‚$IQ V£ÓQ”˜HRöéŠsnD™(–Œœ´ÊÒÖÙÆÂ9JßÚã4d‚þ¹ñ©h"—¿S”ôŽ mŽºÐº(Pâ£S#ÑŠªS.g&ti$tn^ÎÎ–ŽªÏóùHbÃâÊ¿® 4MÀìëO>×üµoÿç—lÜôàï^|öùw=Ëw_]ǺÖï€ìýÌí±£‡<%Eß«ëþ—^¹7ž˜|êéÓ­åFš¹6çR‹$1 ÍqË9“<¾’˜ßœã8†.5è[ÜLu÷üîí —#´6håì«ÿx¯üîä¼Då‹ë)Ù"ÉÒËÖ³tAòõ”è •ŸÉ#_Ü?Ñu*³˜Ô¶íÙ×Ìó™˜ûÒB>]\ýa›ß¦*pÙÌòŒ?œ¨W«2rñ’´DtAÕ]Ÿ›Α¶­¯ðæ >Ö–chR6^’B@|>”Pä"i0maM7—ÍËR<°,›ÍæcJm4iøXx!-”ÉY(š™3îî0²j-“ ŽÍH‡°Pr^¬Úìh±ii€RÖêÕét€¦i1›•9%™À¤;mq6ë×O?#X^_£(»ªBùœ¤R«×kX¹^_Õ›—³³¥£êòÏÕôÞ¼Çj077©‰5v‡•%ÓM·íMކˆ–ƒ÷ësûštn!Œñ+_P[>üă=óO¯™ˆÍô¸uâØ»á‚‹š­5›YŠ¢(’,ß%+_Ä?ëkÜÿ§FSûí_ûò-š|º¦®ÉÈŒùæOîËŒ­T¢å®ïÿóýß{ú[Ÿ^™Ô;=é²Ý|`IÁhšÿü‘_” »&õ½íŽØðÄÚ¸™›»x2°z;¨„r9“Þ¡“Óò¯êÍËÙÙÒQõJ½÷“go}è_^¾‹M <û·ß~Ó/—X³ÿÐÞú'uzzàȃ‰DddœþÊ7žþ{»‰ŠMþ‰·VþÙ£S£³‹–äøôêLxå-nºpìß"e'μó3÷O_úÝ=À'}g_|ä{/~è¼ïÍç¿`€_¾ÿw0úÜ]÷¼<+[ù"Á·þã¥?ôÃ#qé7¿rüŽ¿€KÇ~þÁ½ßøÙomªìÌÙ_}ÿ±s+?ê¾0½`LŽzW*;úÌ“7~à…·-LÂsò§?x;¼œØóÀ#G¾dàç†óð£%þwŠ›9ûÎOÞ¸õþW}s~ðÕ|÷©;ÿÑðÕC/K =ôJ´Ý/{䋈d=%[$E¦ž³$×C$:ƒì騬E Ñ?QµÊ¦|µÎöÕ¥æ\³óÖжöõÔ-MfÝÓo‡äÔàOr"i:8“úÈž?YZ”Dä31ßøØL|›ª.M˜Ÿvm½û’ÏÆç]“¬l¼dhûh·u)rïê·ù P°3b»§C\!>ìžP·;zûX1õÏäï³åRñ4Çð‰ü4SÙœ„äìè(ÓmçÝcâyªkÊ5keõ÷÷Ÿ8Qê9‚ËDéZ-TÄë—|øk9Ææ¦Z.èö­æUý›—³Í¥¿Ößp+:ºJõÞ÷æ}Cùu6L{à±#÷àƒÿ“.™È|òáw>{êóßy;ãøëÿWݳŸæÜÕ}§I¶ýz¶äJû'ÚY›xA!ÎýÖ…3#€T5íÞE»Ü‹›²ó«_þRžÖÛíµüÒ5}³//8Ùfë"ÕmY­„P,£º‚ÙøårRšZ‹Å ’½«^Í›—³³¥#T’þÏôþß±÷Óåsçÿ®þ+G~ûÆë¯¿þë×^yê¶À‹ÿ5²½UÝt’m¿žáA[Hˆ‡CtãÞûúúúúúöv3¾`…Óì¯ùK9­6æ¯é›•X¶e,(FA\6[þÅerËÒ"—ÉÉ|a¨êÍËØæÒq,!„ЦÀ ÊfÉ_Ê…5×ôÍJ¬†¡Øõ‘êö¬VÂç2œ29E>[òïU½y;[:B!„vÖê¥|Í5}Ó«¾ÿ!„BW¯þþþ®Âujg|%¥c‹B!„ªF±!„B¨úà[üB!´m´-ûv×±@iï¹s3Õ·ÎÿuŒÖ5µ;l:VLG}.—?Q8–±íîÕL¸ò™«{{íÊÐè©É@Më»ëè•eëùàÅÓ®©4µ´ÙMZ–àRQŸkÒ¿þõ¯ej´ ­B!„ªHÜsö¤jZolÛéš  !­ÎÚÔøðD‚48v9§Ö.r¦0[á©ÕkK=•]»†}Ê;´î{‹ÂÖÞ†FGÒ„¦©»Ûn +áF±!„ÚR•,EJië;ÚôJ’K-¦§|‘ô†ÆäÐÖÓɹ3±,ö…ìFõTbõ-²J³… ¹bùßI}S“*äö«;ÔR;[ÎT£Ó.Ï'9Xœþ`Ãu*ˆb9ŽS(™ŒÔ[Ñu&ÆqV…"€!„а*Ñ\®\.…­µQôŸsl©Î ¥0нÚÐ ²Y±¦±Óšõz²YVËä£XµÅB†ÆV_¬jh6ŧ™Î5»P5ö|´Ay.›u»æM3"©nè´×ëY15ïtS%Þ, P(r…}©àé®`0ØÚÚªÕj¯´©¨ú½ ÞÓÚÚ…!„ÐåjR©îs: •ÏJ4ËÐÀ%£~—;T6ìEÛ$IQ V£Ó©(QHrM©5›…`(Ó2––:qÆ^;9 1=|öÜÐÐÐð‡#ÅaS¤N+Μ?;04¹¨q´ZÙòU*•Óé ö¥‚±X¯×k·Û»ººF~7èš–%Æ/½Þ»íöÃ]]zì !„.KŒãÞ…^ðxÊeÌ̹¦”-Žž…ŽÍû<žPÁ˜.»óA ‚Ð6BVÏPÙÌϯÌx%uv»*86šX@\6³ÕfüáD½Z A\øœÜ‚?œÚ£Õ@ ººÍÚóÎq\(òö¥‚(VÇã)ßÛе/+/x<|ô „BWŠO̹.̹Z¥¯ow¶YcççVž :o¯½pÙ,°,À˲ÙìÊ”CBo1e‚Cùˆ*ƒžU(z>V¿ü»®_;}n$Ýà`ý#¾¥ÂÄ¥ÉÒWø(—(®ùîRÉyǧ»B!´³Tum6!4Id¹l–€³#ÑΈE"mõ ºˆ/AéëÍÄüØòÒ`©M½«“@SgOL-ýÈÔݰO3{j2¤‰ÒY,úP*ÆQ«I%„Å…D«µN›KQ5u&eÌ—(¸ŒbB!´m´­}=u,ìé·CrjpÈ—ÎÅDSKw³Š!rÉy+ˆc¯:|Ø=¡nwôö±b:êŸY8IƒÅ^*w„ùi·ÁÑÖ»Ÿ!ùl|Þ5È@fnÒ­jëÜk§ÅL<8á md™- ”Jåå´!„B]ß(s×>ch`,¼#kJàhB!„Ðe M–šh0²SË¢áX,B!„ª>8‹B!„ªF±!„B¨úü?dEFÉbé~IEND®B`‚btop-1.4.5/Img/icon.png000066400000000000000000000020441506333644200146450ustar00rootroot00000000000000‰PNG  IHDR00Wù‡ pHYsßßÏEI…tEXtSoftwarewww.inkscape.org›î<±IDAThå™Ïk$EÇ?UÝ™éIO61Aœ¸."$ž Ê"xX=ˆž=êÁƒëÁƒ'ñêM=í?°°7‚È‚'o"‘ÀšÈf#:$‡âd’îúå!1ÌfçGuvâL“/ Së÷^é÷£^ xÀÁ‡ÜE||ü÷ƒ|R£Fé „£~€¥¥¥O„–——¿-ª?rY–}™ç9FãP˜ÀÈCèàà€+W®`Œ1çÑ9$I°Öž[äž^9‚ÑB€s–ï;aHîéðchvèßÔšÆÎ±O}ï6àOS€'=p.è%¿ü#„—Ãç­eªƒÀGZC’4R¸IA¥¡ÒZX\\ôª&“B«ÕU¶Q¯¿öòŸRJ©”º½ººúù {C#`­ÅZ«Â0l÷Û@ÜËo‘1æ¹4M™››{ÁÇïP;qµZMVVV®õÛó"ÜsðF7Y»Ý&Ifgg½}–>JOÀ+„Ö!×BäFˆŠsî±FöEžÜ¿OÍ)ø«Ÿ­ß!Î¥´¤µ–«ÕS™‚Àò<'Ë2¯³‘oTBç*¡ë>@Õœ­BÏ4ÖQ­Úg`]¤”pÒõár„ÐE£^¯Ÿ®kµZ!ݱ 0??Ïþþþ¡C–eÞDÆ‚@–eÌÌÌü­”úŽß‚Öúkݱ  µÞ[[[{¯¨ÞåH⎔”‡ZˆZ·>ð«”XÏy`Á¦;~¿j ³iJ$eýxó¸çýôø4Öö̪»aÈ‘'÷­%ìèo)»»Í=øŒ‚JB¥'0´*Ôl6½öU“»Êvkµë W¯® !„RêöæææWƒì µŒj­m†ªßôxó&1 ­V‹ééé—||•@EÛ×úíy¦Ï@“eiš255åí³ô9Pz^!ô´µ”úx ¬‘½®áö6ž¾¿ô³µ ÚAh­å‡JåT¦a-J)„^—}^,LJkãJyÕ9Èóã%¼2ÐiÇEôÁ™| !z¹{—#„.]×> FƒÃŽæ–ç9ÕŽa¿Æ‚€RŠ8Ž÷1?DQ„Öú®îXÐZïlmm½]Tïr$±€Ÿ·ãøÇ–”7´Ö(Õ÷¸SJ)œsç2êEà¬5gf~SJÝÈóœ£\ç…scL±òs‚Ò‡Pé ªBÎ9â8&Š¢Á›ÿ'z•J…sþ¡>Ax}Îâ_Œ–$PÍ«IEND®B`‚btop-1.4.5/Img/icon.svg000066400000000000000000000055151506333644200146660ustar00rootroot00000000000000 btop-1.4.5/Img/logo.png000066400000000000000000000017641506333644200146650ustar00rootroot00000000000000‰PNG  IHDR]býHgAMA± üa cHRMz&€„ú€èu0ê`:˜pœºQ<*PLTEÿXXX×NNN¯DDD‡:::_000&&&veœvtRNS@æØfbKGDˆH pHYs``ðkBÏtIMEå 3³ëîk¥IDATxÚíØ½jÜ@p“+œä ü^„-ߨ}àPo8mÀ… Ë€_í.Uຨ9¸Ö­n¥ývs’ ðÿWffgîwc0!I‚L›2½€'=xá…Þy¼ÎΆ¼Ü“€Þ¸Þâ|ÈË= è}ßA/÷$ 7ò}χïË< èÁ /¼ÿ÷åu“Ϣˡp-›¯R§¨_‰4Mü¢5ήÖ!‹zü¼ð oœ7ÍÛ¨ù<ÿR{¢Èu´77£ÇÙÕž×.jÙMž“^á²özŵqà„(šãìjÏkÍ_OJzÝSæëÚë^F¬K&TÑgWû÷]ÓÞ›¼Çë~_jiTñ˜Õ¤ ^xá×{rGä«ücyÿÝx¦QÅ¡ÕTû®t /¼ðÂûOÞ‹¢(&òêÕ¤·(è¹oEÁyå&òv«IoÝëù½\p^y…‰¼Ýjú¾÷}÷彉1½ÎKç¾sð ï|Þ×M~èÿ@8l¯*ŠògxÑ_-“eÝÓ²4>¯í×ËÞdò‡K{\ÍÁ /¼ðy³M5¿ÙDÐX¯^ÝÄðšŸ'T»ñÊqÇëÞWˆÑ¼Îµ×ú¼Rõk¯0ï›YsÝÒ̽o ÷:îžZŸ'JÕ®½ë¾™9§—Cð&\È-¤ ^xá×ûö‘'ù÷nûÛx¦v1Ùn¯˜qµúi¹d½õá}žÌ»eS·Çá…^xã¼ËªªB¼Õf<Ø[5!¼‡FˆW~±¯¸bƃ½ê¸žWÕC¼ò« {«¾û6ã¡ÞJÅó¶¯3K{ùñPoTà…Þù¼Éb%ü¬Vî³ý¾iìwãªç/ƒ^xáÆûLÄ÷ê„·¼íëT|¯jì"Æ}ËŽò>“qŸµõ]Äø¢o‚ Èèù ¯äžr¬/%tEXtdate:create2021-10-15T15:22:25+00:00Oˆ btop-1.4.5/Img/main-menu.png000066400000000000000000003451401506333644200156120ustar00rootroot00000000000000‰PNG  IHDR’†t sBITÛáOàtEXtSoftwaremate-screenshotÈ–ðJ IDATxœìÝYR[·/ú‘…j¡ T•±ñ²½\|‹ˆÛ€Û‚±_oÄnÀnÊnÀnÀ>qžÎÃiÂðçÏ6–© ª ¤”R)eqìHHFü„äÌœ353™#KÆl6@ØAWFòèòèß¿Y1îù÷þò×íŒÒ¿yÀoÄÚüs³S. ¯5k¥³ÃXºª¶þÀÛÃK/‚âÞ§ƒâmåyGh.êwµzé,KU"âìÁùÙI‡™U%!?ˆÐ€a ¿SÕÛUv>Ï÷'…`Ìþ™i7ŸåªZ_f¿™Á¿°4VÚú{7ž.óþ…“ÉVU³onq~Æ­ŠªE;?-ÖÛg=³Ë>é`s7žkº¢Q[%uÞ$óä³Sæûß{ñlÕ^tKÉÛfðˆèîTuw•û‚á <£©ý£÷+pNÏ›«e³¹™¾ÊóxtñÙ|tzÒç2Ë•RM&‹¼[²Õÿ³sa¯­y^¸ Z‹éŠLDŽèûEK>#üŽtË=÷ikÓYô35ò-,N›„L¹AdòDŸÍGà ;ÕÎ…†z³ž>»R.T›WO€buåx²"kjS6O •äyC#F«$9Ö0T®ç¼göõò¬«fÊ9§æÍ…Ó²¢ÉbÝYÊ©r“7˜çéR]%µA¶Éq-‡]%<º;UÝ]eÇA»þ𕳗žÍÍ„ü;׬ uùÖÜ`læÏEK¡5ˆíƒ~Ýÿpß>nTœŸˆÌÚ„ØúçÏßöJ–èÌ8׊[¼^æôûç/›KdÊÅôiù²›¤ØqÉ6dN²äqYˆ8odÎ.ì¯þëóß'jp~Ê~1©Åçã’›_¾låÍ3Sî®'ÀCë;™ÖåE¼Õb”å&)ÕB¶$ê ù »‰7Xíæ‹ÿ¼ÉH†66µ8çµ4 £ÑHDõB"UVˆˆáí›"Tûtô `èéíTuw•IwøjòG¦´Ôæ×/ß¶e£ÓÎ=l;ûxÿÃOÌVk£x\n¨DBêpßACp1{’¢Ú¹ M› Dyel¥t®*.¥v^j* c`ˆ,V[£"¥;ŸŸ´Hh‘˜I¤«2‘|.¨N“‘HzÀz<Öä˜ðyÇÇÝÖfz?}ë•Fbz§aUÊ…‹Ü‚eYMÓ£Íáà8­®²ìå!)ηôaÖ¥Ö²Û‡\Ó #Í:õêåÔõ×¥•V·3íü²S5êí*u÷ŸºAMwøJÄ0¼ÑÀS½VJÅJ¿%Üt#`Yvzzzbb¢“‹š>~üxí7kpiÖg5µ/ŒÇ›'e"†a4íâ߆R+þ¸Oûñaî:®¿²²rw#º¨ç¯†1ù—^«DÄrJ]¸¬ÒõzÞ¹”Þë ð0®í9gäå‚KʦÒ{ñRµ©ÞQR®³µ¿ªªÊ0Œ’ßýœ'âýŒzui­’Ùþ˜ax‹wvqž6wó—ÿg±«€QñcW)¦wÖó×Ç‚j³Ýe@z;UÝ]eçA}R:7ÏD_NšÔz¹pv|œõ§½L~–¥WÿÝL~:Ù'˲\(ŽŽŽTõÇÿˆyB86›Í’tÇÁö_–WKnÿ¼Ñ4.Ó†3ð$7•-cF½H0®MùëPý® «zþJÓ´zjký´“ûû~[=ƽ"ëúñ/Û™¯ˆå,n·M©Ê’JD$7d4rD ÆFC"â¬ã¾’-7H“Åb¹uÙ)íNØUÀ𻱫Ôd©ÞÙ^Rw§ª»«ì>¾3yèL]¬™Üc–á,¾…׋© g¶Yb .C©VD$I’Ùé¶ Ö‰é)÷_ÀEu±ft¸Ì,k Ì=›´·½%d°õè7žçµF£ãÛé,…góó/¢—û¿r±hõM: gö'˜B¡FDÖ‰èŒßÎ3DœÙí´Öëxú<ú;UÝ]eçA]–ÀlÄç°XMn-°Ý™ M–êõz½!kšÜ¨×ëõ†ÒÝE¥’$íïï{½Þ ½þ‹ÑhE±«™¶'gb¶Ù¹×ïŒ,–NbÙ‹S%¼súå»yN­Ÿ'÷b"¢F&~æ^xñg@LÇ’ßdŸ*Ðy=ìsÏ߆yF‘Jgµ¶'ð[O€¾cˆõ.­üø¯ßý¸W ×ì‡%_+Gx¶â%%³ý¯X‰ˆšõª$•Zýr7©äö­sÑWoZ½t¶wZ%"%Ÿ8vÏ/þäµ)žŸ¤úõ_`ØéîTõv•ºûOý ®¦PeB3KÓÓ¬ޝ†Ù¿…$I?ÝÚÀ˜Í?nYYYéðÌrçSÞ4ym|_?ëøpÔ}ÔŸâC¸ €^ vg…]%Œ„'²³º÷È¿_Ïo€Çï÷=¿UWåèËúÃ.úç S÷¼ÿžÜÿ÷„ü:õÀ÷OÀ}™Ë„‡ßör2‘1øòíŒýÚß[oqÑ3y·ോ—‡)٭ϱ²nqAwžzʼnXËÄL4ä±Y,%S‚Ò¿¶>œ=8?;é0³ª$dãñ¢î›¢¯±L½z6çv>ÛM˜ÜÓ³Óv£ÔJ'±X¦¦’#ú>"ýÝzMÂõÏý‡ü`DH…x¬¡–/_qÜÌì|Í3­Ïœ3º¨¶}c1‰‰õµÓë¯tÔ-Þvž¿'“.b.l¯o×4³wþÅÂde5ÑþgO•9 1é¿¿dêœ}úùR¸üù tÛ;  ¾™ ׸=Ç0úçf­¥õYƒ‹Ï£¾Ò÷Ô]YI!~c‘wËÕâß ÕÖû†5¥Ù¸8âo í¥Ä^WÇ›õ‹wLV׮߯ûdßJ|ã‹ã¬ã¾’-7H“Åb¹uÙ)_¼ø“gܦ”óçu•ˆÈârM¦—/J:Vì'kk'âϳ'’e™¹Zó¬Ñhjö£zÃÄlÄšßÛ/ëœ{¸þ™L¦ùùùp8||||{ñþ€‡3>>~|||gòÐã˜Ý ToðQSã^¯ÓÈ2¬Áî· ÂÕôºÅ êW…²0æÚ ,Ë[ý~·\ð@#Ã:ñÛy†ˆ3»Özý2)³ægçžGÆ/†ãÕøêÇ _ŽÊjvç£nò@Dj¥$Œù'íF–5ŒýŽr¡øKÆxÉèXrñò——I’´¿¿ïõzïlÎ?<£Ñ(ŠúÃÂ[]=‰èÍÊ4UW7Z700v›U¬Õn»˜ˆH-œ¹¢³¯ÞX¥!b™Ë¡¾nñŸƒúÅ멃#stþuÈH²x~ºw*t߬GOÉ'ŽÝó‹yFmŠç§©Ë/¿) uÙ Të·uz¤ô~Ì4;÷Ǥ‰i ÙØAû{²9׸›7Óò?‚Dw?I’¤N.«Cþ0üZÏ_Ò¡ö?é¿3îÆTµÌÁ÷L§Å êWÅ\l3»sáOšVKï­§uþ bßÚ|qÍÔæ§Ûg*Ž· 7/3*~^ÿåóÕó—ú ×/@§?@§?@§? £‘~þéHW¾G£Òö{×ùt ùt ÏoÖ21 ylFFKÉÃÔ #úþ…ŸÓ4"M‘*™£ýx©IŽèûˆô÷úYèÆg¸‹1øòíŒýZ ¿ûq¯æ]\šv°\lë¨ÔöåkÃÎ2õêUØœÛùtP$"Ö<>3·Y,ÅRU•ˆXk`~~ÊiÒÄüñ^,/é÷º. “.b.l¯o×4³wþÅÂde5Q%¢Z|mý¬N¬ÁYžŸ*}>*wYY\|ã‘Ò yréÙØùáÖ™0BÉ‘erz\ˆ«/¹³}ÖÝ gðδÓãüõŽÁë°k§ßW¿®Tlш×@D¤•NªoùíÛEGå8%\Lyͯ½îN8ÿ0(íFnÖðë„4ÒIÈîïë\¼Ôí‡Û)ã——é0&÷ÌBˆO'2ŽðòÛˆ”=ÜMœHžÆ:ÂaKvwG"ºv¯ˆFÚy&U•5’ÏSyñµÝF™‘ZKí®§n”ïµó Y–Yžc.Ftյï)"ª%Ö~z¼’,Ëǵ>s+Ë#2Ö6§C9O]¬SÞ3»è7äÀSç{kBð­ßurž´ÌârM¦—/~w¬ØOÖ6ê7{„¦µkŒ~¯k´™Zò€Q…²ñíåTM3{ýn¹’n™õ&­ žp$EóŒ;ÂY»üAÓTõæõ슦i4ÂÁ6 íŽqÌn’—÷¦Ë¥£Í¢¢hd!FÓTUSo^Ô3ܪñÕñÖGCàÅŸ¶ä§ƒ"‘é¼ñlå´ÈÆÍå³vTÒïu]@þ0(õÔÁ‘9:ÿ:d$YÇÊDÄZóóSN“&æ÷by‰¨]¯ëò€A1ùç"æÂöúvM3{ç_,LVVUÖYp‹{ûUÖ}¾0Uùo÷*aè€Õ—k[ù&™ƒK¯§<©ó²'`Éo}‚o}®ãRN#–çI–Õ»g6D ¾™ ׸þêh1±¾v*Þ˜ˆqM…¹ìÆ× ?µ¼à·çãB›^×Å‚qýÀ€°c{%“šª*×Òé"ïp˜ˆO-}Zn(J=–#Ç:èzŽ6Enªª¢¨Dª¢¨JSVI#ab""Æè‰<_š´Ö°˜u†B–Üqª~ûdœWÅj]Qj5É`0µëu]Àù€áyƒ*+WœPéðKIU‰w©ÑÐÆ¦}Äq£a´‰j­çh“’»Ó‹o?Ì£ñ­½‚J”OVßx¤tBž\z6v~¸u&ŒÔÙËäô¸ÿV1,^N½ü0©iŠ,–“G±tU%Rš2ë¶šX·˜šr“¨M¯ëò€A¹ñÚa­5ŒcYVÓ4Æhs88N««,;ZƇŽa"±wÿÞ—k`vnJ؈ Rþ`#ÏZ|sóSÄÎv©q÷l†‰Á;ÐN7ò2®bÕ“Õ$CD gñÎ.Fý¥¿“i¥ÓÄÄüòÛ&æ÷"ÒïuÝ@þ0(šNLUU†a”üîç<ïgTUo*èçšp‹™½²¨IÉüÔ+¯#.œ3&÷ÌBˆO'2ŽðòÛˆ”=ÜMœÈÔ¬#¶dww$"è*7¤‹H©|5hµIDj-µ»žºQ¾×þ„|àé2{çž?Ÿqsƒ®À“%Ë2Ës—‡ƒÝs–F’ 2/6L£ÑØhH«àcÀ°,i—cf4–eˆ÷Ì.úG›û[`ì|o-Þ ø]Ìíó—Óh ¾ükeeå]ÄÁzŸ­¼YLsK“¶ËI4jßÝ^× œxºX³ÝélFæ&À££ e!âÚË©šföúÝr%Ý RŠÅÙणxVåœÁ ¦°‹›z!×jÍ)ϸ©”o0Ö ·µVInmE# 1š¦ªšzËx{èTã«ã­†À‹?mÉOEbÇ9‡×ë̉e™³ùÆ­B®Ý#•ô{]?<]µÄú?OHÃ¥SO™£ó¯CF’ÅóÓ½Sˆ”üѾu.úê­Q«—ÎöNñðÖÞTN2s3Ëïæx­Y+ÅÓ)­7Ô éú³çï|Í\,>ÚûBµpräŠÎ¾zo`•†PˆdÚ&º½® Èž.“'rËÙ£³2^N0 ª˜‹mæb?E›ç‰íµÄ}çiòL·6íº3v+­m\7ø瘌x¹b"Qh.´éu],'­ž.Ui6Mu´ß¹ 0ÊØ1‡½’I MU•két‘w8LDÍj1{¼µ¯Œìqñ¡§‘Æ0 1 côDž/MÚGkXÌ:C!Kî8U¿}2ÎÀ«bµ®(µšd0ˆÚõº.àüÀÓe ýñjªyøy3Q À@ð¼A••˾tø¥¤ªDT-d‰Èè`ÍËÔË“š¦Èb9yKW¥|²²¸øÆ#¥òäÒ³±óí3a¤Î>X&§Ç…ø·Šañzð§fªDJSfÝV+ðSSnµíuCþðt)b¹TR$œ˜¯ÖºÆAgª'«I†ˆÎâ]ŒúK'¥üÁFžµøææ§‰íRãι ƒw& näe \Åt›IZé411¿ü6¤‰ùã}ˆzïuÈž.)w¸t%ž4¤ï@•ÒÅIV)•¯­V"‰1¹gB|:‘q„—ßF¤ìánâ|DNŲŽpØ’ÝÝ‘ˆ ?¢ºÍ$Rk©ÝõÔò½öºÑºÐ úÉì{þ|ÆÍ ºO–,Ë,Ï]vÏ}XZ¡ÇÈ41·4i»üM#†ˆxÏ좿q´¹_±ÆÎ÷ÖâÍ€ßÅÜ2“¡bq9¦àË¿VVVÞE¬÷ÙÊëE¯™úzîu8ÿðt±f»ÓÙ,ŒÌÿL€GGÊBÄ´—S5Íìõ»åJzÄ.¤Msx½ÎœX–9›oÜ*äª$ËG›EEÑÈBŒ¦©ª¦Þ2Þ:ÕøêÇxë£!ðâO[òÓA‘Øñ_›©¯ç^‡üàéª%ÖÿyB. ˜zêàÈ2’,žŸî DD®ÙK¾Ö™Ág+^R2ÛÿŠ•ZÏQ¦NŽ\ÑÙWï ¬Ò ±ƒLƒˆ”Ö“«ë…týÙów¾f.í}¡~3ué÷ºÎ!xºLžpÈ-gÎÊxÀ€¨b.¶™‹Ý –bÿúÓŸ¾&Ïô¯›öU°î ‡ÝÊÏ>瘌x¹b"Qht>eçÅ{ öF«e¾gÚüMLï|Kß^þw´¨_Íl¦6?uÐÌŸèöºÎáþ€§‹³¹½^—e„ÎÚ@t7í« oõèløŒÅåõz¬|WSv^¼Çà`ýŽ a3;Ç˜Íæ«_VVV>~ü8ÀÚÀCb8£‘×d©‰Óæ†[º›öUPÕßð9ƒ‰gäFCÑ:Ÿ²óâ=ëw´h›Ù¢Û? âú%€§KSÒüË€þÑÝ´õ7|¥yí|Ê΋÷¬ßÑ¢!lfçpýt ùt ùÀÓet‡¢Ñàþ@ÇpÿÀÓÅÛÇýþf-‘¬¨ƒ® ÀSÅZ&f¢!ÍÈÈb)yx˜"ÖæŸ›rYx­Y+ÆÒUl£÷g ¾|;c¿Èï~Ü«y—¦l#Û:*É«[,S¯^…͹OŶAÖ˜ŸŸrš41¼ËKDmz]ç?<]õäöZŽ£vëÀ#bòÏEÌ…íõíšföοX˜¬¬&ªßÌŒ±ð}5)2–àârÄ[øžnº¦£«™Ùùš¿x>*çŒ.ª52{–üÖW!øÖç:.å4byždy´Ò4ƒo&È5·×T˜Ën|ÍðSË ~{>.´éu],'­ž.Ui6Mu´ß¹ 0ÊØ1‡½’I MU•két‘w8LD&žÍVeUmV eÉtíaûÐ=Mi6.ðãA{é$U'4†aˆaˆˆ£'ò|iÒ>ZÃbÖ YrÇ©úíAÎÀ«bµ®(µšd0ˆÚõºnÝúÀH²†þøðaɇSуÂóU¾zBéðËfR"ë;™ÖdÞj1Ê2N>ôë ˜ôYQ%’òÉŠsñÍ´1—'—žùÇ[ñòH}°LN ñ“ŠvGPiʬÙjbY‹ÅÔlõ$ý^×üÓxº±\*)Î? Ì×kêÕ–59&|Þñq·µ™ÞO×-]ãܾñzv­FDDRþ`#ÏZ|sóSÄÎv©qGá!cðδӼL;‚Zé411¿ü6¤‰ùã}ˆÚ÷ºN!xº¤ÜávnЕxÒtÓwÎy¹à’²©ô^¼TmŽÔañáÅ8ÜN±¿<ÒΘÜ3 !>È8ÂËo#Röp7q>"7R³ŽpØ’ÝÝ‘ˆ ·‰H­¥v×S7Ê÷zÐùÀÓeöÎE'äÔîqÍ3;;¡¤v‹¸—à!ɲÌòs1¢sÏ}˜¬®}Ï8‚þFüËvfDF³#Âæt(ç—7ðžÙEŸx¸y$þ˜:ß[‚oý®“óÜhœŽµ¸œF“éå_Á‹ß+ö“µ}V'¸v"þZ\·×¥º8ƒüàébÍv§³Y`H2µ>ÀƒR…²ñíåTM3{ýn¹’nÏóZ£ä¡¿Œcvƒ¼|Ê\:Ú,Â/y IDAT*ŠFb4MU5•FhX¯~Œ·>/þ´%[jÕ êÐíuÝ@þðtÕëÿYq.¾™6¦óòäÒ3_ãx+^©³–Ééq!~R¹qÄ2õòÇ÷ïß¾Yž÷ÛZ£|¥)³f«‰e-SSnµëu]À †ˆR/—JŠÔå!aE¼(u¿âOÙS^uWmp5žÞš‡›nœ|ÒÔ#XηôaÖ¥Ö²Û‡ô^°,«ic´9§ÕU–e‰¤üÁFžµøææ§‰íÒˆÝabðδӼL«Xõdc5ÉÃY¼³‹Qéï¤DZé411¿ü6¤‰ùã}ˆnéuBþCDÊnçz(u¯âOÙS^u÷ëlµ08m3%³ý1Ãðïìâ,ŒÄYǽ#‘&‹ÅrÓí²·) 2/¾£ÑØhHÄ{fý£ÍýŠ-0v¾·oü®‘¹ÉârMÁ—­¬¬¼‹8Xﳕ×!‹ibniÒv9‰Fí[£Ûëºü†gs:mF†ˆˆ5Û[Ÿ{ v¾ ûUIwÊkQ¿æù»ƒº†°žýúŠïlfç=¤ÇÝ£/éz°ž|¿õXÏ~5óÎÊëP…²0æÚ ,Ë[ý~·\DÖ‰èŒßÎ3DœÙí´ÖëwÜ" ·+‹VߤÃÀqfOp‚)j$—Ž6wÎ…b4MU5õ–ñöЩÆW?^ørTV³;×NĦÆ9¼^§‘eXƒÝ7n„vTÒïu]`ÌfóÕ/+++?~ì¡5=b†´‹§W_}î1Øù‚îW%Ý)¬EýšçïÞ¾n‡§žýúŠïlæíÅû¸ {ô%]Ö“ï×¢ëÙ¯fÞYy¢_†[¬e" yìF’Åóäa,)(ÄXýóóS.3ϨMñ<Õ BG\³–|?N÷(™íÅJdp†ç"¾±kï¸ÄXü‹ÏBc\3Û:,ŽÞUb†À‹?mÉOE"Æê›N¹mVi…Dì(_o·=ëõº ºéÀOAŽçÜ …NNNúÙ&€˜<Ó‘I›R®hîp냤‘É3=Ó· ý*xׂ:ŸÒvû”Ö¢þÍó÷#¤òÅw4³ÇֿΠ[ü>ÂïXzßуï°ò-? ·4¹V̦ÎNOÏ’™‚ÐhMÕ¬ÒɳÓÓÓ³Ôà}wªºß¦ýz•ˆˆ8ÇälÈÅTË¢ÒyñÛƒ×çß㔫ÏN®9+Ö‰ˆT©œK'ÏÎ’™‚м9;¹šO%Ï’éR½ímÄýZ!]|S…ìiñâüT³ÚêJ§ÉT¶$Þv/‡n¯kÑM~ âú%<Îæöz]†x«§õADðñÌ}ªÄX\^¯ÇÊ÷±íWéÎ)ëñõáú%<†3yM–šêåADðÑ[`¸Õm•ˆˆˆ3˜xFn4­_mW:®ÒSÖ÷Áêäú%äÃ-fä¸~ :…ü:…ç/ÀàÝ¡é M) äššÚ•²ÐÐDA[°Ã-fxþŒÞ>î÷»­,ñ¶‰ÖDÁÇÔÅZ&¢/Þ¼ûð÷þ1°ßxQµeêÕ_+ÿ˜s·- aÍãÑoÞÿãÞþ±°±Ddö.¾y÷þígñáu£‡ŒEÞ­¬üuéý¬£5 k ,¾z÷áÃÛ—³ã¦‹r·õºàþi<–7™ Ô¨K*g2¨Q— ADð±[n·LÁ—¸ Ûû©šföο˜¬n­&.^lð-½ž²¨†òᧃâv͇)¸¼ìÈmdëŒ-´´dM­nW|<ã6„à[ïù—ÝœF,Ï“,·}ÄPú©‡ŒEÞÍ67×NÅ1ž…÷~ac7ÃO-/Pl5.ÜÚë:ºz”S.x,TYºxÑÒlh¤jDDêåg­ÇàÕÌï\PçS^êNù`-ê×<wðªÎ#]ùοâ;›ÙcëWgÐ-~¿ áw,½ÇïèÁŠw\yì˜Ã^É|šQ-.NO:LT•ˆˆu†B–ÜQÊ:omS:ÄŽ9ì•ì÷šLD•øÆ¿ˆˆL¤1 C CDÄ=3 “jb3^¡¢ÃÂxU¬Ö…­I§è¶^×é¢{«9@?Y§þøðaÉÇYCŸ{ v¾ ûUIwÊkQ¿æù»ƒúëvøêÙ¯¯øÎfvÞCz\Ð=ú’þ—õP=ù~-걞ýjæ•×ÁóU¾:5Q:ü²™l ã,“ÓãBü¤r¯wà ¼}9çµ0DR>Yq.¾™6¦óòäÒ3_ãxk¤’‡6=Ä2õòÇ÷ïß¾Yž÷ÛZ£|¥)³f«‰e-SSnÝÒë:…ó0D”z¹TR$ˆH/>÷ì|A÷«’î”Ö¢~Íówõ×íðÕ³__ñÍ켇ô¸ {ô%ý/ë¡zòýZÔc=ûÕÌ;+¯çÆk‡5õbkðδӼLv¡s ±»¶ù}õ€ ={ñ–¶2Rþ`#ÏZ|sóSÄÎv©1èJvG¯‡TO6V“ 1œÅ;»õ—þNJ¤•NóËoCš˜?Þˆ¨]¯ëîx87†[ÆÀË7¶“O¥ëS°ŽÙ7sÊî·cA3^üiKâþ‡ž/ÿtœ}Ú-hDdšúãµ)ñ)VbLî™…ŸNœ;Â!''ewçò3 w÷CpùOëY›Ž£Ûë.áýq0bLÞÙçÏgÜ]> Âìk•º_ñ§ì)¯º«¶Ö\ópƒ,Ë,Ï]vÏ}XÉârMÁ—­¬¬¼‹8Xﳕ×!Ë@«9ÚdùfZ iñžÙEãhs¿b Œï­Å›¿‹i3ƒ¡£ÛCLsK“¶ËI4jßÝ^× \¿C„39ÍB—»pÖlo•’îUü){Ê«îªíƒu¿>‡*”…ˆ?h/§jšÙëwË•tƒªñÕñÖßqþ¡ÔÊy5â ØÊi‘ Œ›ËgU’գ͢¢hd!FÓTUSooÝÂŽs¯×™Ë2gó[…\µMqÝ^× ä0Dj'ëÿ<%­Ëûk‰õž¦Ý«øSö”Wݶ¶OoÍÃMõÔÁ‘9:ÿ:d$Y¹UwÕöA7YCòðÄ©b.¶™‹µùk3µù©ûyš<Ó¿vïÛƒugøj'ÐyðÎ1ñrÅD¢Ð¸Ç<õ7Ãkóì~ܠйØwý•¬‰éoéÛ‹÷¸–î³>;v­‡hµÌÁ÷LG¥nïuwÂý0Dx«ÇëuYî{¹ÇâOgs·ÖØ\uWmx|t»÷íÁë;΃?0—×ë±ò÷›§¾kó¬×Ò}ÖçpÃó—`ˆ0œÑÈk²Ô¼ßá‹?AWkL}z«½å†[ºÝûöàõ@çÁk8ƒ‰gäFCÑî1Ï6›áyö}u¥Çµt¯õ90xÿ4ŒMiH=ìA{,þýXcOoÕ¡·À#¦Û½ï^ûkçÁk”æeô>óÔ÷cžƒÕãZº×új¸~ :…ü:…üv,N¹»{ÎSft‡¢ÑàKF÷TëÀípÿ<"¬Õí÷šéÓb¯û{"xû¸ß߬%’Šm¢õ¡¢ºNO k™˜‰†<6##‹¥äáaJPh,òn9À_>ÚWÉn}Ž•[ËÇÁ2õêUØœÛùtP$³wqiÚÁ6r±­£’|wÙát½Eíº k ÌÏO9Mš˜?Þ‹å%"ý^×äðˆ(¹ƒµ25냮ÇȨ'·×rÔPHMm¯å©1j÷ðŒ>“.b.l¯o×4³wþÅÂde5Q%"1±¾v*ºvŠÁ7äG—Ìž€%¿õU¾õ¹ŽK9Xž'Y­#(7ZDDºÝ†qM…¹ìÆ× ?µ¼à·çãBû^×)œ«€GDS$Q”d¼Ž«SªÒl4šªFÚåxPì˜Ã^É$…¦ªÊµtºÈ;¦A×éqb¡%wœº8À¤‘Æ0 1 côDž/MÚGkXüS‹Úá ¼*VëŠR«Iƒ¨½çž.kèWSÍÃÏ›•À¯BÍÃÏ›é‘=0’xÞ ÊW¯7(~)©*‘‘È2õòä¦)²XNÅÒÕÑ:0>|,“ÓãBü[ŰØú]Ê'+‹‹oÚûBµón£Û뺀üàé2yÂ!·œ=:+ãú%€QÅ\l3»Ój™ƒï™ûÏÓä™nmÚug8ìVZÛøo êïC8ÇdÄˉB£óâw̳7ÍÔæ§›MLï|Kß^êÁÖgo-ê¢Ûèõº.ŒÖƒn Ÿ8›ÛëuYFè¬=tàjÓæ­ž«mü·õ1—×ë±ò]ÂýÒƒ­ÏQÁ˜Íæ«_VVV>~ü8ÀÚÀCb8£‘×d©‰Óæ†[W›¶zmÿ­Á6ûÎ`â¹ÑP´Î‹á~éÁÖç0ÐíŸ?qýÀÓ¥) iHþe@ÿüØ´¯mã¿7¨Oi^þ¹óâC¸_z°õ9*?ÅÂá.}6‘èpÊÁÖ³s£Ò¢ÇWOx¸ÿ:…ü:…ë—†µLÌDC›‘‘ÅRòð0%(D¬y|f6CDÄòüÈŠ ¾™ ×hÜd\Sa.ûýë×ݲ}Úo'¢6½® #·¦ vÌa¯d’BSUåZ:]äS+˜M×dUmVâÿÚÎŽìññ¡`°Z•|V”Uµ)d ‡ÃFi ÃÃ1FOäùÒ¤}´†Å¬3²äŽSõÛƒœWÅj]Qj5É`0µéuÝ@> 0 ôn¯ëò€QÅ\l3û5øýç`çLžé[ÎÕá°[É••à“/WL$ «)¯OpGñ{Q«é½´îŸ41½óMÿO¿>ï¡™ÚüÔYð:Ý^×¹ÑzÐ-ܳ¹½^—…!Þêi}xðÆâòz=Vþú”wV~°°–†Î?<*âÙÖjF“eR“[«Y­u;ö`ƒ?ȹ½Õ#7®Oygåkki¸!xT4¥!µ.†¹ú0èà5Jó2ªéMpWñÄZjÈ€’÷ø’É^ôÿƒmƒÿóþ`ðâg›Í&Dôïÿþïÿõ_ÿÕúÙûÒuõØÌA®~¶[ºîšïËÒÒ㚕ңî!Â*àþèòè®_Ö21 ylFFKÉÃÔ ƒ/ßÎØ¯M“ßý¸WX Ö<>3·Y,ÅRUÕì]\šv°\lë¨4R7/_g™zõ*lÎí|:(EÞ-øË—•+٭ϱ2±ÖÀüü”Ó¤‰ùã½X^"ÒíuÝ,ùÀ ˜üssa{}»¦™½ó/&+«‰Zfçkþâyžœ3º¨Ö[ÉQgòÏÍsÛß¶ëŒ-´´ÏmW<K~ë«|ës—r±5¦¶ÏZ7Bk7O2Üp[¯ëò¸¿nG*Ý]î×™‡n—Þ¯%öE_–Þ—5é!`°K×5„U‚ލBYˆøƒörª¦™½~·\I_ãŒcvƒìæ©8 O­œW#¾€­œ¹±À¸¹|V%Y=Ú,*ŠFb4MU5õ–ñöЩÆW?Æ[ Ú’ŸŠÄŽs¯×™Ë2gó[…\»ÎsK¯ë ò€A©§ŽÌÑù×!#ÉâùéÞ©pñÆn³ŠµÚhrRúàÈ2»ø&Ìk’Ýåd"RZo<¨ÒõgÏßùš¹X|´W¶Z89rEg_½7°JC(Ä2m“‚¶½®CÈFs±Í\ì—¸VØÿtßwÆ™<Ó!·œ=:«;Ãa·’=:++úÁ8ÇdÄˉB£óâì‘*æbßuV2ibzç[º_ëóá›ÙLm~ºlJ-sð=ÓQ©v½®C£õ [¸gs{½. C¼ÕÓúÐ.øcqy½+ßUñ ÖifçpþàQ϶V3š,“šÜZÍj­Û‡uƒ?ȹ½Õ#7º*þ`ÁÁz"Íìò€GESRëb˜«m‚×(ÍËhçÅ,8XO¤™CþtÖñqÿåõýïÿýÿz½?{^ÐÿÈfÛM/ÂÕÏÞuÞL,ý§¥tù_×áw4S·òCX%€Îáþèòè®_CàÅŸöÔ§ýû>«õGôýL}c#)ݶ°åwÓÒÎçý¢JDœwé½·ôu3Õ$""KèÕ Ãñ—ÃsÆäžžž°›¥V:‰Å25µçÊé㡹¨ßaÔꥳX,Ums€1øòíŒýZ ¿ûqOÐ ö¾;¬EÞ-xíâ•Jvës¬LÄÚüs³S. ¯5k¥Ã-m IDAT³ÃXºÚ‡U×[•8{p~vÒafUIÈÆâÅî^§_£ÞgÃs¹øªhtQñœˆ”RQˆºœl*§‘Áé4Ÿ•‰Œþ¹Ykig}§FÖàâó¨¯ô=Õ‡1ç¯XOdÁ-îmìWYWôùÂTå[\ÿÉÍÌÎ×üÅN9gt9P­µ >X•ˆˆÄÄúÚ©x=bðÍÌ ßW“"c ..G¼…ïéæ`«dDCLúï/™:gŸ~¾.>(õüž<äÃ…1y"s3ãv^“*éÓr“ˆ ®é…ˆÏn$©’>ÚOœ·¦&OdvzbÌH IåÔämse].s)~bŽºìt.Q³T§&WÒˆs:må|Y#Öá2[BS#Ò‰Ã]¾š€÷Ìþ1ëVÒ{‰r?^Õìðxjé/å†B”?Ë…=Ö¸~ )ÍÆÅAwk(h/%öêD¤|¨*é3øól¶*«DÕBYò›ÍD½æ=V‰ÄR¢’UÔJIÐÂfQÏÙ ò€¡ÂMDælå­µí댼X•¿–ÉšuVöÖ¶kìøìËÙ`q5.qÞȬ]Øþ¶]ÕÌþÅ?n}´ãpÙ˹ý’YštYH‰H*•š‹N•Æát¥…ÈÈ4Y¹Èärêäj‹ÝÄÈnf©÷WBñÚØÔ¢¯‘8n4Œv#Ñí#cÖ 0éÍ¢zgð!ªd™zùaRÓY,'béªJBb}çrVV‹Q®öš<ô^¥z!‘"""†·;lŠí½JÈ`HüÛ¿ýÛ «CmD{ÈOÕþïÿþïAÕäÊV ~a±ÚŸÐT‰Šùs6d5R¹Q>ZÛdE%*UĨÝx9e³dH¬ÕoAÛ]cÂù¡&×ÏÕ—éD”ˆ¨Z*±Q§™ƒÓ)–Nd"¢Ëk‚¼ÏÞEÄ0ÒÙßk‰*‰éý†U)úóº–e5McŒ6‡ƒã´ºÊ²w=Ö‡sûÆëÙµÚÝÁß_¥êÉÆj’!"†³xg£þÒßI‰ˆX“cÂçw[›éýtï§DúP%â|Kf]j-{°}XéÇ™#ä0,0ŽÛb¹^ç!I†°Jð †a´ËÛ`5Mc†ˆ8{`>ê³²ªJ¼‰Îò6—Ëìñ½ÿÇ1 SvñÉ´LDB©dœt §ZÚkÝy}uÿíΧ,9"o£W kÅl_ÆéDD¤ª*Ã0J~÷sžˆ÷3ªzGC‡Û)ãÒÝÁ¨’*7¤‹÷³H©|5hµIœ3òrÁ%eSé½x©ÚìÇmç½V‰ˆHÉlÌ0¼Å;»8O›»ùžOA €!‚Ñ ÜnäzÈU…‡'ùÂ*Á/4M#æâ4Àe†`ôΔķoEE3^üyñà!®OyÛ Ø!+Ãeϼ{H3ð²ÔQ)›Çc/¶ëeñºÍ\± @Ó´*Š<\?K`ŽÌíõ=N"N»™ç1ÔÂñB!„Ð]"‡§æ‡»?[©Ë^*$w¬±Ég# \|«B!sEŸ¿ wÙÄÆŽgzvVV³…tÆ5ùðy •g*¾Q½$(‡ÓÒíOȆrغoq•ªÕvÌ&VëGq…ÜVÂ=1®Ø>~â¶Ã7‰•/z΢or)¹eŽEžÌ±*_ÍÄ÷G6ÇKŒÜäONÕ!¬s»Õ:={G3ð6²¤”÷’ŽHôÉK†”E®œØÎ‹,¤gfþóSìƒø$Åõ²¥ô®sbêy€&”N»¶¿} ;ļ? „BÝ™ÎÁÚÂÁÙ@•/&V‹‰SaRuwõýîÑ_õ¥îÆÞÚû£W$½Õ˜"6¾/|þ³½¿üîDVOç@Ê»ëå]8K*m/–zmË¥ujé¥ôù„ʉçºÝjyëûþo%Kj+¿½š?IÌ~\èùÝÛϨ­\|97à]ô ;B!„BÁñB!„B¨_8~@!„Bõ Ÿ@AVê÷m»r­·¾ý¯N§nàþá_t:ÿ{í„4õ¿™]Çÿ÷OýÖJHÿYêßÏ ðÃþð÷~ï÷ºÿÕ‹©Y>5]v3Ïdþf !„ú‡÷B!„BýÂñB!„B¨_·<i(ü⑟V?Œ¾þ6Q -¾X4è0Ñj§UÍì$rÍÓï¶E^Žó++Y½O“Ó¶ÑXÄgcU¾šI$š²^Bš4S'îñhÈme ©]Í$¶šzÕ1B!„B_°Ûþ¡^^Ú?õé Æ;>ΖW³m˜zö”Ws½ÅÏ#]áIg;¾²Õ$‘“ÁƇTS;!Mš©|±q¶¸ñaƒ',£33!wq£0௠"„B!ôå¹ìøa(ü""®.gx8q[`(ü"ÒÙʘÆÃN¶SÝÝŒ.õilC× …¦¤4ËuÁg4t ®ptlxˆQP(Eÿk6—«•{We€R¦šr™SÍ–nlÚ}uʹøJº®ê¥.Ù¬ÂjK€FjåÍe¶!„B¡¯× î?˜<bsõmš}t·«º7g_¨ª,µëÙd"×T€K/oeÇlb¥f(O8jå6>l4U£oê±Gou@XEu(8åÓ»¢ÈZY€–fBŒÉj °I¨Ë ™:M3*i™ ì¬Ú.§·…öÀ¾ŒŽB¡o˜$IƒAô¦e#tg C§sñ, AÚ…½B[hÕ8uÌȈšÑš{+‹YÊä‰NE|ÕYHƒmØëq»æNn+Ç€ÉléTRœ¤´[|‡H’TU•`-6E©¼B’d„ ÛÚÍr½,ŸXÅÙÔYH›U][]ܦ†F§§ÃžêzþSªúÊýð‡?¼â’ÿú__-‰/¸D÷ÐÕKÈÍë•·¾ËçÅ«Ôzî(KèF …p8¼¿¿ïÏE÷ŠÉdŠÅbÅbñ˜{þAýüƒ ½XŠ$ ‡Ï¥fÀl({xvÒ!rñTµÙ鎂PÕ~®ù+ŠB„\úô¶@ûEQõ©U)œœÞ¤™º j-ДTj¥öS«òÕþwB_¿«uèºï—ÙŸ\?v‰¾D÷sÈ×;Wý—Ï>Wxý5ÜI–ÐMK§Ó¡Phzzša˜»Î BŸI’T,www/Œyùñƒ GÃÍaAŠn¿ß0‹°™æÑšHgÀ'¦ÞmäO= ¬^”ÐIe)X–EA'¡.ÊätZäF¹.(º©Kg>•ÔßH¡oÌUºõ—¿ÿ€¡/×}ø]œŸK^ìïwµ×YöÖ³„n¢(»»»ýôÒºŸ.;~ÁètZò’j½ßˆ2šY’ïP—Mn´'/tTÊæñØ‹íºDY¼n3WlÐ4­ŠâÙ· 't^½R‰Fl•L“²†‰ò§©•˜ü“Ó!3To6ò2褮4jͰ×o©çÚÔßm¬gšgSEÁå;÷—½ÿ€Ý /Ýýþõ““+\ìïåW[ê–³„Bý¸ìøA̧2ÎɇÏýí\"[öޝÇ>6ûb‚RøZ6žhè-­”÷’ŽHôÉK†”E®œØÎ‹Ý‡ <3óŸŸ.}Zˆ—;…tÆ5ùðy •g*¾Qý,É¥ä–9y2Ǫ|5ßoê%¾)H¬üù‘ ÍÔ…ÜvÒz¢U+l%ŠøòV„B!„®0Inì­½ß;üãmé(XÈmt_êÚ›ÚÊo¯æO‡‰Ù og=P¥×Z;µôÆRú„@*m/–Nü­“ºÒ.&V‹‰^©"„B!ôÍ!ï:!„B¡/Æ@Þ¿ÔH¾[ÄzB!„B÷Þ@!„Bõk`ß@}¹2}|l²ëïX­ú§³Vëá¯Ð¯éA©ûq¥A}b©ÿͼ‰Ôÿv¥?øÁþôOÿ´û_8ÞŸ§]s'kºæž¿Û]wk4Q·°™÷0K!„÷B!„BýÂñB!„B¨_8~@!„Bõ Ç!„B¡~áø!„B!Ô¯SãI’ Ã]e!„B!t¯ †Îé·ðzk¡P‡Ãûûûøê7„Ð-ûÁ~p×Y¸U‡ÛûöíçãÛÛóý»‡{æf !ôu3™L±X¬X,ž <5~H§Ó¡Phzzša˜ÛÍBèN}üx×9¸ðÝö_ã-Ä·®ïÛÙóý»‡ûä YšŸŸ¿Œ „¾!’$‹ÅÝÝÝ“§ÆŠ¢ìîúêýà~ôbáÛ¸¼zjïÁý‡®oaÏ÷ïî«eiaaaÐA!üþ4Bèž¹‡×}èÌÖÝ“û]_÷žïß=Ü÷0K¡o¾ !„B!Ô/? „B!„ú…ã„B!„P¿pü€B!„êŽB!„BýÂ÷/!„à×8^¾|ùöíÛîo?ÝÏVÞèÇ+/»™÷0K7¡ŸÍ¼‡»!„Ð]Áû!„B¡~áø!„B!Ô¯HËÈÌãÇ=žò™ˆÁ¬¡Á³E^>Žþ2ú½z99|Á,>6ðèuÌyÓ9CèÛ3~ñdĨñ¦à“¹ðЭçç ]/þãÿé7çþèG¿óþ»Ÿct#Ã/ÿú¯þ“ßùý?ú“?üÝßþÿÙ+÷¥×y#;¹¿JUÏÀ³¤[{ŸÍ§uüùwß}÷ÝüüÓ  zÂõöÒ97–Ot³t+Àž%ät7æ*lc3óuV?X\nqïãÚêF‘ñX³N„nšPN%™št×ù@! ÇÿÚ¯ýÿñ¤ögÿüŸýI)ü³ÿíóïyubú~îïýúßü+ñ»ÿäýnÒñþ£¿û×_è4çý¯s¾”Jõl>¹ÝÅÿøÇk“‘4o"õkº±|¢»r³çm4®ßûÐð·‘^á(ƒÕ9ì0Éœ àŒ½öðIÅdòÛóØèPmk%Í©`p…£cÃVFjÙD¶!éÆDhPº¥nˆQP(% 0~ñÈÏ@+õ¡Ü<ªv)k`":b7’R»–ßKe*¼rb5”#ú4J$–¶«ò1B}"XWt*:Ìv*©Oñ|Ì£OŸŒšÍû •ú°œá0¸Â±q·•V…Fng{¯Þ ¿ˆt¶2¦ñ°“íTw7ãþŽ7¦ÆŸù‡ü+¯þßÿñ§þîŸ(Ì_ø•ÿûü`ñWÿÝÿ¾ô ¿øPýó¿ÿ+ÿûÿÓ$R“?ûëÿÖãGðå5wþÅŸzf€wÿâïÿÓÙ06¾ûÅ—óÁ ÞµÎÇ$žk¬óG¬æNÖh ÿÃç–â–ꋸRegc«(h·ÚV­Jõä1’jéOñ\K`c“a¯•¡‘Kn¥kÐ;îšYº‚µ·vå´š íÔiûèdØkfhš”‘híøT0÷»ë.‘:ºwŽ+Àj:ϵT¢ÕØÙq5ºÿÀ¸'žÍÍFý&.϶­!±[µŒˆ½í¸&ÊŽY¹­Å7o?î)‰ U7&BƒByÂQ+·õáÍ›ÅÍ\ûpdÚH¾[XXX=}ÁÆà Õƒµ÷ï>l¤ë¬ÝJüGÒ6±W·“Uù¢˜¡~=~céÓòÒVÝ2t­½¥……¥tKóñSA€~wÝ%RG÷Ñ0UâËËÛuóá!Ö,!šÝ˜W5˜û”cØ^‹/&ª§F·jM‘r«VíÈÃ2Á&³E¬¦8@.k#8í˜ ŠÉléTRœ¤´[\!šehà[ÕƒDõÔ?XG#öjb¥&_ókðòåË»ÎÂm¸‡›y³¤ipù éLàËuí^°Él+)®£TJ5rÔÌB]€va¯Ð–Z5NÓ_üÚÛßûý`|ôÓ?a®þñþ\ bl¤?©’1±Ìº=”J%í¥3þÇ¿{ø7~û÷îýû’ xp yí‘ë{š t@© m€«7ª{Õñ­v;ŸÎ5%©Æ)v Ô“Kk„,+ÕF;beõ—ÕÍÒeœ«½oM¿Í„Ä òáuS‚¶ZMàz»î+o¤¾B!µ_i´Ëu5d`ÍhšÝ˜Ëž¤ydr¤“Ø* &ë§Æ$IŽ ÓôÅ㊅……ãßIRޱ‡³£ TSk{u…‚0øfžº )™ç.)ÌÏÏ_˜„Î;Q> ‚PÕ¾&Ä ¹DÊ8™1(|½œÙÝ-ŽóÉቇD+½xÜþèÆ„/³Ðž<ïä·ïnæ=Ì’¦+äóäIq²°Ÿ›ªª„n‹pò,VU•<Žy|Þ©pjñ{~.,,¤÷8xð»â§þ Sîw´(Óí¦ TØüW¿ú3ÿ ý Ú;\€² ³|Eèn°²õÛë?ø£1UÞãþÍ_ÿý±l6«³×:Ϻ°Ö?\òÙ͓Ǩ›E«"â5“Š´j=í•%½C|º€¯½£Ô{5g–5úôù˜, õäÎç=r]÷µ5R_ þBšÝ˜Ëõ¨ ÃÓ!±zv„ÑOa$©\.'“IEù| öÔ8! Æ••AÐé¥'åÖ¿Ï]˜PU•?X_Þ?9Iõ¢Ç­ÏÔè›5??ßga8]>UPá¨c¡ß?¹™K¬åm²b“Qo}5'(Å­µNh*äÊo•åž1»¾ÜBû¥\ÿ¾¦{¸™÷0Kš®–Ïã3B¿­"B9n UPOÏÝQÕ“g±vSªœ ¼ç§áþÞ>€ú~ú;6ý/~´¢@w$Ë2€ÿñc¤o¹ @=ü[¿õ¿ýR˜ÉÿÎùþÆ¢0ôè¯þµ¿<+½ù?~sGz1(®¯5cê®S{'Ÿk oë÷Ëé*²Êø>?1ëâ²Y:ˆÏ°óµ÷ \˜zïfâ3Ö¶WVÞn^œ=ý]wÞ×ÚH}Ñ®:rÓìÆ\æ„¥†Ã1«ÊSÏ=)ç3'þñÂÂ`0&&&B¡Ðîîîqà©ñƒÛí^__¿pðp |»ÅºÆìf$Dæâü<)ºaÏ]NK^R†ü# Úº1Mþ¨O)æ*MQE N\ü•ÛK”ŸL†µíªÜ3æìK¹þ}M÷p3ïa–4Ý@>)ƒ‘!x‰q¸íJ«pÔ¿éír ±m¢Tžï¨|»e𸭹L‹´¹lj«x“2šY’ïP—Mn¾˜ÉKÙ½´?ùÃ?DÇó¶J«k9ø…¿òËÿiíÃÐ~ñ·ð?ÿî6„¾û‰°\.GwYÑûê~þ/ɤV˜øËÅ%'~ë×µcê®S{'Ÿk oâ‘[‚ (Š"T’òÚ i0R¤ +êMeéLí}kún&H‚`X–$xõÄõhMú»îê©£/€f7æ2g‡\N§ëVwãÓF¦¥¨Ê¥ÎA¶¶¶?~¬;~`Y¶ÝÖï\ €TH&­±s!š…jf»…¯@7®SHg\“ŸZÙx¦â€ï_x6?ÍÝÅ•¬ÐášÄèøÌ˜‰!:­òn¢pòFŸÒH'*ObãöåDMî!Ô—vq¯66þøå¥ðõƒøvãèäÒÞ®kbú™Ÿë»7ò‚THîXc“ÏF¹øÖÑYÚ>6ûb‚RøZ6žhè$s?Éé½,°!“²ü£?èÎ(R×þùßûÇÁÿúç~îo>¬ný¿ñ_ýÆï>©PÙÙȶGÌ{ÿòGo»m¦ðgÿôù‘ï—òg~ù—jéÅÿóø—µcê®S{'_§Ö¬Tµ" …tÎ}þ*Üid;žéÙXYÍ ƒÏÒ‘Sµ·f>­á¹Y÷i‚§ó¡Ã·?iöŸªf3¡•:_Øo?~úºÛ6©²PÏÄ?ík^[ÕÞu€F>±‘úBiwN´º1—:;”Vf3Î>qlæ¯RA8óha4~þvÅ¥æ‡ÜÎͯ[KÝ÷°|ÞÃÔºÏzv …_DÄUí.ž†_=ÍC|·“«¥Nº&_zkï6ò2i}ô€N¾OÞàpÏŽ»r×{ž àì ®+÷¬õùC„B!t9 W*ŽŒ?{1ÚíÙ©—ÙnÞu¦ÐW©¿WÉôÇ!„¾Dä»å»ÎB×&–Ëw „.g@ßC!„B}®øüB·Ë'ú:Üí¼mô5Ábƒºgj¼ÿ€B!„êŽB!„BýºÜóÓ”wæeÄÝOZªª 6Þ&t?¡n >yÀì\ô2ëøóG~‚O/-íßè÷'¾q´54ó0ÐŽ¿]€Ã× ÓGÏãË…õ·‰ºö’ýÇÂà‹Ž [ „ܪî%ù£WýŠ;âE l‘—}”ª‚* \1µ,ß܇ /¡¿BûÅ0¸#!·…%UYhä’[{5I'hÛh,â³±*_Í$MÀy>.gxÒ:6;eØ_‰—îã[ÄI‹/ :L´ÚiU3;‰\SÑ 4ºÇ£!·•%¤v5“Ø>hê½2ûŽK²ÆáФun=S3c6R,&Ö“Ui™AßÚŒ…ýv#%ñµâ~j¯Ôî–ùþkÅ»«?OÃC¥ø·ÊwÒ»°E^Žó+:ß¾¸¡_<ðÒdzVzi%Ã×uŒ*4òÉDºvúóŠŒïÑËÞûDMý¼ëTEâë;[ûÛüΞ†kmD^›Kk¹£¦Ê|2EÄ—÷n«wybÊB#ŸÜJUo®Õ¼ÃËåÆr~ãÇyèýÖíËãv¼ CáѬi1zcÑ€lrgª´vz¹ÏZµÏ˜¬/5W7—7[`L=ˆx««Ýs\(§¢R?Ù›i¥––3<Á8³#åòŽÞ˜õ¤êÄýDU‘$Y5{Cn!½´^ê€10ó4è:¨å%Í@Òžt¶ã+[MÒy0l|Hxƒ íŒL:k[ïåà€ñ޳åÕÅl›0¦…=åÕ\G3Ðà‹³Å\߸җ¦îJ÷4<òô.ê;ï~¼s¶cfðÅ"Æòú‡ ž´g¦Æ›‹ñò‰QaØc(¥j‡ã­£]G¼#þòò_ʽÖa€£²Ë2ŒØ¼ÝË“‡û“dáGÁêÛäר¹Ìû[ ƒ+w[iUhäv¶÷ê0>}2jx4ï8úp#ã› {­,\r+]ëY7Ñ®èã¨SÎÅWÒuüòúõtš•Ân¦Ür̸Ì7™i³qùu®£p¹tš 8ñ=ÅVêC¹yö «j­I{YàÚ=Æÿ𹥸¥ú"n£TÙÙØ* šåó2…ö Áø¦ŸY‰Ã¿ärüý§’,K…‘edY‘;’š6—«•{We€R¦šr™SÍÖáÊ Þ‰ˆ1·¾V¿ãkRº ]+š’Ð,ןÑÐÑ ”‡lÖFaµ%@#µòF•w\’{Ž © @°®ñÉ%½–ªãõBŒ _® Š|ý ¾’.Ñ”kÇ<Ùü|až²&¢#v#)µkù½T¦Âw çí4úZý¡ð‹Hg+c;ÙNuw3^àtòip…£cÃVFjÙD¶!Áqà ¢ PJö(­;ëÆC¶¡F~­)©õ\Q˜µY ü¹kö0ÅóÓ¡ÆñcF }—™×Ô÷‰‚ÈÚX LS¯#·Iš¡|›ì˜Ò©V8Òo¢¡.iö~5{,Zìdù”jéOñ\KÕï±ÜÎfdü@ ‡c–úú¡å®‘ IDATÒF‹´‡NŽÖßíÔ[{K {çn¬ØF£öF|i£Eº£³Ñ@e1¥ù‰öCŒÉj °I¸·—/…Ü,€uœ 7g_¨ª,µëÙdw‚‡ŽþbÒ4£Jòa•ê{ÐH¾[HÂPøEDk‚±ÛMífÏO¯_i³SkïRŽ©gÁacqŸ×*Ÿ—(´_ !—)L wOi>·_’@È~Ú›š{5„Ì¥ÖãeE'6° ŠêPpÊ+¦wE‘µ²-Òœ ª©ÕLûî=\zyóð'm6±R³£HÓŒJšG¦B;«¶ËéíDAg³î¶$ë-gÏM¡”mLM=s ¹´423=TÛYÏp8x@PêåZ$ô Bîkm©;¨ÿ¦üõ§Áª«ïK;äö;¬ÔÑøáz¾yìÙüX÷g{oiIo¾Š^?Ääñ›«o†Ð죠£¸]U5óIyÂ1+·¾¸Þ¤\±Ù‰`cq—ÊŽZ¹MÕè›zì9Nìκ14Í(Ÿk0Yb˜“Ý=³ÇC?ï‘ûQàçݯ>Xß[¤‚²¤Ù`µ•„ÃÛw·Eº½ßó=­&¯—ú´ö.a}tæãeý3îv6s ã“Ù"VR\G¨”j䨙…º¨³ž\Z#dY¨6Ú+Û{½íÜÖ¦h–ëå»/¸_§æÞÊb–‚2y¢S_õ£Î”Íþc^ÿ¦<Ó/"v !óq)­7óÂzúzRmg77ú¾ºz¥^,´e®ÞT(tÊgÿ…ö‹!—3¹öpРÔ2Ùî>g†#asåÓÇ-0û£± ·’âT­@’$UU%X‹ÍFQ*¯äá\(ó蔹½·\¼ï;‡4؆½·Ûiîä¶r¼N Ki³ªk«‹ÛÔÐèôtØS]×™¡q§%Y÷pœ§yn–¶WJ¤É›ŠéÍê}?xè~ó›Ë¢?ÏŽ‘­âþînŽÓi|/×”k šehà[ÕƒDõsðõý>ïëe¾]Ø+´e€VSÇŒ €¨™O“Ù"VSœ —‹µ‰ \Çd¶t*)NRÚ-þÄ`ýîº1D³+…“5Õq &µjÙÜáÈëžõÁúÞ"QÆd±t Æb1ŒØ<¬oy‹HÆá´*í¼Ôã”Ñ챜+`ÐΧsM @ªqŠÝÀèOɺÍÈø õè©%UUIB÷(SVÿDÄk&hè>w}DjU ƒêU¢óI'q ¥fÀlÖ+‘ýÇ<~ŒsóûØÂs‘^ŸKo¥»sYWôуàÆÅÏWÌÏÏ÷ø×ÓïAÖ?€Nùì·ÐöNñþXXXhe3•@Ì)ö Ý>1åv¶óñz[²¥à-ÅqZME!B.}z[ }„¢Í‹Moш¿¸vÀ«p/wÈÂÂ{xvÒ!rñTµÙé¶Þ”V  j-ДTj¥öS«¢3[´ð>Ùýqµ’zz½½¤è¨Zç&apŽOŽÒ¹tÞz4 ;ŸÒ5|]Dª™D5³ktŽÄb3ãÂûDUóÆÕ%›ò³„\"eÌŽ¾^ÎìînÞF£¯›yõó‚ ôòI„Á7óÔ­IÉ1õn#²‡L:5%ét'ZUU-"‡¯S’{屢Ç`ú‡£Ÿs“vE§¼íµ¤ä¬Å—¸ÀœÏ±W+Þß hè~ PUùJz¿ìšh¨Šp™¦ülLèvÆWHnæk¹A›ìØdÔ[_ÍuO¯[hô/t[­|ªªÊ¬/ѡjnæ-m‘&I’Hꨣ)ZêÕ}„Ýã Ë箪õÌ~ëé¨o¿–=Ú¶{Õë‹TQP­N¿ßæ rÐmì”>ן·³E‡W”>»DïW³€éÇ>ÆÁ-mæ@¾ÿÀ·[‡ÛJ“$ëpÙÔÖq;ÛzÈ1Ä2¬ÉÈAPE¨$3䵯`¤ÈÃ(“rzbâad˜D.ÑY•²yqñBÈo'yÏä˜ýžž‰4M«¢(õ¨4jM›×o¡IÒ`÷»õÆ=-ɺ‡£ŸsSª&×63œ ªª(ªráå*„ÀàŸy<á³i’¤Lîa»ÔhV‹ý7åçêOAŒv§…aÌÃcAça bòGÃ^›‰!U©{Ž mo£Ñ×Í6þèEŒV;­jj''èÊ¥ä–9y2Ǫ|5ß?ݯî”Ûö'±H}e«|_èHé™™ÿüÌbéÓBœÓ , ¹í¤):õ,D«WØJuw[’uGç¦ÜöÊ—süôƒÞN1‘›èB>™1Œ‡ŽiµÓ,ïoî=_Û_Sž4bŠùTÆ9ùð¹¿KdËÞèpMbt|fÌÄVy7Q8ªT®×èŸx~úð|·†5zš™çhûØì‹ JákÙx¢¡›O©LZcæB4! ÕÌvK€N!qM>|he㙊oô8O·Ò±E^>ôu{sÏæÇ7S8ØÞ5F§ŸÑªÐ(l%ç“£YØÑ®ÆÕÆþ~ëÙ¨o¿šåo+󚮹EAPD©)Hͦzâöím‘Î)£• ͦK³Çr;›IÆã?æççïãä„Ë'úZh–d,Þè °Ø È`¿juQÃÓÏ]Å÷ŸJ_ÍeÙ¯o‹î­3µÍ@æ/!„B¡ûŒv{†ª…ÊWÔÕþú¶è‹1˜ïÇ!„B}™ÉwËw‡[ å×ßæï:õõmÑï? „B!„ú…ㄺUšÖq;B¡/ŽB!„BýÂñB!„B¨_—}~Úy>vßqvò÷Ø"/Çù•îÛÓÑ3¸#!·…%UYhä’[{5½ßÓC#Ѱßn¢d¡QHn§kG¯U¦­¡™‡vüûíJ„ƒs,:6l5r«º—Hä^^lô?z<*î|ˆ¾rßyùÐG©ÝO¼SÛÉòõ‹‚-òâ—‚ @UUh¥—V2y27{õ%®u4o}‹nÜ}|¿0¾éaö†ÜBzi½Ôc`æiÐuPËk×äC£“5½¶X³r2ìZŽ—e£7 ØÉ&wá©ÅúbQsusy³æÀÔƒˆ·ºzÐýØœPN%D¥~2ÕVji9ÃŒ#<;1R.ïÔµ×Ù¿úλïœ=Ó ¾XÄX^ÿ°Á“ÖàÌÔxs1ÞrùM¥õ÷\`ÎëØ­U i$ _‡ú Nz;;ßV%Öê …Ç‡ëù·»øã] ¿ˆ85ÊàHWxÒÙŽ¯l5IGäÁd°ñ!ÕÔìqÆ;>ΖW³m˜zö”WsÚ^Ój";ùÍ÷¥Ã/SöÈ#³¥¹¬ÍÔ¯¹E½ÑÎȤ³¶õñøSÎ7Òj3Þñ%ê~ƒV?ó÷v‹¾Qƒ?PÖÀDtÄn$¥v-¿—ÊTx ®ptlØÊ(B-»“È6$8bAJÉçÃ}uʹøJºŽßI½²ÔQYV@–¹£ÛUfÌf¶qPhKÀÊbÀfr½Ó¬v3å–cÆeî™i³qùu®£p¹tš 8ñÕÞVêC¹y¶þU;ÕZ“ö²$ÀMtàÉ!ÛP#¿Ö”T€z®(ÌÚ,Е  ‚uOŽ(éµT¡¯i02|¹&( ðõƒøJz´»=šòSCá‘ÎVÆ4v²êîf¼ÀëTþ'cJµô§x®¥ÐöÑɰ×ÌÐ4) "ÑÚÿð© qý,›ËÕʽ«‹2@)S M¹Ì©fK3@£Ë¡ÓÀеB¡))Ír]ðÍŵšHUù7¬Õtür5S×Ý¢þvHÏô¼cn}­.Ü\«MÚGGMÅäy¢W_ârGón·è(ïÌ«¨ãè/¥°ñývU¯G @°®èTt˜íTÓñî)s·òüƒÁªkïß}ØH×Y»• <ᘕÛZ|óö㞘Z£VnëÛ7‹›¹ö‰­gLV͘­F| ãfÙOÛRpîÕË—¯g]ÕõDYï ‘Q±84‡ÝÄ04ÈÍr¡Úî£*§iF•äÃ#+Õö*4’ïV´¯ÜŒÝnj7{¤ýêhšQ>gI–†¡”mاž±¹’423íw×qð€úF(õrÍzñ;L4 öèŠè5åçÀäñû«oß­•Má ƒýÊßäõRÙµwïÖKÆñ “ƒoÌßI/½{ûfy¿Íg>^fð@XEu(8ó˜DQdYV'Îw9´créåÍ|÷B9m6±’ÔÑY¼wI:~"—¹ì7δR×ߢ¾vˆ>Òœ ª©xæ¨cvC­¶idÌÍ¥ö½;¿—<šwºE×!ç7Þ~*ŠB±ÔÐéQ€Ñ0UâËËÛuóá)sÇ4‰ h–¡oUÕnÉl«)NËÅÚĈ…®c2[:•'©íâ8µs[›¢Y®—/Sa þ1Ѱ¹òéã–@˜ýÑX[Iqš'°ZÝÛiLO¾x­Jb£P€ÒŠ¥ïèn­gúEÄ!d>.¥õî1šCO_AªíìæÆåní^>K§¥í•iòÆ&‚bzs£Úû^*BH„B—]$šNßùâš öø§Ae©G̤Ž."æ7—E0ž#[ÅýÝÝ§Óøê5åç ]Ø+´e€VSÇŒ €nÍÚΧsM @ªqŠÝÀ/Ȧî?´Õj‚üef¢“$©ª*ÁZl6ŠRy…$IÀnògºº1IƒmØëq»æNn+Çë,ÞåôºùÂÒUZ¸s©³º[Ô×Ñe2·÷–‹·„×jµϸ_Ý_)Iàïï’Gó·h W$2TÝZ®'5…Ô~¥ Ð.×Õ¸ë'5ÎŽæçç{Ä^XX;Ðí ¹DÊ8™1(|½œÙÝ-¶U Âà›yêV€¤dž#€ UûJ‡Ôª>¸ÞÙ@—µðf{ØÙÎÇëm@È–‚O<¶Wӎ̶– ŠTe…ò=±é¬Só-¼OvÈ…Íï ` ÏEz]Ùj¥—–3<¬+úèApc)ôô&Ž»fƒs|r”Î¥ó¶Ð£¹°PØù”Ö}¤¡‹]ªÿz¾|'‹÷^ꆲÔgÌk¦Ž. ÕL¢šÙ5:Gb±™qá}¢ªyéU¯)?p¢¶U z^"=³ûCh´¬Ñ§ÏÇdY¨'wtÚ'ÝÍQ‚ äÒ§·%ÚG(ŠªØuºË¡“²‡g'Bá OU›ûçÌâ½6§½]I]¾³§•z-:£ÿ˜­ôfÁø‹k|ï[g[íK¡}ÑúìÅöß±¾æâÑtºwgýä@BsPqYês€©£¢;kIæ+éý²?h¢Aû6¬vS®xzõ„ÒëÚÑy¬7l¯¬¼Ý¼âIe)X–EA'°ët—C;&é øÄÔ» wœY¼‹Ý&×.ÿÞÍÔ{mÑ馼GL-j;»•¶ÏNŽ6VÓ=_2uè¸Õ†vß3~L;k0Ì~8üÛ6oÝ[ZÚk÷™ù{¸EÀ GÃæR|«þ¹àkõ¨o1G}»ìü%žã¨Ð°-Ûæ(—Û&r Lþ¨O)æ*MQE º5¾ÝbÝcö€³?"sñ §~©Ù£¾.;~P*©mûDôÙKFåëÙíl  Ã5‰Ññ™1CtZåÝD¡R!™´ÆÌ…hBª™í–B:ãš|ø<ÐÊÆ3ßèñz;|SXùÔ3h€ûÛùØø£1Zí´ª©ÜÑÀ½Óæx‰‘›Çwø„ƒ¤%:ñÌO)B#¿•èNðtD_Íx»7ž¦ç= ç7Þœ˜—w‚ÛJ¢±Ç#¢ÃÛ…œxïÀ³ù1hî.v¿ûa{6?ª,¶…íÝÆõ7ÓyùÐG'ÔJ}XÎðÂÁö®1:ýlŒV…Fáp‹änm—süôƒÞN1‘º¯')B ”Of ãá‡cFZí4Ëû›{XÃs³þî3©OçC‡õ§fS®´}löÅ¥ðµl<ÑЯüÏá ûíÇO_w{ª,Ô3ñOûzehKÉ-s,òdŽUùj&¾ßÔ ÐèrhÆ$€ôÌÌ{ŽÓ8þ€Ãù‹^IX-ævëJïÊÑL]‹Î6åº1õuJ‰mû“X¤¾²U6ÞV«Ý濤-êåp;i#"ŒFãñóóó8qÝ[wU> ®±Q§THfx{(ä” ÉL]Æ@ ü‰P¨;¨ŸëåçcÞÄâ7x·Yê?õoÇ}jµ¯õ‰+Ò5ùÒ[{wx9Ÿ4>z@'ß'oµ7‡êáLmƒ¯KEè”Åéñ8LÐfW÷bàÉ@„Ð5)\©HŸ½˜›››››{6ã2…+LúAÝüþ4BhgÖóª$’]_,¨Ýw` "„ÉwËW_Z,'>–—„ÐÍÂñBPeQèÎÂ=þx"!„ú¦àü%„º®w<üß+ļæâÝ©ÿg¸f̛آkjÒÜ"„B7 Ç!„B¡~áø!„B!Ô¯<ÿ0~ñÈO}ðE.¬¿MÔÙÀìܸõD¤Ò§…xË353f#Åbb=YÅÑÀÙ"/ÃÂÇî Oþ¾ÚªÆùW•ë ¬‰èˆÍH*WHm§*"ÐC#Ѱßn¢d¡QHn§k0â‰puwd"ä¶°¤* \rk¯&éö¿¸&Âà‹Ž [ „ܪî%ù£wÜýŠ;âE$Ú®¦Ŷ¢‚Ò¨rjÈȨf3Û8(´%à e1`³@³ÿ¶¸}>Ó©4:ø&µÇ²ÔQYV@–¹#)zšúŽIÚìC\~ë¨\.&(N|L·•úPnÞ×Ï‚"„B7jPãSpöÕˆªÊR»žM&rÍÏ2éø‰ÜZEJÙÆÔÔ3—KK#3ÓCµõ ‡ƒtà ¾pP=X}_’Ø!·ßa¥*¼”'³rë‹ëMÊ›6w9 <á¨•Ûø°ÑT¾©ÇžãU0&«fÀj$¡®ÿÒN¾œ>‚¶Ú,2Wè€ *‡ƒ.W%Âà°›…Æá:„ì§í±©¹W@È\j=^Vôû_\ M3ª$¥úÁ4’ï’0~ðf!„B_ŽŒš{+‹YÊä‰NE|ÕdzÆ)§×Í–Z ”¶WJ¤É›Šéͪ8ˆÔºAÐ,Cߪ$ªÝ “Ù"VSœ —‹µ‰ \Çd¶t*)NRÚ-þDϲÛÚÍr½|áÿ)ïÌ«¨Ci¶7v*T÷vÓ“/^«’Ø(Ô O„ë`†#asåÓÇ-0û£± ·’âTÍÀþ׌y4ûÒ3ý"b‚2—Ò7þAÜßñx.Žô-é‡ü|¡p£9A!tl ãE…ùÀÂA©0›Ç„ÍioWRG£ ÂàŸ¥sé¼-ôh.,v>¥u_D蚺C!—HÇ#³#…¯—3»»Å¶ A|3OÝ ”Ìs¡ªš½I©U)´úIRÎo,ä Úä‰NMÀÚ§RøÂÖR!A‘ª¬P¾‡#6<®Žr ;Ûùx½­ÙRð‰Ç–â8­ÀZß‹kÆ„ã÷Al~_[x.¢]2 {Àgô¿CpÜ…B·iãÃp,Âldº—æÔ£ëv`±ÛäÚÁáphWtÊÛÞYKJþÇÁZ|‰ Ìù{µâ7Ëè[!IEQÝßEJ’ 7s‰µ\‚ Mö@l2ê­¯æDUUùƒõåýSogRA=|*Žÿ¸2“Ói‘庠?ψ2»]t£PA•Ú•z'â°B©ÂX‡d­PïÃ0RGÂá’õ¨o¯‚J’„N`ev¹-r½TëÞNêó I’š"ºã’e¡uã·‰°|Þy@¡{k㇎JÙ<{±]—(‹×mæŠÇ7ùÙ!+Ãeþ”ªÉµŠ,«`BUEU@¯ñFè*xŽ£Böl›£\n›Èe$0ù£>¥˜«4EI%èöùv‹u;ŒÙÌþHˆÌÅ3œ"ð¼Ñå´ä%eÈ?â àøb&ÿätÈ ÕÄ›¼þ&óp$`n¯ïqitÚÍ<ÇióG‡ÍÂú^“´†™Zª ’Ú÷‰ ªŠ¢œ²ÈªªÂ7Z¤V«t¹ Õ’H˜‡æV¥­&ÿÄTÈ Uø~£ è-®IiT¹°oÄÚȶTKÀg«vnãv…»ðÎBÝgƒ?(彤#}ò’!e‘+'¶óG×é«ÅÜnµŽ;ŠÜí{ñå?ýà…·SL¤ðš+¥’Ú¶ODŸ½dT¾žÝζ:\“Ÿ31D§UÞM: ’IkìÁ\ˆ&d¡šÙn)Ð)¤3®É‡Ï­l6þèEŒV;­jj''ètÚ/1r“W{-®IÈm% ÑØãÑá ‰íBN¼ àÙü4w/÷…„Bè+Ðkü`p:¥B2ÃÛC!§\Hft^=£¶òÛ«y­(o}_Ö oç6?äz'„سÔé+ɵJòTÄåv6rg#ª|1±ZLœ”{kï÷ÿx[ù¼ŠÒöbé´ÕV.¾|.!¥™‹¯œ í.púD@ýèÔö6–÷ú ©œøPî+æyªPÞ]/ïž ë¾ !„ú¦‘=þ²8=‡‰Úìêþ¸!š a Þh©C!„BWÐëþC;³¾˜W% ”ìúbA•nlö¯fBˆ7ZêB!„Ðô?¨²(t§Žÿ¸š a Þh©C!„BWÐkþB¡~¼k·ÿ{…˜ý/~³Ôÿâýþ«õø¿WH!„ÐÂñB!„B¨_½Æ¬s4 ‘À:ƒÝˆwˆB!„î‰^½3ÚêöùœfhËp÷bàöÍž›Ÿÿî³I÷­¾¿‰4º#Ÿ½|ýúÕÜãI¿åsÞikhöõë˜óðO£gêÙ‹—sÃŽA|€uÙÉ”50ýäūׯ^<}0ædØÀìü)“.Ýõçøƒ§/^½~97;á=QþG¯^Nã±CßëøÜü«˜ƒ ÝS¯çg†»Î“Ú6:ýôÅ«níK].&ÖÉ_:SðÉwó'ëÿó4hƒ;òèÙËׯ_¿zñtfÔ®{ø{œg[[äe·òú峇a×}=_®­×©Âg7–Š Ê l,•@”1ï&ð2Ú{+K{­Ë.5_lœ-n|Øà ËèÌLÈ]Ü(HFo,°“MîógÆŒ.¿©´þž Ìy»Õ¢ $Mƒ$i}›ŽuŽÌɱºWß·¸_é@Ÿ4v2€Ñ%rßåyÊ:ö`&T»]íä7ß—Ç””=òÈßÔ-*¬/5W7—7[`L=ˆx««Ý/c åTBTêøj0ô l+T„Ín#¿ëÜè ]áIg;¾²Õ$‘“ÁƇT³ï˜rÿu2ºïx€Åžq4h³7äÒKë¥3Oƒ®ƒZ^·j×94Z„Vji9ÃŒ#<;1R.ïÔ¯½…÷P¯ñƒ"wDÔ£ˆwxMŒÿásKqKõEÜF©²³±UÀà Gdž­Œ"Ô²;‰lC½@Ú}uʹøJº®›#rÈfmV[4R+oº¡f¥°›)·3.óaDT‚ € Ö5>9¢¤×RuÆŠ¶¸}>ÓÉvç ßDà%Æ;ÚÕt£ØVTPUN Qî IÍ£k5×ë ‘6û—_ç:*—K§ Š€ߟn¥>”›}ç¡/Çuì4hûÏ=§~¾ªtÆ^{ø¤â 2ùí‚ylt¨¶µ’æTÂà ÇÆÝVZ¹í½z4ëdÊ3óÒ[]ìŽÒÍ¡§3Tâ}²Ðgõ 6—«•{We€R¦šr™S:W4bæû¯“ÑýCÚGGMÅäyÂÜ#’f-K…‘edY‘;½ÆŒ'BïAíTkMÚË’_cIê5;Ä<úøÕ«/ æàá ÄÀ; ¼>Òf§²kïmÇȰ(O8få¶ß¼ý¸§&‚VÐ `LV͘­ÆžþhF%Í#SO_¼z57ót¿}'7Ë…jûÔm¡”mاž±¹’423íw×±¡º À—ÓuÚj³ÈÜ©ÊtüD.SÑÝí4ͨ’|Ø[‘ê{ºßŸ^XX=À‘úvHÕªbw°&»¯vàuªJ«AHìV-cbo».‡ €Ç,õøÒÛwS¢grÔv´Ö³u²\©Ô­;`°Ûéj¹q³¿ê×À‚(ªCÁ©˜Ç$Š"˲—ˆ‰uò—Ì42ææR{ÞWµh!ûi[ νzùòõ¬«ºž(÷8ê'Bï`ìvS»ÙúJKR¯Þ™Ü®W«² ‚ÌþÀ@ ¼“ÀË0¿QÔRüÍv¥ªÔ‹…¶ ÀÕ› E€Él«)NËÅÚĈ…®£ÐÎmmŠf¹^î9ŠÒfU×V·©¡Ñéé°§ºž×¬V„ÒöJ‰4ycA1½¹Qí}×]åyu(­ÂöÆÎÉÖ…rzÝ|a©×<·£YNžé;„ù¸”Ö™qB?¯í¿ûç¯qÜ¥Vråuöóš[tå8WKÝ¡V¥‚7%WÓŠÏ ]@£ZSd‡ÜªU;ò°L0D7f%Åu€J©FŽšY¨‹u²T©pc;Q(Sv‡±š=>ôWý’$©ª*ÁZl6ŠRy…$õFš1±Nþb1žq¿º¿R’Àß;¢fÍ GÂæÊ§[aöGcAn%Åéö:ΟzÌ¡§¯G ÕvvsãnæSß¼^㡸³Q€ãˆwxíý^Ï?ë€ ƒoæ©[’’yŽÐ ©U)\X ¨ ÖòMI©vPj?µZ _ÕŒIœã“£t.·…Í……ÂΧt çÓžœßXÈ´Éš€µO¥ÃáasÚÛ•”ÐkÑÃ6D.l~_[x.¢^<–½B¿ÿä"×6\aƼæ]-ÂuRG7¡Y­™fý•é€^UåYA¨G§Žªª$q6æq b¥Â:† Ê8,Õ‰©JýT¿Š¢!—>½-Ð>BÑûªëä/i …L…O›sAT­ºáv¶óñz[²¥à-ÅÕtWqîDÐÓJ/-gx YWôуàÆÒþ×ø}š^ã£'–>í¶\Ñè°|ði·"c ÞAà PU•?X_Þç/ ÊätZäF¹.è߉”¤Ó­ª×á¤]Ñ)o{g-)ùkñ%.0çsìÕŠƒxÖ¡ÌnÝ(ÔEP¥v¥Þ‰8¬P:¼e±ÛäÚAÏA%I"hŠèŽ#H–e„Ö—$¯v¥\s©ÁÞè±ÎÞ1¸E}þëÕb¢FW.6 înˆVUiÑ\VUU83œKh*•ÎŒÃjc¬õòÖ‰š¶¯êWe)X–ÅãË”Ùå¶ÈõRWôb^ªN¾‡Mä7¨Áä°³ÃìwÿmóÖ½¥¥½¶Æq×j  ’õèb‘ *IözeãùáŠX­µ§\Ú_á¦^ãÒhµÛ;eÃP÷bàÞ¾ÝbÝcö€³?"sñ §h˜ü“Ó!3To6òºÃ¥Qk†½~K=צ†ünc=£3ÛEª&×*ÿ?{÷µÐ¶²6 ø5÷ÞÁ€ - YéëËÁ¾–}ß%ü×±¯eðe…ÐÁlpÁM¶eK²ÊüB‘) $™ç$Î0j£W£µÑ4 @ë:ÖaØfb¬ëú•ŠGÃÑdõÇ#Vq÷XP)³Çe•„‹¶ç°³Biô³Hz‡b¡ {§ÔöHÈÙ®fG]Œ¼w‹ÿG\b” ü?b‹È‡_nvÚpþ‘£ªÒxJIì™>{¥Ø£œ^'îÕFuÃÅf'¢a¦[Ë]ªƪ~¡Ýl&"Îf±K»"~ÔØï]L>;?e¾¤ªúœª4vüÔgÃ?9Ñ@7¿ºœüdÃ/ßÙJ_ÎZ¾¾ß OÐj¯§Lz}&¾ÞGV¿ÇÚk޾Qpý@ Q&˪È#ú½¿2d6›/þóùóçåååËEè¬vþƒ$’Ä'I4ŒÏ›ì±÷I5uýù¥kÕÊ2ûãÉ)¯•AšÌÓérW’Œ/ù:îÑN÷7ó#>”ÅKLym –…j>“oÊàN|Z ~ÿ¹všú'söT²„æ¢Z©gv³ãmˆ¸Á¨[ÖÐìì¤ÛÌ ][ål¦$ È;û)*mn>S “w:1å·›"Tóé|CÆß¿¶1Ð=ZÝ,| Š ~¨1jŇ±Ï¼Šk©ÓAMh¾Ih©­’lPUz’û›_ä™w1yk»áõ’Í­å»g9m,ÈJî°ÐºøþÒõ:À1óþU¸—YI]úˆæ˜Õ/°®©d,èà°Ä3™r÷¬¯ÁxK VÙß*œ¿5$'Œ['?ÃSä’8ʵ º¹ß OЬ+šœ :Ì Vz|1›©tûÆgtFpÆ?¾ 1€µ¾Ø©æÓþ÷8»_«mFõLÞé¨G­æŠ’kjÊ£UsŶFIâ$Æ'AÄî7ªB@™¼ñy_s{¿þC[}Ïðù‡$OëZm3ê{h´Í¸-«wðƒ$’Ä'I$‚ ~g´oþÓ§÷/ÂJ!÷œ;ðÔgÃ?9‘xVFÝ@4Ç1X•ýü‡FIâS$Æ'AÄŽÔŠ?ß3Ó×Û£ÃG«ÿwŽØ‡Ä}æöÐÉÿ¦Pr†«¥ÖR²E§|µTÕx8]ÜãOÎ…’ +¿·±×kdþE<Èo—Ž^ßïÐ˯o%ĺcK³FvXKŽ ®bƒ3º?j$[Gt.‚ ;«uYÃss1ïÆAC±°1Î…ÉÄïÁJÆÌÔFª‡ÍÙ—sÕÂèÁ× ‚ nsþåv›ùü±9î¶CKÚ¿ð!ÔZœ\­ÓoÑá·#X÷ô\,hç.:y1zk/¿Ö莑ÏhrÄyó ?§4óû§Ã[&o,1í·³ºÜ*e3¥ÎÙÉžñ&^'/hZ£Öš°± (båp¯oÕÚ?¨ó€€rÚñÎöjšvDb~÷ÔøþQÎ;Mt`áCÜÉÅ­õ¡7Ë­SoþŽ¢°XÚKõa3b8–©Ç—3<ˆ¢dâ8 kg-œm›8±#ˆCL¬WE  ×ðôð#ž ˜ ã“ͺ á‘ù0œí,Ì}ø«ýNµ- Ð=Þ\-!@´%˜‡ø­’ñ¥Ø§Žd‚xWFîŤó@Äc¸Þýaòååe›Ûmö?þ„PÛÍ”**€ÒlŠQ—xÎekÕZ€¶‡gãA+¥ëÀ˜àÎ/J ›Ÿ¿ùˆ1Fhèæ!ShñOŠÖ$á"§ÚkV¿Ÿßÿ±/Ën–»*µU®‹oì68å óbƒœ=ƒÄÄ¢AÑ-Ë ~hÕ½/UpÆÞÇñˆ ø½ÂúFQŠó&^½˜L­O½1šç¥ñJnÏJ&ož‰/M˜t©Ý(ÕDÜEÆmµ˜úõ:mµ™X]ñˆøÄß „þ”ùU,Ù™š²T÷÷dö¶ÌRõp½š¡)¬étèå„@WûòÙ³Œr¹ÞX­ðùÝOŠdCÿýïo&þë_ÿºkNÿ3z*Ã¥v¿¥?¹…JÄã»Þ¸m$K“Û­å×¾ep%?„Ýt¥¦ôÍþK—½É9:Í´ÀfÂZam­©a6üòýŽëuûä!}ø c,•w7Nn>¾N[<›Öi´enßÞßå¿ú¶3þ^t´Õë³iízKÒTÕ §Q¢qÑQ~14œ³(ŽcåÞíðõ>ßç½6êÖÝqk­[ÉìT2ˆ±¸"ɹD°½]é‹¢rYé^½ÅEÝvJ¤;ØŸ!¿ Û´‹3™–þ'röçgûñúú±7"X»ßMµªmX–UÀäOƹrª8¸€Á° ú‘‘|¹Sz¹)?ºa}kÎ1Ûå—Ûúã/ýV÷X:ñ3¨ªJ]D2x’Ÿ&ºëçŸ ‚¸§;ŽÿÀºÝl§sv»_ètnçà¾Ülêîɳ×ä!„hšF˜bA—IgMfšz·à¦¡“Ó&3‹qnŸKïu‡Ö’Øãœn3@YÃÉ… ûù†ZÂs ³³/ã~ún[þ‹Ó;­®3¶1er…}ævçüA Kxv>‘|óQ#rŸüæ‚xÁš°sÅ:"!g»Ñ4þNÓ%ˆ2y\VE–~cÝNÄ‚N KaµßWapÊ”E‰s»´^·ÛÄž>*ÀÌVŽĺ½N­;<Àˆ'Òͯ.ŸYɵõêÞò óp3’r†±ˆ“¥h“'âg[í.€‚ig àâ(D±ö Ï*Ï4’ â‘èB[p„"v–¢k(äQ;©×‚x¨»½ÿ@»=6¡v~ÂÕ:yÊí|ŵ×l2щ~.{þl@µPñ&Þ}Š)R&• ,,-Âæ¶9ûz ÀÛÏÓÐ=ZÝ,ÉöØû¥ðàùó7Ÿ§ —_Û(J†“WkÇ­é™×çi]j—ÒÃÉÕj.gO¾x?Å Mæ‹é‹7©+«œÖ“þ°3¼\Iç,‰ù·S –…êa¦vÞRDARY­+áQ9‡Nn° ÃŒ)‘|=aBŠPͤ«W¾»uy¿€uúíçiÀZ_ìTÓG‡o¦"tQtfqÚÂ"¥×8ÊT/½ˆ`±‹]MV$Úĉ OÆ5½ôa–Ö¥Vé ókDü,7#¹œÍÙ³oô.wN3 Ç9w<ñ×G–ÒúB#“>Ú”zÚH&ˆÇ"•Ó9s|öM”UlœO½FAüúÙl¾øÏçÏŸÉÓijõããÓp€B‚xd†‘<þD†9ÚäãÏó9‰q³6A?ÇµÚæŽÏ/AAñ»ÏøÓñ›êäV6žz‚ ‚ ž5rÿ ‚ ‚ ˆq‘þAÄÓËd2Éi˜øŸÿüçf¢áëã/}üUz`N‚ âÙ"ý‚ ‚ ‚ ÆEúAAAŒëQߟ¶Lþõ×”¹¶÷%ÝÚ™ML8Í”. Õ|:ßìƒ90¿8í¤úµÌnŽ¿u0&‚¸+gücLÞ|€õòïûÍjFÚ|ÝÿŽ®&_|vÊgã(¬ÉJî𸥒á([(™˜t[¬ôøb6SéËÅ  `‰XØe¡5¹SÍ¥ -eØ‚É3˜öÛMHëñÇ™Ìéù(2æð«×Ñ~víàlgüãË1`Mjùt®q !ˆÃ>ó~)ØJ}Mó(ßüÇ9®°ºuŸzø°¡WÙŽ¿eZxøçȯ×`0OËä_/Øì·ûæòˆý68¡û£1™Ãñ(ªl­œJ´}úÅâTûkZò†-õÝoBä}Ð}Ä×0P ªú‡äFüæ®Öà”O.¬ïÖ0GßLzË­öøç‰NºÙË)}þ¸ ¡?!ñ¤iÔ´gƒ33\c{µ$"KdþU,ÐØ®w ª ;¢s\ØY­ËÈž›‹y7šáä\(™°ò{{=°Fæ_ăüvy°WåF>Ó×Û—O½½üúFQB¬;¶4;ÑhdÛ†³$ˆ§A;Ývà;ÈérR@†·ù™üS=ßÂ#3Ô`ž'ñçy´þåŠF-µ\Ù:k=KùB§&êô/à)3 "`„ €8ïÌÜ„^ØÉ·I‚ø¡ס]fJ[§ÇùbSÒÀä%¦ývV—[¥l¦ÔQá"ÑÁA_Öi½t>Æ›xðh•ƒÍB{t-zã@ÐTEg5MMÓ5EÕ 06_(d¹œ"*å&ü‰ÆýË´ªÕ®ªtm9d6 ¹…p³ lµrrUT@¨6ú§ †}Êér§»‚‚„J¡€h—ÆŸîå×ÝëËÅ ßê2AŽ •ñ|‚âr[ Ã¸’ >õÚ?ŽÙ`k™ï5⼉ù„ŸSšùýƒSqH æˆ}ˆ+‡EËLÌé­ÂþA¥‡ÇŸ§5ú毨àÕçð`ÎE ÉKÎøì –;•lú¸­\]ÂíTIgööXï?X&¦}Bþ¸ó=è¤F¡ÜÖ1v§Mº ÈõRÇ5ÿvš«ÔՉŅ`ÿh—tˆÎŠMâòη•µT¡Í¹ì4ˆ%íÂáê?_·ŽõÈì¤ý,1a×þùgu¯"^ªAY‹ÝİV»ù¶ææ —öÓêäûO?þ½äåw3 !6öN÷«…SÕ¡ÏTA Ê}Ýæv3€Ln—…e‡]Ba«ÚÙ~TÛå㦠ÜÊòòòvÙx¡ˆu¹,b·Gö%ñ¬¨<¯»ÜœÅå”Z·\!~eÖ@€ªÕ„‹ÿ›as}cý°m›™t#^ƒY‚Aº´³²²[7ÏLzÐ]æÙ;^_^^/ôúåíåååååÁÓM´?–´µÖ¿®låû¹¨ó|A:Ùþº²Ó°Ä«Düªçþ˜ ã“ͺ á+étpñS­÷ªéT¶ƒäzz³NY‚ÉÙÉ~a/Å÷‡Ì B Ç2 õør†$Y¬¶>Ÿ4­QkÍNØX‹Õ¦4ó‚ŠÄžt©(V÷úV­=äQ—sFëǬÍý­CYÉ䤰™Èð ”Éé|>U©VF^Àº^œí,Ì}ø«ýNµ-=tÒ³3XøwBrqk½Ð’Ù:õæï( ‹¥½TïžÛE?ˆÜâéÉ€Öø‚r=õÚ?ˆÝï׫—ë¹Z(¶$©Ñ†)3 0ôT#ž*]@m ºËÄœ¿ sßyZ¬¶~3/(:@³Þ¢¢VÚ}«ÇUQèµ<=r•ˆçî1ú”sjÊRÝߓثÑNS˧ˆ±ó³°³_WÉ33e*…SçÔ«÷1¹šÝ/´Èû£Ä2¸Ò&W2yóL|i¤KíFñè¨&b@™B‹o|:P´& B^žS{ÍêmÍBÃvû=âéA[Är©>ùWÀ™Zä@¸7Ú[šsËÕrå Ïw•[.õߨ‚@ª®W34…5½œpô,´êÞ—*8cïãÆ‘1Ð+¬o% 8oâÕ‹ÉÔúɽ1®á§Mþ@O»tb´.ß²,F”“M… =õº?ˆÃïW«Û—«ž‹ÓÆ¡‘ûñ÷—óÝ{ž—O¦cê"çå^%â™{ŒþƒÅíâL¦¥ÿ‰œýßùÙ~¼¾Õ°z™NµÝ¬ŠÍ¶wÛ¡…óA1»“Sï'[ëBä}È}ܪ‘û©Ä#QU•¦Ï.)Ó4¥ª*€Ö­dv*ÄX\‘ä\"ØÞ®ô1ÆRywãäÊÕk Îk´«5mñxlZ§Ñ–‡7X „m…|^ebÀ…€ñ’á¾(O$Ôϯ¤Noö¶h«×gÓÚõÖàÎmõݨ‚êMÖîwS­j[–eUeX¯MUUÄÐhpº£8Ž•{·_(Óû|Kœ÷Ú(ïó Ó¿ÿýïq² k©ßœüg¶éÇ\yâ) µ®IiJà{êu!îZ]ÈðÉÕ ãk!„ôQ@†ž0\éx`|ùdjpaîž«D<ÑèæW—óƒŸløå;[éKº ´:±Š»Ç‚J™=.«$H Ê¹¦¦a°ÂX×±¤÷I<&Iè)¿³$ ´×çì E,áDH¯UšÝ¾Úï«0hJbó¹Í¥²Öp|Šª]–$³×c;UuGxÂMÃÅUKxnaÊ |æŸÔéÐG˜ pô”I¯ÏÄ×ûÈê÷X{MTeìc]ׯ4E5Œ1ü‰`„a<Ø‹×Y³óSVàáKªªXý7ª ÊNø­òîq—rEül+?ì‰$½Ã ±Ð„½Sêa[$älW³·Þ B”Éã²*òˆNq÷9D IDAT&A< Ü.ì´ÀrkNâÙ»Q×åxzÕÂÕ÷h“™E’ʺ}.½W½ó“Bw˜§"ËŒ×íàD™¦±$)X{¦€Ï^)ö(§×‰{µ³œ´ÙÊQ’B»½N­{÷U"ž‘Gÿá2­^8òÌο‹0HWÄÖIº,€6h{IŠ´ðâCP©eò¤ÿI<½™O»fo?²Xj—Ò¥€"tQtfqÚÂ"¥×8ÊTP«¹œ=ùâýƒ4™/¦{:(ÕBÑ;÷ò]¤W:(6CÑ‹ù*RWV9íÊ;cꜤO“3¯>$¬ôø|¶"ÃñdóËÉÍä?$Ñ*°ø9pñÿúþòA@Ieµ®tþà‘a$—³9[böm˜ÖåÎéafø-rå0cJ$_O˜"T3骗¾^ðöó4tV#„X§ß~ž¬õÅN5}D¾NHw†×`FÆ'€V?>òÎ.¼ #­}´•:•Õj.kOν`AîTÏ¿ßĸ¦—>ÌÒºÔ*dHMùK{äþƒRÞùrö÷*ãlX¬ì­ ùAÓ×Û—'ëå×7Šbݱ¥Ù‰F#Û6œ%A<^~}£ØgíÄÂâ´¼ž»ËE‚ £úº¦ô1èðù’HŸ$ñØðËw¶Ú!Å}fµ™MÖd0yc‰i¿ÕåV)›)uT–Àx¯­r°YhßqL,ÓªV»ªÐm´åÙ <`„ €8ïÌÜ„^ØÉ· ÎéŒÍ Y.§ˆJ¹ D¢qÿÁ IâÃQN]ÚYYÍˆî ¿è@,iWÿùºu¬Gf'í0,€µØM kµ›o{Ã2¹ôéÓÇïß¾š Ù(¡°±w:¸nÍX-œª* ×K×üÛi®RW'‚ý£]ÃÎaÀ <‡»±;†Å”ubþ͇OŸÞ/%4lR†a±ªuÕvù¸)Ã`ôÖååí²ñBërYÄnìKâ™’û}Žãžz-‚øõjib›ç5ƒ&ý ‰$ñIïÂ2ùúï €ëÿ¤›ƒT½]«Š€Ðîê4«­Ïç @kÔZ³6Å0@¬îõ­Z»1òqªîñæj ¢-Ä|<Äo•d LN0àóy¬Jå°"@=½Y§,Áäìd¿°—âûwÝÈ?ÛÍò4d´;0ÊiÇ;Û«iÚ]XˆøÝÓ!Á?t`áCÜÉÅ­õBwȲ¬SoþŽ¢°XÚK=ÙÓsAñS ³Ù|ñŸÏŸ?///?áÚÄcħ=ö>©¦®¿ÿÀ†_¾³•¾œ÷%Àûð§˪ÍH'›»•¾aâýV–¼zg-~I7iWliÎ-W˧µ:ßU—¦‘É33e*…–s*ê¢åjv¿Ð2z ß}óWôêƒ=Çë0ÿ'$®_ysáŒayÞê|wtÃKïœÅ/û ¦É×oL…/Þh .¼ôÖvü%=ø£3ö>þ=°±ñþöFñ¬ë⌌É[E (Λx5%¦®½tqÝåH6Náÿý¿ÿw3qtNÿs¿©ÆœÜpå‰dŒZñ{|СŸœ•åƒÆÏY;‚ ~×j›Q÷Ìdܯ–÷zÞD¯•÷šI$‰Oø`Œ¥òîÆ‰tk"ÐǦumyxƒÕäOƹrª8¸F°)O$Ôϯ¤N/õob>(fwrjøõdë`]ˆ¼¹[µŸö¡¨_˜Qyž¡­^ŸMk×[’0dw¨êÕé0V說"†F(ŽcåÞí]I½Ï·Äy¯‚±?q3~k{tÎûµÚØÖ']…»2~hµv+Žãú}r¿“ ˆõ87e¶»\6mr ~D’ø$‰?€$ö8§ÛLPÖpraÂN K°„çfg_ÆýôˆY*˜v.ŽBkú¬‚Ð`÷ûW­*ŸÛÙ+  @ë:ÖaØfb¬_£aü‡$ˆQyžï£ÙùDòEÌGØz§ÕuÃ6†¢L®°ÏÜî {"Iïð‚#4aç(ŠuDBÎv£yë—veò¸¬Š<¢“IüÙ~pµ6ÅÚC Øñ`£Ÿ_B .Ð]ü ‰$ñI ãó¦ñŸ_döÇ“S^+ƒ4™/¦ã&ãK¾Ž{´ÓýÍüˆï/!k0ŸôØXJë B&W—0Yz?c¿”©¾ÿýád Í/D´RÏìf ¿6D\3¼<ob)áÑ*û[…0Þ”ÅKLym –…j>“o«™¼Ó‰)¿Ý„¡šOç2þþý¥îÑêfIvÆ?¾ 1€µ¾Ø©æÓ~ô¾$OŠþÁ®Wk4ÞóK/C €®HBã${T%ã?qw×j›Qý“w:êQ«¹¢äššòhÕ\±­‘D’ø‰†ñI¿(Éžamó«$X"âç¸VÛŒz~‰¶y·cõ~D’ø$‰Aü–žamó«$A<¡Q÷Íq VeE?ÿ¡‘D’ø‰†ñI¿(Éžamó«$X"âç¸ÃóKñ¬ø$~$’‰ÇBb‰ ˆŸãÏ/AAA\FúAAAŒ‹ô‚ ‚ ‚רñ§ QÿL<êµqHùR6[î2Œ¦#ö!ÞßÞ(Þßwgü㌴¹Yú¡vbl–É¿þš2×ö® †pãŒ&ã!'‡%¾˜É”»ÐöÈlbÂi¦tY¨æÓùæÐ!L‘É3˜öÛMHëñÇ™Ìiïìcãæð«×Ñ~ví 6‡Ëÿø2Dc X“…Z>kGaMîTr‡Ç-ÃÝL?Æ]pésýZ5õ5Óø)‘ü§°Ï¼{æ!©°¾~"~ÿƒeò¯lö[®ótëFÄOò§ïC+À_Â]û¦P2fn¤6R=l̾œ›è¬† àJ<;lp&B÷‡6ý€òÆæ<âÁæa—rÇ_ÌMvÖò]0‡ãQTÙZ9•hûô‹Å©ö×4o<J&¬üÞÆ^¬‘ùñ ¿],Pnä3}½}¹µÖ˯o%ĺcK³F¶ýÛH;Ývà;ÈérRp·Ž* [Ï›ØàÌ ×Ø^-‰È™ 4¶+dü·ŸaüP±°q­R¶§|ra}·®€9²øfÒ[níjí4õ§`|Éã'EòŸ@8Zý¿#pÄ>$žzM‚øÃѶ`€m–oþó1ý´ Ðâ‹Xº•†ô¨—9ïØ N{çt[P0@¯RiNO8MЕY÷ô\,hç@îTr‡…–€Ì¾XbÊgç@é6 élM:^˜ó&æ~Ná •“7–˜öÛY]n•²™RG…‹D}Y§õÒÅ{¯­r°Y10a€rE£–Z®lµŽÈåôz{••v_¨kSó^k¾Û‘/tj¢ŽAïðž2³†ÝÊér§»‚‚„J¡€hð}ÔÞ^~­Ñ½~pb…ou™ G<<¸Aq¹-Ða\I8o9Ž`ÆëiÞ&–iU«]Uè6ÚrÈl ý‡ŸbÜP4¦©ŠÎjšš¦kŠz·û‰‘üDzFßüµ¼ú€^~m£(Åløå;[í‡â>³Ú̦käÖqGìC\9,ZfbNáöªÀC̰ÁƒLÞXrÆgg°Ü©dÓÇmeè< ORcwž´áC¨µ6¸¨g~»ˆ¿ wØöÁí_—™RÅÖéq¾Ø”ô®üãý¥ô°¢ ÌÞhbÚ£–jCóíbÃXº|Õé>Ï59èàâ§„û<‡^M}Iót`ñc_=Û›Soḛ́[8ŠBÇ_ûO³¹R»ÿX-ç;¾ÿÀ0¬®jç ç³+;%ÀM¸:éõ¯+›E5˜ˆØYý±„MÈl|ýºvÀ[â3>z0‘9±466Òmë̤ˆ%íÂáê?_·ŽõÈ줉 »p¸öÏ?«{ñÒæ²»‰a­v3yuãŽ,Ó>!Ü;Œ‰ƒ~;&ç“K¿ßç8¤F¡ÜÖ1v§Mn´œ.&gX|!j»|Ü” “[Y^^Þ.O…X—Ë"v{ÒäRy^w¹9‹Ë)µÎ:˜ã˜áz†·PØØ;4[«…SUÒyøIÆEËäÒ§O?¾ûj6d£äÒ~Z|ÿéãÇ¿—¼ün¦q·¨û‰‘üÇê¯//¯zýòöòòòòòà4lxPN]ÚYYÍˆî ¿yÄ| â‚%@'Û_Wv–ؤ{h;`Ü3lðÐþXÒÖ>Xÿº²•ïæ¢Î¡óºôñ5O­ÙlÛÜ.ÀävÑͦp§m7…b“¸¼óme-Uhs.; ^yãã}üRzpÑ!Ö91ÿz1„K©ÍýÊðÚ{X›öf,=a“C;M-/////ݯõåZ½ƒ½i?ß›.Ã7†>ÿ¥¶w7š¦éWK‰ ~øJÜýù¥+eƒõAI·së;HÓt¾#Æí˜­Ö~ó¨ÝׄröÐy>©\ÍŸ4E±ÑÆS&@¶Xm}>/hZ£Öš°± («Mi戽Ë÷\ÄÊá^ߪµwyï‚60Æ'›uÂ#óQ…1FœÍé¤i,éuÞQôõ^5Êíf:°ð!î„äâÖúÐGܬSoþŽ¢°XÚKõî±UäOO|´Æô ànvƒaxerúƒŸÏcU*‡•û<)EÜÓx¡Ø=Þ\-!@´%˜‡ø­’Ìúã1ksëPFÖp"9)læ…G¸ó#"™¸Ìð(ÐÛµª¨í®N“«JÄXÄêqUÔz-O›Y€þØfükiòr?¢[MšŒ<«­ßÌ ŠЬ·¨¨•ƒvßhžÃÃ{|ãÍSk6…— U´Ûeâ˵tƒƒ !†cz|9Öü+ÿ€-zàÒÍ¡Åéä`ó´wK›rX›öf,Ý{‹†59Xo<îà7x @m6…i· U´ËmæK£_ÑzÕì6ï Çf_; [‡ûܧ¹âzÿáóçÏ#r/Ë%Óöðlĵ#ÿÐÙa¼C•½úå?êŠ `6jð\>Ë`Œ)44hG-}ØþRGÝ2O¥Ù£.ðœËÖªµðmK¿:O¹’É›gâK&]j7ŠGG5?æÊ½E\:Æ# ÝØ57 kÓÞŒ¥2lrë‹ÇíõƒÖyW§ßlJQ·xÖmã«ã<ÒE¨—sÞ»¹Þ¸e§R~•bhtV`žä§‰îúvÃ;Ö kkM ³á—ïÎîaŒá¼(Í2 *šñÆaŒ¥òîÆÉ•+¸.M~eÐǦumY¿}…‰Û´‹3™–þ'röçgûñúú±´Õë³iízkp^í÷ãh 8Žë÷eÚêó2j»X›m%î¶)yʯ¢‹¡8Ž•{·wÆõ>ßç½6êÖ½yKû ¡Qëš”¦¾Aêì.`Þ”'êçWR—_½%¡ø3…b½yö§+‘lò'ã\9UÜüƒ‹Eˆ¢Ÿ×÷0E¡ÇÜqcFò°úz̆õ­õËÍúÑó|Äœ7 sŽÙÓÀ€¯Þî6<ŠoAIb`x !¤c w0¬ÊÒÍ+·† ž+‰#¯Xݲô›‘þ=péòij«Ž%—ü­B¦P‡?‹pk›ö"–`ÜÖ…!Ã&ëOĬõƒÃö¥%r³©,ºíNÖÞnÞòà,c Í$&,ãýͪxõf˘UåµwÇÛ½ºÐ¡ˆ¥(Æ yԎЄMÓS¬#è2é¬ÉLS$±gòø,…hKpîͼè£R’Øãœn3@YÃÉ… ;²$™]ËZ¼SîKOkYÂs ³³/ãþGz‚ëÏÐͯ.ŸYɵõêÞò ó` ÏÎ'’/b¾óPh7›Öà„“¥i³7âGF¬þøLÈÎ ÚìqY%iXE£wxÁš°sÅ:"!g»Ñ¼õ&¢L—U‘åGzl· ;{åï_ݹ[€ÝX;£ðf÷û¾ýGÜÝÐP¼É ¦€‹£ÅÚƒ>« tÔ^Oqx}& mõ{¬½Þc~2ï±#ù¦È2ãp;8–³˜YCŽb‚¸Úlå(@¬ÛëÔºÝ><8À <’Ø3¹}v†¢8·×‰{Ã/¦ýˆð6O¹ÙÔÝ“!g¯Ékw]º%œˆ–ÂêàˆgåoïãoÑ×® åÃÍÝ=°ðz!b:ù°6íÍX’eyк°ú§'=wmª·¨ $b–Z:ß¾zv›M슆ÝFkÔi‡qM½|tör[[¹ë‡{»ëûR93ÇgßD9PÅÖÉÁ‰ÕBÅ›x÷)¦tJ™T6°°´›Û¥j.cK$ß|ä*òÇ™êÐ'ÒÔj.gO¾x?Å Mæ‹éžJµPôν|镊ÍPô"·"ue•ÓF?²NŒMIeµ®tñ˜R=whMÆÿzÏa‰/œt@«Ž<³óï" Ò±u’.muɕÌ)‘|=aBŠPͤ« \új ÀÛÏÓÐ=Z|ŽÀ:ýöó4`­/vªé£Çþô3:»ž1~€®§QxPÅÏ‹eÕ÷—¼þ„á¡x=’õÆqÎOüõ‘¥´¾ÐȤOûÐ9IŸ&g^}H2XéñùlånßëyšHþ}Ùcï—ƒç{ß|žºøÔ€V?>òÎ.¼ #­}´•:• b‚¸Æ5½ôa–Ö¥Vé ÓršŸjÔàQ«¹¬=9÷v‚¹S98þYçÞCçÙk6™èD?—UoËyƒ"tQtfqÚÂ"¥×8ºØÌ‡®üã}ü-zœ¢Ã2_HmÖý~Žöõ<Ã] F±Ô?Í=s/ß…ÅJ¦ÔN _¬ahØ¢>uù<Œ^ý8ÿþt›Mv"ÜËŽì0´RÚÙj>î¥-d6èóçÏä†/ñl‘ø$~†‘|ëDÏ9çR]®ÃýƱ}2†‘ü«„÷Ó®ü_úÓÆB(“7>ïknï×ï{Waü¹–óÎãOAAñdhßü‡„SéžæîÝyxÒ ‚ âÑÉ­l<õ:¿‡'%­¶÷eøpw?y ‚ ‚ ˆq‘þAÄÓËd2¿nNÃWÆÏù#üO‡?Ç/ †+ÿ«lÑÓ®ü/]t?ͽ „ô‚ ‚ ‚é?AA1®Çyš²…’‰I·…ÁJ/f3•®@™}3‰)ŸCªÈ3érW7æ§T¿–ÙÍñdð-âÑ9ã^@Æz…õÍ¢tŠ,–;§¹L¡ÕŠAüÊ(‹&õÚ8¤Š|)›- Oñ pÆ?ÎH›ƒP~UtpñcÜpqî­šúšÑð×9«èœñ1yk°ž—ÿì3ï—‚­Ô×4ò͜㠫[w(PgüãË1`Mjùt®ñLãøAÇû<¬g2 UŠí‘y¥ÿÀgf¸ÆöjID–Èü«X ±]QL¡ä WK­¥$d‹..Nùj©Ž7l©ï~"ïƒî#¾†bPU2ñXÚÙ•ÿË^ÿ$³)”Œ›»k)‰²O.ÎÏtWz$ ‚ø…™Bɘ¹‘ÚHõ°90ûrn¢³Zè>õJý²´ÓÔÿÂÏù;žt¥ˆ1ÑN·ørºœܽßÔ˯o%ĺcK³Fvø0OèAÇ»ùn Ú1µ87iÃn´½{2b<¾Gé?˜X¦U­vU ÛhË!³@s8íêvO€N~ó`„ €8ïÌÜ„^ع>7A<*ÊáttNwº*hWjò’Ó]Šñ “7–œñÙ,w*Ùôq[Æ‹­,ÃPªÜG½“µýªÆ†_¾³Õq(î3«Ílê°&°îé¹XÐÎÜ©ä -À“ü; åtï${š®Z§£ŽÖáfAÀÀx¯­r°Yhã§Þð‡¢N{çt[P0@¯RiNO8MЕ ÊÓ°@Ø„a)”'8bâÊaÑ2ópj«°Péa0yc‰i¿ƒƒ¾¬Ózé|½~«BÄyó ?§ð…ƒÁ¶†âYØY]n•²™RGÃø㢣í‘ÙÄ„ËL©bëô8_lJƒ“ÑCÊÓxž†ëi¸E¿ÊÞÅå¶@‡q9$A_üÊÓpž†ëi¸E\úO¤ò¼îrs—Sjus†læšërYÄîˆËíOÉøxK €N¶¿®ì4,±I72žzüçM¾ˆ¹.n,°žÄ‹¸{Ø}†Ç?Ž29ýÁ€Ïç±*•ÊÀ! œv¼³½š¦Ñ……X€ß=•ëéÍ:e &g'û…½ß¤¥ÄF‡ E‚xz«­ßÌ ŠЬ·¨¨•ƒv_•díìÄŽ»Ý§gO$ëíZUÔ„vW§)hçÖw¦é|GŒÛ¹³¹vø–®¹µ^‹W4¿†Ø³@¬îõ­Z»ñDï <®+ÕÖ£ò„!b8¤OÃõ4Ü¢{/ý tù–e1¢œl*T†ìŽaz…õ¢çM¼z1™Z?Gd~*C»|l?ÞÇmð`]Ó4Œ±®kÚÈŽãcô(O$Ôϯ¤N/¯Œª^]5Œ10ÞÄ|PÌîäÔðëÉÖÁºyr·jÏ÷¹:â7 ª*EÓhpœ14£** EâYÝøÏþs3í]Žg c çç¼óvŒ¹š›_÷n¿äÉfÂZam­©a6üòý¶ü´Åã±iF[~žÏ(Ü…ªªs^­'ùi¢»¾]6*ÏñÝ¡<1\^Ðå¿üN…|c©¼»qrùí]ãò4.:­[ÉìT2ˆ±¸"ɹD°½]\#«·³W4@€0Öu¬>ZBIï´g de(Šs†|¦v›„"A< ’Ø3¹}v†¢8·×‰{½>…ËqB#®¦ „hšF˜bA—IgMfš1‰%<·0;û2çùeèB[p„"v–¢k(äQ;B߸<Çw‡ò”%ÉìòØXÖâšp_*Ðߪï@{œÓm¦(k8¹0a§†•§aÑY‰XÐia)¬Sç-»ñÊSÚãw2eòûœ}AP‡ÍÓh=‡ûeö&nvöÊßïÜm3Q&˪Èϳ§d|¼m¶r ÖíujÝndY˜Õ?=é¡àG5xåù%T`ñsàâÿõý僆\Iç,‰ù·S –…êa¦¦ÀÙÍ©Q‘^|*µLž\ñ%3þñehÔo?OC/¿¶Q”ärúÈœXx;Í`¹S=Ì44 ¡HÏ€ZÍeíɹ·,ÈÊÁa¤ê‰øúÍßQÀšÜ.ìŸ~ë\®*ÞÄ»O1¥Sʤ²…¥EØ,]˜"ue•Ó®<®ÿë’Êéœ9>û&Ê*¶NN0.Ïñ–ç¶`”U©ŠÞ¹—ï"½ÒA±Š~ÿÃoUÈãS«¹œ=ùâýƒ4™/¦{ú°ò,"tQtfqÚÂ"¥×8ÊT•³ùŽWžz3ŸvÍ&Þ~d±Ô.¥K½¡ó4ZÏá~¹½‰ÎÚÅwÚLëôÛÏÓ€µ¾Ø©¦:?gMïÊðxÆ5½ôa–Ö¥Vé ÓèŸæ‹ž¹—ïÂb%Sj'ô;7x0¾ýî%2›Íÿùüùóòòò}7 ~¬§ŠO“w:êQ«¹¢äššòhÕ\±­‘D’xK↑løT’¡aÏ/™8þ<ZÎË(ïÜÇ`k%uªP–è«Lî[î™žÕ ‚ žˆãoxݵ3׳þ*A<´Í¸-«wðƒ$’Ä[‰ûÑ…z™|ûáýû÷ïß¿»è•‹U2.AÄóBî?¿Œ§ŠODsƒUYÑÏh$‘$Þ–8¹ÿ@AüZ®¹kü‚øma­/Úƒ?H"I¼-‘ ‚ ~W¤ÿ@ñôvvv’süıôæ$‚ žÜçÏŸo&{ÿ@AAĸHÿ ‚ ‚ ˆq‘痈߉3þ1&o >gvù÷ýf5#mn–ä;LCÙBÉĤÛÂ`¥Ç³™JWGìë0sþ%e­ºû5Ó6æ§T¿–ÙÍñcÈwÅ8&±°ËBkr§šKZ ÐöÈlbÂi¦tY¨æÓùf€qF“ñ“Ã_ÌdÊÝ¡ï+ “g:1í·›Öã3™Óóoˆ›Ã¯^GûÙµƒÚ`ß9ã_†hŒk²P˧s» A#Y&ÿzÁfù¾Œ}jñeD<ø’n^_Ø_SæÚÞ 2ûfS>;‡T‘/fÒå®n\ÏÿˆU2:w<Ê‚~+#KéòÞä"Kïg.ª^ß_>èϼ_ ¶R_Ó<Ê7ÿqŽ+¬nÝé¬ÿ³GÝØ§3€á1_¤ÿ@… ÎÌpíÕ’ˆ,‘ùW±@c»¢€XØX?ù>4&˜½aK}÷›ytñ5 Àªƒ8OtÒÍ^NéóÇUý ‰'MÆäˆÎEpagµ.#kxn.æÝ8hhæp<Š*[+§mŸ~±8Õþšæ1åÍyăÍÃ.县˜›ì¬å‡|” %V~oc¯ÖÈü‹xß.Fü”ùL_o_îøõòëE ±îØÒìD£‘%§y‚x®ÌÁd"⢺ÂÍf"œ‰Ðý‹Q»M¡ä WK­¥$d‹..Nùj©ª:¬žÿ«týÜAVJW÷¦rº÷­~ömmÚîöM`Úé¶ßAN—“‚Ÿ5”Â]FÝø§³1¤ÿ@üþס]fJ[§ÇùbSÒÀä%¦ývV—[¥l¦ÔQá"ÑÁA_Öi½t>Æ›xðh•ƒÍB{ø˜Œ&–iU«]Uè6ÚrÈl0:¯`À!@qÞ™¹ ½°“ot ›/²\N•rþˆÄñû¬ÕÊuÊUQ¡ÚèGœ6h´Aä š¨cÐ;¼€§Ì,@ßéõö*+í¾P/Ö¦æ½Ö|·g4OÊér§»‚‚„J¡€hg׺Xèå×Ýë뇾Õe‚ð«Œ×ú´hÿ‡PkmÐ1³N¿]D‡ßŽ Ç;&®ñ$ÿH9Ý;Éž¦«Ö騣u¸Yì±qå°h™‰y8…?Ú;¨J?¨Wt.´² C©rõNÖö«ša¥ŠLÞXrÆgg°Ü©dÓÇmeÈÊcƒÉ­Ñ7E-¯>‡ —_Û(JÀ†_¾³Õq(î3«Ílê°&ÓÅA~õl3§Þ,Ò™aw,”n³zTlôÜ‹^ë•?P®hÔRË•­³ƒtÊá´wªÛ=:ù͹ƭçïbè*ÉhwX/ƒÚ*ìTzxXÉÿŽ®ïM¬)ý³ËóÖhÄÎ$;€ (.·:ŒË! ϶¯fucŸÎ`†Hÿøí™B±I\ÞþVW9‡/ì¶ÓMI:KÚ…ÝÕÝ.íM.ÍNvV ±„]H­¥ºØš¸˜k±›ìf FŒ,,6öÎ~2V §ž·/-“KŸ&0ÖT±]Êe*]¹^êÌÏ¿õÊ•‚:±¸àhew‹ipÞŸ*÷u›ÛÍ4x™Ü. «3 5 e@ŒÝiÓ„ªÀ˜8è÷±cr>Ø/õûœ0¬p†ÅªvvbUÛåcèäV–sàˆ}ˆMƒX—Ë"v{d_ŽIk6Û ¯‹.W50¹]t“tîÀn’׎ø÷ ‘ÚZºúbÞm)` ÐÞö׌ijéÕ¤»–æH!›BÓa¥°ºÒÐ-“‹3Jf¿ªÁJÕKÚÚ»ë©劽œ‹¶W²mã•— &ï¯/>¿D9]tjg%ïž;é7×N¤f³ðœm¦ËÅðù€uò¯¥Ió¥©Ú¹ÕÔ©ÒmT€s_Û(ËÄ´OȯuØù³†a1e˜ŸŠ¸8,6 éLUÄCëù‡Ð†­ÒµsǪÅpw€%¤÷wV2¦èÒ«IÏéA KÞ¸Éùë0,¥{ó厄Qe§yV˜*Ï#·›«ÑN©Õ2¹~îªÍ(êÆ? °!ýâ€ñ H=¾œáI«­Ïç @kÔZ³6Åbµ)ͼ b±']ªªÅÊá^ߪµ·}ÜŸ29ýÁ€Ïç±*•ÊÝãÍÕD[‰ùxˆß*Éõôf²“³“ýÂ^Šïß2Wb4Ìg; sþÆj¿SmË@Ÿÿ….~J¸õ^5Êv0EQcÄÙœNšÆ’NQC?!q~£;°ð!î„äâÖzaØ@ÈÖ©7GQX,í¥~õ³ñO¤5›ÂŒË…ª Úí2ñåG}Âýw×á[ºæÖz-^Ñüb+V«¢Ðk xÚÌôÇ.dÃÖ¶4j‚«’¬Ý0DŒÝnSyx¥ÚoæEhÖ[TÔÊAÛxå 'ºõz»V5¡ÝÕi ÔfS˜v»PµA»Üf¾Ô±²·Q¿<¼® }ߌ Ì„ñÉf]…ðEÊiÇ;Û«iÚ]XˆøÝSŒêùÁðÜa˜Ópw€xZ¨tUµ%è®ÿÏÞy6¤ÑtÿÌ6ªôª Å“˜˜äºýhÿð|4ïûŠ1j슊ÀÒY`û>/°; DŒ%ó{<™ræÌ™²³3&z™Í˯%\mžC»^‘_»rÓR½FOø½´VËêÁç:ŒÕqƒwg™?^1ÝÕc©Ê˜c‰÷ã&]lTrÇÇ¥Ž!SpnÁ«Ek¢€!dØw¹j»Êß;,¤ñ÷3.‰Ïö3µ–Òèª,wYR¾Ü [­2¹c3¦-:¢ó‹q‰?ÚËÖɇԿȬñ)š24¾w\ȵâÎr1rv¶öʺ®#„´òÞ÷2DºÞóÕýå÷x»ÿãÁ_Là-£K;»¶žâ<Éù·;¿¹eùÿþïÿ~ç±;ÿ¿ÿ÷ÿF'6lB¿”jµqŽAsÚê¥úëÜHñg1®~ îÉA•ŒmëØ!8%5ÛöäÂçIM“é£:ÀýNÕ0 õ¯b¿)¿ý«ûK®Vňk j¬ËVãª$æW)G4já÷v%€kb`Ô‹ù–j€ZÏ—; vkX?ÿ`û|P\ut pùã¥ÏzÓ’‚­Í.Èávvª™ëŠlÕê–¹°rº¡PÁ?”ë¡ÁYÝÝÙ£Ðoþ`öO%|j~ï¸íI&}Z~︪!>p`TU¥éóÅgš¦TUÐZ…ÔV!…‹3<5“ 46 ²ab~{ýôÆÒ‘\to7»9ÚâvÛ´f¥!õî-(w8(gVvŠ×;,“o*Áåwr­ó0žäl s´•VC&êûkBx1è:©—Èàéwaí>Uç °,«**mõz˜&ßÁP;Õ†’pÙ¡\•eà8@Žãd¹×çdªª"†Fݘâ8VjßÿšH—kõάÇFAgèQE¯öC`œ¿Õp‰Ê•ªüÎi¯rcÍê!Ùø5BBúùÀ}@%ãGÛ8!ˆ;«ßwoúf¼S5®;Õ^ 4=èúåA†¿RµªÌ¹ìÖÞ¨èÖÈÂûqÓµ ÍãÕmìÇΗ“3™Þÿ'|þ·cÉ~²¶q«ä†aôðó®ïÀƒ¯Ž¿¬–°µ¹vÒ°9Z=ÝÈ•RˤTEðþѼÖêÔÞÝmõxmZ£\Ñ©ö›?Pf»Ó©TH¦±î"$Â'Œ(tÔç8ë´Çë…œ –P2¨— Õ–¬Ê² Ý¡Øis^—ù,/‚5”ˆR…ýœ K¢hö¸mEU »h¸\D¶„fÞD­PKý»Sì飆1º \C1h‡ßï,u*m x­B©ªšÞªjš@†¡ë†Þ³k0 ]×o8Í0 ø+„08”#”ôY¥í“å ûØz¦V_"lílŸ*ev;­¢ @£ZM†ÇÕ\‹v†}¨²×ë­’Þ¬ ñ฽yÖ6lá £ÁÝ;^@”Éí´*RŸI&á6RµªOM™võøoþŒÚlå(Q¡]‡ÖâÏç¼£V2…ËqóA5ôpªb§mò{í…\›rxF»$ذ‘bP$‰ñ¸Æ¸ŽDÓ†(*½_ T«F2bZ¥t· vò;ë¥ö/µ2«Ë™îO6ôî³íì‡US½„lB‡ yÍ\«‡Ÿ p}|uü`µ$ck¸1;+œÝÒ¤ÑÈn5ÀϼÕõìÎ,¡éÙ¨jð¿þñz#d6_íl\ZZºyO5B¨k—?ˆŸDˆµOœ;>óÙYClœæš*cF#—ÝÂ"¥]9MÛ:2ûSQ•AšTËvö¦Ç"ofÂvÔ>ÛÏ1³‘ËûïÔ‡„[+îmdzŸ¿„=^º‚¬dbÂmc)M*ÙTº,^Æ€,ÁÙ7‘1Z)§¶?­”p‡‹³±i]jSÙš €¬Áéé —™AºÒ©çRg‚¬3:Œ rÿƒg2õÙMHøÌa¦"Wç/ui¯nœIŽÄ×wA Mî4ùÌa¶Ö¿.²ä¿ÛäçãrúÇÅù¸„pOýã«þo_Š}ŽK¿6+¾ùwlúg†Š™skÃѺX?;Jåš#Ž+™õL˜õu7ÔšÔÈíï Ö©ž m,HÍBú [Wzd¾…}Yƒ3ÓQ—iã_;EéÎ ð’±Øâ|¨ºçí€+ùm.pù‘hÅ/>Œƒ›#NÊâ‹'£cHŸIeªR?ÿeöÊR½OßqluXã_òæåmH1qcãÌŠ×üCsÿ”ôëaáÎüy¦¿EÄõ“óÅA{l1Òù¹SìZš5²Ôvžãý½¬®GwÆx’ï“n­°÷+Ûìj£¿Í_²´´tWxÙ[Ýê¹úÍLžÉˆ[åÓ9Ѻ5>khDH„O ÄÚ'ðB!–LxÆ® Ê3ó5P_9KY"óo™ôˆïw„P&ObÖ[ÝÜ+ÿMﲞeu¼Bþð€çIjþÐïkmÚæöû]ŒÕÓýA„Dø$B@ <t¡\b&>}Y\\\\\ü4ç‘rüS¯aÓÞÙoß߆”lú¯š<Àó¬Ž×ðÜ¢ßûDsc¨’¢_üЈŸBˆµOá…B,™@ ^xÀó$ õþ¡ß÷Ó†&KÝ¢\þ B"| !@ ÂSA<· ÷?ÂÓC^Já ªú³·Õ@ „— ™?@ „Avÿ’=¾ø>Ä^É_9øß~ùﺮäÃØ£sïÂ}̱ÙWŒÅ¿Ì‡˜‹*Öøíï©ÆåZ&>~ŒšK»}b@&÷drÒg7!­];I¥Šíó3¼Í¡ùùèç~©{2·#ñõ]6 04I(eÓ•‡ºü¤ö‰?¡§O³vnÒAÉ¥Ôvºö."zU\\õÀJ»–;JZ½îÇ¡ÌÞX2êµsHíÔr©Ã|Køìv:0÷5á„k·hüÎ÷TàÏXò0cãÉxÈi¡5©É§³ue(¡É›˜ŽzmehR³>8©«´=<w˜)]øÌa¦zíÒ€œÀoqqDýó;{ý¹Ãç?ÚN~¤êÆ#Ÿßz•ÐóŽsž“ÕÝé ÷u3xgÅ8"S‰ ãÆÅ_g-¾Ôw¾Ö  ¼³_g¸ìês¼ÿ¡Ë Ázo,˜ÞðáÙþ‘ÎÉÆÚI¯K[ Ïs`*vR-a†ÑÉ®¯vîÊÙ@,LËý¯â‚SIkmw}· ÖðìÛD vqa‘Tɤd½qݼۙµõœˆXWüýôx¥rÔÀÇ9OgŸJq÷Gùüø5Ú™˜µÎ³q[ŸfOÈRÞþ!„®ãZÉŠa@UqÍ™sG&\ìu‰\;á!ø7O±7ê±XŒ«l®žu%<;÷W6 øÛÚLÁ©WÚù¹#"[dn.ê-íð=ëè6Zqç¿EÀ¨ÿ‡,y@Æ"3a#»µZ–543÷¬ïW´Á…Ö@Ô+e×¶Ë ˜Ãs ž|½¨šC‰*üZ)Š´}òí\´ñý°v>¼Ä þ(&ŸßTÎüñ÷c$ôÇ2ÿ¼ÁvЃûº¿¬³¢<ñwgã E¹og&š?3-Àù:Úá²C­‰N|uÊoƒµ¬÷Æ>Žë ¼t9šï§Ùл϶ÒLxÍjõhç $€ÉONúì¬.ÕÏŽRgÝ‹0±BÆ“ütk…ýlïû} ¿ÒªòǹJÛ5ç±þf”3±”ÒyëtŸ(‡sL(n Š ²YD#€«[{Û™Ÿ•Ömh(µz‹ pÀ㬮ü!û44E>?@Á ÛkÙý®È! Λ׳[™¦ôŒÍ Z®K:J¾ …?0±Lç[ªЪ4¤ Ù €íS©1‡½Éo¶Uhf6þíJ­£<±%c`­V®™ç;*|E;lPé ,lhª¢³š¦€¦éšÒÆvjÙf©£ 7k‚5³2À€NÆâ_ÊA΋»9µžÝÛ/´ dòħb^;cHÍÂÑáIC¸hqcÈ’NëgÝz4C³ÏÏ–®½$Fœ'9›ôqJ-»ßSóî©übZ÷L°ÅCÞ:«ld£¯æo$Ä8#3ñ€•eJ•dÔ>ý¹Ç[1õÞ+¡™¿ í{ó%XÿÙ]„²N~šC?Ž…ó%g§™R;õâI&WudöÆ“Q¯¥UÉ•ÄG²:lêÛAìëFV/œ³rx<íÂJCÖʹRtÖcÍ´Úx_‚ 8]h2Î1QÀ¬›>°Ò£DwÁ÷†edß?P'}¶µ²šê¸Æ}f ýñ)»p°úï÷_'zxz½„¬ÅnbX«ÝL>Èx´V…¯u<Ì2ñþÛ·¯_?ÍOm5bŸô ™“fWÃ0¬¡jçaÔFþ¤*@3½²¼¼¼™Çû>Ä:–N«ý˜C®?jŸ”+B…\õ¢@·õ)•ÏšÎÙO“\¡¬ŽÏ½ ÈÇÛØÉƒ]ß-v—¿«…SÕ^ r Ôu|váË·o‹ï§ü7oæ¹]Gòô–|U’u›ËÅ2¹œ–e†‚t¶w¨N,~ûúõŸ÷žÚvª¢€XÉæ Æî°iÂÅLi0'` è³­••í²96áF@ûâS¶ÆþÚ÷•_Ù?qÐþxÒ.üü÷ßÕÝBç<ڞ̀Áê÷S¥’pù·Ù¶T÷××Ö~𰛤ÔqÍ6F'‡Ü(S–ÀÔô„œÝÝ©‘Ý CA™¾€ßëu[•ÂA¡ç ”Ãnlm®Òc‘7oâþÚvñ¢¾YGç1,y0ŒÚÉQóÍÌ— Unò è¡„Àúqkuïׄ¬¡äÔ„°‘é.GÒ¹oI—ÞæwŽº†tŠÙBKPë‚î4q’Åj“«AѪå:±rÐ-V›RͪÐi_¬âöl†„»Ø}>¿nrŸ9­v:•†í©yhÖêºæÒÚõš¢ù4Ä¢þš¿™*JÚùÀ1v»ŠÝmwêŸP¯ÌßE«V…˜Ó‰ø íršjùæy¢ˆáXÄv-ŸªuEf«U®7d@È8A·D¿ouìÄÇ÷æk¹i¤WwŠØÔ‰}ÝhªãårÛYQeâlM¢NQà}€T¯Ñ~/­Õ²zÐùÄEŠžÞûýzÃßæöü{ùÜ%ËË¿:§ýö—Kùí_Ýì"d Î-xu hMP/!¨í*iÿl†e˜3}uU–Î_ÜJùr+lµ(ŽhÔÂïíJ—›Ôñ÷þHwhüîÿxpÄFŸ };»¶žâ<Éù·;kÑ…‡×ûŸ°Ï¾ ‡ÛÙ©f.v)âô)!“;6a Ù¢#:¿—ø£½lÏŸסñ÷3.‰Ïö3µ–Òg©ß£^Ì·TÔz¾ÜY°Û xÞÙߪ£‡sÛ’qŸ="°Æ§hÊÐt:ønÜ1”vùÜâ~£cHgå‰~GF¨hÅå"b,þäì4lí•5Œèƒqõ£ÛŠBÆ…30 ƒBè–ð’ÞÍp›1ŸOå7¯[Ûu%÷Ñ<–>š¿ÔlÛ“ Ÿ'5Mj¤êWÉ_ý¸·ÚîfƒR­v"Î1¨qN[½ÔýPB*¤2æXâý¸I•Üñq©cÜ(¦Ö®V{—}`«ëv×Ë׋¡+*€Ký1Üפ:^0·•®ë!­¼÷½ À‘®=|ЪÕ-saåtC¡‚O]”aèí½ïЧ7ü}nÏîhþ&Ù0 1¿½~*Þ+ÚâvÛ´f¥!édƒ0:h«ÇkÓåzwÆä›Jpù\÷•Á¹Ó±¸œœÉôþ?áógKö“µåeŒã§|*bhÔõ[DZRûþÅu]®Õ;³Õ¿ÞG:«|}öÅæthõüE8}2žäl ¿Iš IDATs´•VC&êûkBx1è:©—ží«ÓgååÌÊæ+±[–¬ª7ƒ\1ܬ£ÑqiÉÐùs@Ø}.ªÎ7`YVUÔa„ˆ¢À¸e`P ­^Óä2j§ÚP.;”eœX;x¢d\Œ\/p\^…ìÑ 7AN¿Wâ×ï™c5ß+$^ó·âqguãûîCö à3«€\©Êïœö*7Ö¬ž µV!µUH!Æâ OÍ$Í‚|£˜4Ë€ªhÆ­N•D̲.õ(¢}|Ý-FQ/¬³ªÊ2p  Çq²,õðu„J©eRª"xŸ¬¿CÏ Õþ>÷¹Øis—™ ¬¡©7ãvª—Àšy3=ý.áÅVBÂXBӳɩ·qïyU(íðû…(ÖðZ¡Ðʬ.Ÿ³’nèüîr¯qƒÞ¬ cÁq;GQìX8èhTª÷:?D™ÜN«"Ý?4!fŸÜ˜Z—;¶púTké­Ýœ dºnè=׆ C¿…f‰«†a YÆÙÔmKÖ›õ–#²1er†¼æFó²RnÕÑÈxK¦¡d<ì`)ÚäûØz£5ŒPm·•1×D¢­>·µÝî€Õ—ˆí  Ín§UÅaœ±Ó6¹¼v†¢8—Ça´Û2H¢hvºm,kñDÇ]ôeH|3$Ü„rùÝm¾|ß6¬æ{…ÄjþNBB,ÇQ¡Þ/3~+ó·[1€T­ê®‰ £]­i¡’ñ€ÃÂR†ÚuÆy1ݾ1–B´%0³0ëcz•ýV‡Mýèíën3‚êx¹àœ4ªUk`ÜÁÒ´Ùö¡J¥ÝË×€ÑÈníæŸí·Ó½è]¢!zÃ0šó—p¨|:mŸz»e&Õr‡m½—@[’Êi퇟c@ÀãJ~› t=å›%?hÅS5P:‚¨²ZK<÷zå$íJ$?~e)M*©Ãâp++Rá eJN}7!EàS‡¼×N­ø´4 ­ãÕîyÛÖÉOK“`hr§É7GWÚûy,ûDv›µÓn_ö(x}jÝ~P¬Ä7o¿”R*ƒïƒ:§ÿ;½+þK„8Pþ¹%ÿåß—8ܶd ‡iKröS”1$?H•.zâÛu4ÏÐ’¥üQÚ–œþ¢u©Y}dŸšù4΂Ô,ì4>›ó̼ûnŸíçªÁÈEH|3$Ü€rù]-þèÞ]ÌXÍ÷ ‰ÓüÝ„Dþ´óaáŸn}šÔÈíïöù zàÌßiÅíj•‰ŒË飋¬-‰ÍMZX¤´+Ç)^éf>eKN-|åÚ©\ GnuØÔ ¦ƒ>ééënóðêx¹hXg¥•ÓÖ©ÄÇEÎk¹ýÓÞ×ÝÜ‹‰žñ./ì罆é 2›¯¾ZZZ"‡ÏbŸ„×Ö’‰y†‚ö½ùì)ýØ+?öôênB”gæk ¾²SÔ(Kdþ-“þ‘bÞüÇ2ÿ7ððê ‚É3q«|:':£Q·Æ§s íJØÀî£ãq?]Íf+26$6ÎgË­NêñÞ?@x ¯¬–ßüñ7&!](—ÆcŸ¾Dº» Uȵâeþ¯àÁÕAÚæöûá8§Z=ÝkBük=dqùý¬t–­ÈØØ8_ dþ@ ÂËB-n/>UBr%õ »“æq~›‡Va :¹íÕ¢¡ª Ÿm¯òF÷“äK!µ´¿ZCªÜ+$6Η™?@ =14Yên.ºüq]ˆGS.þçKlA @ …Ì@  ù@ @”Ñ}ÿÀØ£sïÂýÿV/$ŽÈT"èà ±–K¥ò- ÌþÙ¹I%—RÛéÚ‹úN„ð"°Çßê;ßkPÞÙ¯3\võ×Ù=·³8_câÆÆy@shþCD>ú¹?’’ £… ¿_ŒÙ¯ zž‰@Ù‚SÉ —…1”v-w”*´ÎÏ{¹ë¬î@æ¾&œ€ê^Ö©ñ;ßSu€»âH|}¤  MJ™Ãtå^“{w2?\1o ûèsð„pX&>¾eFxˆ$žÿdÍõ©²Çfä%Yœlpþ£íäGª>‹̮â´Ç>χ8@HÌ®­^¿ ävC‹IÈ›ë¹?yqøÍ²¿l«»ÛâÌÞX2êµsHíÔr©Ã|¿GÀ`™øø1j.í^—ÞTòoŽž w‡Ù9xâÀ˜J†TK¸®tÊŸqwö7Z”+ñvf¢ù3£yB–òö!¼p×JP ªJZa„ЗjMäp:(øŽLªdR²Þ “‡g‰RÜýQ>¿ã‡v&æC­v¯ l ã*›«gd ÏÎÇý•Í‚‚uV´â΋€a,¤Y[ωˆuÅßOW*Gs6óƒ'Äësð„¥œ„¡0ùü¦rf”“‡q Ç«ÿ=†±ø—äí@ÏÀU>FÙŸl‹3§b\iç玈l‘¹¹¨·´Ã“~iØ@,LË—7àörþ3<˜avƒ{9#™?(­*œ«´]së¥Ðáñ´ + Y(çJÑY5S!ÝÖç‰ÍŒëÙ­LƒL #C§ËMÆ9& ke&O<9é³³ºT?;J5Õ+ᲤÓúÀµÛ…Û™Ÿ•ÖÅØˆuMÎÄv¤f!}­“1ÓbhŠ|¾pb„íµì~Oob™:Ï·T UiHA³@Á:«ÁÁ[Èeæ”Z½Å8 àQœ6óƒ'Äësð„pÙ´F>F,óK!hg~®çD`Cï>ÛJF0á5«Õ£ƒ’Ô£q!³7žŒzí(­Jöð¨tã6bÚ•\H¢ÔÚaMÃ7mlBx0³¹…`ssã´ƒlÑoL™µƒªéJÔCKÃcöùÙRª;c½>ݽz­JÛÃÓÉq§™R;õâI&Wõ{´t=N,=â<ÉÙ¤Sª™½ýbg%÷¨Í¾Æp-ŸOmu×â¨1‡½Éo¶Uhf6þí÷<ãŒÌÄV–a(U’QûôçoI(9K,îæÔzvo¿Ð6ÜSÿøÅ´î™`‹‡¼u22V?ØÈ /~ú……rF"–R:o>Wiç3¼ 0Ãì jƒ‡‚‘|ÿ µ*|­sómcâ@–±‰Ù)¿E–eŽã@*Ÿ5³Ÿ&¹BYŸ{·Éä0ZÔZMwº8‹Ó!Ö]·HûãSvá`õßï¿Nôðô„ý\˜´ ?ÿýwu·Ð9÷ŸÍôÊòòòfþƨÈI:›‡kßW6rj ¶á9@¹Â!TÈU{;!»¾[ì®=1V §ª àÕ`-äÄ:–N«ýXN ›ùÁ‹Ù·ì7ô9xB8Ú'kËËkÙ¶œß\^^^^¾S'}¶µ²šê¸Æ}fèѸ_¾Ÿ¸>Bn¤WwŠ&üãb>] ¾y;g('›¥{Þ6>¸DÅîóéü}&‡ñ ˆíZ>Uë“ùaâÄ#ñÙ\]+ ˆšY¹Ga”Œ ÙOuæóYݨA@9ìÆÖæê!=yó&î¯mñ ©¢¤Ïc·[ Ø}™Ô)f -@­ ºÓÔ-h³V×5—Ö®×ͧ!vt¶øœ`ý±qºQV!toØ»c†v˜ýÀÃðhó]×BZyï{€ "]7™Ü±™SÈÑùŸÄíeëdCaP–––úüïò¯3hÕê–¹°rº¡PA@™‚s ^(ZÔÆ@k ´=4X)]Æõû³Ax<–——9ÜÎN5Ó÷#Ú?ã’ø|a?Sk)=çˆØÚ¼Hh@ÚÙµõœçIοØY‹.ü1 ´˜}¥>@ÊoÿêÆy·qÝl›Z»zõé*å›~‡ÚÙÕúÅ"¶iãB…ÝõòõÿÔÀÜãqC(¤ñ¨˜åþŽò7Kô`Æ|>•ßì¿éB*¤2æXâý¸I•Üñq©sÓó]f~ð8{qYLÃ0:÷´*ù^G}KuÃæóYݨ0À¨ó-Õµž/wì6(ÖðA¥fÛž\ø<©iR#}T¿Åå×9OÀC9¢Q ¿·+°¿3fx!à‡Ù 9 6Pe8ŽЀã8Y–€ñ$g£­´ú0Qß_‹A×I½ô¢Þž’{Fuö¡Rj™”ªÞ®Ô0 1¿½~zc¹ÔãüK¸ü ç…´ìÏŸUÍ`Cï>ÛÈáѱ9Z=sœ¶z¼6­Q®w_'QîpPάìï[ amêr­Þ™õبþqŽrþ9p1û‚ÓçÃ2À€{‡,¸ÆÕƒ^¶Mše@U4@/l)ÑÙ¨§xPÑÎCÞm򯆬’x7ß½§á %t\ã!såjWÑc”h 8{ƒœ~¯Ä¯_ŸåàÜšÖ*¤¶ )ÄXœá©™d ±Yèýîçoe !Ý0`%ãu/Õaóù¼¬î¨êM“í½àÅâÎêÆ÷Ý—vñ£aq99“éýÂç;–ì'kk'=æšwÇ /Ü0ûœ[½aŸàñîhT«ÖÀ¸ƒ¥i³'ìC•JÔZzk7'h€†®ú_5%&ü!ŒFvk7å*ÄN›s¸Ìe M½·S ‰¢Ùé¶±¬ÅwѽcCÑ4 Š 8M:k2Ó1Û'†³³Bëæù–ÐôlrêmÜ{îÔ†1dù¾ÝD”Éí´*’ô¿êI1qú|`BŠ$1c®1Žå,æž[$ðKì´MnßK!Ú˜Y˜õ]-sÂIªbÇÏ[,¶iþqdH¸ëé­ýŒÇüWË—Q¢âì åò»Û|ùÚ–I’ºnÍꛜpŸ»5K(8,,e¨Ý ì·bw7Ρ Mfâ\^§ÞnÉ0Œ’±!{©ŸÏ—`u£7ë-G dc(Êä yÍf¯J!Är…ê»ö÷Ðʬ.Ÿ³’nèüîrÏÉÜ3¼0Ãì.·{ÃÞ!ÂhÞ?¸’ßæݦõfÉZqçßT­œ>°N%>.r†XËퟶ@׺óc±Rß¼ýPJ© yù@x$ÐùôTåÓiûÔÛÅ(ƒ4©–;lë ðÙœgæÝçpûl?W FàÚ¡"Ÿ–&¡u¼ºq&ñÙ‚'ùù[\iž¥vŽüoÞÏÁÆæ : ú‚ì6k§Ý¾é;”Ž ª¬Öº<5åŸ[ò_èÞl€uV§Œµ°N~ZšC“;Mþðx”7Ü“ù“!ŠÙ«ìwõ9xB½ÐÊ'Çžé7ŸBHkÿÚ)bLÆÅ§S¶äÔÂW©ÚIŠ¿>HÔ›ÙTõãT̹žªkئ=8ØÇÍ¡DP‡:…ÔY%0ŠÐB‘ØÜ¤…EJ»r|SŸ÷Çi/¾u·Î/,EÏÏ5Â6„Né¤>ûðu–ÖÅF~ÿ°9œ’±!U¼ê0ùXŸOlux°m³p˜¶$g?ECøƒTωDþ´óaáŸn/fhR#·¿wÚïó÷¿Œ’‹7 ¶¤­a†Ù€é {†|Èl¾ú¨lii‰lÌ <[ˆ}^XK&æM Ú÷æ³§ôc¯<·]çcðRòùg <3_õ•¢@Y"óo™ôh/:$€É3q«|:':£Q·Æ§s íQ„Ï–[Ôãí_"ð0^ÿXïs~ñ3‰ó1x)ùüCèB¹ÄL|ú²¸¸¸¸¸øiÎ#åø‘¬/n@ÛÜ~¿Ë‚€±zº?IøRx´ï§ @ < jqû{ñþ`OçcðRòù§+©_½·FD'·½Z4Tô³íUÞè~Þþ—™?@ =14Yên.ºüñ8—Ù¿D @ …Ì@  ù@ @òýá5áH|y`!†a@;»¶‘2{cɨ×ÎR³˜Neë2˜ý³s“J.¥¶ÓµõÉ€Å2ññcÔ\Úýßa¸ðûŘýÚÞ¸«ázHÚžNŽ;Ì”. |æ0S•€OÆCN ­IM>}˜­+ø„F”ñ·ìѵã&Çâ_òæzîwï÷Å–è/çY(™ δüHÕ‡¦>pBç#gþÄ’cν wö/=ÕÅH€Cj§–Kæ[º=¶ø>Pßù~X3€òÎ~Ძ¿^ÐõNŒ#2•:8C¬åR©|«×'cñ/ó!æâsßþžj<<ñÇ@ <G+ÿ=ºÝ5š‚S seûçŽHÙ'æfc­Õý¶'d)oÿ‹×q­dÅ0 ªä<@ … Ä´|1¼PŠ»?Êç'ÒÎÄ|¨ÕîÌ¡D~­EÚ>ùv.Úø~X3Æ"3a#»µZ–543÷¬ïW4ìãÏl‰ž:S¯ßQ²Éç7•3£ÓÿÁ„þXæ¯A,ù·1¦’a'Õ®ÏLÁ©WÚù¹#"[dn.ê-íð´Ãe‡Z9œ V8B(O|ÆÝÙß8hQ®ÄÛ™‰æÏLïƒ{;ÙõµÓ‘Þ±Mæ„×5æk·ZªÐ(”¤÷´À@BˆóÄfÆõìV¦A&„—åŒD,¥tÞ:mCSäóñ¾5¶×²ûbZ¶YêèèÍš`DÍ,€aµrÍ<ßQ@à+rØaƒJÿ8ޱø—„r³ÄânN©ïîó"Ðþ¹¯Úêf^ktaŽNýHk‘… ÀüRàüncÄy’³I§Ô²ûû…¶€LžøTÌkg ©Y8:Y[^^˶åüæòòòòòå;C³?l©î¯¯6¬± 7ÚŸ²5ö×¾¯üÊÈþ™ˆã"¡@€>ÛZYÙ.›ÏCâJô:yQJ¶úýT©$\þ=pêv“”:®Ù&ÃèäË@ûãSvá`õßï¿Nôðô„½gB¦àdHÉ®­|ÿwý´#æ~íñZaêù¹¼·¾vаÅ&\uç×àJQ1_Z«Â×:77ó0 kPÖñÙ…/ß¾-¾Ÿò_ÜÕ¦ÖjºÓÅYœ±ÞxQS)ÆÄ,c³S~‹,ËÇõ m™xÿíÛׯ‹Ÿæ§ƒ¶‘ ýÉüðêÁyw©|¸±ús·dŸ`ÎvwrÂK;y™@8‡õÇBÆéqóíxEžoß’Ì--ýg1Éåv2MÀ¨5Çf¾üóõËBÜ¢H÷<Ž£ÃŸð ôv]0,fÔjUs9ãt™k•f¿Ç%>sZíÈbµÒ0L&,V›\- Š®KÕr²ZÏ{ÊN1[h©†Þª z7$®D¯“—¤d»Ï§ó¥kk£§Þ¬ÕuM×Úõš¢é¢P7d­$h`È•RµÙØ^ ©âå¡úˆ±Û/Çʸaêùl®.ÊR­Ò³ùZê#g0%¦˜¯”Ãnœn®þX?lÚqÿyÅIõíô{Z­þ²)Š2 q6‡ÃB†NQ=Gô­“Õµõõõ_;é†9–šF>Ù¿Dxõ`.2¹c3¦-:¢ó‹q‰?ÚËÖɇԄ—åˆF-üÞ®pgƒng§š‘î ©w–‹ˆ±ø“³Ó°µWV@äÖøMšNß;îIƒqõu÷ ÊÕªqAuÙj|ÿ…>ãâC?Ã0ºã„Ðu!….†=×êS¢WÉËQò˜Ï§ò›×7‡ ‘úB¦àÜ‚WŠÖDá*ä턤fÛž\ø<©iR#}T¿JW¢ßË|ï|Ž€•<Šb¾z 0êÅ|K5@­çË» Š*@«V·Ì…•Ó … >u&‡A×u„VÞû^`‚H×{6x]•¥óñ”/·ÂV+Àƒ¿'óÂkGUUЦQו24£**0žäl s´•VC&êûkBx1è:©—^íJ%áµbq99“éýÂç;–ì'kk'›Ó¡Õób¿¿*VÓä2j§ÚP.;”«¬Ýç¢ê|C–eUEíŸPBúù`KªV•9—ÝÁÚ•ƒ«…> üK†µëÍ;ÐV/¦D÷Eÿ²yîJFN¿Wâ×ï¯ œ:†!æ·×Oï|ëz;!.wV7¾ï>äõrßÌ_ÓüÈ\É£(æëGUo.^¡Rj™”ªÞ'È×ï£Ê2p  Çq²|i¥´Õãµir]ÔL¾©—ßÉu¿®Õd’̯½Ùâþ µ^){Ðkjœ¶@5Ò[UM3ÀÈ0tÝÐÉê áEÒʬ.gº?Ùл϶³«cU¹1;+œµú†¤}“‰°µ³}"¨”Ùí´Š‚”#”ôY¥í“å ûØz¦ õNm¶r”¨Ð.Ckñç}vªU# 1­RúÚ>E’kŒëH4mˆ¢‚‰¶ÉïµrmÊáqíRϯu­>L‰^%/EÉ”ËïnóÙû^áR·õ Éy]æ³¼ÖP"Jös‚ŽKˆBˆå8 ‰Æµáâp`3O›Ì,UÖåuêmþ±¾ÎXÉ#(æ_€Þ¬·â­QèÐc!¯¹‘k˜Àhd·ðÒ¾iT«É𸣚kÑΰUö.öØYBÓ³Q+Ôà;¼ŠA;ü~g©ÓPi[ÀkJ½Ïi2 ¼&‰¯ï‚]£þ´4y~Òˆ”?<6'ß|šd ©É¤*hÝ¥±Rß¼ýPJ© q»„ײ۬v»¿Ykåì±{zös˜AºÒ©Ÿæ; åÒ¶äô§­KÍây“ Æ9ùþË4­‹õ³ýÔå.üVµÊŽ‡Ú©ƒëñiå“cÏô›O!¤5Žíñ ½*Ÿ>²OÍ|gAjöz^Ž/Ñ«ä…(™rù]-þèÞ=d§*ŸNÛ§Þ.F¤IµÜa[ï‘ÈŸv>,üC“¹ý½Så™ï”Nꓱ_gi]lä÷û~dòWòËùêp%¿Íhx³ä­¸óoªV8L[’³Ÿ¢Œ! üAªtgÃ2zaëˆZ9}`J|\ä ±–Û?½œ(ATY­%ž»½r’v%’¿²”& •Ôaq“^d6›/ÿXZZZ^^¾üÓ䙌¸U>Ѩ[ãÓ¹†F„DøB¬}þ1ž¡B^Šð Ú1÷ÓÕl¶"?Ã|>nÙä§2ïG{ÁB(“'1ë­nî•ÉN‹‡òb”LûÞ|ö”~ì•ûÛÔ» Qž™¯úÊNQ ,‘ù·LúÚ%z¿ç3äáÅ$ BçÝç?^ßñ´Üê¤ú¿DÛÜ~¿Ë‚€±zº?ˆŸDø´ÄBbvmíôú·k{¤lï|>[ ùù°Á2ŽÈT"èà ±–K¥ò­çümíÁ…ß/Æì×å½åý ¾/Ƹ5{lñ} ¾óý°fåý:ÃeW Óë?-”-8•œpYCi×rG©B«çYa`Kdþ@ ŒNvýf æP"‚ ¿VŠ"mŸ|;m|?=!Kyû‡^ ¸Žk%(†UÅ5|Ιp±×%r턇àß <­ânœÂ賆6YQ¯”]Û.+`Ï-Lxòõ¢:èãZqç¿EÀ‰¤J&%ëëã†vfm='"Ö?=^©õ¾úê!`3oL%ÃNª%ÜíóØ@,LËr_!VKxÕõN垈²¥õ•¼º4mŒê†ç_Éç7•3£œ<܈S8^ýï1ŒÅ¿$o²6oåóÙZÈ#çsðKyâ3îÎþÆA‹r%ÞÎL4fȱ¬·QŠ»?Êç§žÒÎÄ|¨u>i¼ÛãÜípÙ¡ÖD§ƒ‚u[=ˆÅ¸ÊæêYY³óqe³€¿§ñQl‰Ì¯Ÿîª­ÓL©zñ$“«Š:˜<ñä¤ÏÎêRýì(uÖTáR8Æ,é´~vãI~HºµÂþF¶1l7Ý©e›¥Žn€Þ¬ FÔÌB „ €8Olf\Ïne˜þޱyƒAËè”|þ !~þ€Ñ'à_!hª¢³š¦€¦éšÒ  ü8–±ø—ù íÌÏJëvþ ¥Vo1ŽxœÑ-.óJ«Êç*mלÇz#0åŒD,¥tÞ:mí#Äj +ì™Ðm®VÝ ß&ZÇ«g^ulèÝg[éÀ&¼fµz´sP’×6ñq2yâS1¯1¤fáè𤡰¹…`ssã´ƒlÑoL™µƒêk^·5ûül)Õ±^Ÿî^½AÅ:@¼æ1qbéÙçIÎ&}œRÍìío¼­¸ŠóY[Èoæs`o°§]XiÈ@9WŠÎz¬™V7*Œ32XY†¡TIFíÓŸ{¼5þ%¡ä,±¸›SëÙ½ýBÛpOýãÓºg‚-òÖÉÈXý`#+Œtêù‡14E>¯kÎÎ~òH…¬:>÷f¬~´Èrê``ôÙélïprvñÛ4 MÈlïWô¡ÇÒL¯,§a,þ%û_Ä:–N«ýXu‰Í¼ÖªðÀ¹n¶ŒOz…ÌÏ&;ÛWˆÕVØ+¡;Èg¿–ϘàÛ/ŽÂ÷+Òžª£Nzgk%ãšý4á3—NE\ÛÄÇIûâS¶ÆöÚN›rÆßÍD+G PŠéÓÀû¸ŸO1ñ@'³þª'V¿Ÿ*í }B` FóƒÇÙ«6ÍþùhoýÔ<ñvfÂÅ\½Ü»çs¶äs0n°Œ‰Y6Æ&fröX–9;€ó™‚“!%»ºRÑ-s1%µÇw‹d è½­•”)ò~~Â]ܯ€Ý$ý<®-¾ —~òog]–¬ð*6R®p¶./û»ÛcÝ€Z«!—‹+ѱ^79Ÿ®Ã#d×wÏ2V §öœÍaKC@æ„¿„Že@l×ò©ZWd±ÚäZFдJ©>=ncAP,V›RͪÐi‹×FÂÁ®lÕ•¾C‘ÖÉÆêD[üÉÙD°v¾‘’Ì}Kºô6¸sÔ4¤òáF™²¦¦'äìîNmˆpÜÕ'Ö—ˆ[«{¿$d %§&„Lw¡m°Ç‡Â]ø'ˆ2:g»;Ú˜yÖ §eBý…X-õTÝc 7J|G-¦ GÛÄ>j±ÚäjFPt€j¹NE¬4d1Ÿ.ß¼3”“ÍÒÐëÃ/ »Ï§ó÷™Æ`4?Lœx$>›«‹b¥7^î= Î?j!ÉçCÀ´MŠ¢ Ã@œÍá iCÔ)ªçy7ª(içïoc·[ Ø}™Ô)f -@­ ºÓÄ@³V×5—Ö®×ͧ!öEÝxÜÚðŠüÚyÍaûbœ[ê5zÂ掠ZV¾¨ùP&‡/à÷zÝV¥pPèõîe[‚Û󇥥¥ÄJ < ºC©Ê˜c‰÷ã&]lTrÇÇ¥Ž!SpnÁ«Ek¢€!dØq’Ú®ò÷ö)º*Kçûa¥|¹¶Z$­¸³\DŒÅŸœ†­½²‚LîØL„)d‹Žèüb\âö²uò!õ ÜÑ'.íò¹;ÅýFÇÎÊýŽŒPøñáhg×Ös"Pœ'9ÿvbçÖ¾ÛQ2Pæ)G4já÷v%¶¿«%¡§ê)¿ý ß6±\o°†aPè<¤! ÒxTÌò/æCÈßdÌçSùÍþÖ†u€7\h~ð8{q½:ºª¸‡Äyɰ‘äsx°mS×u„VÞû^`‚H×{Ïá¥fÛž\ø<©iR#}tÕV«¯džÐäp;;ÕÌEmâúbçÖ4€V­n™ +§ |¢üÿ´3þ~Æ%ñùÂ~¦ÖRz¿øÆ–çöü\€Jx¶ 0¹UU•¦éîoš¦TUÐZ…ÔV!…‹3<5“ 46 ²ab~{ýôÆ|Ý.:tÃÝÒ·Û¦5+ ©w5ù¦\~'×: ÐV¯‡iò  µSm( —ê(9èm¥ÕЇ‰úþš^ ºN꥗¼ õOÓg¹zþ_¯Mk”ëÝ7Gˆ¢À¸è? 0( õ}|èr­Þ™õØ(è<¦Á3oq99“éýÂç;–ì'kF¸©`´„UÝŸÛ6{…¼Ö`¯FŠ”#¤„Žk er;­ŠÔg’ù Î|+³º|ÎJº¡ó»Ëk'¬«%¼êþضÙ+¤Éåµ3Ź<£Ý–u"á®§·ös0ó³½~ùP.¿»Í_%IR׃Y}“îso…u€ƒÇ9´ÉÌ"@œËëÔÛ-y$qÞå‘,däùlÛ„Fµj Œ;Xš6{Â>T©ôzN!Är…B¯û-CO¸1;+´.OÂöÅ}ÜšÑÈníæ_Ö·ÓÀ0ŒÑmÒ·¹ÝnKC¥?‚8„ç‚^Í:§“Ÿ¾²†Ø8;ìÕ­-‰ÍMZX¤´+Ç)^•O§íSo£ Ò¤Zî°­€Âgsž™wŸÃí³ý\5¹ŒW[’Êi7¾‰¸›xå$íJ$?~e)M*©Ã¢ åì±{zös˜AºÒ©Ÿæ; uŠÄJA|óöK@)¥2ø>½sºñ¿Ó»â¿DˆAÃê@é¢Êj-ñB“ÍÓÃâTlþËc(íZæ¨ AêœË£W>-M^œñ`ü´4 †&wšüáqs¨8¦GÙ]ÉosîPñÍ’´âο×7¹ßVKXáꥺ»`Ûf¯Gö©™Oã,HÍÂþAÀJÅ“µ†®éb`vÒU9¬½Ê…YÊåwµø£ëÃ]¹˜É¹gÞ}u ©³J`z8ÀÁã´Ç߇º[ç–¢ÐÎü\ωØÚì”Nꓱ_gi]lä÷›=ãÄòÔ2ú|â¸iåôu*ñq‘3ÄZnÿ´ç›"Úù°ðO·Ã24©‘Ûß;í÷ùûkÙmÖN»}Ù‰âûbœ[»¹¼€^Ø./”néê —òÞr÷;ÿ;½áÀ¶4Tòf³ùò¥¥%²‰ðl!öIx`-™˜7a(hߛϞҽòßv½”8ƒ—’Ï»Pž™¯úÊNQ ,‘ù·LúGú‘–1þ^LžÉˆ[åÓ9Ѻ5>khWÂë'3öy¯ðÙr«“"û—@xY0^ÿX¯Žt°ûRâ| ^J>1èB¹ÄL|ú²¸¸¸¸¸øiÎ#åxrÑÜè¡mn¿ßeAÀX=Ý×…ƒ‡¼WøR û—@xY¨ÅíïÅ¿4ÎÇà¥ä‡\IýªÜŒð0:¹íÕ¢¡ª Ÿm¯òF÷t–Káà!ï¾Èü@ @艡ÉRwsÑåëÂÁCÞ'|)ýK@ aPÈü@ @ ™?@ „A!ß?Â_cν wöÿwx~s5eöÆ’Q¯Cj§–Kæ[:mO'ÇfJ—>s˜©ÊÀŒ'ã!§…Ö¤&Ÿ>ÌÖ{œ”o™ø8?v¶¶Ã+€Æb 3Lzí•ÞÁð,`ƒóm'?RõÞ`§=öy>ÄBbvmíôú})æÐü‡ˆ|ôs¿Ôýês,þ%!o®÷¼ñû1òÙ?!óË6EÊœJN¸,Œ¡´k¹£T¡õxÇCY&>¾e^É©¯\øýbÌ~MнãÁì±Å÷úÎ÷Ú”wöë —]ý5ÔuOÊÀ2ÿ2b.neÕøíï©ÆƒS'ó@ø0¦’a'Õ®÷ަàTŒ+íüÜ‘-27õ–vxÕJDPá×JQ¤í“oç¢ï‡5c,26²[«e YC33qÏú~;뜥Ëéî­\–pÜ×ɬ¿˜ÛKÄäó›Ê™ÑʯÅ)¯þ÷Æâ_’·I•LJÖƒóù¼'¡—mŠl ã*›«gd ÏÎÇý•ÍÂ\ŽýQŠ»?ÊçG¡ÒÎÄ|¨Õœ .;ÔšÈátPÐkòû,ÊB:Ùõ›óÿCæð7 ´ªüq®ÒvÍy¬2jÌaoò›mš™ÏÅZ¶YêèèÍš`DÍ,€aµrÍ<ßQ@à+rØaƒ ~ Kod3§ظ­#EÃÚ鯒€LžøTÌkg ©Y8:¯&k$l¯e÷EçÁtAPœ. 4ç˜(Œt|ýè a!ÁïTU5™L.q@øË0™LŠò$«ˆZ«Â×:7G? Ôu|váË·o‹ï§üÝû‹ÄJ6ßÐ1v‡MZ €*ɺÍåb™\N ËöY}RË™S5ôf>ÊŽ Ýq)í‹OÙûkßW~edÿLÄq–r8é³­•ÕTÇ5î3€)8R²k+ßÿ]?툹_dòЫßO•JBŸ¦`|ÂÈoýXù¹“mpN;}ñw4?xœÍôÊòòòfþ¶!›ý!syo}í a‹M¸®_†u#N¥˜>5Âq?g ÅÌqUƒ‘YÈ­Ì¿`S²ë»E«…SÕ¾nãNæ±ÅÄ Û'kËËkÙ¶œß\^^^^~ᓇëP®prUz{°ÿÏÞy>¤±t ül¥J¯‚J±%11Íûúÿò¹7^£Æ„XAXzÛ¾û~À‚2 ‹`,wŸt˜3çÌÙé;;#ÕëŠÓE[œ®Ñ|ü·cÓd¬b‰¬ml|ýúùã»Å m*Ÿ>ß醉Åbíö°–ÃÀÀÀÀàX,–d2Y.—ŸÚ0ÀvõçÁÎ 1]Y‰ùë¿J"XÝH¸”.s’:m©P??m­,}ùK•„Óäš.W.wâX¾Ä^õÈ«M¨eÛ¢P«4𨕆¦ 4Ë +´›…À@âxÙrei·[ ôb¶#ÿyì>ŸÂ¤ºÃ#aIS$pÝz!]¿ ðü8i¢á™\¾ÁpÕ&Ì™)A#M®)WÞ¬ªâùAï¥À”JÈ ñ/¹(â&‡/à÷zÝV±x\:¬0™Mͼ¿JwÀË1»½Ò jµ`|£NDü^B®ç” óé¬}:KHç|猰øËñ`} _yÜ™?är¹¹¹¹••Š¢&MØÀàØÜÜ|j Ž$Iårùììì© ¹AµQ*t$¤F¡Â®ÛmPªÈ¥ÔV #-þÄò"ü<¬ˆÀ1Ç»LšÀUY!‚ogÃ’ÅÑYºÕ"³3¥LK ÃÔëÏ÷TUÅ1ìž_øõãê¯VמXÿ4/Ë|3sÚ˜v–_3>ŸÄ ßtÁÓYóB|mÖ¤pÍjþì¬ÌÞ]e½õ¼î4µèÄXß#LSm‹üì—c®‡1S)!ƒŠ^nQ$œ±µ%ÏŠGÙzGÔùíôñÈlŽÌûks¸l-{3NÖjÁ:õ†e5,^ì‹xði,} úKˆ" üÕ‡J|¡Ò [­Ó?(Šrvvöœú6ƒGC’î~ýªª*aõzÈÓ@•ØZSŒ»ìP©QvŸ o0½½â%‰ÚßÍb¶HÜÝÊìžÑËë ¡â<ÛKùz°Ò?ˆ€Äœµýo¿MK#Áœ~/Ïìõú|&wŠéŸÅ4FZœáäR"Ð<(j/9#Ò|i¦ÜŒ!%„°z¼6¹Yip €É—ŒÓ…T¾ê”´qÿƒÁ¥Õè8!‰ã&gÈkn¶:`õÅ‚v Ìn§•ã8À¡D,ì pÂäû¨F³£•¨9òçÙº,–2—øì‚Žíš\^;‰ã´ËãP»]­!,ŽaMㆽêµÑ)€»üî.SéÛóÌó¼Ùé¶Q”Õ7q_íϰ„±€ÃBáª$ Ûã=˜æX&3…F»¼N¥Û4ÓĬ‘¸»‘ùy”‡Ùo¿Ãä%dPÑK.Š$Iª½ö0ÙÔÌ»ÈóäŒk†¦h‹™zž±SíÎm3¥Ý‚©ÍÜÏß…—õí4 +!–Ðâr"ù&æ½â‹*áðû4Žá”=൶ۚ­÷8ú§†Á³Ç•ØX ô•+›~K©ÒõâIÆ’Xþ8Gª|›9N—%¨äÎ܋˟Â$¦ˆlãâ¤À_8ÍØ‹C„·JÇiôá­t 6‹]ô>ëë 9窦ëLæÔž\ú8Kß*kîÃ1ìûõ¿¢ Ê|3txÑ6ÞF €»ü®sÚ?,JÙ¼{éí§[L_V³ ¶;XtauÞBab·z–f†LiÚcŸ×B4¬oÎ]ÎssþÀÇÍyèœíì_òlù¼1¿ðþë2¡pÍÂÑIK3Ms(äÎw›ŠØÎ”˽V¥IKÈ€¢^1Àý«›þ›ÿ{—èéOM'Ë•ó3ÏâÊÇ&7Ï~¤^Á7G˜Ýfe»ÝÛÙòè {ao`4KˆÈ¶9‰’;ÜUî•êyÆO|øJá²Ð®¦OJÓøè3›Í£c<&›››[[[OmÅÓƒ{–¾Û©’ €[¢ïÞ™Wr­ÕT!|+Ÿ<å+S¼SìE¤©UBþ˜¢)%oðÂ0yæ£n‰Éä9çÜœ[f2ù¦ü(Ï–{”ñþÁÀÀÀÀ๠´+åÙ…_¢½ÙªÔΟLã]ûkƒôúgê…£©^Hü2ÒÔ(!L‘ÁÂæöûÅöY^²zz4'ð¥`¼0000xzŒ÷ÏŒ iR•xQ¹þC~œÀg‹ñþÁÀÀÀÀÀÀÀÀÀ@/ª,ð½ÑýÍøR0Î_20000000000Ћ100000000000Ћ100000000000ÐË”¾Àlá•„ëäÓÕñO–µD>¼¡N~2iŸ[}fþ>©]ÌÌ&b!§…ù“9É5DÀmÁd"ⲪحçOÓÅΰ³ÒÄÍÞ…Äœ×Nc[ϧO Àä/Îym4®Ê|«˜9>o »ïe Íñbê7øO2i=z^Ìľąƒ½<7ؤ#šŒ´ÊÕóét¡óÒöœêkíÒ-ÒKãºÎùð.Ô>ÞIצz¢A?OãdGüëÛ ¡ªªÄ·«ç§gev|íæÐ»÷QáôûQùáw¤i›·Àíï_¹Ä€°Ï&a——:穃ˮþÄí ŸÞ…hÀ0.·»{1¥KÇPus&öå]ˆ¼¾!Zf~}K¿ ÃyþÈfMs°w¯©´/|^ 4RßNê*àÞå¯KtnçǰróÌÐß&?BÇ7¥ùÃŒ?(å÷RSôCÒgªæÿ¤÷Íd"ìÄ;í~¥3Ñ¥°šû¹Sá1khi)æÙ;ªÊT`a®ì\²˜%¼ü.æ¯Ñ7é Ó4“ t9õ=Åa¶èêꜷœb$k`ÎËçvUD0‡W×#žBCã¶ydšúcê70xѶ€Ÿªê½w(¸'¶äfö;¸+þf)ÒúžçDF‹7lé«ÜÓŒ‡õ· ÈvI †ôÒø®ãÊ™tWj“‡ÇäÉœÜÍîîåÊîO¬¬Îó»™±Mà«Ù´ 4§>yÐîŽÌQå½í86žåí³ÿÁLìKbzæ ë&°¹½©MQ^)H×!{Zƒ(Âá²C½…9œô¬A=ô·Év|h¦4hf¾÷æÅªª(½ÙòLìK\<Î[bnZjäŠ]LžXbÞg§¾qyš¾lI`®ˆZÞm†®®·Ô¯[ìÔ˜³|µëZõX¯Ã(«•nV€6SÂT›&Šl0LGR:Õ&4›ÐcTšøŒÃÞbº´²ûÿôBeIT(YV@–Y”4["TšcÄÔ/n0e{x11ë4ãÛ(gó5N!ü«_õƒ‚Ö¹õU"ýo¦….ó˜ÙKÌyí4ˆjîä´Ì©#UöA¹æ—b; |«˜9î½Hë_n¿^i#Ðõ3ybɯTùVñô伩5*'« ×õ “úû¤¨ @…Þ~²•Õ`Ük–j§©ã2ú 7{¢‰y·tyT¾ ÁhOb9á£ÅZöð¨4¬#Œ‰²Óáñt‹ÛMA¨äËsËk¶ƒ^zD>MQ$b«ï}¥ÓÌeSë9Ný-ª]£CzI¿ëúËR7û½Ö•%™ð­| 6¾_Õ£ù«Øñ¿gmd™7¸Çóp²"¶‹¹RhÕcÍ´Úˆ¦’ ¿{GídÛ½è˜giÃ[ùûH¼¾¾º›ý^í\©F·Ÿ¤3º X)’Ä%^Àºß¥Ó^c5CƒÀ+„rÙØß‚ÑáµÏ v÷úÆ<\]ž­»¥}Œñn­{‘>+ýÙÝOú[T»DënÁH”—ý®»)K޸רu ª$˵Z3ṪG.'Q;kkÄ4¸Ïóq2/´ƒdS)tY"`”\ q'eͱ,›ÙÞÊÀLìKünRƒ5Μ‰¹íªb‰¬.ˆiÍÉþXÂÞN}OuTspù½ÿ:p .l]’Á7_ÅÿU‡¹î]€%²¶1«ª²Ä6/3Ú;®µ¼4àO°›øïgõÏ+áò÷æÍ²Ë’kO<|BЮCö4QR½Ž¹\t™p¾¨˜o IDATp†Éù‡íŸdC|˜úcŽ¥Ò·¸=Dåð @߬G×#¶”+v$©ÑVœ&€·XmB=Û–äj¹±8k£ ýkKjýü´µ²ôå/UZL“âÚR“Ãð{½n«X<.Ž÷¦ ÜaWìœ3Ñ••˜¿þ«$R¾xÌZ;üqÌcÖP"iïg_ôdÞ†‘4E×­Òõ^T«µç]NŒ©N—¹~y=`,óf«U¨5 ]8=v6–îff÷'&Ë @½ÅÆíô˜¦[¬6¡–m‹ @­ÒÀ£VšC?O¢<ñøLýx¯._‹#+¬Ò,3¬ Ðnvˆ¢»˜ƒ«oüÜÅÑ~©{gxÀ3¹|ƒàªM˜3Sši¢cÞ·ÇqUU1Úæp„Ê)8>ì‰Á§ w™Óƒº#[|ïÈý8®>Íþ‹á Ú%ý-ÒKã¹ndI–kµö‚Ó‰1UÂå4Õ -͘zx'[#Ö"ý·Ì63;©’FäÁ¦’e9M[(;e¡mTÓD³­!ýî`“8^¶\%NÚí(i­ÿ[¬6±–mK*Û½^Ð?äxÚR‡¬›óýK 0ÂâO,ǃu­ùZ^ð'´ê EvÉÝF]”}2F×!=?®ƒq{|£NDü^B®ç”àKš?èo“'m½ÑÜ™?à8>??ïóùHrô¼¢ÿ:E%Ý +EÁ ¬œ»Ô¨·ôÊ(†a¦àêºWœ¹ö¨¢»¹¹9R;Ž9ÞeÒ®Ê |;ë œ±µ%ÏŠGÙzGw·¦ j£TèH*HB…]·Û ÔrùÜlé¨Éªüe%òÁïȶc&<1Z^2x0}Œ/¦³æ…øÚ¬IášÕüÙY™U„Z‹ºf N¹lu¦ÙWÔoþ¸)óêÍpÝÚßuoÂZŒ¬¸¢i‚±‹V¿vUUq¬¯Æõk¿ÒHyãq{åh¯!߈¯°|á×±idSUUÃ1ì~úýiþª?浤¢`&W¿UÈ v½ÝR+ÑÛ?a8 õK멆’$U«ÕL&£(¹a@µK¬î¬ƒò’2žëmB–d±Vc£Î¨ÓN[£ÜPµcèàœÌïUúK¿"j͘QM¥À²¤Ëj1 • aµ™(…e‡•›ÁÇ·ºöÄú§yYæ›™Ó!†ö7Aý:‡O[êPu³®Håk¾Pé„­Ö«%ŒA´¼¤Ý‚½®o°×©7,«añb_ăÆèé ¿Mž´õFsgž077g6›÷÷÷y~Ä¿û=%Çý`t¨SU•+üÚ»˜ ª ‚Fùœ*èè§)»Ï…7˜¦EI¢€»ÃA!»B|ßLX=^›Ü¬4†|)IwåTUÀp¼gûU&pü&zÒ7¦6#'Tú¹WÀäN1ý³˜ÆH‹3œ\JšE€¯ÕÄU—ÝAÙ›Õã!NUU¸ÎbE‚$Ê}UwDñ¦ý !9÷ý{MV©ÐÛOö›ToÓì¯6õèŽöÁþõ®vÊ—ˆY+GÇM¹O]a‡gs”¢l_Jýè†bÉ5_#—ÎUsÁ0L S i@š¦aüÝ̤-¸˜µ´Î÷öîfŠ‘ÕÐd2-..ÎÍÍ­X?ÈvI †ôÒ„®Ó*ÉBµ&¼uÚkôL«v¢ ‹i0’Çp²*ñÜðWl4M ‚€n*YV :­D·Ò £.;εÇzíObÎÚþ·ßˆMK÷ûMÕ*ênÁÆli§ ²nš|É8]Hå;׆hŠñÒ«éº!ƒ=´«åŽI¬qà}‹!mò½Ú1Žo;ï0¼^ïÙÙÙÈÉÃpl—v¸Ì8n %Wfí×úEž'g\34E[ÌÓxŸ†;B‰XØAá„ÉöQf€$IUPåÉZ\N$ßļÃ^é(­FÇÙH79C^s³Õº]qÆã5á€VŸÛÚí²ã¤9fLƒ§ÀJÄ …«R¯ø\ ¶ØZMuFCŽNµ1lÞDZ]“Û7Cáa ,­/ûÆÚ3ˆaA˜ŠS3§I¡LfÇ€çy³Óm£(«o>â&n£Ô#Žíš\^;‰ã´ËãP»]í=E´?³”O²Í¾ÜhVXd6u*Ò@jŽ÷](þ•÷+aÛ•"Âd¦0Àh—שt;ÃÒÔ³Y«Y³Š Ìž°«VÇÛJ:çÞ¾O:º™?2÷'zàyþøøØï÷-9ÈviŒ é¥É\‡.ÉÀ×jŠ+ttk½=sÚ1 FñçŒSöà¼ïdSɳírÊÝN§ n7°Ý±VÉp £hǰwŠý&Ïq½VÑâ™›u]µŠº[°1[Ú)ƒ¬›¢J8ü~'c8ex­í¶Ö‰9Ú^zý ]§=ØC£6s?^Ö·ÓCÚäÚ1aLJæÎX†¦i–}TJL&cO¾ùÛ©Õ¨ÙP7}P$&sjO.}œ¥€o޵¿i&\^7i†w…nÎ_Ò¬°¨lêT4 •¯çRûŸ&¶|Þ˜_xÿu™P¸fáèDûtý1åJæØšŒøL«\=t1æv$!^þüQã'Ø|Äó¼ž ¢Hô· ¨v‰×Ý‚!½ô×aØÍË ’Ìtk52:+dN¯·jhÆ4@ñTN¶ÎÜœWD®]Í¥²-´šJ–‹íȼÈ&šå w³7ç¯O@BÀ1ìûõ¿¢ Ê|3txÑ–ÑoŠL.ïYzû)ܽ<Êׂ=Ý-Ø-­=öy-Ôû–`}snì#ÑêQu³zžqžR¸,´«é“’Ö²ÚKšôR@¹ŽFöMåÝ/y°¶ËK³M¨v|h0³ùö˨ÍÍMÛ`ôÇœ¤¢?¦ý¥`8dºèð'†a€›<ñeoíà°òÐׯO[¼Z<]&l?_‘C0ÚbÁ$‰pέ$𳎪ƑÓç?ádܳô5ÐØN•dÜ}÷†Ì¼–û1§†á¥?ƒÉ3uKL&Ï9çæÜ2“É7åMY¯xó%l>»×IMïüVƒÿ„wùKÂ!vJ™£O ^)´'övÞ+|›9>y•ãÚgÀÂÉJ»Rž]øø%Úû¢I•Úù“©¬œ¾* /ý›ÛïÛgyÉêéýÑØÔ-þo7æã#—ÿ]ÍÀà¿_øõ­ðÔF¼vþNªéÕÑÑþã^ú#°ù_;%U’@¹üµÃ¨½·‡ê‰óMTYà{Û nþ¨_üòÀï ÆkÿþÁÀÀÀÀàµq¯“2Ž 50000000000ÐËÓÍð™p<qÓ@»£ñxxæ®-È@¤¸~EH&T4B|zЦfÒkqÈsñ§Á‰aß?à¶`2qYHUìÖó§ébG±/|^ 4RßNê*àÞå¯KtnçÇÃæÆ­î`‹5´{ƒA±›»lõÍŒ DŠëW„ü}BE#ħ§hj&½‡<NŠ#þuÛ×8þ| ì ŸÞ…hÀ0.·»{1Ñ=.Ó2É`ÊöðbbÖaƾÍdO²7%–´Ï­¾ ³GŸÔîX">̙˿ÿ>©]ºO^ßÍ-3¿¾¥›è˜hEˆe¤3ñ5ÒÙýY¼¾èÄù°Œí£ŠäLìK\8Ðu|>nñ-Ä£Ilýòô´ÐwÛ°%òá uúàs-'D¨à»¶óÓ)žÂt›¦vÃb½{N¿•{ŸŽzš÷ì$ì³ÉDØeÆ¥ÎyêಋLsLiŽË°sDå¢ÃkŸúo¿¹±Ê t»D:¢ÉxÐA«\=ŸN:2àfïBbÎk§1‰­çÓ'…©ŽiŸm2Ú!2dþ@èêÁÎ%‹YÂËïbþêA€p¸ìPoa§‡‡ßš"—Ov› rÀ]¦vË ÜÍ2)®_’ Ÿž¢©™ôZò\üù\hŸíüï fb_Om‰Á#aÅ£XñÇv‰#ìóoVçšßNêª9L„x§=ØçQ…0!ôÏŠÙÜrny/&RªG@]†È󬘲»Ç5yR;'U¹Z²x½je†íõÜ‘v‘#Ñ¥XÀJ‘$.ñÖ½ø~ÈX%ÙüËÏeO„*0ÖùèLãx?×~Ñ·‡ Û%‡ÇÓ-n7 ’/Ï-{¬Ù7ã°·˜ƒ®­ìþ?× LkLûèm“P™x::dOw;·÷ûê¾tÒj¡%©g–T¯+Nmq:¸Fs‚bGV76ÞG¬`¾ßØX ÜË ‘âú!™PÑñé)ššI¯Å!ÏÅŸðÇööñ÷þÙù]d¯ªá‹%mÍ£ÝoÛ?²‚)êº,a2áM®¿‹Ø6ÑÛkà,qùs{ûWżqcšŠÓpDÎÖÉî·íý¼H„íÚ&<+¸j®Ð”#í›Üîˆ wªL|;f™÷¶³ç­;ÒYÛØøúõóÇw‹A®©H£G@áy…¦q«Õ$ƒÍf¢hŠçyÂKÚÛÇ;ÿ|ûq®„#×3Ìþ¹r¸·{Ü´-D\Z%™$)E’¯-¬Ÿnÿ¼ä5Š7 jG÷|wkk7× [[[[[½¶–I:ÅŸV¿/—ÛCb˜‚±ˆZøùïö÷T®I;íÄõ¸ÃI\þÜÞI³®YŸ¹Obtš­ÌöÖÖÖAá~Ð~šýi —?¶¶¾6ÔÊáÖÖÖÖVo«¤Všƒv¢:Md K™ 5óÓ¦P,ÀfÏjòt윀¡• w…CX1_Ó~¡b ·ÄÜîö·ö.X.ÿãée ÕMØM|ú¬n›cç' x\–)fã)@¹Ž4Ñ êLd9é·‚@Ó4IR*n]^ÿ²±ñy-é·\ÏiiŸ½m2Ú!3|L„›¾€ßëu[Åâq‘°ߨ¿—ë9%è|°f•o×ë'€Ì6ëu™¿ûàHqýŠL¨h„øôMͤ×âçâχ`±ÚÄZ¶-©l—Sn…Z¶-*µJZih²,g¢i e§,´jšh¶Õ«‡l)WìHR£­8M4zƒ*M¡™Ùý‰É²Po±q;­m’Á³ƒ¬n$\J—9I¶´Ë$å_©û B7aóýK 0ÂâO,ǃõ—<2¦–¢‰Àóe±ÙD†¡l6O Àfµ õl[«åÆâ¬‚¶<“Ë78®Ú„Þ‹d¢w&ªÒ+ Èâ cÕ”I:ÅŸvŸOaR#V1Œ¤)¸n½®ß+Í2ÃÊífG!úÖu¥‰FóiNæ ZnÂ2¥àÊ›UU½\G㸪ªms8BåÇÜaWìœ3Ñ••˜¿þ«0µ1íÓ ¯MÆ‘™”!óÂ[[rñL¡x”­wÄÛE§Þ°¬†Å‹}>\³\Ϧ®Z2¾|š¸ÌˆׯÉ„ŠFˆOOÑÔLz-yþÄq|~~Þçó‘äè×}'c¦ª÷ýªªâÀ³,é²ZLB¥BXm&Ja¯_ ÜH«0¤@¥ „=´XqEÒ!&]±¹¹92w÷$©Z­f2E™ælL.¥¶Jiñ'–áça9lÂssæð7@݆*’À_íâ •NØj‘1‘Š4{„û¼@9\6¢SlÐɇ |UÀ0Ì\]÷*€2×¾*¶ýåÃ4Ë2²h"‹÷Ø£jÒ$âÏŸOb†oºà‹é¬y!¾6kR¸f5vV¾÷~‘/üú1fšZh=ÍIÒ¼áÆNÍ7€V QÛÅ"?;Ç嘻séØù†T.Ìáv²µìð9,ßêÚëŸæe™ofN7á/§$?”ëEÁ0L®~«ALQTPAm” I©Q¨°ëv”$€iiŸÝm2Ú!“¢=èÁÝá ÝN•î „A»Zî˜ÄÞ 4î…åQN§ÞìOÆ}RáðÎkDd R\¿"äï*!>=ES3éµ8ä9øsnnÎl6ïïïóü-w‡à*¨pݓݎyÔþÀ«ne¥ ÓJt+ :ê²ã\{¼¨4iÿBHÎ}ÿ^“U*ôö“}ˆI·W›‹ÉdZ\\œ››;;;›NŠ„Õë![LSUbkM1î²C¥†Šiq9i“iíÿÂWÿ;6íç»)n6NRùÞgsWã dÌUë ¢†V0€*ðªÝmá.ضIŽxÍb…UU¹Â¯½ ÍŒa˜¢5ƒI’p’À®DîäÆlg÷ €¬2Úvz÷=ÆH“†‹?=˜Óï噽þ¶U‹åN1ý³˜ÆH‹3œ\JšEíCéi>È´þ§9¥4oÐÿà´Jîñ6ëš ™«·›Ñ¦m§n4‡[`s:äFahVé@ÌYÛÿöû¹Ÿññ ]' Ð4 MÓ‚ÀHÒ]ïÞ†)iÿ>öûýÓKÒê‹/í$@˜ÝN+Çi *:Ù­+¶3M…ù½µ{Ί*áðû4Žá”=൶Û˜HECz„Á¬ v;Öé¨R»MÍXy^ŽíÒ—À­¡äʬýªó!Lf ŒvyJ·£5®UÚÍöL0l§pœ´ƒn©Õ4ªŒ&"Ï“3®š¢-f b’Nñ'wùÝ]¦ÿÏó½ZlõÍGÜWµØJÄ …«Rï›e ¦9ȧ9ašƒèpè‚Y#qw#óó(³ þ›oS·S7C*=c§ÚágåàFÑ4ŽaC^à½VЮkÖjÖÀ¬ƒ"³'ìêÕ.€ÒjtÄq“3ä57[7^ʘöÏ£]l,¡ÅåDòMÌ{]3P™\¿öOàþÕÍÛίr¸u$Ü‹1AY•Š¿þWU€nnïçpoéˆׯÉ„ŠFˆOOÑÔLz-yþ¤išeÐêˆL.ïYzû)ܽ<ÊׂўLæÔž\ú8Kß*÷N?aY°ØÙŽÌ‹a¢Yíe({ìóZ¨·Ãu}sîêˆTš<“+zŸ6bbë2:õ¯¬­ÂþÁ%Ê$ƒ‰ày^ÏÆ6½È•Ü™{qùS˜Ä‘m\œô:/ÅNJ»R&#¿|þüùóçÏW=|ž1îVœ>7#Òê¹ ¾"cŽ |)<Ýû (‰I‚ «AÓ¤*ñbÿ¼ ˆׯùó„ŠF‰OMÑôLz%yþ4Þ? Çxÿ````ð ¸ (}C‚áÃWd̑ϖ{Ô4ïÄY䯥Ê?à3d R\¿"$*%>5EÓ3é•8äÙøÓÀÀÀÀÀÀà5s;茾"cŽ |)<Ýþ%ƒÿ/ziùEo``````0]Œùƒ^žnþ€Ï„ãñˆ›ÚÇÃ3wmA"Åõ+B2¡¢âÓS45“^‹Cž‹? tA˜LO¸[òqÁ)eƒÿ O×£ãVw0H‰Å‹š@Ú½Á ØÍ]¶úÎ>@"Åõ+Bþ>¡¢âÓS45“^‹Cž‹?a/&ff\áÛLö$«m$n &—…TÅn=š.v”1Äñ¯1þÇ^žÀíók˦‹ý£ÞýHæÐ»÷QáôûÑÕ!ØŽø×·ABUA•ùv9{’©Þ=Òœ ¾û`;ÿ7ÝxÀ½÷´;¶wµŽwÏš*:G3±/ïBäõ2óë[Zë,“7¾8çµÑ¸*ó­bæø¼¡q§™þ¼Ïľąƒ½üxw{ßB8æ×æ‰âÑQ¾ýø;XIûÜêÛ0{ô÷ImH ÒK¸Ù»˜óÚiLbëùôI¡£ÐáµÏ ö¾ä{'ˆk:©}2,‘o¨Ó¾ã&'~º+×+a’º9:MíÇq¿=–Ï¢„èqÈ#a‰|ø0g.ÿžb¥{åh4kˆоðy-ÐH};©«€{—¿.ѹ_çñç Ñd<è U®žO§ íHLýÊ'OâÈå“Ý&ˆp—©Ý2w³ƒ DŠëW„dBE#ħ§hj&½‡<Þ‚Ñ· ­*’¤q¤“9bÅÛ%Ž°Ï¿Yk~;©£cR…ºz°sÉb–ðò»˜¿zPõ‹ß@ºãKîÆñ›ËUùj6-(ÍþŽ¿›ÝÝËs劭-ÎV«§ý#x“Ïoªd2@Á¬ÑÕ„¹x°[ìÝeƒÌ°¹½Ý‹ÑwñYs^>·û«"‚9¼ºñ¥£=yŸ±r´ÇϽ]YöSåG¬šÉD؉wÚü¨@¤—LÁä]N}Oq˜-ºº:ç-§±ôûßÊÕ™„3þ.Ôéj‰#=CP;^6¯›¦9f=z ;ÄCJÈÓO„ðÚçÀÓݬ¡@Âá²C½…9œþجpàžØ’›=Ú?îà®ø›¥Hë{Vãà^ý1Çàéæª" (*(²(¨½?oA"Åõ+B2¡¢âÓS45“^‹Cž‹?o¡‚+çí×8ËÕ£+³¶žk•YE¥Uo«sf @ãò:Šl0LGR:Õ&4›Dýâשãæâ¯Ÿ½«inîOíf¿W;÷¯[UÅz£Chàö}‹Ùç§Êׯz«wN3.±Òy6_ㆼ˜Áݳ!éüzò ™#ÝÈ’¨P²¬€,+²(z)¤3ïíI,'|´XË•ØÞ§xœ·,ÄÜ´X?û}ÄpCò.·sif}1h+çïäu±ScÎòÕ®kÕcˆò>ã°·˜ƒ®­ìþ?ªW#å IDATW1Åë™±5¶×sGœ†8Z”ëÿê×@}ç  €un}•Hÿ›‘£ë¢€w›!€«»úG=wtT쪘ÉK.xí¤Ê·Š§'çMñ®"©‘;ìÅ·v¼púëfÿÒ¸#þuÛß¿äÑ…– ½ýd+«Á¸×,ÕNSÇe&ºv Ö#ôãвóE•M‡Üh$pg4j)g ÖÅ¡•ŽtF—b+E’¸Ä X÷âû!cEäÝüËÏeO„*0ÖùèLãx?×~ú)Ý”QQͺh·E§Ë-Ò9õG¯`='O·¸Ýd€J¾<·ì±f;Ý cŽÁÓmÚ%«ï#V°Fßol¬îÎeHqýŠL¨h„øôMͤ×âçâÏ[øb¾r³Ç/´&\5WhÊ€‘v‡Mn âohçö~—z}iµÐ’$Ž%€[#Ë5{”g¯º‰Vf{kkë €–Â(§ÓÂvºýãr«ß—ËíÞ?¦`,¢~þ»ý=•kÒN;1L9æöy:åjŸ*dŽÀYÛØøúõóÇw‹A›vÃÄ_žH‘Ï_¿þµæ©ÿJW‡ÎtçÝì™+‡{»ÇMÛBÄu5´øýØÅÁ·íŸUK¬8,ïróûìðxÈ*Sge(/‘$¥âÖÙåõ/Ÿ×’þ»Wá®p+æ{÷g!ŒT¤Å€ëäZ­iw9 “ÓIÖ«-€îùîÖÖn®+¶¶¶¶¶nö„˜ýaKíhoï¤i]ˆ¸1 |±¤­y´ûmûGVð/E׊âòçöö¯Šù*æxµãÅs§n"Ñ,´¸ÃI\þÜÞI³®YŸ¹Oâ~šƒµC« >­4_T tÈ}í„evÞÛΞ·FŒðMÁù˜ÛÝþöÏÞËå2½zŠzvŸ>«ÛæÃØù —åñ¬zú›5­Pª×§‹¶8\£ù¢¦R¤‰APg"ËI¿EšÖúŠS̱ôO!‡¡òízàdÙf½.ów2)®_’ Ÿž¢©™ôZò\üÙ³š/²¾ˆ@iä/G¬CÕ„Ké2'©Ó¡Ýnrø~¯×m‹ÇEn\qktÙÊžïéØWc[ÿ+ ®²—¿SýkvŸOaúB0Œ¤)¸n½®O“6›d–½×?æ¨s¾¿s‰FXü‰åx°®µ•òÅcÖÚác³†ÉH{?«½|¦?ï<“Ë78®Ú„›õH–9gX Ûh«óWCòβ,í5cð –óP^ p‡]ýy°sBÌDWVbþú¯Òõ“!Ü/ÇìvµÅÇËÔ ë¤Z­=ïrbL•pºÌõËÖ0qžÉ^ÔX¶ÚTçL4o±Ú„Z¶-*µJZih À–rÅŽ 5ÚŠÓDðcÔŽÏýº‰D£Ð*Í2ÃÊífGéßy9&²v A?Tš/©„ r_ûˆå_©û BÃ#J/_Í0Òn·@©gÐ@Þ Uo(²Kî6ê¢ì“1êEÝx<&w›5TÀ7êDÄï%äzN :ŸÒÞ1Áq\UUŒ¶9¡r Žk'£;æ8<á÷õlêª%ã˧©òýß‘HqýŠL¨h„øôMͤ×âçâÏ;t/óµpÒ-1̨5-¹”Ú*a¤ÅŸX^„Ÿ‡t|Â[[rñL¡x”­wDeLqèæ~3®D=ES3éµ8ä¹øójûâ×QqDå´úâ A;‰f·ÓÊq× —%´¸œH¾‰y¯j&I’ª Ü’jŠkÁ—N2œiީǸÉí´Š<ßë¿q—ßÝeú—ç,¡D,à°P¸*õLÖ[ Çò™>J»R&#¿|þüùóçÏW=|žy¼[hþ»ÜŒH«çfH€ ¼5®CŠ¿Džîý”‰Ä$AUŒ iR•x±¿Ñ@"Åõ+Bþ<¡¢QâQôÈ&½<‡<†øT½¢5ãG§g,Ðëô‹7ÛÍr§+"ÊÏòýƒÁkãf$ ô } ÆuHñç2eʽNêé¾Yä¯<¦Ê?ànŽžÂ!!>5E‡0™žp åÔÀ)eƒÿ O×yãVw0H‰Å‹š@Ú½Á ØÍ]¶úŽ9@"Åõ+Bþ>¡¢âR4<&ió ×ø¸9z ‡<†øÔXýwBïÀBUUd&õ-ݘNê/Ú[Ž»ZÇ»g×wu“ö¹Õ·aöèï“\1O^_¼!3¿¾¥›„=¼˜˜u˜q…o3Ù“¬Öóµ/|^ 4RßNê*àÞå¯KtnçGïŒzsèÝû¨púýèêð1j€p̯ÍÅ££|ûq·²jæý¾ë®±D>|˜3—ÿ}RÓò'RÜä/Îym4®Ê|«˜9>oHäÌl"rZ™o1™“\}(¾3ñ5ÒÙýY¼þÕù°Œí!¯¾Ãó¸Å·zl4&±õËÓÓÂØ¾¶D>¼¡N|®å„â|÷Ávþoº1Å{‡oÓ´/|z¢øÜîîEÿS·ݳ“°Ï&a——:穃Ë.2Í1A¦9.ÀN„ᨪM:¢ÉxÐA«\=ŸN:/v§üc2Q«8¤›xè-!Úÿ$Ê'Ná¡Èå“Ý&ˆp—©Ý2w3Ž DŠëW„dBE#ĤhxL¶Ú­ Óø¸9z ‡<†øÔ݂ѷ ­*’„<ÒI.¥þW‚ɇ­/Ì]M˜‹»ÅÞ7æ@2vâö½†›Ííݲ€9bÅÛ%Ž°Ï¿Yk~;©k›‡Ëõæp:p¸u3_ͦ¥9µû(ÄÊÑ?÷veIØO•ñˆ)dÞµ\T`!Lý!ü‰·æ¼|n÷WEsxu=â)4JÒLt)¬æ~îTxÌZZŠyöŽª¨JÁó?U¾ZLì_’pÄ¿.pûû—<ºÐR¡·Ÿlåc5÷š¥Úiê¸Ì£ÓD¢¿¡Ò¤ÃkŸìîõy¸º¾&ÚÎÁ‡NÙ¨RÕõ`ë`ÿ‚ÅlsVLÙÝãš<©‚ªÚ§[Ün 2@%_ž[öX³7*¤3º X)’Ä%^Àºß+¢$»“ù¹Œâ‰P¥Æ:iïçÚ/®¹Ã¤­"¢›x)ŒQBƒ§Û´KV76ÞG¬`¾ßØX ÜË ‘âú!™PÑñ)Ó¡ñqsôy ñ©)º…/æ+7ëQ\ñbÌ[_,ikí~Ûþ‘üKQÇU¸ÅïÇ.¾mÿ¬Zb×õô„²ØM$eµ›_àÆ{ÌíótÊÕ¾žWîT™:;è/Kdmcãë×Ïß-m8WÍš2`¤Ýa“ÛÃúo©^Wœ.Úâtp«IV+³½µµuP¸/eö‡Ì•ýÝã¦máÆÉƒž7cµðóßíï©\“vÚ‰¾$:å*æ÷ÙÇw‡ny×tÝì¼·=oÝ ú)Î_žH‘Ï_¿þµæ©ÿJW‰›ËEfr9-¥Q#žWh·ZM2Øl&Цxž ü±¤½}¼óÏ·çJx1rí(¤ç IJ¹}›W?ÝþyÉ©2qùs{ûWżqcÝóÝ­­Ý\W(lmmmmõFØZ&éXý~¼\n‰¡Yhq‡“¸ü¹½“f]³>sŸÄè4ǪGi —?¶¶¾6ÔÊáÖÖÖÖÖþ%?$ÍA;Q&²„ˆ¥Ì…ŽùiS(`³g5y:vNªj“&A‰,'ýAhZó=Sp>$æv·¿ý³wÁrù‡L/K%ì&>}V·Í‡±ó<.˳ñLÜ*"º‰Â%PÿÄú§‘ȃPùv½Np2Èl³^—ù»ˆׯÉ„ŠFˆ?HÑð˜27Bããæè)òâSSÔ³š/²¾ˆ@iä/Ç]‡¶XmB-Û€Z¥G­44`™s†•º¶:³ÜÎ V¹‰ÜBòÌ¡Í&™eGv¿óýK 0ÂâO,ǃõ«©D`u#áRºÌIê´5ì¹ð:ñ{ ¹žS‚Îaºx&—op\µ 7ï4PžÇ0’¦HàºõBº~7 –ei¯ƒG]ÎÓ™wÊ¿R/ö+„nÂ4ý9(í‹Ç¬µÃÇyˆÆÇÍÑS8ä1ħ¦è.Rù¢¡øüÞƒªª ×Ý[·w†aÊm aq»mr«Úä§t,ÔŸC’$‚Ô\¾¾ÆäKÆéB*ß{sÕÿV¯‡l1MT‰­5ŸË•šV´«åŽI¬qàÕiÛ]'Êbúg1‘g8¹”4Š7³Œ$=󢇢?ï—“6™Öþ/|õ¿cÓ~¾›âfý‰ÃqP¯‡*¨8Že÷¹ðÓaÄ PxÕî¶plÛ$G¼f±Â€ªª\á×Þ…æÎ¤ç¯‘$ ' ìj@äNnÌvv #«Ì]»@½ûc¤IÃÅŸÌé÷òÌ^»Õïë°a…VOš2­ÿiN)Íô?8­‚;ÂA¼ÍºfCæêíf´iÛ©tÕ i@š¦AË0:sÖö¿ý~ï¢'fÂVñÔM<$íBX=^›Ü¬4zè!;Ó‰yº½Óms:gLàf»Ói£ïæˆׯÉ„ŠFˆ?HÑð˜„if¸ÆÇÍÑS8ä1ħ¦èjûâ×Qñ!=ÇvM.¯ÄqÚåq¨ÝîUO˜­4åò8äNçºã·„–V߯}:røÜxž2[F.ª„ÃïwÒ8†Sö€×ÚnwÀê‹/í$@˜ÝN+Ç C¨ÍÜÏß…Ñ뉄ÉLa€Ñ.¯Sév4=o %b‡…ÂUI$¸»,n2›Eþ1gsºóÞÉîl]±i*Ìï­ÝsíOR·+Îx¼&0Âês[»]pÇÿ³wži,]?[¥wTŠM3š7ÿÿ'ïsõ&jLŒ*Øè½l? u¶PMö÷I‡9sΜ黳3¡D,ì pÂäû¨zCqƒËr6ÖnËB«EÙ–å ×íЗÀ™PòÕŒízðAzþR«Ñ²Ã6 ÇI&t ͧÜdÐð,KÚ]vš¢-f S1I§øÔÁ]~w§8ø°•eY³Óm¥(Æ7q_·0ÕJ«æP KsÌ4¢¿àÐ5c"qwýäGêfæý·£'n§~M»Q­2EfO؇U*Jï›q £hÇ0•x,ãõŠýŸôÏ Åb -,%’¯cÞë–¡¿ó†é½ò?ÿ)€,@'·ûÏÜ{t„ DŠëW„dLEâ#)RÙ9Ûýç\Mããæhy ñ‰)zÏŽöüJ(žÛ’‹f(`›ùÔÑÍé'¤snõÓ!õê—©Ìíáó|¯Í ´Øé½¸·RµR›w»‰béö™+±±èÏw^}ñƒX8ø7S9;qÅïÖ)\äZ•LºÀ@9wê^Xú&1‰ïÖÏÓ:;}ìú‰ËíÙ)¾Ì]¨Ò-Õçæß®/R¯q•Jß8ù¡çùV‹Î/ÏY(ŒïTN3ƒ»ÔÌY>UûètLDtÞQ®CíÇ“þD‹Ÿ§ Éù•OIRæ;µìqžöêøÄšXø"$¶Y8Ê(yó¬Ä m@h·åë‡bBñäÄ–|½6Kb"[»Hw$PòüCzWés|á}”¡[?O·@¹É(ùïìÔ³ðêC§ß ,Ò$ýâªÊžÜåwµ‹ÇƒÓ]®½p/¾ùêæ3—•À ¨WZiÚbk«¡þÖù÷_f¯Ïž¦!ÒD‚LSÁ!kˆ9öÎvß:)–æ\•tM| ;uƒnÚbùäˆIÆß­Ñr¯v‘:WœòõŠçÝ·ï?G@ÙÆEêðü{¢çƽâ]°gö‚Q ÅÂw[=Û7'*tþc‚™Í¿]øòåËæææRÕᘉù‰j.WáLž¹¨[(ž\4$d R\¿"äïc*ÒI‘ºCzÎÙY·¨¢ñqs4 ‡<†øD=~“ùCïˆÀ±÷Iâx/]{¼í>c2¤çM׫Úþ÷Ë»ñ‘5D „ïÕGOé¿ÃòŸ ¼”4ƒ—bçCpÏâz ¾}PpKtå5yò/:|á ç`cþFÿŒezܤ¦¸Éâòû= „Õí÷»,w~È@¤¸~EHÆT¤!>’"u‡ŒG]ããæhy ñ‰)2©‘=8'boWfl€_)WìÝ›`7sxù‡-ó ž/¤×o¯«ì¾”4ƒ—b'©U.‘‘ŸÖÖÖÖÖÖ>,{Ø‹¢qÑÜäAÎÁÆ üþ˳azL$&pœ(cM“²Àòƒ‹1d R\¿"äÏc*ÒE‘ºC$-œ£)8ä1Ä'¢Èxf<8m·@SqÏû‹7ÛÌb»Ã#êñþÁÀÀÀà93pý3–©qošâZGäÙkïÉ"Ç>˜š!‘âú!S‘–ø(Š4¢¥ñ‘s4‡<†øäŒŠÄ5ÿˆÇdR¯õBOÒ50000Ðr6fàúg,Ï…xw­Á”0Öz™ÚúvGâñ°ïÿ½ý{ ")®_‘B„±©‹¦HÝ!ÓÍÑTòâ“Rd```````ðW1µïH«/ä;¹Ë¦¤Í{û÷ï¨@¤¸~Eèã)RM‘ºCÄ©æh*y ñI)"°¼w†a Ë2€X<ØÊÔ•â["ï^SÇZçñÙæ?®„hÀ°^ngçüå]…3&o|aÖm[ IDATk¥qYd›ù“£³º@Úg±ÓBˆl³x’ÎÕy¥˜H0“{.1ç³™0±S;Ëd 7§Ì›C+o£Üñ·T©/ꈯ¿ ² ²È¶JÙôIeêW  Ã«kó¶€òáfª„-¼˜q˜q‰m³él•SŠ©ßuÅ}Ï<†“Ÿ–È»w³æÒ¯ÿ¥‘÷*¶Ùå7ánꎋpן¶ùµÕ@ý`+]“÷.­/Ò¹¯ßǽÎãɰÇ>­„È›»©ÄâÏ­ŒÂ8úcÁÔÖÝ«ƒ2p"@ïò`§tý÷-È@¤¸~EHÆT¤.>š"u‡HSÍÑTòâ“R4NPÄÀ[ YäQ báàŸLún‡Öé×NÁû”˜Hr/ &0ëes;?Ë<˜ÃËï#ž«zA°GÃrîÇ×2‹1¡ÅŘg7U‘1‘iÒÁd‚©ýÚýÕ&¼ô:¨í_õOŠb+Ù '5Å:ÙÝ‹F¹b« 3•Êñø]óäá ¿þ+_ŸH8ã+¡vÌ¡xËß.ôÛÜëåÙÆVº†Ž©ßuÂó“Æpòó‚ ̇ îÅR÷h˜ÉD؉·[¬V`Ÿ‡þ$.Ôš˜ÃéÀá¥ÁÝÍíê|\¨?¦^¦¶~Ež“A’¤¿oA"Åõ+B2¦"uñÑ©;dº9šŠCC|RŠ ‚¯>ÌÝÞg VRÿ–‡9P3ybÉy¯”Ùfþ8}Öà‰¾µ¬| \_þ ”kn1°ÑÀ6ó'Gý늞ÄÛ„[̧örç{2ÜXˆ/Q¢(€(J"/HÃÐÍ«bW€V±Â…V¨4P1‘à§½UøÙâe€V>—à ®žíd¿UÚ÷Ý.óµz› Ð8À3.õddõv'?û{'’'BÒEf.j¯íåZ¶Ø§8ta™¹i¾vú+Uì)xž,o$\7Z¥âÁÿÒÚwÌþ)NþÀѨ¥trÅ,0jÑHgt1`(’Ä–Ã:çß‹Ì@ õÜa*ߑѕáE |»Z<½¨t\ËF=éÏV‹wº,Ð$ö^ë/{q?SÛÓÍDÞnl,H&úûïßPHqýŠÐÆS¤.>š"u‡L7GSqÈcˆOJÑlþ¢|ûÔ®—?jñ@øbIk#µ³µý=Ëù£èœílnîä:ÜÕþææææfÿe…#šp6Ó;[Û{B ¶©§KYl&’blæ?÷ öò0-DÖ6Ö×?¯zj?3 @`9Éêr‘€™\N E‘ 1‘$%ß¾>WgUš'Û›››ûWèF9–n»ó ƒà®pË_ô¯ÊêUrW 0Òæ°Š­;‹¢;1u»H_,amev·¶¾¥j–ø¼—tõ›‰ÍœÖ¬saì,]Ë¿;ßßÚþQ±Ä". ß+ R(ôXñz€‘6› ý};ÝB.ß„zKršúº2ü(ø“­×ˆˆßKˆµœtN˸QhŸí}½Ä#,þÄRw·jteö²yçwd[uèvŠ—E‰¾™q(ÇDqû¥Ù¯ÿÁ[‹Ë*+ÈNng÷¢8íI¬¼Ž<çï×1‡ÛÙ­fDZp°YÀH‹?±´?Ë<*殬Éb§Z}¨^½n½ ¦(oš"u‡L7GSqÈcˆOJÑ=„Òy¡×º¼á=¨,Ëp3ŠÎ@{Ú?s»ß¾íì쟷´&,nŸÏaús·/a8Þw€ 2Žc@Ù|~%‰’ @Q”À J1Q‚€‘Äõ¯8MS¬ŽO%®VïZl“y9üHX±^¿ùJ`¼~ Ýjƒw»l 1õ»înM&(ŠÀîVoU0 “TcR¾DŒ)§³¿mbk8ùOÇârÒ¦ðêÿ}ùòåSÌû_}yEo6¢1guo뿯ßvvö?„1x€¢?1hUJíF©úÒ¾6ù’Ë3Ö›ÿî, Æð;o÷,«Äƒ©s„ÉîtZi 7Ûnÿ¾ˆׯɘŠÔÅGS¤îéæh*y ñI)ºÜ:ÿ™Ê²²ïu;&—×Fâ8íò8äNçf¾Ê³,iwÙiж˜) Ã0‚ 0§ì§I¢LfBy.` -¾ZXx÷é[½@„N‡·{¼&0‚ñ¹™N§ ¸#”ˆ…N˜ÜaUo´•b¢šµ–=8c£qœ²‡ƒŽF¥ªy" †›ÜN†gÙgüm·Q­öï}XŒ/>´‘av;™^¯§S¿ë ×í˜Ü>;…c„%°ø~ÉG‚JõFA˜Œryb»­“ö'b–R:ÛxÆ$ 'ÿé´³_7¯Ù>iHÅ_›;gè6‡cEÓ8†i½Fú«Qñ§ÜÈýøuõ|_+ÀË„ÃïwÒ8†S¶€—iµnºkKha)‘|óâZ1Çajû—:g»ÿœCÿ™G'·ûÏÜ{þ DŠëW„Ž0ž"uñÑi8dª9šŠCC|Rг£½Š'Ƕä⇠Øf>ut{¨X>;õ,¼úÂÄÆé÷ƒ[Ìå=‰1¾y™98ö¿Z]†½ýfxm5ÔßáúþËìÍIMÀ÷Ú¬@‹ÞŸ;ü7ÏÓ…äüʧ$)óZö8Ï{u|bM,|Û,e*¢RL$lþ(cJ$ßΘ0¾Ṳ‹< PðáË´O¿î]²ÀÌ}ø2²Èu›Åôé3þ³Y™n§s[™ÅrîÔ½°ô1Lbß­Ÿ§oÑû1‡pP<ÉXÉ÷ë4&tkg™"*Õéœ[ý´@H½úe*ÓPð<áòºI3¬|ümGN6¸¡W<ï¾}ÿ9 ²È6.R‡zÞLÿ¸ËþñW_ü þÍÔšIa/k——T9;qÅïÖ)\äZ•Lºpû̱Ûê ”Ø¾y¥s0³Ù|ûÏ—/_677oÿ5yæ¢n¡xrÑsÎκÅâÉEC4@#ðâö5þ½&c`pd ÑøW2Ù{Q NþsÀ=‹ëúöAAÀ-Ñ•×ä‰Ö}£Cóij‹gȽAJmÿauûý. $ãéÿaF åE=¡00000øƒ‘Zåùðimmmmmíò‡½(Nb{ŠÁ]ŒÙÅ=ÔÞ?`M“²ÀòÒÍ¢h,/*4ƒ{ï þžxvñ ¹7H©}ÿ ‹ÛÏÊíF hüM³‹{<çs žÆúÁÀÀÀÀÀÀÀÀÀÀ@/jëÚÇÃvhw¤ÿ‡hvcÑm``````ð£6"mÞ`ÐÍà@Z}ý?Œ@#ÐdŒõƒÁ!m³«Ÿ?'Ý·¸5¸øvmãóçõ« Á»¯ÄÒ}õþÓÆÆÚÛÅ•PI“°…_½û´ñyãÓû×snZ%& {ìÓ»3âKäÝZÌ®;«c@W>%œ¨˜C+ë‹>Ý×@éHÓ(â ¢Ø FÁûôåËÿݰžp€m~íËFÒÕ¿¸×»ôùËjØ4e3‡B©K¿*ïc£vþNšLp=V"Lf ¸+ÊF h²¢Œn2÷˜èùKæ@2vâíá³ÿKW€ ½ùè­ïÿºìb–ðÒŠ«ôu?Ï#câž….õë¼»â¯g¹ÃoÙ6:Msäí[{áûa¡GØæ^/“Ù­tMFÆD¢x·€%òî5ulœLÿ˜Â«+¦ì' µ«0Úî±IJ›ŸXšFOd3œ¶Q/{ìS‚ÿ±s>xÏ´m~m5,_í=ib®Ä§å@ïôë÷ËÑn€}z]:TÞ‡gˆó—$í pûÇP"ÏÉ É #cÞüz'&2PS\Ý$͘HEH“FȦþ45ó>‚¸fÌŠC¿£ŽPpÌ‘nEOß®O/*ײ‡¹ 4Qd½Xl @»Ò`ƒf3Œéðx:ùí'”/J³K&Ûî cB·–k–º’ R³Ö’gÍ‡Ž©F{K ÍW³‡©B˜èûwQ ÀÊ—ÀÍýè˜ÉKÎ{m¤Ì6óÇé³ߟ›òG–ù˜›æk§¿REã’³a1ûüT)óûúéûÅñûªéNöÛíúaÐóB=w˜ÊÜ?®™¦QÄ“Õ Ñ1Igt1`(’Ä–Ã:çß‹ ¢4ÝÉÏþÞ‰ä‰P…t‘™‹ÚëG{¹Öß=¤µZ¼Óe&é´÷ZãͯŸd—þtêq+}»±±PX¡0‘ß¿ÞÆDjŠk˜¡©i’~qõ˜È45ó>‚¸fLýâúËhÌ@u;'èŠX­30xÄv¥XëÞ;䯕ÛýUèÏ*HÆB ¯“4ÑÀq²=²”ô[8Ž£iZ)Í^%wÕ#m«Øj+¥©ˆÙ2—wwŽÖùˆ èœílnîä:ÜÕþææææfÿÑ5á‹%­ÔÎÖö÷,ç_ŒÞ¼U·øýØùþÖöŠ%q½¨;•žŒß—J­Ûÿ4O¶777÷¯î¿y°ÄåííŸeó|Ä “¦QÄÙ ‘˜‚s!>·³½õïîy·wñý°Øo§¨Ò´™ØÌiÍ:ÆÎÒEð¸,O’—g‚%²º±±¾¾öaå÷VO¡V“œ.Úâtôêµ”BwéJ ò>¦þI$‚Fì6j5‘U(±÷û×Û˜È@Mq 3´b"!MÒ/®™¦fÞG׌©_\¨nç2Bë¯uOnrø~¯×Íðù£¼Ò“\ÇeYÆh«ÃArOÂqÕ1„,o$\R§˜>8n]çÙbî¢ÞèU òÜÔÂX¹j¶ÅKÕr2448èÏŠ] SoÉs*] Ø|>©x0ð Rgq@·Ë·¡Þ’œ&àf+ǨiE<úš¡ÐcÅëuFÚl(ô‹íAi@³V—D—Ø©×xÑ'bÔß³tkŸí}½Ä#,þÄRö.­G\?°¥ãƒ’®_ÿ >ñ¡b"# Mš˜%êG2IÓŸêQúí)Pç¯J&!ÅõçhES…pÆV]lñ*ŸÊÖÚ¼¤Q’$ ÃÄòáV€ b’úN<±p°YÀH‹?±´?Ëú¶Èß Ëòí¦8EÁ0l0&~óÖ4TÄ Ø}>¡¸?¸CgqÜõü$Ò4Šx,t6C¶Ù±%ÞœE¶qr\¿ W(Í¿IàØë]ÉìU¹f ]«[–Ãüù§iఠѥ£ò>öúá÷/™ýÉׯçÝ _„›ü‰Û_‘1õ‹«£S]ûhâ#ÄÔï¤IšâȘêâ£)3PÝN¤¸¦#ˆë·ÓÀ`šàîpË~?8½ª¨-@à8 éëjLÓ4Ç)ãõ;hYèV¼ÛeÙ> ä›é#È ÃyŒ,Ëp3wœh¢Å îC0ž€ßi¾3ŽcN¿—-–Ð…;¢?õ§iñÄÐß é@ÌYÝÛúïë·ÝŸÇ¥žáM&_ryÆzóßÀ‚ ƒV¥Ôn”ª/í#•.ý^Ï ˜÷±xÄõn¶9VZÁNÂd¿ýS¿¸:š1Õµ&>BLýAš¤)ŽŒ©.>š¢1ÕíDŠkÚ9‚¸~; ¦ I’2Ç ÚÕ*˜qPaö„}X¥¢ø¥ã‹Ïm$@˜ÝN¦×z`%Lf ŒvyR§}³5…gYÒî²Óm1Sôº“Ëk#qœvyr§s“034åò8ÄvÛØÙ¢€%´°”H¾ŽyrÜåwwŠ÷žS£‹C7C¤iñäÐÝ q £hÇ0ãEŽ ¼L8ü~'c8e x™Vëö¬"¹‘ûñëêe};  Ò¥ßïTò>jç·ŽŸ8†Áç ¨_‘1õ‹c†¦öÑÄGˆ©ß!šîÁuHñѨóסìA\WRÆù­êLôüVp%6–¿_„‰…ƒÏ,«kóƒÏ%ˇ›© *f¦”s6 Øi¹W»Èd®Ú":ÍL .,D\f“ønýê8sÙÑ1k(3I[pn.䲚©×¸:IŸ7nÖ7\\˜u™1±qúý ÀföÅ“³+l3r”«÷çYv‹"IR¯~yœ¹hêZý…žÄjÂ-æ¿çnöÆãž¥µ@åëAé÷‡îÈâ¸=©OûôëÞ%;x*«#¾>ßÛÛ»dõ§ FO Ù QPž…·K¾þ÷ ²È6.R‡ç-QšLò³¯ú¿;ÿ1Æ~߯øVÞP'Šg~þi`L ¸­.r­J.sRîɶùµh÷ÛA¡ÿê–‰¾Oˆ/çüV@vé€èPy^Û½Aê×&Ï\Ô-O.¨*O{fgÝbÿWdLýâêhÆT×ÞsŽ">BLýÓ$¤CÚ‘ŠF+¸Ç(bývŽ ŽŒù0‚±~0Pg²ë‡¿åû ´ |¯>zJÿ–U·²M=M£ˆ' îY\Ô· "n‰®¼&OŒ+8&rΠ?ð7„c&æ'ª¹\…Ó?yÜ¿#îñ4V·ßï²(¼N#Ïí¯È˜úÅÕÑŒ©®}4ñbêwȘ&!Å‘ÚõÇÔÔþE¬ßÎÄõÛi```ð< ½~{­XàâáqÒ4˜$R«\"#>­­­­­­}Xö°ſ䕓‚œ3èü fqùý†ÔŽù¼yÄ÷AÓ¤,°BLýÓ$Mo«+­à£ˆõÛ9‚¸NKŒgÆêï þsý”‰ÄŽeýóçÀ÷O‰,r¬²'EÆÔ/>ŽÚÚG!æÏ$Mo«+­à£ˆõÛ9‚øPIüÁ ç úù›PýógÈ#î_20000000000øÃ0ÖzyÄõíŽÆãa»’ÜŽÇ#nZ)¦~q ´bŽ©HC|$Eê¡Ýu£ä¥­hÌ‚ÓN”¸¦L®ˆ ”!L¦GÜ-9]pÊDÕÃÀÀÀÀà¯áGtÒæ ùN<¸gÜÁ ÅçÏ«2¦~q ;´bŽ©HC|$Eê­>u£ä¥­hÌ‚ÓN”¸¦vL®ˆ‡ƒ´Í.¿ wSÿKWµ#["ïÞÍšK¿þ—®^ŸÝNÞ\H!neh1G|=Æ~ß½èà¶¹Õ%Óù^ª ”9´ò6ÊK•„›˜o‚„,ƒ,²­R6}R¹{6\yg=û/SáÔhÚ[Š»šG;§ Y%ïú‚›½ó‰Y¯Æ„ní"“¾j+‹þ¼{š$á˜[#ò©Ô…Òùìä¡—HG4:î®;·“‰ˆËBÊ|§vqœÉøóN­Ò>“ˆ…œBd›Å“t®Îß·m,.0Šßmó‘ÏE§xÊ4‡à9ÕºûM[?ÿ7ƒö’É_˜õZi\Ùfþäè¬. cÚæ×Võƒ­tMÜ»´¾Hç¾¾¤ûýü˜1õ+? %z—;%à”ŒKéð=¥˜úÅ5Њ9¦" ñ‘©;Dº:Ø)«i%G(íhEcܘv¢Ä5íÔ`rEÜÇl³ ­–ê}Hæ@2vâí–Î~Š Ì‡ npyÓÍíîœq_&éŽ/ºëGßoïe+Ù '5Íìdwv/z劭.ÌT*ǃc•Éç7•³£Œñ]N˜óû;ùþ…5ȼëwˆ)˜œ§Kßz˜5º¼<ë-5îžÒ“÷±àË©]vöÍ«Enï ôˆ7é"½„{b‹înj層â¯#ÍoÙöT`~ž®ì½ìb–ðÒJÌ_ÙÏ_ûé^­³GÃrîÇ×2‹1¡ÅŘg7Uyiüý‘ŒÞ6Ÿ¢'3þy£ÔÛÏÿ<ô˜õ²¹ŸeÌáå÷ÏU½ cápÙ ÖÄN/êJd—>fÌ!xÄõƒ$°]•Z–xŽIIä9¹ÿç€8*)®VÌ1iˆ¤HÝ!²–ÆQr„ÒŽV4fÁi'J\ÓN &Wĸ+új¾÷s笣‰oW‹§•ŽkÙÃèHÒZJ'WÌ‚ŽÈHL…¸9ÿóGÿjšÛ«g;Ùo•öý‡È2_«·Éü~möù©ÒÍÃ/Â^HÌ8͸Эβ՞ʋÜ=În wÝÁí[³¸ß ™ÝûwbyÇhOb)á£ùjö0Uèö_JðG–ù˜›æk§¿RÅžJÞÅV.S|¿´–rwò:ÒK§“ßnp"@ù¢4»äa²íŽþ@E֋Ŷ ´+ 6h6ðkÅ0tóªØ U¬pa‡*èÇ¡ƒ®ê¹ÃT¾#`&O,9ﵑ2Û̧Ï<€ÉKÌùì4p¬DH—ýú6Jbë—Ç™Kãrb5î´M¨Éµ\JÑóîägïDòD¨BºÈÌEíõ£½\KVõüE¤3º 0IâËaóo‡EQîJŠŒ¿á{õ)Xÿ¶Å3÷a;úï´…n†˜ÙKÌzm4ðíJ.}\ê=R­ªÔÇp#ÂC&T ¢ÀK”(J Š’È *%ÔjñN—š¤ÓÞk½¬µ²K3æLoÓ.XÞØxa€‰¾ÝØXÜ]Ë ‘âú!S‘†øHŠÔÂD44Ž’#”v´¢1 nL;Qâšvj0¹"S â¥,¡¡KlWе®Î‡·–™9o+{Ö¼ÓÉ["«ëëkV‚VõfŒ3‘¥ˆœM]t¯Shžlonnî_¡·Ÿ`”Óié¶;ƒ.ã÷ã¥R«ÿ)‹ÈW?þÛþvkÐN›jN1·ÏÓ.UT!ó®Û!$IÉ83³ôþÓÆÆÚjÒ¯qߎý!sùpwç¨a¸®µøýØùþÖöŠ%ÖTË{»TÁü>›vFå%ÒDÇÉöÈRÒoá8ަéa¡•ÛýUè¿c  -מyPë–“¬. ˜Éå´P”Z‹°ÄåííŸeó|Äá‹%­ÔÎÖö÷,ç_Œ:,ak}û÷߯¿ò7eDøcI[ëèë¿[ßϤðBä1]úò¹Ó6Àì[ª©ÝÝtƒQó<€ÍÄfNkÖ¹0v–.‚ÇeÑðü½N`.Äçv¶·þÝ=ïö.¾ûÕòa¹#)ÿ±ZmX]NÀärÕj š!é‹%¬­ÌîÖÖ·TÍŸ÷Jy³Ö ÕêD©ÔÙÏO¨8^*½Ä^¦…ÈÚÆúúçUOíg¦")Åj5Éé¢-NG¯ÞxQK)t—>^Ì¡ôO ÑÙV­FôD»ZMdï2)®_’1iˆ¤HÝ!bOCã(9BiG+³àÆ´%®i§“+bÀì33v €ôFg•ËI¼ ¥üó!ù|¯,@è6¬}¶÷õŒ°øKñ`MeÇ&]bºg»:öÕ0³ï?GÃåî寃Ág6ŸO*„`IS$ô:µ«LM=MÚl»Ý n”ÇwØäû_Ó„=úêUÌ_ûYPL^ÞÙbî¢ÞèU0k¦8èÏŠ] SoÉs×*yïv»´×ŒÁ“>ÎÃq\–eŒ¶:!÷$LJ ÀM_Àïõº>”ï k\;;n¾ZüôY¸f±Á‚ê´©[ÈåÛ€PoIN ÀZ+WͶx  Z®ãQ††ga¬|5Ûd€nçæ)®…±rµlK+¥úÂŒ•‚Öd?µøƒ¸ß6-fÏ«]€n¥!Ï*zšµº$ºÄN½Æ‹>£0uÏßU$ôXñz≑6› ýèA¹£)ÿ±ZmÍ;X±B¸œ¦ÚUóZéÃfhf®zÚà$€ÖÕñ‘0èçhôZGEPÞë IDATÞ­FÌÖ4N¾†êÇA??™âx™ ½Dùâ1¦zøýˆÅ˜P"iíe[2*&[¯¿—k9)èœnn†B±K#æ0Loý Ö²×--”îÿŽ DŠëW„dLEâ#)Òpˆ–ÆQr„ÔŽLgÌ‚ÓN¤¸–L®ˆ)Äßï£1kxÆ™ÏÔÇ}¯;fg-ÅÃ_,õ;T8öúå:{Un‡@qýÐÉý*ºñPéÇUO}bÛÉíì^ô§=‰•בƒÛ}¢vŸO(îß¾Øeó™¬y>¾:c’zÊÅéi©«œ.EQ?Éí'2ÈõÂU[A¨_•»ïmV((–žþ¼Ë7_ÕɲŒa7Cê­Œ ý@ռ˼ RÔõÚã©$ Ã0±|¸U ƒ˜$ÉÃጭ.ºØâU>•­µy @©ÖA¯x´S̸,JDðÍŒCÕ®A׆aƒNÆ1ì^à-†™‚Ëï½à„Øk½ôÎ#r¯m½š žG¢âùûŠØfÇ–xÿqNÙÆÉqý·úßhÛCãðÕj7ê´CvZë¥þ‡Èf8˜M±S­*ç]w­ëæí–³!ñ€¦" ñ‘©;¤ãI$|¢ŠÆQr„ÒŽV4fÁi'J\ÓN ;&VÄ–@Ð’Ô_3ž'[/ ;u&×*6Êõþc1‹ËI›L«ÿ¾þÙñÅv¶sЛ‰ÓWýöšƒÜ½<Ê9W£ÍýœÒYEƒH\­Þ]òXqèJ€9ý^¶¸;à±ÏüÈg0Òâ 'Æ~^qÆ,AŽó‚ÿžCá®GÎîþiHÅ_›;g]^&~¿“Æ1œ²¼L«¥õÉ.[HŸôü‹sN=îÀMn'ól¨Æ]~w§XØ?b %b‡…ÂeãxÆ…€cYÊl}qß!R³ÞvBVÇMÎ×ÜhN&ï„ÉLa€Ñ.¯Sê´¯g„™¡qÀ(—Ç!¶ÛhäÝd6ߺíéhT«L`ÆA„Ùöa•Jg˜@’$å~N@Ö:À¡D,ì pÂäû¨zc¸Å{ÝŽÉ嵑8N»<¹Óá€íõÌN·•¢,žÙq“v¸Ì8΄’¯flÆÝh¶M$HÏ+ÅDzþ"Ã(šÆ1 S~™1’ñ÷Û;[­J®HÐÑ©ÖÄ›XˆfØëvLnŸÂ1ÂX|¿ä#•ò>f­ªýýüŠãÅ‚ô’ÐéðvׄF0>7ÓétUý)7r?~]½¬o§úyD;RŒ9Ó{ÿ äþSY€Nn÷Ÿ3¸÷PˆׯɘŠ4ÄGR¤á³ÝÎÕ4Ž’#¤v¤¢1 nL;‘âZvj0¹"Ö+±±è\¯¾øA,ü›©ßmõJl«î¶‘*g'®xâÝ:…‹\«’I´Ÿ~ñåLÚù.oìUÌ7g|ø2íÓ¯ýãÏ™¹_æ@¹n³˜>ío4Æ]~W»x<8Êó­6_ž³Pß©œfŠjó©Z©Í»ÝD±tûl ™wÝaóéKbéÃ,)³­âQFÇ"M3ïÝÒY}nþíú!õW©ôõk s«Ÿ©W¿LešZy7{±&>„‰mŽ2CÞ*OŽmÉÅ3°Í|ê¨ÀsžÅ7ÃËÔE5½‰ybK¾^›%1‘­]¤;O½${! Ú&¤ç•b¢<ÿPQ¯xÞ}ûþs¿¼d‘m\¤χªú Æ#;ÀNµJFg¸“ã›¶Žl†Bñ$cM$߯ӘЭÝN¼Ö ÕêÕ´u÷óãÇË=6ÏÓ…äüʧ$)óZö8Ï*æÝψ±¶Ë Ù¥ Ú‘bÌqÀÌæß_}ùòesssÉê€pÌÄüD5—«p&Ï\Ô-O.2)®_ò÷1iˆ¤HÝ!=çì¬[TÑ8JŽPÚÑŠÆ,¸1íD‰kÚ©aÇEü¤Mf¾W=¥ÿË£OápGì}’8ÞK×^Ö)œC^Åe ¼^ Ôö¿ßûhYCô(1¶9ª"ܳ¸¨oDÜ]yMžüwÒTNC;Mƒ‘¿8 ô€œrŠ" ‡hi)G(íètÆ,¸1íD‰kÙ©ÅÄŠØ@‰ÓüÐùå"õZ“øÍÀÀÀÀà™‚œr™ÔŸ!´;¶w5vNן“¶Ùå7ánê骲˜=öi%DÞ\¼!ne¤}& 9-„È6‹'é\]áôuÛüÚj ~°•®É€{—ÖéÜ×ï—,€9´ò6ÊK]_1äQ­ s«sD>•ºh=ã¬txumÞ6пê·“‰ˆËBÊ|§vqœÉ·%“7¾0ëµÒ¸,²ÍüÉÑY]ÀÍÞùĬ×FcB·v‘I_©Ýèm‰¼{MOøÉû7bÒs€ ®¼³žý—©OðŽšßi*·Ža‹cT;ÜØ Ö^HÌ8̸ĶŠÙtVsŒ€Çq²N,‘wïfÍ¥_ª½¥Á è±у© /ÒMƃZîÕ.2™«¶ò¤?¦~åã'1"b)½Ó¾½Ëƒpw³ƒ DŠëW„dLEâ#)Rwˆtu°SVÓ8JŽPÚÑŠÆ,¸1íD‰kÚ©Á䊸ÙfZ-•U,üS€ñGÁ—ÆD—æüþN¾—9L„x»¥§îævwÎï\ j.†åܯecB‹‹1ÏnJù"3Âá²A­‰9œ~»™­d3œÔ˜Ø}|9µËξyµÈ픞íS|á×åëã g|%Ô§+û_/»˜%¼´óWöó<˜õ²¹ŸeÌáå÷ÏU½ ˜‚Éyºtðí ‡Y£Ë˳ÞÒAñ‰¯ô˜tÁý˜|~S9;Ùy­®4‡,ŽÇ°s$Ì¡xËß.ôÛÜëåÙÆVº¦eÕôŒ§óa‚{¶ÝʳåáØêÁ‡‰î‰-º»©½£6^Œ4¿eŽ)Ñs¦·~%žã@’@yNîÿùd R\¿"$c*ÒI‘ºCd-£ä¥]ØîáaÌ‚ÓN”8Ú!OVC¯æ{?wΆ?‘3ybÉy¯”Ùfþ8}Öàûk þèÂ2sÓ|íôWªxÝ¿‘žÄÛ„[̧öréÈÊàî™pv³x¾]-ž^T:®e3|rÃÐÍ«bW€V±Â…V¨(]¨ÛjñN—š¤ÓÞkõGûÍýÓì·J{àÕF{K ÍW³‡©BWÉóý'—N3.të…³ìEµ×/¶r™âû… µ”{®çLÉ"³f¢a[-—ꀉ"ëÅb[Ú•4›xQà%J%EIä ·;lÍâ~G€fvï_eELôý»¨`åK:Ùo»=“'–˜óÙ(‰­_g.›P¡7­¥#9÷š…êñÁQ‰u'?û{'’'BÒEf.j¯íåZ6TÁ –‘PϦò€rÍ-Æ6Øfþä(WçMBµ8”IS ÂìóS¥L¿ >’pÄ×ç{{{—,ºÒªfs0MtëÐ[JvÞo\„y=PûºÅ3û~™Èüw"*Ô¥“j¹T_‘VÿùÛ¤n-×,u%¤f­%Ïš)ù¹¶“ ÜZJ'WÌ‚joI:£‹±C‘$.°Ö9ÿvXdyG7®ç<€L¥ 1L¼O'¿ÝàD€òEivÉÃdÛ艇þ˜C0½M»d`ycãm„&úvcc9pw-ƒ DŠëW„dLEâ#)RwÑÐ8JŽ´´`§&“ò<Ú!OVCîb D¼”%4ã!tE„ðÅ’ÖFjgkû{–ó/F×á¿;ßßÚþQ±Ä"®›ûe(‹ÍDRŒÍü¼7ÞcnŸ§]ª LÔÅv¥Xëê|›c‰¬nl¬¯¯}XYZqXN²º\$`&—ÓBQ*å"Ôj’ÓE[œŽ^ýz‘Õ<ÙÞÜÜÜ¿º¿éÉì™Ë‡»;G ëü­“zÞŒEä«ÿm;È5h§m°”Û¥ æ÷ÙàÙƒ»Â!,Ñ¿½«•ÛýUèOžHÆB ìåaZˆ¬m¬¯^õÔ~f*IR2ÎÌ,½ÿ´±±¶šô+ßtÔ9ÛÙÜÜÉu¸«ýÍÍÍÍÍþL‹ðÇ’¶ÖÑ×·¾ŸIá…È­£p‡“¸ü±ý5ÓuÍøú×ÙLlæ´f cgé"x\傳ÄåííŸeó|Ä€#šp6Ó;[Û{B ¶©˜¤ÐâP&=[¿/•Z*1+­b6ï§ù°uè/¥44.±ZmØ\NÀät’µJS©àÀì[ª©ÝÝtƒ¹V¤Ø>0©WÉ]5DÀH›Ã*¶Ú [ ‡qò#a™™ó¶²gM¾)8âs;Û[ÿîžw{ß‹ýUˆÆõGò`ìPêÁÃÄ 4ÑÀq²=²”ô[8Ž£i¥¯8õÇJÿÒ ™mÕjDO±Û¨ÕDönÁ!‘âú!S‘†øHŠÔ"ö44Ž’#-í#ةɤÛûz‰FXü‰¥x°öý’­7_-~ú, \³Ø`AuÆÖkDÄï%ÄZN :Ucsõ@¯Ò€Ûç‘(ÏcIS$ô:µ«LínÝn—öš1xæówÀÛ+îü~ø„›¾€ßëu3|þ(ßÊ1ÕÃïG,Æ„ÉHk/Û p‡Mþ±ÿ5MØ£¯^ÅüµŸ…! ÖÂX¹Z¶%ˆ•R}aÆJA‹¥bWh5ÚÑ_ 7kuIt‰z}"F©\ÊÚ-äòm@¨·$§‰`';?0Q”jÍnܦ2N*µ8”IÏ›Ï'4ž$*TZ¥l>HÙ:<,¥46.¡Zm͹œX±B8]æÚ¥êw*l1{^ít+ yÖD°Šý'Ò$"°¼‘pIbúàXkv®ÏÉåŸÉç{eBê…+^¯0Òf³@¡ï÷y‡¡×Ë5vȨ `˜aâ™ã¸,Ëmu8BîI8®xî˜Ã0Åïjك람-”îÿŽ DŠëW„dLEâ#)Òpˆ–ÆQr¤¥};µ˜˜ç‘鳆gœùL}˜/®1 “o>ø’eÇn:öÛÑMì6„Nµøüo-£(JàGܯ. {-Ê^•Ûa†`¡W<Ú)f\%"øfÆ¡šD»V·,‡ùó=ªFô<¦ìy6ŸÉšçã«3&©×¨\œž–º¿ç2/ˆ¥½bº`·³[ÍÞÌëgluÑůò©l­ÍK„ËçîR® À^–#ïüŽl«+ƒ\/\µ„úU¹ûÞf…‚¾Ö׋a¦àò{¯8!öZ÷ç-ìÕÏï¦áò3XFýÙB ñƒK&P;•@±ÅÝ7éùb÷ù„â¾ú¦ ÕJ ð ›ÓD·$ŠCÑ·ÝW­ö¢.;Ô(—µVT|Ç$ÐÙÞÊ‹…ƒÍFZü‰¥øqXV[ ëqò#€;fg-ÅÃ_,¥—mvl‰÷çD‘mœÿ®ô Åñǃ;Ú¨Lb˜xfH’„a˜X>Ü*ALRÜe­?æ0LïÑ ážý:á7€ÙŸ|ýzÞ}÷A"2)®_’1iˆ¤HÝ!&B]ã(9ÒÒ>‚šLÊóh‡’"u‡&»ºÆQr¤¥};5™”çÑy²ò›îùÞ¿ÿ»eëׇLöº“Ëk#qœvyr§s=Á"Ì F¹<±Ý¾™uYB‹¯ÞÄ}Ãhñ”p,K™-ºl´„–É×1ïu¯ÄË„ÃïwÒ8†S¶€—iµÚ€;B‰XØAá„ÉöQõ†úçÊr#÷ãוö£CÂd¦0Àh—×)uÚŠž·„±€ÃBá²Àq <ß“Ù̳ì„ù},h»jµoF’¤ÜÏÉB§ÃÛ=^ÁøÜL§Óšõ¶#²’8nr†¼æFSÕó<Ë’v—¦h‹™Â ×íЗÀ™PòÕŒí‘ Ã‚Àdœ²œ&‰2™ S4 Ùâ^ ¸Ëïî³,kvº­Åøæ"7¬R¹Ù‘p0UŽ9ÓÛ¿$äþSY€Nn÷Ÿ3¸÷´ˆׯɘŠ4ÄGR¤á³ÝÎÕ4Ž’#-í£Ø©ÅÄIï¥kÏ}gÏ]†ô¼)ðz5PÛÿ~ï£yd Ñh` á{õÑSúï°<Á'O•&²qa¸É_òV÷ËÏã\ˆÇpÈÄÁ=‹ëúöAAÀ-Ñ•×äÉxOâ´AN9ôÏÖô‹?[î RSÜ¿dqùý†Âêöû]÷ŽD"Åõ+B2¦" ñ‘©;„d<êGÉ‘–v qýÚÇ´%ŽvÈ“Õu¤Föàœˆ½]™±ý©.¤\±wo‚ÝÌá'nŒ éõÛkÅêDçµSM“ð.ml¬½ñ¹“g²xx‡L©U.‘‘ŸÖÖÖÖÖÖ>,{Ø‹âs½…æ%ƒœr蟭é)Lïý”‰ÄŽeŒ iRX~°Ó@"Åõ+Bþ<¦"-ñQ©;DÒÒ8RŽ4´k‰ë×>¦q‡^åH›7ä;¹ËæÀ1È@¤¸~EÈßÇT¤!>’"u‡ˆVŸºÆQr¤¥]C\¿ö1íD‰£òd5dxˆÀòzÜ ý eY‹[™ºR|KäÝkêXë<>ÛüÇ• ÖËí윿¼«p&%òîݬ¹ôëé*˜¼ñ…Y¯•Æe‘mæOŽÎênöÎ'f½6ºµ‹Lúª­Tª˜É=—˜óÙL˜Ø©e2…› Ì¡•·Qîø[êúüpG|ýMeE¶UʦO*“¸Ûa /$ff\b[Ål:{[cIÛìò›p7ÕÏøoî8Äû´"o.2‹?·2 Ñd<è å^í"“¹j‹J1‘þ|ˆ3±iïüÈß™o޼[ÂR»È«¯†8$·øæãQ•Æ„níòøøª5ì¶a}íè±Ä*¸òÎzö_¦>Á;j~§©Ü±ÜoZ¥yÏNÂ6“L„]f\hŸì_vi 2Íay;€[ƒÉDÄe!e¾S»8ÎäÛ^]›¼»|¸™ªLDÛÂu*]%Üímók«úÁVº&î]Z_¤s_¿+^eòü@ôÞH:ÿ1•¨ˆ¥ôNøô.vJÀÝÍ82)®_’1iˆ¤HÝ!ÒÕÁNYMã(9ÒÒ®!®_û˜v¢ÄÑy²ò³Í&´Z*£ŠX8ø§“¾Û¡uúõŸS°Ç>%&’Ü „ ̇ îvœ`³^6·ó³Ìƒ9¼ü>⹪S09O—¾ô0ktyyÖ[:(¢‹Š&Lí×î¯0á¥×ñ@mÿªŸ6[Éf8©1(ÖÉîì^ô0Ê[]˜©TŽç&2s(Åòß· =Â6÷zy¶±•®Éæ@2vâíÖÃ1ïžC ›Û½·¶Ä=±Ew7µwÔÆ]ñ׋‘æ·léO„•,ËR4p³~ )Šk= ›‚ɘ¹r°{БÍþ…7‹3ͯ¹?÷‹ü¡0ùü¦rv’‹‡;i*w,ˆ†0„¸;2K•v·¯XÀ±ÛEüiÞæ< óóteÿëe³„—VbþÊ~ž/üú¯|}°'ጯ„ÚÆ) ®Cv•·ñïõŠ„ÃeƒZs88¼¨#¸•zo$»ôq™ÞúA–xŽIIä9¹ÿçoHqýŠŒ©HC|$Eꑵ4Ž’#Yd»ÝÑÅõkÓN”8Ú!OVC¯æ{?wΆïë1“'–œ÷ÚH™mæÓg ˜èûwQ ÀÊ—tâïZn IDAT²ßv/z@¹æc l3r”««\( @zon1ŸÚË5ýíé;£QKéäŠY`ú¢ÀK”(J Š’È nwØšÅýŽÍìÞ¿*É9œöVág‹—Zù\#0¸v·“ýVißw»Ì×êm2@ãsb|·–k–º’ R³Ö’gÍÇ·«ÅÓ‹Jǵìaîæà¾C8<žN~»Á‰å‹Òì’‡É*LSPþDÁ±í ³,}Žó['$ lE“'–˜óÙ(‰­_g.›×s/Œö$–>š¯fS…ñ ·;lÍÂ~‹—:ù|unÆa‚6‹h2`}ŠóG–ù˜›ê¹ÃT¾#+´#”IÈ? Ì>?Uº~˜8øHÂ_Ÿïíí]²×Ïbf\èÖ gÙ‹jO Bo>ZKGr0î5 Õャ‹N‰bCP.Í4?Yw¿ß˜ƒëë«Ñi¢í|Xpè4Q*På÷ÁæþÞy³Î¾{eÊîUÅqíE֋Ŷ ´+ 6h64Eþæ© Ûj¹”r•#ÑÅX€¡HXëœ;,2ˆšìN~ö÷N$O„*¤‹Ì\Ô^?Ú˵^ô°€rì*½b«Å;]h’N{¯õ²^Üëï½…éíé&Ëo# 0Ñ·Ë»kd R\¿"$c*ÒI‘ºC˜ˆ†ÆÇÍÑ4¢.Žvȓջ˜/e Íx]Ñ!|±¤µ‘ÚÙÚþžåü‹QtÎv67wrîjssssózfM8›é­í½ !ÛÔÓ¥,6I16óý‡efÎÛÊž5…ìåaZˆ¬m¬¯^õÔ~f*IR2ÎÌ,½ÿ´±±¶šô+ßÛC’”,ÜÜ"4®Îª,4O¶777÷¯Ð“Œr:-Ývçq½Jîª!FÚV±Õæ@lWеî÷c–ÈêÆÆúúÚ‡•… ÒDÇÉöÈRÒoá8ަi…˜H¢XV¢iœaL"X­&ЦX– ü±¤­uôõß­ïgRx!rSkÍþ¹|¸»sÔ°ÎG\JåA’”t[P;ÞþqÉ¢› €% .loÿ,›ç#nL©)™¤SüyÀøýx©ÔR‰a Æ"òÕÿ¶¿ä´ÓvÛ5á'qùcûk¦ëšñ™$´ÓTjÊ¥9˜&wù}ssë¸.—77777÷.U×;Q‡NYCøÂɹŽùiS(èfO«âdìƒVn÷W¡ÿLœd,´ &Ž»Â!,¡r)8âs;Û[ÿîžw{ß‹ý,=¨É`3±™Óšu.Œ¥‹àqYþ¿½ó|h[çø‘;‰ãìABd°ÚrKKK/ÿÿ§Þ§‹QÚ°B ’8{{¿Ø '„ùê÷¥EÑÑ9::–%Û’FX§ë:lW ø^Q©V5§‹µ:ÝÚËzÂfØ{c¹Ý¥­…Ü ]lV«tWµS¯VUñzÃa±âƒ+Â2¤¢>â÷RÔÛ!j·Æ‡­ÑS8¤·8Þ!!WAöñq;0yãòO#¶r6©rØ”5€J©FMp,Ôñ+2êéµ?HU5€j£ãû¬ïäw·$N­—_ì6ÓýaüSAýx£¤@ð2Í‹r•íß»"â‚ñD¸¹qØ”ƒ×ÿlþÚ£íssQõoÁ`2púíŸûsBbö÷šá3\dñË Jïœl%ô˜_Ž»´¶°—ÜoÇ$Î!­£_'mõÇgccÕß':E麎X›ÃAÓzW£(Ê §ˆó'ÖIÆj³É‚ÀØlf‘‘Z€³IÕæ  –‹µéqMD!“­uºå:\>&¼Åµ‰…®¥Œ.™N!“o)J­©9Í,þó)«IŠ? xŸOú…B&–1A·]Í¥ª—ÉZ½(tT€f½¥ÑW•‰Ç°5‡(ó¶F wƒéæÒ…±¹7óº|´Y¼&9ŒÃA™¾€ßëusr~7åÞA»Þ®°ÖË&¥+ªgódây+NCöV$@£ZÓT—Ú®UeÕ§"æe}| ¼ënw•¸^ÄZ•û½´ZÍhcÎG·þþPØÞ ¶KVÿ®¨&Ïz2±¸Ÿ,Þü›ˆ\–!õ¿—¢>é§ñakôé#Ž-çÑ"ä Œ?ì?í£‘-4î̧jwyÒÏ×7éºN!ÃŽæƒÓ±Gi˜Ì`¸îú¥]^õ—³”#± Û["s‘H»|îNa§ÞÑÄ“Rø½ßqØìè × ¹–¢ƒRË•:‹¼ øÆ¿Xi¶õ?Ñ¥˜ÞcÙά­g»@±žø»7áä®_W ɯd²úã³Óðg»„6aš"‰gß ‰¹R+Äq MC©¥íï%ÓÒN¿ ÄäTpþÄÆž$JŒÃe£[ù›°;tË:BÈ<6¿èÕ€¢Õnó,¼¯Æ<2Žy¬ó /™‹Ü:ô™4 øsÀîó)Âfïhó©CËTlaܬuëåìÁA±sÝ›bîïï;–i„QkSæv6Ü-Œ"Doæóâx¤›®¢Fbç= Ñ…—(äò;‡Õ–|õ¾ng§rØ{°'6Ú||ñ㤪Šõôþåeùr"ùÞºîfW©b{E€VµfÉÇ25öÈÖ…†í½ñY1]ú ž?Ðî©Ù ]L¥ÑâOÄ|JnûÚkDl"V|pEØß‡TÔGü^Šz;¤í‰Ç}j[£§pHoq¼C-B.±Æì =5y‚žÃÚ]6çÐuÎooWo{ ƒ~íù+ëŸ ª™ÕÕŠª3Á·û|¾@[Ýn›Ú(×Ňú°æ‰±ºœ¬Ù¼ðoèìoÇ ´¶)S§žÐA§( (×D7œ(Š‚L4:½S,ˈí~yhRµÖ™õØ(è<€«iÎë15„ººÒ©Ô嘋‡R—ëdw<Ææ’ÙÓw(gã E’€eiX–•$ÀìKÜΉ(Œ?±è’¨ónk÷¸Ó4«a¯E.‰ ëz7÷wýØð¥BHëÕÔEs€;±<ÞZÛÌ^2x»n\GýMê-þô §ß+ ëWû­«9OS[ùÔŸ| ™¬ÎPb&¨oæcSæ½L»Úš#*ó‚ÁÎ(B(GhŒjv\ãAKùòc´QÛ90”;4&þHâ6$°9j-׳ªl ê¬l|ßzÅo˜ ÁºÛUJ¸^q4ËÅ–Y®tÁû5¸?ØÞûšóxmj½Tëj]úÐ<Ýü±6§“iÐ@Yx§S._¯6+>¸",C*ê#~/E½"ší½5>lžÂ!½Åñy´¹¤s¼ñí¸¿>#º¶ÙïåóÙ6åð8ôvñü/‹¢Éã²³‘¦õnWFÑ4tбœf2[hJT =Xƒ3sª©oÉÂë¼Á´}=<ý/|ûÑvrº]i[{¼æjIBœÏ͵+­QkEA[=ß¡íA¯¥ž5ú"IkT›Ñ±q¾qÒÖm¡1G]Øï;D”Ùíädñ¡æiœ/â:š eq;¹nÓhPuå¥~¿³Ø©+´-àåšÅÔ+•xhÜQɶhgȇÊÛmJÇäTÚâE‰¡RKWä& 6³2t;mÖ벜äºÀc*¿“mj@›- ê*ŒËëÔڂѸVk֛ѱ_ϵu‹Ì­4ò€ftÉ`¹yéF& (ÞK×£@¹üî¶¹ò JE‹Ûm+(º3vÓаãcZ1_iIŠ$)`ð.ǰÌ;mÍ!˼Íà ‡ïT޹kûk'üÛ…)¿°%ÈcçÀ˜L&ý´mnÁÚy¦yÒ{«1 !†e)ÔÕ{=yà]‡ë*;¸^‘ŸÐë™?uxikAp½7XƒÓ³ªð¿¤ €ŒëÒ‡æéæJþïÐuhgÖÿ;‚QMÄŠ®ËŠúˆßKQ‡­ÿwÜKãÃÖè)ÒGëG‹‘¡é}>1óaœ±‘ßÙ½ØýD-x¦ç>‘Z?ø,ˆB&ï‰\ŽÊ“Trß?·0›ÐÒBðôë©Å•È•-bänKTXµÝ}¥oŒhïSï>%LºÜ®îçEó{ik|öCĤ‹Ma7eü‚HÌï¦ÌñÄ?ãf$7…Ôž Õmg>¬LžïñÀM~X™]•: aïàNPK™÷ôìÇ ir§v¼—ë¸âËóÓÙïÜŠÔBò[ ÷I–V>J»bñ÷ŸJ•šåÔ^Aµ”Þå±÷K¬Þ­fwŽ[†9±þÄ"‹¢&)- @iµô³‡bŠNó‰7KRÅjv¯­@§xT›œúçó,­uë¹=cÏus{iKlzq‚¥S;Þ9nBKÆÀ7®#¬Iƒ‹÷TöP.¿«%ì_îJ…ì{æíÇ`'Ÿ:)Æ@n¶ÐÄÔü¤•Ar»|z 1eòQLÇ‚½ ZS&£‹ë6ƒ76B,ÁØX÷h­®ÉÍt!0;é*ïUÕ‡°spPþùÿÅßG= ÞÆuÚíÞwŸ®pÜùgñËèªXÏîl÷ZþþšÀºßUPÖózÁØ\ï r§ÙUµÕ= |—>,Èb¹Üvaeeåëׯ#(uhÇxÔOW2™²döLN¸!­_y:ŠMÄŠ®ûûŠúˆßKQ'q«=4>lžÂ!½Å»NœC%Bõ’!¼@°2x"`í›ûè)þÜ.ð¹ÀK)ó!x)vÞ†òÌ|Ô~œ½^¦¬ïÞ˜ÒÏñ ÃvÈqŸqn°‡fܸI=ÝŽŽÈêòû=œ h›ÛïwÝØI›ˆ\–!õ¿—¢Þ9Mœ§·Æ‡­ÑS8¤·8Þ!!ðØ˜¼~{Uè±§ç+.ó!x)vbК¥¢)üáÓÒÒÒÒÒÒ‡y˜ÈÙŠ£;ä¸Ï87Øë;®{†<Ýû ³ )’¤êˆfY“®ˆòÕy6+>¸"ìÏC*ê'~E½söÕøÀ5z‡ô×ðå› L¼wlÌÍ]·›ˆ\–!õ¢‘™ôZr!n²ù0å<š?~êã¿ÿþûïÊÊbxسm±Ïÿ„Ì#±ŠðtÜê“Á䘘[ü´¼¼ôÏLÐF$‘²xco?|þòå4õ4öÍÞØ»Ÿ¿|ù²üiq~Â9êÅs$>ï 3öîS܉Àýt~/~XEÏ»Ì;ðœ¢îö¥m”H¸‘—¬á÷ÿ®œ§Û£ŸVVþ=çsÜüÔÒÊrÂ…(ïì—•…ç ƒíÒ‡Ì `ñÇ£Þ~žèq °ñ“j5¯žŒb Æ&Pþ÷B—æ'ßÌGêß÷ª—ËÊMîØŒ»¶û»4ÀŽjqo­rº'ɵ"H×׎`±âƒ+Â2¤¢>â£S42“^‹C.ĵ\r­t«œGóçÃÒ<øõߨ£ŸâO¢žðœÀöÉ”':ãîìlì¶(WìÍL¸±zØ6Ñ<–˜b‹ÉÕdÙ&æç#ÞbRP¸@Ä+fÖþ–d°„æÞ\­Ð÷HnÂÃcöùÍ¥ÃÚÃ;üŠÍøç ~¸…K$Ü ‡—˜ÀTˆ–®ëÔɬ¯ß÷±r5³cèywâ‹¿›ÖdÎ;Ðã› µUªsn9“««€L¼Ã¦6[ço(.<Öw²Cј_^þ'Ì7ñÏòò|àú\›ˆ\–!õ¢‘™ôZr!Î…qå<Š?E1›GøºÓê÷£ãÍï?þ”­Ñ°Ëð>í‹&lõµï?~Jþ™ €c"îlì­}ÿ±‘UñšÓóÍÝÕoß~må½6 #Âl6Ëò/c×'›Ì,H’nÏ&üVI’X–>ÑÄè7>»øiyyi!á?=ÔH<ÙÞSÂKËŸ?YðTÿ¦Ê½MÖ@€>ùóãÇß’e*ìF`´Øø¤ýÑßÜýõíûï#-4æGçÁWç÷SÅbóâo‹?d­ì¬¯ïÕ¹^žàÍbê j› ¡£=<.kÏ_Sd› Ê™µß¿­wºÙßÛÂiXÞnw¬"#ão¡V*u›ËI˜]NºRi€y,Ös~þXMfꬓ§L¾hÜÖL­ÿ¾ºSµÆ¦¼´Q݇Œ:¬ö!Á·°‰&¤9^$F^²ŽOz›‡Gkw=kxayùóç¥ï¦ÇÎ>Ë¥ZÕœ.ÖêttkõuÄöÞC漓þ{ÈÐùå¸Kk {Éýó¶á&f¹ÎÑzQê-z]lV«tWµS¯VUñzÃa±âƒ+Â2¤¢>â£S42“^‹C.ÄÕ.®œGñ§ Ñhôøø¸ÙìqœŽp$tT€v­©O^}¹w+g“*‡MY¨”jÔÇB]ª§×þ UÕªNŒgÏsʕæ¢tÚÃ?%# ŽÕjM$ÅbñaÕP¥ë:bmMë]¢¨¡åàõ?›¿öhûÄÜ\Ô_ý[_,ÊU¶ ÆáæÆ¡ñƒËN!“o)J­©9Í,€ˆ Zl|Z9›T=lªj¹X›·1Ðá,ìuÁû|š¼ò$Q+€N¹®G =jMS]j»V•UŸŠÔÛó×)]Q=x"Ï[¡púõÈ­vÇ+22þ6j¥Òœr:‘P¦]Ns5×8SŠL,c‚n»šKUO“,'Uê’ÐÌíï:AW9pÔ1á÷ á«ËIêé_ÉVûÓ2šæxM0þ© ~¼QR x‘Ö:Úøu‚ÑV|66Vý} ÖªtØï¥ÕjFs>•Å÷ß{—ó.Ügþ ’_ ÈdõÇg§áÏvI€vfKpÅcÁâŸ\w° œZ=Lž]ybq?yë&‹MÄŠ®ËŠúˆNÑÈLz-¹Ç–ó(þÌd2‘HdnnŽaØ3`ôËÿ dر#„tý,«®ëB@óÁéX€£4 Lf¨ÝΉñp(ŠR,V¦i!µ´ý½`Cš¦:èµB®¥è Ôr¥Î"oƒBÃåsw ;õŽ ž”ÂïýŽÃfÍЮ«‘ A‹O„yl~Ñ«E«Ýæëጻϧ›W?º¸êäžÇÒÃó7‰6_ü8©ªb=½·ÚýNÆc+•΄ÓUÖi«OJˆùÔ¡e*¶0nÖºõröà ØÑ¯USmW*Æu8ê:ù­õÒÕjh² ã´?1£hŽWåˆD¬Âö–p寬)’xöQš˜+µB ´ª5ë|H>Þ©±§0÷¾à{ï¡rš}ñé ‡€bY3L/¸4КÙtûçŽóšózL ¡.®t*u9æâ¡TÐ;'»çÂÌDc3Óä1'ížš ÒÅTJ-þḐä¶*Wc±âƒ+Âþ>¤¢>â£S42“^‹C.ÄÛžxܧÞ,çQü©iÚÁÁÁ}ƈ:œßűws„f<î×õ«â§÷BÖ?T3««Ug‚o?òçjŒ]=ˆžðRQ$ X–P€eYI‡OT®ú­ë:¢(ÐÏÇ#:èu· .hññ©ëz7÷wýøE­d|Óï…õ>=ÖóF9ñž¿©ˆ D•ï[Ãl*7žæ<^›Z/Õ.Þ–JåŠôÖÉWX{£²w–¨¶ò©?ù2Y¡ÄL„#†gÍñª°ºœ¬Ù¼ðoèìoÇ ´–ìŽÇØ\2{ºnøÊ„ A³\l™åJ¼Oaí½ÁöާܸŽz伎X<Î{ÞM{XŽgDaû?y€»ŸÿÀùbSc¼ з“ëv¯\lba/ÝõÏL:ú±6§Ón¦€²ðN§½~7Â&bÅW„eHE}ÄG§hd&½‡\ˆÓf;¦œGóç}EÑâtÛ†óM†Ý—ši ÇR€—Ç¡¶Z†÷¤n§mvyyE±.Co·%„MÓH§{ÀiÖ³…¦ˆÝî©"«'2îŇº„gF½Ráㆦ-ž•Ëí¡µF­åm&Š2;ƒ^K½ÑPÚmÙîñš)@4çssíöݖ₟ÝN›u¸,Åsã<9zåò»ÛBßí±ž7ʉõü-EB ËRõxKz/ã­ÁéÙxâMÔ{¥ÍÅJEs…ÇíJU=ÏV†ÒIRàô1{·Ó6»}v†B´50³8ë3Õ}ȨÃjRFЯ‹ÖᯯgüH×5aëëÚQGÖi‡ßïd)D1|ÀË5›;éõÌŸ­ÜËZ; `Ð¥`®#Ü·‹»Éƒº W÷ÿ¦*ÆýK¯÷®øò|àôÚš[ñƒZH~K•2îéÙ!ÒäNíxïºÇåRjÏù>«oìÎXÎQòÿ+€®@;³þßÜx(‚MÄŠ®ËŠúˆNÑÈLz-¹?ZÿïøVÆGóç} ‡Y÷ÌÛÁN>uRŒŸ§›œ“ Ÿ¦i­[;ÙI5øèÒBðô»ÕÅ•´W׳]EHïó‰™ã ˆüÎnD!“÷Ä?.GåÆI*¹ïŸ[˜‡Í!“õ̼ýjŸìd+c#¬áñÁõÉÕRz—KÄÞ/±z·šÝ9n¨Ã%Šù½´5>û!bÒŦ°›**Ð8Þ+$¦Þ}J˜t¹]=ÜÏßmWI\ЂŒ‹OEH§ùÄ›¥ˆ ©b5»×&ëv°P.¿«%ì÷]‚õ¼QNœço+ê Ç¿œ¶—®ŠõìÎöñ–€/wš]…Q[×>ƒnW*¦‰q)½þ.@n¶ÐÄÔü¤•Ar»|äSãS¶xbñ3‹”Nõè"qäQ‡Õ>,ØK›ˆ¾9^2ƒzI+¥]±øûÏ ¥JÍrj¯ \_FŒ^ØW^ØÞsæÄ µO¶¶˜ùˆšÞ.ô\€,–ËÕA+++÷IíúéJ&S–ÌžÉ ·"¤³Ww~Å&bÅW„ý}HE}ÄG§hd&½‡\ˆw‘ˆ[½YΣùsd\ÝÔ•ðšÁö´Úý^>´oøs»ôÐÓ«ÛŠ(ÏÌç@íG² PÖ‰woLéŸéÆ0eîÍðÍAìã!Ÿ-7nRO÷bY]~¿‡3msûý.ëõ‰6+>¸",C*ê#>:E#3éµ8äBÜÄy0å<š? á±1yýöªPyøñ7F‘Ö,M៖–––––>Ì{ĬÐó4ªÊ$Ü›¡›ƒ0Ø!ÇC$¾žîýЌلIRuD³¬IWDùê¼ ›ˆ\öç!õ™¢Ñ™ôJr!®áËy4wƒ¼ „—vÈñ‰Ï–7©ûìß:"TY¿¹tx9y&0¢¥«GZu2ë7æÀæ±Ä[L®&»È61?ñ“Â].2 „²gçÂ6 ì‘73ÒïmA4ؘæCÓñq§…R:µÂÑa¶ÒÕÀì‰Æ'}<£‰µ“ýÔIÃø^ˉ,Þh<âåY[åÌÞ~±«s‹ï'¬ïV‚g磼âpöüŒ9UQnɉ1y7kŠºY¥–ÙÞÉ·u6´°4Ÿ—'Z¿6ND@fO41ååMºØÈïïÕGqhðmŒ‚ó'|ûÑVÜÕÇb^‹RÙOîEwâ‹¿›Ö˜ÍfYÆŒMúv¿¬'ñ&ê¼è²wüMLþªâÆ}æ±hXÏmþ,)¬Ýtñt¥«í&øæß_[´'±0nü:hâUasš|Ѹ­¹µžlj\hîÍ”·²Ul­}=zÏunÒHÿøš{ôSìzº5 ·ÿüH™'Þ…Ý…²tòûë‰iìÍ'Gþ¿òE|Ñ„­þw-Ù¦œÑ·3õûõ›*FÞ!†ž§N:ùçÇ¡köCØg)oWªKs¡âêžðfÖeÍ4®»î˜ˆ;;kÉ6å/ÄC•_‡Í»št7(ÇdÌYÝ[¯ª`ÜF#ÞXíæ±É œùõ£¬YÃóSrj[8ýêc0×ÝA;ð˜Ì,H’nϤÌ$±< p1àü~ª¸}°ÖñIoópµÁÌ^)Â^X×uUéÔOÒ©|K3™âÆg#!'«wÊ™½”ÐéqZÖí;×µ³‚ D£Qžç‡­*@ naµZgffŠÅâíŸúv¿ruíÛ·oßþä¤nö÷·oß¾oÔ w GÈÄ2&PÚÕ\*]”¬œMª›*èR¹Xcl6ÆÐL\N ÇI¡.išÒÌíïÚÏâ¨ÔN!“o)ºÖª55³™5ÊfålR¥Ô”5M¬”jÇæ<…âÆç¦ý†º#†ž×êE¡£‚Ò¬·´³»q£ZÓTMmת²ª©ˆêáåÛu¯§×þ7dM«Ãö¨äàÁÐÄOÄœÕÔAíÑ7®Ç„7¥{±©>2ñ¼õ<}× ®@E麎X›Ãa¥u]£¨+ƒwÞçÓ„âÅl‚ñOõãƒÒÕ'K­£_këëë¿“éºe*6f”ƒ×7ý\ßkØbÑöÎuíýC&“‰D"sss 3ª~“@ g(ŠR,nÿÔ·ûÕ5UPu]×4Uí5fó©CËTlaܬuëåìÁA±£BÈ<6¿èÕ€¢ÕnÓphŠÍ‰Ò/Ößµ+·ÎöÄì‹O9ËšazÁ¥ÖÌî¤Ëc¯{ov®_þ§ÇPûªñº®S¨çäÇ웞ó‹©MÌÈð^vöõ¼˜ûûÀ|·roÕæƒÓ±Gi˜ÌP»¿Iíþî›~‹Ú™_£Ÿ=ôÓŽ oƒ¬6_ü8©ªb=½é‘!\×G;9‚0z4MC©¥íï%ÓҴ˘³û|аy¾²rD"Va{K¸r#ÑI<›Oˆ¹R+Äq-ôZ!×RtPj¹Rg‘·A¡z)s5’±w®kóMÓ°÷6@ <£í~ÕV>õ'ŸB&«3”˜‰ê›yI×õnîïúqÿõ Øœº®Ãù°ÑŒ YÕtÐ¡×Ø@,ç=ï¦=,Ç3¢°}|9yøúõëëwW®e.ƒöEVWg?ú¥²w´ó–C÷üp°þ© šY]­¨:|ûñÊ«¬;™4`5µâî92ñvË#œB ¢Þ¸|l ê¬l|ßêož±ëî¤ýá#™ðÿE’€eiX–•¤ó]‘Óï…õ‹ï^­.'k6/ü:û۱­%»ã16—Ìž.¹>›3+Êõo_¯õŠƒDò³ØX‚@ £ÃŒG+CéŠ$)pú¸µÛi³—… ¸`bnœ7ìþ±9»¶Ùí³3¢­™ÅYßùÓ'YMv—eX«…1œGˆÅÝäÁéÆ8ruÿoªò¨Ÿ}t;m³ËË›(Šuyz»nž¢–3™ºÒÉ%WþüùãûêÜrÈàž„MÓH§{ÀiÖ³…>ûþéaLÒ›G©2ºè‘V£/ØðÆA!İ,…êý©—ëî¯@õJ… Œ;š¶xB>T.Ÿ}®D¹üî¶PºìM[‡¿¾žñ#]ׄ­¯kGY§~¿“¥Åð/×l¶´F­åm&Š2;ƒ^K½Ñ2PnÙ‰@ ^ºÞóñ9€Ül¡‰©ùI+ƒävù %È é4Ÿx³1!U¬f÷ÚðÑ¥…àéÇÞ‹+‘³Íy°9!²Å‹ŸY¤tªG§e¨¥£Ïô܇ Rë¿“£àZûdk‹™¨éíB÷®c®‹Ýu>¬Lžïª40ŠÞç3ÆùÝž‹§µvvk‡};îÎmî3˹å¬?g຋B&ï‰\ŽÊ“Trß?·0›'âèM:GkdR•÷‰)çzª¦bíÄ6qp­ØðÆiï Ç¿L€®ŠõìÎö1v:ˆw]#„±«@xPÔRz—KÄÞ/±z·šÝ9>êS.¿«%ì÷ A­|”vÅâï?3”*5Ë©½‚b~/mÏ~ˆ˜t±)ì¦îzh ²X,÷© @ ¯„ ß4ð¼¡<3ŸµÉ‚ @Y'Þ½1¥x£0áñ }s=ÅŸÛ¥'ÙŒ¼ ádòðâÑš¥âøÔ‡O§m©+ÍìÞ?Ñ ž/&¯ß^Íí<ÕöÁäý@ @²~š@ @ ™?@ „Aù?jª2©­*]IEND®B`‚btop-1.4.5/Img/normal.png000066400000000000000000005011171506333644200152120ustar00rootroot00000000000000‰PNG  IHDR’†t sBITÛáOàtEXtSoftwaremate-screenshotÈ–ðJ IDATxœìÝw\çðç’ CdŠ ÈP,P\¸®º÷¯Ž î£nQ´Ú¡€vj•*ŠUT8êD«¨ d/2 dÿþmÀ„a>ßOÿ¸rO€rO•Š›‰jÅdZh4ÓÚš­~ðc^fܽ3p[záÁóôŒä‡ç˜ÚŽAòó¶²í|Bzêý£sí)ï‚_Íÿ×üüüS3Û7OVïëÜÁñÔV>Æö?÷²ñbovqÙlL÷…a1ÿ¦d¼Lº¹}´µFmžÞnË"¿|j‰ýÓå‰BŸˆ©¥!÷Õ󈽛‡múý>€~·®F eïéÌ _¾/Iôaó.3ÿJÈxyÿÇíª_ÛeK<[¶=ôÀÊ ÐúŽÖNþ:Bès ÷(÷T©p°Ûª[ù/÷Ïžy"áQøØ>s"Ÿ>œm íúþv5>-#õñÍÓû÷3mø½†ÁÿºvýŠÕlÓŽšiEBöm®HV7B¸ñ×u#Ì^Û¹ót¾¥ÿ΃ íkÞÑ÷™åýú﨩ŀµó|Ú+3$–U$¢êO5¡•Š)Ýt™4Ú o òÕ¹µnú¼ÐL»ûγz›çÈÓ(7.>—¹/ùŸwó•l!ÔJdÿ>íË/m½&úØHÙl¼:8úËé??­úOkR·>} éZžn5§I333å±{ì¹u!À /ÀÜÜ\þ:Bès ÷(÷T©x´<¾0-0ñ šcZÄÑýr€«ÑgUøÊÁzƒç³åÇŒö:ÒOº¡”fZA%“(@è$B •É,z± üè[ýCÜçHGwÊ"Óª›–]^þÝ­¼>óܼMLõ ¨™RP„”s³€§ojP\’›bdâAK§^L(;s*òÖmmÓÇA¹ºhÿ”À¹¸mQðMÍ _ÌtÔÎ@²?až!ôiÐ-Í^0g´³¥4.xï¹>ëKïÿñ²®ÿꩤêªR‰”Æj§¯bJUr!Ôêi~mÆ¢Õ ”¼É:VöŸK´Õþ{$ïT)÷ü)7(Þ {d<ß/ç¯}f}=ZCƒBÑÓeˆµu5+îœÝõ³ ÞäéSŒu¨dívŒv³ð¦,ïov=É+ì½úL&Û»v3ïb¡Aýø×íçEÕIÎdGO‹N có§Nþò'Ù™T@$€,)b}õÿmd2H$R ¹â7w´[óÑ<ÿ‹JÕЛðó3?1P ­¥]ýŽX(’ˆÅ ˆÌßmzž!ôiÔž)ݣάt¤ý{zç†ðߢ“9²†:Çî˜[çµP$™vŽýßÐ~æßB¡¨áuâ©!¤.jO•TFŸví´ê¼õŠŸ'¿~{”{ªT<(—(&de„éš1Ëx.“Ue]ß½`îÁx¾¼–4æc£êäYºÆ>¯DEïêEÎÉÂ*aÁ«ügw%Ií†ÖmaëbÏ`éüsúz%·¢áu}8^Uþ²ûùï&04(f_ŒìÉÊŽ¿_ç} … "‘°ºž PÈ„¡a»ÿŽõ‘@©<ÿK(”]á½óaM€ýºÈkÙ’y"„ЧñÞY±÷¤9ŽÚ%'¦÷ ¼ò‘“>´ó\¶c3ÿêîU‡ãùŸŸ„‰±@!˜š™dçåA׉§J„Pë÷Þ©’9õ~¦BÝäžTåž*Ê¿ÙVœú×RŸkì\ý–…l¾.Ð÷é'åt«“§™ìrêøæåƒà×Îsúè9YKG»g¿^¶.öÏãž¾ ¾W?˜Z™Ç]¼óÑâA!OâÙà?dѺ´.0xñ‚¾´c“ºÅ—°úLýf†½‰¿+@nÒÓr())è0ä›m™݇X6ÃÐÊåÿ˜£{ ì×­’ßkæÊQZ§—O ‘»T›'B5;}}}€ƒÞÓæ[Wx‰QGîнÿ7Ìšde«Àê9nþü/žGÿz3€ÔwÚROº¾úóp|$GG§/þú!«IwX¾“Ì„÷ˆ)†^r×Y¨²mD¡OFîIõ¾¼Se±ÂÁiòbú‡GOx}âïû/Ê@,àÿ÷¦µæQÉ­xrã±Ç¨~õÖšÚšÜ2nóŒ&¸ºiöú†i“×®'s³ÿ ÝrCR=‰Ðwž¾v‹Ÿ~a˪ïŸ@äw‡ÇìŸÜëÃÞ€ýĹÝCš'…óÜ8} eÃÌ ‡FÑøO/îûû_>ØËkY Ò<B¨Ù&­X(<üèÈý1ëÖ¬þm ½>óÖ÷áOùõf€4ùþÝ×ø·dT·–<Ý;+@wWà”½E¹˜½òÏ‚úÖ‰õBè3 ÿø@Ωä?åíä$I8wvàìqKÇXèÉ^§žÝ¶tÛM‰Ü†Í¢’[A¥SßÛP:þî…ßÜÑ ^YV¼å{ƒ\\Hûu¬cÐ]{4r fêÞ B¡¦PíÉ O•!µð™œ¬ýÉ¿ùž?B!„jëšë÷[“°í ÓmŸtD„B!„PóÁë!„B!E5òþ„B!„Ðçï@!„B5Ö!„Bêdä2aμI}:|ÚXzÖ!„B꡽ߺï6²mBçê×¾óß÷xóò{v˜ó^ÄÍ_ÔÓ]nPnw€v®óFßKz™‘òèÚë¼Íðs¥„ùÐoOÜJxñ*3åÉÍ[Fv¬·øS¼%è9ÏûéüýgééÏÆ„-tÓï}¯òóo­êÐÏËwË-ËW„B!õPøÛô/ï[òRjã˜v~Ïž—Õ‹tÿƒ;±ÙœºKã]öG"ðÓ2Êåu¯vgßöëz?RâÉŸOózMš¹ ”ôÒ}JDq3o³º£]÷ü¾‚¸Ÿ÷\×öY¿iV¦¹ãÔõ¿Ï>þLY“ZÖ\\-ŸÝw¿œã“íb Ï}»6*ºÏ<¸Ô@øòê±—š½ÖœÝnÈùgÍÌï“›as°~@!„út‚hß¾=“É$“Émœ’ÒÐ|¤ô~ÃúkBî…è@û^#ÆŒaÖyÿùË};/½¼]sÓDty¯Y^“;uìP,§»Üuò3ät¯[?€¶Q'Cͪ79…\ ØÙÙ}<ó¶ëƒ?\e潘Lˆ©pslÒ,»?Bª?ÅÓôÍôÅEñG[¾ïíªêÎó¶Iv !Iª÷:Td܉‰yoImkÂdÔ¾_¾±Ïÿsêÿ~Ϭÿðo$‘H¸\nQQ‘LVoyS ë„B¡OÇÐÐJ¥¾zõJ$5ÜRÁà„ó—_RsçîÓê×·VÙ™®ú  }äÁÄ=ÞO¶yŒÿµH$àÝèv—”ß½¬œ  §§ð ̧þvwC×óó­æþýn% ?mQÝ?mdxÚÞlqžGHQsõ@sÀ®Û¿O1?ß=|ÐwÉ µü²Ò2==}IîØ4Î>€Wõ%Cï±ô×½~Z·NX{ý¿÷SÔýihh˜˜˜ä&x¬B!„>&“™““óÑâáCÚöCF:ØZQt{ Ÿ4©Wöã·³d`é⢠p7!AR瘝gÙô‘n³7 |†hûÂÚY’Ûýƒ üîOïÝåLöÕæþµ —I=@pûŸxóôî<’ø~1kûjò¿úÇiAù£Ç™`äàdB wíiG…da-ÿ#éæÍ²™£&nÚÅ¿£3ÜOKö"æR˜ÉkIë³ù·¥=hy篕;›ä ÒWÿDÜÍ•¿V‘HTPPЩS'¬B!„Z2™,”î¦ßoIHÍï/y/ñ†óóOÜÎPmÞ¤¤”4Ô=ã—¥A]¶~=`ц¢âg·oÚ|¥úîi¹Ýÿ”ßýìÚ9%A“†Í_DædßÛ°æx½ß‚¾ þ\º°óŽ#g¬ô¾~¼y[lä݉y\jm_uëj¼°á–ÿÁ½¼~æbã ߯çHŠâXýãs‰üúAÛÊʘ0óYâ 9=«ÞúD"‘"Óê:þî…ßÜÑçE}´B!„j;;;'ö(Þ²Rëä›H]¶]nžrƒÔøœ@„B!„¢°~@!„B) ë„B!„¢°~@!„jÔb}}Ô:ù&R—motžX? „B!„…õB!„BHQX? „B©Œžã¤oÃOD_‰9ýÇ®ù}ŒH_]¿]íÆå³GCz¿ ›ÛÀuõ•wËèãÝþc¦ß¼êêÎgV|5³ €0¾íø¹ g~ tg©:½Æ#ôy,Î:x@õK’ž_÷±×½&™}ÎÉÑ¡æ9Öc·ÿ})ætøêþÆ5O´¦Zx/ÿáø¹+W/žúùÛqöÚJŽ‹ÏC!„R†×Ò ú“Rc"/Wvó3y){üò2€òÿúóÇ´ï¸Ñ_m |9j5WáuRõÌÍt5êF„å¹%`¤¾Á¼2%Öýc§9ŽìC»^ç‘LûNøc`×S/мÆt¼¶dä³ çF¸þxï²èL¦”Ã6iœOÍÀÜc6…óî™}漃èÉÓnDeF®£–˜¤ÍÊå¥Ï”yZg9«35t³¿ýõŸž˜ø¯[b~cÙô³áë¿ß4%q|Xªcý€B!¤"6.ÎL(ŒØ»5ì˜Tt;¹ÐÙ­'ù"çYÌñc/ ‰åup|—.ðXáuR´ ŒŒ4ëFø¢Â2Pã`S뇪J¶X‹'ÈdÒ ¤¢¢R2‘É2™R)Û{|³yš(tÑOO”0¸Ê;,±Ñ?û<ÁƱ]õkg£sN¦‰dù»nU7ÓÖÕ­ÊNÍ­¨¤fæéºèPœì¢&—ŠÒÏœ¾»`š“¤)>4Ö!„B*Âb2 ÊÙ…ç7ΉgT¹{m±H ¡Øš¢ìÁúˆ[‚V¬'Hüìk+ަTÄF$mÛrÌ«(*¼rrHp÷‡»=W£âkKaåw•j¨‰hêkH5˜½ÚöêK—¦Ü]–”œ.¨`³éfVÆôd¦… ›Í`±X·¦&“Å…ø=U)58Þÿ€B!Ô È8¹)))Ùe kéµooîèÞุDŹ©7F×€1†·þøeÞþßö;¬d®P»}ö¸Ikc̦NÕùkåªcÏ+T¥Rhök:IB“ÓÊê Š›®ôÇ{¿ºþså_ݛ̵ķ†Wù†EÚîüìǓς¨ÓK"¨I•ËY„B¡Ö@ÓÀÜ@SP–fãöžP•ýÛù<è*“½ßZ²ÿ¬É£eßãàÉ·éo¤7ŸOYîÐ#:÷Ù¨ï¢Í3YQaÑÎsDÅ„¬ ¤ø]&*Eq·q³Ê½øu%­NX&»““ðL(Èþ=¿ô¢ž!ädˆ^D͈„÷ÚÕ=tI&U®€Àú!„BHE8.“Å0±ÈúÆ·ƒ.Çî ¹”SY–—‘–Ë‘”³ËXº,€¦§G(++kxݨ…L‘I¥5™e2©… LÏ5;Gdî ØÏóËôG¦&O8íïöË£+bÕ¦ª C Íñ©–5¯]}Úï¿y>Ö!„B*’Ïí鸪꿻Ÿ-=Lƒ+Tå&ܽû¢¶efüÎWƒ½¿Ù$LÔîãJÈrž$”Ê_§L&•¾ÿ}²D&“åo§Â8…Ååƒíè§_+'[ö²±*HËNÙž·ù|)t$H‘P(A">¾®Ö¡h×µý»ªiŽÇûй| ÀüMñú=»½IÊ$›N7e=L¯¯"<}’ºdÄ„®#ÓŦCGõá&F)7Aë„B!á^ÛÔA2ß×ó«)d^Áƒˆý!ÑÅà*¯%ÿîOëÑ\äûň¡’7)Böþù¢žÏÕü¼¤yÿ «u°i^ÝÞvßï›EKVҥ좌°S €Ï€œQùÁûÏŽ(½²û`Ó~åIår_]ÙÊø“—{;à=ν´&¿Þ›¢ó"·}g¶|Ñé†dnVÜ‘MG’•«Ñ:þî…ßÜÑçE5>m„B!Ô ;;»””Ug” i½ÒÆ’“{=´Âb™­UEîõÐ7¢ ¶rÏjüý%„B!„ê¥a8ØÜÞ‹A©]h¡ ºÀë!„BŸ^P;$š1&qK$T#:M*â–ˆe-l ¹þ VÅB!„BŸ–TPȯ~¶œ ˆ/hÁ ºÀùK!„B!Eaý€B!„RÖ!„B!Eáý!„B*£ç8)`á(—În^â•°=awФ@°zÎ Z6ÊÑPœwlgpdZ¥ªÓToäNÞˇÙÙ±H¼âŒ?ODŸÎ‘˜ߺ{¾“æëËÁûî±U`#ú‹úNYª2'æò5—nsOtÔ”Ô¼'8ô4¬ÇnZ?ÃÙH˜u㇠Á× e@µð^¼b–—!…“²ûdr…2ãâõ„B!ax-ݱ`÷~äñ˹Ì/'oZ1L€î¸ùËŒ}³ÆŒ 8&újËL[ü¼Ö$úÎkF2b õ ý6UÞP{˜zéxmÉÈ]/‡Žp¥Ð™LªªóT–¹Çl § NäEÚ‘.¾ïráû.ª‹JŸ)ó´.~=fLÐã® üíÀÄÝó{›§ûùL\͘±iŠ­rãñˆB!¤"6.ÎL(ŒÞ»5ìðÞ¥ÝÙ­'zyyfü}ôÑë ^ÎÕã—¥žžVªÎS­Q;w´ÍL:WX%W&ÿeØ¡$6È@F&SÈdH¥@nï¸oÏÔ®4Ugªr‡%6úgS³n¦­«[•š[Q™ž™§«« @up²Kˆ>™\Z%`§Ÿ9}WÏÉÉH©¡qþB!„а˜L€‚r6@áùsâ•EÀòl/{]"ì1}ûˆ×¡ß—Ú¼Puªê‹©­)&·Ÿ8Ós‚ޏ(õб‹—Šóc#’¶m9æU^99$¸ûÃÝÇž«ÓϨÖ–ÃÊï *Õptâ1ªÃ°q[ýL(ŒÝ>;–ÞÙwíú©Åá+WÝ/‘ª:M¥Ðì×t’„ÞI+Çw±Ä´ˆ~(zzønëøjTÄ·† ‹š)ʺñãÆçAÔY•DP%å`ý€B!Ôh˜h ÊòB!™L®¸4ì*€ÎhŠH¨N_Œ·>2IÓNçò%ÀøÏ³ì•fÖð€lÔwÑæ™¬¨°hç¹"ŠbBÖ„?âª:WÅPÜmܬr/~] P§´Џ¹58¿åÏfpD/"ƒfDÖí.“Õ}Ô5A"ɤÊUOxÿB!¤ºYÀÂk{k«:Ô†p8\&‹ `<28"âh€;‰SRBi×®æ@3lgX\\¢ÊÕ§‚/¨ýÈ,•J€é¹fç¨×û6?³õïþhÃÔ°×þþnj󵺇¡Ž…åøTŸ€ŒAý\Éö‡}¦0tF;Žü«¦… €¨·;‡Ã¡1t4ª_î«/×^©ñÕfG!„B*FÖ²³1feàÿ:QóI‹çöô \UußÝÏ„&ŠeÜ[·WOœÔóÞŸ/´\' &ß\—®ê<Õš03;u”£¿YÖ¹ Ïnf÷^G°gÁm>_  ’D$ E@êÿÄÝÊíº¶Wõ"Íñx£C1—¯†/Å|¬¹Åß¼¼rŠáDƒ„¼×õt<}’ºdÄ„®#ÓŦCGõá&F)W¡âI!„RLÅ‹…K^Â{Wþjîµ=A$ó}=¿šBæ<ˆØ] 7¾ÛÜ%hùïgÚ‰rïÿ¹þ·Tõš›ßê”>Úù·þŠÿ›Ãg%mýë9ø|ȹ•¼ÿìˆÒ+»ŠT›f‰.¥ÝðtxÞ[›.á&\[•]ïl¬¼Èmß™-ßpdº!™›wdÓ‘dåNkN÷Âoîès‡¢Ÿ7B!Ԇь¦í¬•˜šÄWu*HÙÙÙ¥¤¤´èLOÏ>UIûb³äªšÖ·/ܼÅ~ײÔe˜W_au—†ƒuשx°áÑåv¯;ºjiZ¯´±ää^­°XfkU‘{=ô¨E‚­Üãóƒï@!„Caºaéi®v™BŸM‡¡vúõªÔö–C{ÛXkÖmI·®íÒpð£5bt¹Ý뎮Z†ƒÍí½”Ú… ª ¼þ€B)†Ð0У|þk>Î&A÷ ®?,CÊ/â åNK!hÚFÚÍãIÞµk3u²ê. ë®Sñ`ãËí^wtÕ"ÑŒi4‰ˆ["¡ÑiR·D,k‘`k Èõµ*vB!’‰Þ”¶Ž5HÂc³yõ¿-T >lÉã¼ëò‘àÇjÌèr»×]µ¤‚B~uÊ‚"¾ ƒêç/!„B!„…õB!„BHQX? „BŠ¡OXÜw†«–ªó@!UÂûB!ÅPõú·c•>û-®RÕ© ¶CÏqRÀÂQ. (ܼÄ+a{ÂîIîs÷|7.k£÷¶»ªÎQÝYzŸùƉõögxqùÈ6¾u÷|'Í×—ƒ÷Ýc«4½Æ#ôõ²T;eNÌåk@Òóë:p©‰‘1©êeñ¿k’$ a=vÓúÎF¬?l¾^(ª…÷â³¼ì )œ¬¸ˆÝ'“+”ë„BH1¼ô­s HlŽªó@mÃkéŽýI©1‘—+»ùŽ™¼‰”=~ùy-Ÿµ«'¹RS“ŠT_›Qx{zðÝìÚ×f^c:^[2òÙ„s#\¼wY t&SÊáU—a#˜{̦p Þ¾4ïäDOžv#*‹0 tµÄ$mV.(}¦ÌÓº8kÌY©¡›ýí¯ÿôÀÄÝó˦¯È˜ _ÿý¦)‰ãÃR•ç/!„BŠ‘ŠË_W”V¶ŽYDmƒ‹3 £÷n ;¼wÇ_©@wvëI†²—÷Îÿ´xIhb½FM$™L!“I •¹½Gà¾=S»ÒT•RÈ–ØèŸMI|[‘ ŒþÍ}š&’„ù»n˜•ËÐÖÕ­ÊNÍ­¨LÏÌÓÕÕ :8Ù%DŸL.­°ÓÏœ¾«çäd¤ÔÐxý!„R Ó6äDÖÑSÓŽ–©:ÔV°˜L€‚r6@áùsâ•E©×/@{Wg׆¹‡íøB*•g_  ’D$ E@ˆ¯«u(Úumÿ®êEšãñþF‡b._0S¼¾CÏno’2ɦÓMYÓ‹ëé.xú$uɈ ]G¦‹M‡ŽêÃMŒ*Qj|< "„BŠá$ø¤‚’új÷Úž ’ù¾ž_M!ó Dì‰.×Õ1{|°ëö0àE/º3Nµ™ª±ªÄ[û솬XñM; Qqvꞈ'ÅÀç@ΨüàýgG”^Ù}PÍïmÊ}ue+càO^îí€÷8÷ÒšüzoŠÎ‹ÜöÙò G¦’¹YqG6IVîgå:þî…ßÜÑçE5>m„B¨ Ó4™²ÀFóÞ¿‡î*õ¨%„Þcgg—’’Ò¢C0=}=úð“öÅfóåË\†{öT¿+7XKÓÚ-ð êíóÿÜbË 6qŠç©ZšÖ+m,9¹×C+,–ÙZUä^}#j‘`k ÷øü FÀ)v!„b4t]½»xXRUBA·qè>ÔÞ€*?H·®}Wn°µ½åÐÞ]¬µê 6qŠç©Z†ƒÍí½”Ú… ª ¼þ€B)†ÐÐoO'ñ*^ã¯ã &ø×È ƒ!åq…29A±6Kçí»rƒµš¶‘6Ácóx¹Á&®Sñãñ¥ i¡°<õÖã"ssSUçÙæÈ@F&SÈdH¥@nï¸oÏÔ®4Ug¥r‡%6úgS³n¦­«[•š[Q™ž™§«« @up²Kˆ>™\Z%`§Ÿ9}WÏÉÉH©¡ñúB!¤–ÃêSÞÌ?~[þÇkU§‚Ú “ PPÎ(<¿qN<£² ,|ƪê÷ –•¥Ayr¹*slŒÜÃv|!•ŠÊ‹³Nžºt&7?6"iÛ–c^EQá•“C‚»?Üxì¹:ýŒ*amé1¬üΠRÍu¢V]&&XÉ$b~Æ›øI‰Ï$l6ÝÌʘžÌ´0a³Ù,KÀãÖüµ,.ÄJ©Á±~@!„#⼈ËÐÌU¯H}È8¹)œ·/¨Æ½†ø 8 eÙ™-ç¨2/õ—}kÞÖ$ Q-\‡m×3±ÛgÇÒ;û®]?µ8|åªû%êua‘f¿¦“$ôNZ8¾‹%¦EôË €DÑ›ÐÃw[ÇW£28 ¾}4|PPXÔLQÖ7> ¢Îª$‚* (ë„BH1•™Çƒ2UjÃ4 Ì 4eù%à²äÐf·¼è“Q߆ÝM}ƒO-l"qUqiÍì…ÿ<ÑϨ@Ù¨ï¢Í3YQaÑÎsDÅ„¬ ÄUiž £¸Û¸Yå^üº Îœ+¡ˆ›[s¬p~Ë/žÍ4àˆ^D͈¬Û]&{ïà$’Lª\õ„÷? „BŠÑ²šº{ü_  ’D$ E@êÿÄÝÊíº¶Wõ"Íñx£C1—¯†/Å|¬¹Åß¼¼rŠáDƒ„¼únÔ<}’ºdÄ„®#ÓŦCGõá&F•(5>Ö!„bØ [‡$T ¯~ûuò UvÖ0Bà^ÛÔA2ß×ó«)d^Áƒˆý!ÑÅ`@šÃöÜö®Uìú¾¯«0K5W•xkŸÝ+¾i§!*ÎNÝñ¤ø|ȹ•¼ÿìˆÒ+»ª÷µÑ¥´žÏ{kÓ%Ü„‚k«²ë-Aó"·}g¶|Ñé†dnVÜ‘MG’eõ5•‹ Óéï^øÍ}îPTãóF!¤VÚõõ÷¥ðŸâžñUŠZдùM7ú[Ýáá®Cfgg—’’Ò¢CÐô-ÌõÄ%¯ò«X:èIJ^åsêÖºšÖn_PoŸÿç›ééëчŸ´/¶Ìe¸g_AÒ¾Øl>È Ê]§Ü âë””›g‹î®Ò´^icÉɽZa±ÌÖª"÷zèQ‹[¹Çç5Þÿ€BŸ/F—.^ƒ;™RU‡º ê9îÖÛŠ¸ëPëFÖÖ34ÔÕ$€¢¥_½ðj{Ë¡½»XkÝÆ¡ûP{*Эkê Ê]§Ü âë””›§ji6·÷bPjZ(¨.ðúB}¾( †CÆ+ªà+wíúsEPu4 ·Œ'Å]‡í\ ÈT*E&ˆ¤oÞ›jGд´ ›Ç“,CÊ/⊵Y: )¿ˆ+”Ü ÜuÊ *¾N¹A¹y¶èîú(͘F“ˆ¸%ª&qKIJ ¶Š\P«b!„P³óx%sX? „Ó¶ïáæggLSM÷Ï–­Ã»Ýõ¹íººÛŽš—žã¤oÃOD_‰9ýÇ®ù}ŒHÚÝ¿ÚñûÙ˱WÎÝ;ÿKåž Œ@ÇÂûঠ«íÞhÝ<&ÿ²vý¥Mk~Ÿ5Ä„ùðmÇÏ]8ók ;«þµv„þ"ÅC¨~IÒóë>öº÷Âä!³Ï99:«£Öc·ÿ})ætøêþÆ5?ÅEµð^þÃñsW®^<õó·ã쵕ë„RcÅ‘¿ïžù¤±Ï©mb÷ÏMIÔ‘w»ësÛuu·5'†×Ò YpïG¿œËürò¦ÃôÌü—ÎÐø{шÁçíÎpß8Ï ?¯)ÊÀyõ¼€ß|u‹ËëÝ’Ï ¾ùû=…6ëÛÀÔkLÇkKFîz9t„+€ÎdªÝï1˜{̦p Þ¾4ïäDOýßО×/ÞfôYb¢ @é3ežÖůnj zÜu¿=˜ø¯[b~oót?Ÿ‰+£36M±Un`<BHI*xì’JT‰.Eƒ¦©Ajl÷Ï™´ÎîúÜv´Õloݸ-°qqfBaôÞ­a‡÷îø+èÎn=É@dÝ=tôRv•DT–pCUç©6* îý³ô—KIï=Ù±äÞå.•%’ŠÄÔY;}ŒL¦É$JÜÞ#pßž©]Õë¹Ãý³)‰Ùo_;ý›û4M$ówÝ:0+— ­«[•š[Q™ž™§«« @up²Kˆ>™\Z%`§Ÿ9}WÏÉÉH©¡ÛÎ?@„ú ™L_¸õÂ4We.¿M™ÿ®K#ºÎ>ç]WwÛU«­íy“ À.gžß8gÎüCñ¹7G>© 4X]mx)ieªÎSmTåß|œšUõ~ðÍó_ ÈZöV¦yå‘Ô{˱FQW+'‡(þ>ð§'êô3ª„µ¥Ç°ò;ûJßý>¯¦¾†TƒÙë ×ܤ!³£zØ[UÏUª`³éfVÆtz' 6› Àb± ˆºO$—ª”}>Ö!¤ÆJ¯œýåŠr]ÊcÏýÛøîŸ³Ïy×ÕÝvÕjÓ{^ÓÀÜ@SP–_R!à[Ö7ZCÇbÈÚ훈oÖ^-Uuvj®êü¯ë.5;8Ù:‘8šXF6ê»hóLVTX´óÜ‘E1!k©É->w7«Ü‹_WÔs%“ÝÉIx&”dÿž_zQÏr²D/"ƒfDÂ{íÞ{Ì7‰$“*W=áü%„RcCÇÌÛ3Ì^ ôª^hzPñ‘’Ü–Ÿl‹šq-”«æÙŒâ†7Sñ#¤‰5îX’KÑ2€Éb Žˆ8àNbté?¬g;‰¸Y·•¹»Ù×;ú8†I÷¡u@&ág'§—Ùu±¦çš£^ï ØüÌÖ¿û£ SÃ^ûû»©Í×ê†:–ãS}2õs%Ûö™Àà—‰dµ•ä½*¡.‡CcèhT¿ ÜW_80N¹ßøÂú!„ÔÍÌ¢K/S]  ™Ö,4=¨ø@HInËO¶E͸Î Êß±­/Ïfü7¼™Š!M¨qÇ’ü¿—‚ÿdÒâãy`â¸jöÌÅ«ÆÛ‚ðÉÃD±¤ãå£íuH@Ò4ïëÒ9/7¯ÞÐÇIÚ÷\âçj¯I‚jfoÝùMi>pâö,Xùg2HI" …" HÄÇ×Õ:íº¶ßòü~Ëóû-¯Þˆ“$Ï9t?Oòï›b×=»Q)ZšÓMYK‹ëé.xú$ÕiÄ„®útÓrĨ>Üħ%JOÐ鵃ñ›;úÜ¡¨&l B¡O‹ ‘H “HeïšT| F¤$·å'Û¢f\g‹Þ±­'Ïfü7¼™M<Àšñ`hxÓÝÎÎ.%%å]Cçéó}{uÒ'ó ž]=rðf„b5zÃúî™PYšýèÄwÁ=­¨o ô¾.+6N÷©ýp[uþ×­»ÓGŽ;Í®„¥%é‘gÏœÌ~w«4©ãÈÁs´Jcw†ÜR¿Yb4ÇãýÅ\¾$ýÑݶÞãÜ[kR2óê;>i†,ŸéekHæfÅØ»+¢öûàø¬öA@¦Pj¯ÕØ:Û§=þ°B¡ÖEÓ²ÿòv÷2[ ëá=b¢)ÿQ–ÔuàÈ¯Ìø²ÊÄÐäàà‘“ÌªeIÝšd^Õ<-ßå¶T¼{·¨9×Ù’Á÷vˆZ'¯øŸ¸ÁÍlâÖœƒÜîŠþC¨Ö®]»×¯_¿ûÍ/H¸~öä±?þ8qúòƒ,ž ¤e)×ÏDùý÷#ÇNœ½þ¬XÙÛÅYžC|¿2Ô´nPâ6ØwRÍ»h©x°ש¸Ò»7¯ýûî¿î¾ñRŸ>8qãÆ‘·"<{ή{»°Œz%òØŸÇ£îfóë[§¦õÊn.âìe—uëí(Îþ—/m‘`#HŠN½LϬÙ~JÑóß2ÈHˆz]Þн’òô;"ùãè_ßxúÞöÁñYíƒç/!„º¡¶³âÔÝZ´lºº éÒž šÖ5 Ä [mð“ÑêÒÍi¨m;ªü ¦u×wï6¢¥âÁf\§ji6·÷bPjZ(¨.pþB©‚¦c¤Eð8ž„Ì`2ÒÊ"žX[‡ÉUñ2À 1Ø:ƒÕäÎi^d“ÉUq29A±ví»h©x°שZ$š1&qK$T#:M*â–ˆe-l ™¿„õB!„Чó ê„M‘úç/!„B!„…õB!„BHQøûK!¤nè<{uüÌ\!ëË>ãL«âs¤½ûûŒ7«ŠÏ)1ˆÁÖ¬&÷÷mj%ð÷—B¨-¢µïê×ÛÑV ´í{¸úÙÑ@ËÖ¡zƒÄ`« Ê¥ç8éÛðÑWbcNÿ±k~£:ÍH¦ÿöÏí+A_ÖÛ)†ÜÁièþµ—‚—žZ6jL a>|ÛñsÎüèÎRuvGè/òXœ1tðpé67cøâ5ÿýo›Au# ë±Û¾s:|uãšGäQ-¼—ÿpüÜ•«Oýüí8{meÇÅû§BHÍèºæ:$vi)[Baé鱤¼\¶PGOŸ%åå²ùRÀ 1Ø:ƒÕÞ»?•áµåĶþ¤Ô˜¨{•Ý|ÇôbÜß1~ùù꧘éù„›nÁ×KñÞvW%'›¶Bÿ‹‹-bB£c^“l‡NÜmòp¡RßÃÁZ;g>›pÎï¡ïšËb 3™RG¨êT•bÐaäUk½JZþú˜Ë×\ºÍÝ&ˆò²ì½F”~ß^•2+è¬ÎÔÐÍäã~z`òUøÏ®7–m>!1¾þû¯^,–ZÓ^‘û§ÕêÇfB€´ª<»ªzQRÁc A,ÙÛ…¦Åì²6¼[hrËwA©¼–rƒ-±EDó­³EƒuwˆZ'¯øŸ¸áÍTüiâ@;–ÿ‡ ‡‹3 #ön {&ÝN.tvëI>M@wž3§Ó•ïOY®µ¬§/RµsGÛÌÄ……U2€¤ó¿ “ LAF&SÈdH¥@nïñÍæi¢ÐE?=||u­¹Ãý³ÏlÛ5ÔL[W·*;5·¢’š™§ë¢ @up²Kˆ^˜\*H?súî‚iNFZ¤øÐ8 !„Ô˜Éô…[.Lû‚FSæW/4=¨ø@HInËO¶E͸Î ÊÕ ólÆ?qÛ©øÒÄw,É¥è?“ À.gžß8gÎüCñ¤Ž_-ê÷,ôçõúB¼ubjkŠÉí'Μ{fÇÒÈŸÁíIù±I½·[`uµrrHðˆâïÕªxÂÚÒcXù}¥u¦ V]&& ùúñÀé‘={t#@›M7³2¦Ó;Y˜°Ùl‹%àqk:-‹ ñûæ„Åàõ„RkUÙ)÷«ÊDP•“™r_P&j† â5"%¹-?Ù5ã:[4(Ƕ¾<›ñOÜðf*~„4q ÆKòÿ^ ÿ“©%ãä¦pªõ‡.+<:÷*üèˆFA·68:ñÕaظ­þ&ÆnŸKïì»výÔâð•«î—Ôw‰¨u¢Ù¯é$ ½“VŽïb‰iý2 Qô&ôðÝÖñÕ¨ ˆo 5S”uãÇÏ‚¨³*‰ JÊÁûB!„>÷æ—÷ßt{ËÀÔЉ³æh˜h Êò9¶Ë¯®Ü0ùǧ"}ÿÿ²;†÷?4I;Ïi'- ú-Eúî‡VêZ}áÙ¨ï¢Í3YQáœçÎpÖ.Š Yþˆ«ê\Cqw˜¶C|Ñ;¹@Ds<ÞßèPÌåkï·0ì<îó_»„LyÝ Ç…³ùÅ{[$’LZ[=áóãB¨3:fîžaöZJtÑ<ê]—Ftÿœ}λ®î¶«V[Ûó€Éb Žˆ8àNêüÅíM'†^¿}ûöÙ%=5‡íº}dVGUgªÆ8|€ìÝk©TLÏ5;G½Þ°ù™­÷G¦†½ö÷wS›i9†:–ãS}2õs%Ûö™ÀÐí8òo'ÊɈz»s8CG£úá¾úÂqí•_mvB¡ÿ¢™YX÷â&i(ÓÅÔºWEu—Ftÿœ}λ®î¶«8“6¶çÓâãy£=}WUÝãw÷³ᣇ‰â”«cû†V¿×š03;u”£¿YÖ¹ Ïnf÷^G°gÁm>_  ’D$ E@êÿÄÝÊíº¶Wõbíõ _ŠùXs‹¿yyåÉ& yõ=eDðôIê’º>ŽL›Õ‡›U¢Ôø8 !„ÔA"‘@&‘Ê>ÞT^—Ftÿœ}λ®õloëɤ±>˜bà<=p¾o¯Núd^Á³«‡BÞ,¨3ë‡fAéèâ½bˆm†¬8+éà_×ï–½;~HGî žë U»;0äV©*³l”:ó—4tºmsøb S›.á&Ü z––Yß?Z§!ËgzÙ’¹Yq'öîŠxZñö-Eæ/aý€BjL×cðà>Uöÿ“ÎWA÷Ï ³ï ¡}…Õ»ësÛuu·5‘ÜÏgÍ‹ééãÙ§*i_l©Ë0¯¾Â¤}±YüÚ`_Ñ–uƒµ4­Ý{So_¸y‹ÝÄhúæzâ’WùU¬ô$%¯ò9’® šÖ+m,9¹×C+,–ÙZUä^}#j‘`k€÷? „P§eÓÕyHCªjºn´¬kw×ç¶ëên;jý4m†ÚéSn]³P7¨x˺ÁZÔö–C{ÛXk6} ²¶ž¡¡®&-ýê…® †ƒÍí½”Ú… ª ¼þ€BjŒÌ`2ÒÊ"ž Q“9šØýsCfè0²êÝõ¹íººÛŽšè\ 3X †”_Äk3u2~W(« e欬Eд´ ›Ç“4q ‚L¥RdbHúvAROKÕ"ÑŒi4‰ˆ["¡ÑiR·D,k‘`k€ó—B!„Z—OP? Ôh8 !„B!Ôœ°~@!„B) ë„ú|é»9;ÐÅŽþñ–€n><Ð{´p×!„>cX? „ÐçKÇÎn ¯•9MÕy¨ 𳝣» pסæ£ç8éÛðÑWbcNÿ±k~#ôXzöö?ïœ_é¬ê$Õ¦C¿q‡Ö­º´uéï³û»0€0¾íø¹ g~ tg}´{«Eè/òXœ1tð€ê—$=¿îc¯{/L2ûœ“£¹:ªa=vûïÑ—bN‡¯îo\óˆ<ª…÷òŽŸ»rõ⩟¿g¯­ä¸jõcQ!„šUþéS˯ÊʹªÎC]pSÎÌ!8lÀ]‡š ÃkéŽýI©1‘—+»ùŽ™¼‰”=~ùyÈüyêÔß³T^ÑÉë[OÙá°ý±¥d«¾c7°›q”ë5¦ãµ%#ŸM87ÂõÇ{—Å@g2¥ŽPÕ©*ÅÀÜc6…Sðö¥y'ï zò´QY„Q ë¨%&i³rù@é3ežÖÅYcÎêL Ýìoý§ç&þë–˜ßX6}E†Äløúï7MI–ªÄÀxý!„>_"6;?‡S)UuêB*â¼æ²+¤ ®¨,}])À]‡šÈÆÅ™ …Ñ{·†Þ»ã¯T ;»õ$«:©¶F×ÄH?óYLQ•PT‘ü0¥ØºSŒL¦É$JÜÞ#pßž©]Õë‚"¹Ãý³)‰Ùo_;ý›û4M$ówÝ:0+— ­«[•š[Q™ž™§«« @up²Kˆ>™\Z%`§Ÿ9}WÏÉÉH©¡±~@!„ÃrXu.`ë$°˜:õ—sþýÕxâjXL&»œ Px~ãœ9óÅ@Çé‡bbb.œ9ºn´ ÞhÓ$œrްƒUom€ldש£¶–.äÇF$õÞrlQÔÕÊÉ!Á#Š¿üé‰@Õ™*°¶ôV~g_©ämDS_CªÁìuÐknÒÙQ=ì­ªç*U°Ùt3+c:½“… ›Í`±X·æqײ¸¿oN)58Î_B!„#⼈ËÐÌ@eNN|\U‰HÕ)¡¶DÆÉMáïðœ ÇÉ@Ò²ð]½mŨûs# îŒê¦ud IDAT'Mùgï« ›Ö¯–Tr’þÍ)  0vûìXzgߵ맇¯\u¿D½®&Òì×t’„ÞI+ÇÚ AqÓ•Nº÷ë2²éÒÞ~›Ì³¦äT‚øöÑðAAaQ3EY7~Üø€ ˆ:«’ª$ ¬B!ÅTfFeV/–\½²ûªj³Am¦¹¦ ,¿¤‚S\P]I@ÁÉ+/&vé €õCãÉÞ\:vàò *M*¬¢»ìëo!²QßE›g²¢Â¢çˆ (Š YþHMni¢¸Û¸Yå^üº îœ+™ìNNÂ3¡ û÷üÒ‹z†“ z4#Þk÷ÞóÄI$™T¹ê ç/!„BŠÑ²š²{ü\oœ´„š‡Ã`²˜Æ#ƒ#"ޏ“Œ‡¬Û=Ùæm™ Þûº)a6Ø¥£¾XX%`0ô*øl`z®Ù9êõ¾€ÍÏlý»?Ú05쵿¿›Ú|­nàa¨ca9>Õ' cP?W²ýaŸ) ~™HP[HÞ«êâp84†ŽFõ Â}õ…ãÚ+5¾Úì(„BHÅ4,t’4TjCÒâãy£=}WUÝãw÷³ᣇ‰ârmçáÃ\.g'p´lüX&_y¡ê<Õ›FÇ1ã¬Jü’GuñèÞ.ýê àˆ÷,¸ÍçK¡#A’ˆ„B¡’Ú”iE»®íßU½Hs<ÞßèPÌåkæoŠ×wèÙíMR&Ùtº)ëazq=ÝOŸ¤.1¡ëãÈt±éÐQ}¸‰Q%JõB!¤v¶!I ä…~„½¶'¨ƒd¾¯çWSȼ‚ûC¢‹AòÏá½®+Výv®MP”|=dÇßõ}D ){°çoÓU“¡ ^=Ùt"¥ø|ȹ•¼ÿìˆÒ+»ªù M¹¯®le üÉ˽ðç^Z“_U_˼Èmß™-ßpdº!™›wdÓ‘äú.UÈGÐéµ÷ôûÍ}îPTãÓF!„Ú0M‹ßt£ß¹uâOÕ© 5fgg—’’Ò¢C°<‡÷ëÃOØwýËÐ} û®¿â·êà+þG’W-Më•6–œÜë¡Ël­*r¯‡¾µH°5{|~P#àý!„b¨zŽƒ»¹Xáoi¢ÖNÓ¦»ãP;*hZ×,´òàG“W- ÃÁæö^ JíB Õ^@!„CPu4 ·Œ‡S˜Pã}‚ëdK‡!­,⊵™L†¬²ˆ+”µê Pö‘äU‹D3¦Ñ$"n‰„jD§IEܱ¬E‚­"×°~@!„út>Aý€P£áü%„B!„PsÂú!„B!¤(¬B!ÅÐ',î;ÃUKÕy „*©ÕÍÞ!„ Qõú·c•>û-®RÕ© ¶CÏqRÀÂQ. (ܼÄ+a{ÂîIA£Ã €UsûÛR¸¯îÿ¹k{dŠ@Õyª5M‡~¾‹ûZZÐE…™ñ?œ¼þ/‡0¾u÷|'Í×—ƒ÷Ýc«:ÁF"ôõ²T;eNÌåk.Ýæžè¨)©yOp".,è hXÝ´~†³‘0ëÆ‚¯Ê€já½xÅ,/;C '+."d÷Éä eÆÅë!„bxé[çF®:«®5PkÄðZºcÁ îýÈã—s™_NÞ´b˜>€‰Ð7í®¬™8|è„ -þ7{KÕyª·N^ßzÊNÚï·)lg†ÅÊvZ`ê5¦ãµ%#w½:•@g2[Á/Å*ÇÀÜc6…SP'ò"íH— ßw¹ð}— ÕťϔyZ¿3&èq×þö`â¿n‰ù½ÍÓý|&®ŒfÌØ4ÅV¹±~@!„#—¿®(­l?²ˆÚg&FïÝvxRîìÖ“Luèe—xñ\W(,O 5xÅE,Z›B×ÄH?óYLQ•PT‘ü0¥ØºSŒL¦É$JÜÞ#pßž©]iªÎT)äKlôϦ$f7ÜL[W·*;5·¢2=3OWW€êàd—}2¹´JÀN?sú®ž““‘RCãü%„BH1LÛ}XGOM;Z¦êTP[Áb2 ÊÙ…ç7ΉgTkKL±þjû܉.íDY7÷îŽÉ«:S5Æ)ç;XõÖNyPA2²ëÔQ[¤ ù±IÛ¶ó*Š ¯œÜýáîÀcÏÕi’amé1¬üΠRÍu¢V]&&XÉ$b~Æ›øI‰Ï$l6ÝÌʘžÌ´0a³Ù,KÀãÖ<îZâ÷PT¥ÔàX? „BŠóž>ÈÑΩ:ÔFÉ8¹)€öAwê*Z¼pÜÍswm_2ìAà¹RU§§¾¤)ÿì}5aÓúÕ’JNÒÿÙ»ó@¨¶?àßÙÌØ·¬Y**ZJÚ_›Ò¾hÑ¢~¯å¥¢TÒ+¥UÛ{½HûòZ•„R´#©-–"ÄX cfýýRî0óêûù‡9sî=ß3sî=çÜeî³Ù@#äÜٶࣣÝzÙy~kÜ¢óÛÖS!éÆë:ð}#“ ¡×—´øä ƒRI@¦*O3±óÒOŸÊ^ÄY¿aî‡æqÓïüó-‰Dªµ*~e$ƒó„BH<åoüØÒA Ÿ˜´ªŽªte!S( ž_I.æCqÌå°ŒÓÝ;CГ–Ž® ~ºuîÐíKRt§‚Ñgÿ`=!P4¬—yÎS 8l¾ð¿sn¨÷:¿ç%-ªx¨ý»XdÞü½ Ö5WnIfõá ÖIfÞU÷¿û\ÿÚ‹ …µ¯Â$‘ÉBd³'¼ÿ!„ŒÞ²£Ý†É·tè'Âb•((*hÚï¼pá¬sr1«XðuˆÇçKz|}C®ýo}ôUxœ €œœr»l×í_°ßÙóM×I=žoœ}¸`Ò$Ë6sX]ÕFM^¯ÓÔ¤1ΩÃõ£3ËYN~B/ûÿÕÜi/ ‰\œÅbÑåäiU/Hý×Þ84E]¢òÛÌ…Bµ0ªl×ÞÚŠ¯±ëDM'ùÅ‹Ò ¶cV¸U6=Ú¥„¿oÏ’6[ú$2ŸËáp¸@"‹q·2¹»îØUõ/½×ùÁGBoßšUg²Ž^`iVUmº–j\VˆÅ+_¿LZ9nZ·XÿžöÈñJâò%*w‚!„xX Îc’@ÂýÕ§äîw]þb;Û³(¥Ù1xçÀÕmé¯Ýzn¡² ÿuè–áøûKR³'PÛmæò‰tNvÚË͗ˀ̀÷˜;\÷9l·OÛ¾·‰{+ù¾mÏ¡!Ãeü’¸ì»n"¯ÆÊò÷Ú×ÞuãG5JIú“3›Ï$Hö³r$ƒñåÅØ…‚Žü÷¸B¡Ÿ˜´Ö¬%]¤?;%Ñ£–ú†‘‘Qbbb³¡h;zÐvÜþ{ŸúŒb]·ÿ^»Ä4v‹%m0`E©ˆÐ{Šé*z:ʼü4f…¢®®2??ÉâK°¸øq¶,iÃ5]:±2ïù–é¹t5(˼çû‰Û,‰­aûünŽ€÷? „Bâ¡)õÞÙ¦S›{ÈúåHwéÑk¤‘ªHVÿÓ`bƒ‹%¥n8²‘¡4Pd•ÕÔ”¤I@•Q©úG¢ÅųeÑÔ~Ó1(GýúO3%¶xþ!„‰¦¢Î —–”á%Lè¿ûç(rŠòr‚òÜž¬‚‚œ°<·„#l ‘#l`ñ¯Ht9 R)«¤”O¢HIQ…¼J® æ¾$‹‹gË"Ó5ét>·$Ÿ/¥Á  ¸%ùïÙúø¸W| NÞì1×\ƒ“~ÿï;ïå@JoøòÕó©QYéO.xワ ÑRãü!„;}óÖ\ri븣ýä®Ú¾d09)Ôÿvyw»‰37“3¦ºÞ Z3ñ~õÏ–2ú®ô™”„ÏŸnMS§^ÅGvŸ½WJÖ¶žvzh·+ïrNÔ¿»ÒþÍ´ qý>¾Í†‚‚€Åâ´t¨QÕ±Y@ee×¼Ôé0Ü‘0ç~@:IcE¿ñ+µ’çg²:`Ö"™›ó'^—Ÿíë9ÉøÞ?o´&mX©sßÅqu*¿ýh¿6ÏŠŸz8I‚‚ñú%„BH<naQù§ŠÖñ#‹èçÐ¥¹äïÝzøèÞí“€anÙ›"`åUÉ—:¥ûããW3[:ζ­¢¼˜Ç-­ä …¼²J~YY9„ ¤P¨  ¨Û¬Ø¿gv7zK*ŠîÊ.*×ã3j^›«j<Ë|ÌåWr˜»šŸÉURªÈHÊ,+Où¥¤¤ ÕÓÔ(.ørÂçŠÊâ”kW£”MM5$*Ï? „Bâ‘5Ü¿£¯â͇mõjÔê(*(dä„üéôB®<÷ë»4‹“¥—GT´Tx?‰Â C·¸¯ö ‘ÙwWŸM¬¸sá•×–ssüÊgzïìñt÷ŠsoÛÒϨ’ ;ÙŒ*ŠöYúPuŠ´ M@S0óéjfͤdG¹¼JH”3Úh2ô´Š‹‹+KKªŒZøÄ{ìS®dM Ï? „Bâá—½z“õ"×Òq Ÿ”•™˜˜˜QXó±µ”’Ò’Aýäº9OT{túø¢'äõ\7L‡sgÛ‚)ëCÛÏž-qÛ¹·ÝÐâèÆë:ð}’ k'’¨–J‚ƒOô{öLiÈf^ÄY¿ »ÃW¶™¿9xù-‰Dªµ¿²‚+á#1ñüB!$ž æ!_fK~bÒª:ªÒ•…Ìüª'œSÌ­,?>:œÓÒaµy2Æ&6Ù/7¥|d?x;˵§IpæsІõ2ÏyЇƒÍòwÎ õ^ç÷¼¤¥cµKƒÌ›¿—Ô¾æJ(Œü÷†#È8Åü|SY >¦pßù»Ïõ‡oò}ó@p2Y(lçB!„Z‹U  ¨ i¿óÂ…³ÎýkgFf¦%Ïžá­F¥P…AõY(ШR `»nÇø‚ýΞoºNêñ|ãìÓ&Y¶™Ãêª6jòz¦&qN6¨Åøè˜YÎrìB®àëÌ€/u¯‹Å¢ËÉÓª^ú¯½qhŠºDå·™ !„Bèg“üâEéÛ1+Ü*³{Œí œçO㫯SïÑ]5áüû–ï§ÀÊÉ+úÍxˆJÊÝ"J'³.ÙÉ€U¸gI›-}™Ïåp8\ ‘I ¯«uÈÝu÷À®ªé½ÎÖ8zû.€Î§<ÝÞÝ?½ú@ÑvÔV|š’'bñÊ×/“VŽ›Ö-Ö?…§=rü€’ø€|‰ÊÇùB!„P )¹»Ç]—¿ØÎvÆ,JivÌ…ÞÁÕƒ>ª±qçô”nËÆ÷sH‹ðŠûDz•k‚âÜÔÃWbs€]õ—÷˜;\÷9l·Oÿ°3ÓÂ¶Ê ýg`ÿvP›ykSäMÑYþ^ûÚ»n<ã¨F)Irfó™É~VŽÄ`0¾¼»pBБ€ÿ6B!„ª—‘‘Qbbb³¡h;zà€ŠøýwÓØ‰ŸúŒlÍ©z—0ñ+iC«}¤"nÞTܲëlYÒ†kºtbeÞó-ÓséjP–yÏ÷·Y[ÂöùÝï@!„ú©0ºô4ÙUUŠ8‘aØãË»„‰_I©ŒìÓÕPºÅ×Ù²hj¿é”£~ý§™Û <ÿ€B!ôãü€ó9Ey9Ayn GHÈ“UPV½K˜ø‰.§!K*-.)å·ì:[™®I§ó¹%ù|) ]À-Éç ›%±5çüC›šì „B¡†ðK‹‹JE'–²¾¼K˜ø•°²4§²5¬³e *sØU!Wæ²+›1±­Àë—B!„BâÂùB!„BH\8@!„B‰ ç!„B-FeÒÁ{mšbM¦«CŽÍЪ7‹êdŸˆ0›ê'ËÞuÿàdåš7;Î?äjN hÙü±÷ßëaá¡Wý6Œ5 5Ep„Hнçï:sýVèÕã›'w‘i0?¹ƒãɇaîV`²êzÄÃ/BÖ˜ÿê!‰,$ßc‘_XMMïŸF!„ú%ÈYö“OÊèiÙ‹üè™ 4:úíj s†x¨ôé£s>^êãÝÝ ¯ž»>UÐqúö¿\íŸ,öõ$ãFaجð´JÝ<s’tÿû·Ì{5ãŸ$A=ù•G-›.“S;”ÇfÏ>•Ž!ÕSºÎ˜õkúI%½Êm˜ðüB!„PëBÖìrðÒð° ³»ç›)U%ªXþþ×ÅÐ;á7Îí[Ô·æ¬YËvÅó!aá!çW[5p¸\ÊÂR÷‰ïù3Ë®U Ÿ££?˜öíMîÓ·slô3.ÐzY˜¼ ¾”ð¹¢²(áêߘ욣͊ƒÖ^ >ù¿Þ”¦©¥Ù@ÛÔÀ³Ï ÊJ?†Ÿ¿-°µ5¨/7ÃÜÉ©C˜O³i ÿICª£ðýã–¯ô/i˜pþ€B!ÔªÈýæìÖ內ر }òGnZЛ@î=m¿7[gŒ±_pºÔnÍ ãêœ+Ö¿òr=jÚÚ+xõ®•ljÙ5.úùÓ˜< ËUIÌèèÏ}útŠi_“„è6€’’ReiIõ³Kb¯œˆ¬+u0ÖVT2ìªÇ X»äÕÔ…ùÇmÆèåçå«©©Õ¼þŒeƒÞø‹ãÔNÕw<zãÚyß º4ATm=$‚ÒË’îÝŒJ/k| µáõK!„B­ŠnçÎùQ‡^UDÞ{A_ÐY^¼<0s”•qb^f¸uoz]:çGz]ÌHOÍæÔ·RRË^‰Ñ»Å™O*6YjžHË€wÑÑ4—>:ðZ¥¯yFô‰b ‘H ;zgðj ‘³Ï-rðK€ô+›×å–Ç?lšÑ(Nçñx4õ.¦½d¸™\):]d^•‘K'sÎ. /†I_ÒŽ:M;O²ŒžÝZ¯Õã£^Èþ•Cj†ÒEÀùB!„P«B£Qù|~Õÿ<F¥€ŒÑDÕc h<.INžU½K¥~ÍـΖ–ZÇß¾·€B‰³T¼p­@ø::Z}v_å{Ê}*Ÿlb…UÏA.»á6øô^èʯ9¯Q’ú(4µÉjYÉáP(”²p÷Qáò¨\Ž¨Ç¨ÑÍœœ:ÜÜèÎPùšÊeåe³ªþ;önzçŽ.·éš£tðú%„B¡V…Çã‘)Õc4 …ÂãñÔÇ,›V~dþ´KN%Ôääóù_r’Éõ ë´--Ù¾ÓŠ0´wè­"#«3xÚo”SªßÑŸ²Ñkͺ=+†WÏT}'[W·ï%ûæëÙÇÓ‹x²æ£GõQcÐè*ÝÇé”ðöݯRs”.^¿„B!Ô’h¿mø­êß÷¾ÓçžÍd…ØÝc½çÅYJüÜW›·Æ ²o½f»æò-çÏ//ï\í=zÇá]à´ä|¨ß¹›^ššzaã¿‘ãçŠ*BÖҲ˛ۉկÊâ_å,²4!E<”DGg¬3Ï{ò²æGAs¶îÔt]{|–åSBèömÁŸ«ß(ÊHÊ.Q+—Yï}âcßßçÙÙÝõÔµvÜÌè=N~ùYÒ¢´·™Å*åIë+¨âáѽýV» jG¯ÌM¸ç½=° ~d¶-‡$¢ô~kC÷ØÉÀ®ˆQPì2rÇ“FÆDb0¾ž„»pBБ€F®!„B‰bdd”˜˜Øp>„ZaûünŽ€×/!„B!„Ä…ó„B!„¸pþ€B!„ÎB!„BâÂùB!„BH\8@!„B‰ë?ÿAÍ|üPCº°ú'õ~ÀÓ\вa¿¾Ý´銢ì„g1ï ¿}»zŸ ½KoßN,±Vºz~æ†j2‚ÒìĘ˜äBž¨‚•.Áâ!„Bý:~üóãŠ_ß¼ù†U;EÚÀ¬·tæ ;,’bW›¡f²î¼c‹¿BŠŽ™•vñã[ ©Zfƒô(yùYHX!Q¥‹¹8B!„B¿IçjæãÍËÃCJ¡Öi5óñæìèDESSméÊì(6¸¦¯d´Ü´…>Àç¬Ü²Îr²l Éê˜ZôÒW•v™€ÆK¹¸†ŽNñûÀ\6 #1­§µŽÒËÏ…"sÓu-†÷iÏK‰¼Ÿ']:B!„B¨®¦:ÿ Ð±)"ìZŒ\áC»k¦Eg‹œ@(t>ÉH(äU²r“Ÿ?{Wȃ‚øÐGÕoÒ¥+?W€”¾™…jÁÃ> å ¬~ë(²dºŒ °Ù|µîÖåq±l¶´Š4@!aAt9:Tä©ÇâÒE.ŽB!Ô|>ŸF£q¹Ü–¡ïÑh4>Ÿß`¶¦š?°>¼ùPÌ(Êû$4‘g@6ñ!üO¯n'’€DUèÔϺ¯óvRPdÕõ :êëj+V¼N)yee63® RÀ*.­§" E ¥•ÕÕ¨tA ŸB¡ÔS°Þ=~T¦Ä+ȬµÕÖ-]äâ!„BQ\\¬¡¡ñéÓ'6/x@­N×ÒÒ*..n0g“Ýÿ Öü’È"ÕIÀ)/ãTý[–œ^h¤¤PFÓ4n¥Uššüîq<ó3[d2Y(ˆQ0ŸÏ'‘ÈÜŒˆ«R†dŸ/ª àg¥Õþ\K½8B!„P#äçç«©©éèèTòD¨•àóù,+//¯Áœ’΄B!‰DªúÿË?µ‘ÉdÈq¿lKs餇 …Õë €Ò¾‹!ûeÀÃTNí¬‚† ªQÉf“¥¥i\–‘.g³ETEJA[[™—Ÿ™WÆQz=‹#„B5‚P(ÌËËg”†Pë$éóÊÊÊä4u”ÒJú½{´§}I—’W’¡ÈÒZ:ê¼ÂBQ§ã*TŽ5¤)d CÕ@OéÓ§B)):¿œÍù.kYI‰¬¦Ž2ƒ¡ kÒM›F¸º*¹YYJFj *MN×HŸœ™Y$¢ PèlekÙHýê™aé¢G!„BèW&éùvj\BûþC캰Rb’2;Õ¤Ó4{ ߟÊ/ÉMŠzš/ji^æ«çZ}-FN¦òË?e¥:š-NÔ¼Dîëk!ôI'˜Læ•y’Èio0Ö1þïËWkš~QMA±]E¶Ç›<=CóåíUƒX¹eM²^„šSÎIG«h=rVbjKG‚Z©ÊÏgS9•,^KÇ!šú •ÎÓ;˔֎‘jãvÈe8鱯×miû•Žkýòžõt? 'ÉÈùø¡9 í=¯d·Üùø_™–Sÿ­“1rÃß‹¬+ŸÛsOvÌòé v- \@”ýÂÚÊNõû8+Ÿø®\¨2h•‡½î—L„‰ÍQz#5[œ¨¥4ïvDetS ÜnôjšæüC^~ªWZ±œŠ¦•,YBèîöˆùþÀ‚y—âžûMàäÿú­ÿ‚N ÚéáÐg‰©ï_Eúo›`H¡¦¢®Òasï>ç,úГ¯NÒ]Êd23¢nß:6ßàKÎvVœ ‘œšûàê僴¿Ù>ÈÆ.á™ÌäSS5ʉ~òNæ–Wú™mí¬Ó‹ò5•¢o·ýÊã·)ïâœq ÚráÕ1¶5gù¹îÅ­•¨ÝI­$íí…½žGo>  Ò½›qNãqã»’b»ló=´fã¿Ùtëñ£ÚçT`¿>Ôwç¿Àà°ø‹(]bʃ7½|ŸôøÔ¼.T›‰Ì¨5Ý(öÇ™L&3q§ €ªåR¿Ðg‰©ï_?¾æ=ݘ_ŽÞá—’}v¡qk?QÔj(v|H|êçd& ú{'é¿ÐÓ1ñ·ì»NF'/íáÅ‹ƒã k/C˜( E…ökMÌÎZô=Ò«Ûí•Ú¨®‡ÖuÚž '‰éYL&3+3“É<ç +þG'"Nì¤Ú%›uWcß'?½°¤§”¨BÒåy9êmJêÛûëú}Y²©¶Žÿ¦i”œr§ÌL6hiVæûeTŸ|±±Ð)¨Ô²swÒÎe)Y é'C¶é„»ü£ Ž‹|?Í=à³È@DÎ& ! ¨8jö —edF±k®$ü|Ÿ««ë‘N휤n~k~SŽÝ¹ø-§cåLŒåk_x¨6yÃïÝxÏ÷ýy9·œègPrôyô¤è77¿+Lôôîñx™M÷^£·æL>äjIj©ðj¤ùL°r<öºâ›ÄŒSs¬¬†mšÖF‚ââRâœíÛ·aV±ÉžG7œU³²tttˆsæÝ?¸qãiÅ O¢#Žÿthæø/E”.!¥KfÈ>{œFÕî¾x’ý7¸ne^žpuuuÝàŸ @úçqw;­”3Û÷ÜfõpØslyêÅUÆÌ^'в~ñJ½E¡ì‚£©c8Pz35Õ'õÃ6€¨tìÍÞ_¼ö†ÜqÜï:õÚ„;UP±_=‡zÿæ[¾Fÿ•ÿN™Û¶Wzåç¹-´ØØÎsÇü"¾wÑ!I„¦6GK†W’y"ŸK¼óo 3ºèö¥–ž÷þtn©´¬´4ˆèz¨ÃVîša’slÊHÇÓïKâβrb€˜!ì¤Ú¥Ñk–龉N%··u[2œJÜBdÇlüÛi€ôËÃ[ö¿cW'þ§­£ »¬¦™?tQQU­ÌÝûÂ-)í![X'ÊÿðÓlàG^Üÿ$€F£v25S€ÂGWüÝ= ÔîýúÈçl’°ºl2”fŸÏɹ˜_sa]Y­sçÎÝOùæ² ª²’UVIº,áúîN>I_Þ"Ë ^³f°ô;ŸõGÒ„õæD?3ƒîݳï\{þ©¢<3,è1£G÷V{[ CoØÒýA1ÑG§é~~²koP)q6º |]±Š<ð¸t)©zÖš²yþB籺K|þšÙ±iz¢’»;wÛ¼úH€ŒŽŽ2ä>õ?_ LtîܹsþOs:™š)AÑ­¼Žøl<þHú˜UßÓQxc§ë>¿]bèZÚÊMÒÏSò ïS @XŸ—žWÈÕA@nÈv÷¿ N“— êµ wªÀºéµlçÁmÿÆPÛ©*Aa ‹ý¤9+÷œ8²/0 @OO@ä÷.*$ MuuM)ìÀ´œ±óo$ª<€D‘¥ðÓ?eîJÎþ(ªt^ƒ;™%¹éiélÓ©ƒTòKªFûb}t„°“j#*bö.Xâ±úXMMM™¸…èwë.…·}v8êí_(ñÖA³4ì¹^ÞT‘3P§PȆ;kII5<€?zôÎ×µHÀÐøÓ\ ‚éú2ƒx))€ò´coÆò@JdeØ89 m0„êúÚ>I$ _(lxn¨÷š Úë&º²uV¤ßÛ½d¡Ï‹ª½¸ùê}æ/¶œyÅ™³æ 6Ú¶«önFãóª÷ë<.V{°-Î÷^QÁMKË{ü8™Ïÿþ` •BÔµkÏöíé´†ÏBï¸q£¾·©ÝW\[ÓK*÷ÙÕýN'°D5— d ûº“q ¨Ï àp껩üÃãÐZÖÏéœÃüIF§½êɼvôhq‚çsy.d’ˆCZRt).—59éôê^P(@ÕçY{qQ¥ÿÊh6õtÐ\.˜'¦'U–鯬\‡+àñø@"‘@ Ô{ºËò!]T4iy€r’È™(qHÕ‡Äl` ¯»L 4#¬LŒ^@l —.,¼š¯ª§:ͰÛ4äeîKf¾#< @â}`²ßöô5»øcäÑGãjÞùï]½n-è»öYQPP @ÿò¢Ñ¨5Íà«z·Ž:(ÝôŒW(qOe ”¤¿ÙÍŠÓØNRnnøÛ·<þ×¾™'˜›wRT” ˆ))a×Yüßõ”1ïc&½ÿ&ñqp8\€Â뫇ïxZP\ ùGq7Ô££_…“ÓP1÷íS( ’IP5Ñ­/éâª1—Ökõëâí9zà »ÓŽ× áÌ¡û%ƒç-îwÜãI%qÎË_·[l´m‘G¦T_#C¡RªFU_5ø½ËËKØÍܼSLÌûïÞ²éÜYUVöDddQyyý+ixwß×Á©—lþ%Gëa ü”“É’–¦@h·×ÈÈÊ"ÌH·÷K>8êåK{¿,™Lh`c¢«¨à©T p¹U'í|>™F£TõV@ŽF­•“'zq‘¥ÿ|ÖŽ-f5ë|òB€D¢’ªÆÕD4@×ZKpÊXMpÕ}´Ûž™&÷ÖŽ&;çLð_¡ïuBúJ¬Vž{Ón¼’Æ8ùœã%MyOC¥ ?槬Íÿ ,#o¥Ói¾ŠÞdÕÜíù|¨«ÿRïÅ‚=¦Žç6pRDôGWWÔ¯°u´Bÿqæ&j.Í¡}yèBC[Ç7¤5jËМzš;€ðSí7l J22cLLl:w¾—˜ø%ñ›ùƒæÍ›/œ<üw©/bY0Álè îål³ykÆË\uu¸Ù\…!N>@wåö õTT”j§É°7Uíj@P2íà`–y>¢p¢_ð´‚KÑï Ç(ÉË«¹°»ôýîyÌÙètÌîŸ4ùI"s¢ŸYjBBûö¦gþIdXéÏK¸š+Ùò%%ìÞÚÛ÷­;覭}1&¦ÁÉC†ÿo”!Ù + @±÷”Å‹-ÞŸSQÈVí;g±aU¦Òø€3‘ ‚œÁÁ)ËÿŸ÷Zr¤¢C{Nôß¡yÄ댉|η³˜¿m-å™ÊèQ2Pô<öqÎ%ª€‚åŒ%ŽÆ:“ûdÄÅ39¹zÚ,òZ¬‘ é>aiqq,?b™{²±âDKf\|~ÕâŠfÿ1×XkR?€ÌW¯‹$üô~eœL6dÇvÐV®„ÜOÌgD´w”Øë#Ü©e$S¨d +iëu¶ìk®XZ)o9wé wÿÜÏ©û½‡$á…_œ–Õ³—ÞH}ͯ™9„qfu4µ¿¶roÐàà Ëz}#ø­2Ab¼ØmŒÒε‡Zqþ§7l€WÈJl6tè0¹8ƒ+äWe¼ŒŠÍ$ìQˆ?ºÃéFuãLŠT›DØB²33`5rŶâ1šƒ{Wç”hë¨øZ¤¹H®ü‡Üt!€°ò$A•—‡ÄÇ;ZY‰œ?ÈÊÒ‹Ššó—W+ÃÿtÜBÝ8oã‘ñtvöë›ûŸ±¥lš±@„€[p1«Ý*-Ys™Ï;³K- ”T­ôö0á®ÞÃ!dñ¥ˆð¸ ëCLY5QOYXtÝk•×>Ô\+(L=¶éÔœ§?6ØŸw #ʉ~*òNæÝGU]IÔÛr”~ñ*°²È£[Ÿ}¾QËTyYOÏ.uŽ”ü‚ˆ’6ƒAp…’<ƒQP*â.…úMÜàa_uJDyÀ"¬ó‰'îh ]æQsB%çèó3‘*9ÜÛ;ßYi׊Y«ûr3Ÿþ½`Í¿Ù"Öéò瘟·¯¶Ÿ»ÆFPð.x§§× âœâÏR®l?¨7ŒÍŠM£99o.­Ýp úÊ^ÞíËŽjlšaoorÚÍøsöl÷>‚¼7þë=öÅô ©˜;®¥ÈN¹±Åí¯—’~¿.áÓïChúÕtg *‚K˜ÏJ:h ÖG¸SM#ÈȾ±kxו‹펿´yòèã®ãÌUÿ¹ŸCð½7.¤/U­È9‘«±U³ýìvy»¥‰â,°Xäí=¨*·É,oïY)â‚Sz$Š?€²¨OJ£ÕtlèT!—•‘r¶XºD¥‡]:ü`ææÕ{‡W/È}ÿ×øDÇV‰?º“qÄNªm"ÜŽ¯í=8ÉЩ簮Aó¨Ü7€xD-rµÂŠ[ÉIÊÝŒM¥R/gWþ‡¸ŠÊË¥¿½;ŽÄ`0¾¼èús…Æ+µ~­°}¶ÂÒÑÖÈ/®‘íS¢ QÚĵ„q6eð½Ücn.¥Ÿ˜ÜËà y[ù”éçk6âköö£J7p{äÖîÒï“÷¼àÃxù©“©«ºÌºÐ|Gs¾ÆÐV´ð'O¥)ò¹ÅßöúÏûü¡#„B¡–‘z2pŒËè¿N¥‘€ÏÎKºñ§÷u|/jzvÃ>ÏMÞ^Ó:V½¾?­jeYéI/ÂOüa©ÐTõlñíOÜÁñäÈ0w+щ¦«CNΪzÄ)£Û’ÓW7VýñqŠCÝÆåÔØÄ)oŸÝ:²ÜJEt¢šÕò#·bR?$¾¸sÊÅFYô:[¶%Ó;ÚoóŸœ{÷ŒÛ`MŠ$9U‡{ÞŠKMKz|z¾q= "ô5«åGo?Küð!áñõý‹m´ªŸS"þ^±åöŸ_6ñž-2º O:Ád2¯ÌSÿ1ÅÔý‘[whg¹ôð͘·)ï^E]óvè&óíBŒ'1ï¯è\{ñÌ 1Aû§uiñC#ª‘ôô³Lf˜s‡šôÛ♉{~ܓƾŸžüòþY‘:Íx ¾%G,’5“Œ[û¶dËÝZÓ‡¾‡äC^tcøYùÄwåÊ@•A«<ìEOEPã¨Zéá<½³L)ïûw/N¸œ®zh;9µ¾uˆ•Sn˜çÉM(/ÎûÐÏŸì~”õÚtõ.äœt´ŠÖ#g%Ö^4/Ì{{(«ß|÷éëv- ³Ýƒ×ñ61š¬Š<ýëK>»¸˜]ý!åQ˦Ëää}›Ÿ0¸l²zæ¹ðÞ§:oµT·C.ÃI}½nKÛ¯t\ë—÷¬§{Œ5A⫞G׎.¹½gë}‡5S\­‰6]Yg«€–nÉ$#çã‡æ(<<´÷¼’ÝrçãeZNý—ðY×D9 ÆÍ6|²fê‡Åצ Ñ:ž¥ÜÏa?èÜ3Vã‚B?9¹Q[ޝ͉½pìJ™ºÙo«×Œ¹öèhvKG%‰O~‡îUo'¥ñP™÷KŒ.’½¶$Qk Ì>?ËùÑ^ÇÝÇ žõ T¹Àa÷ñâ$ë-Ï¿ìëdFL%·ïê;€ÕÝ'Õþ¿OÝíñøÖì‹-ú(÷FÕˆ­ŸU]kÞPTR&“ùckð)Âïн"½ ûlM0ëߢŸgólZ”yÆÇÇÇ'$‘ Pøô’Ï•%ª–KýBŸ%¦¾ýøš÷tcØìLdF­é@±?Îd2™‰;m@ªûœC·b“>|H|êçd&ÀK{xñâÅàøÂ:Åužw1.õ}ôÁq횢ª¿4c[s–ŸëþWÜïß~zÿäIôÃ[×._¼þ¢ ¾uˆ•³çàÁªyÁÃeçNg—MgÎßÊ‘R©>}‘‘uûÖ±ùµ³—¼½uñüуAïôõš`o³'‘É|´vĤ¿î¾IMŽô¨ @Ø>%h´mZ;û×®q~eÍÏ%0Ìœ:„ù|³S%L iõpÑ Üpèåyôë ÝI­$íí…½žGo>  Ò½›qb%xwyçÞã¾ëæŽ5Ønw¬€x-Û’ÇïJŠ=ì²Í÷КÿfӭDZ$Ê7´hèÎó‹´_Þ~\d8õЕ­&Ÿ˜ÿáÑÖè×bhn®…¡»VmÝî±|Šuß¹³%éÊ söra2㼬àÛóí¬8þ"95)öÁÕËi׌DÙé—¾{\ÍÿjTŽˆÑQðÕqŽá—’}v¡1DÅ©ÚéáÐg‰©ï_Eúo›`H éŽò¼õ6%õíýuýjö#†1é÷Ž|;0»øô˜ØØ*Aú…kvz-ñ¾Å%é ´íøu…Ñ“‡3bü2jŠž_öñù{ëö«é@íÔI÷Çß 5b2™ ¨¤¨½(„™ác§¨¨Hƒ¬Ì¬[£¢ç—}|ö¯óºšôîÝ ˆ[¨KÝVÝ>‡[ºøÇ¾÷âÊJSF}#–Sͦ8­Búçqw;­”3Û÷ÜfõpØsly€dÿ ®ÛC™‚—'\]]]7ø'hÌܶm¼Ò+?Ïm¡ÅÆvž;æw¨7¶î¬Õ2z¶–õeCbHó™`åxìuEÝw(ü¢¢?û>6`e™ºïK˜SEEàóçÏ$9 ý²Ç>ÿ}9–Ÿïïsuu=é“DcÈÊköìª ‚wïê=û!{G³÷¯½!w÷û„NÄíSüFÛ¶e_;{çËÀñcÀ™U%"ëÏX6èﱸÚ_ a"ÍpΖ¹ÜCÏ¥¦o2Nͱ²¶5hZCŠ‹K‰UTT(†³NF¿yõ/×j<ó‡–mÉíÛ·aV±ÉžG7œU³²tttÄÏ™°¸¯q/Óî=ç>yáßYï×Nq»ÅQO„j||÷¾”'o?¾n¦m'yÞ§O% IW.þþ“4ÀÍoÍoʱ;ÿ±åt¬œ‰±|uëll§¯?ïÌ“jìDuR¢Ç!*cæ/ ˆè Y¿x…8Nú°M'Üíämp\äûÁhîŸE²c6þí4@úåá-{ƒßÕ>ÌÒrÃe%E€â¢"à~.PQþzµf»q“’£ü¿*¢*hêêu4µé¥PTTÜÂÁ»FL&䕺µkW3%Eøœ•UÐ5âr¹4)©úF¿ßXˆ¨Ø¯žC½ó-_£ÿÊÿ §‰Þâ~P5›â2·N¦fJPtö¯#åXVÓ÷ íc¦§ŸúŸË×™¿n¤Fú£sçB«rJºØ'R>ÐÕmê¿SNÖ½vE’œ¤ê¿2cvGí¬ó3\îÝ:—ƒÍ=~ÛD§%Aï–@Áý ˦4Q½rC¶»ÿõª}¥ýò¾µaè [°ÊÙi‚¹õó“{ƒJ‰‡t4¢ï[³(Æi߆1›×Ž»6ï Ñu=-Û’éR4ðtÅv*òÀãÐ¥¤$Ê)àðtføžXJ=8gê™D‚}ï“ÿêE†Þ[çüc÷È?þ&W쮜0§&QATe%9ž¬’tYäõÝÇ*kÞhl§Ÿ´i}õ!õüW¢Z}¡ÈqHá®û"e²,²®¥­Lg'S3(¼vÅÿQ„¬v¬ûaýúÈþóª[w(¼â³ëÄ#:kÀÒZMU£æ¡1~²µà¾KP­ëôçy2€Ÿâw­ê3lÁú¦Fì¬ÌBR—.æ*´òòN],T• +«êôëE®–v½¡}ÕÞ2³¡0Iäè·îˆ¥nK`ÝôZ¶óô4‹y}†µSUÂ-îV³)æRt).—\èt:qNRïé.ˇtQaФåÊI$â|ÕòîlŸ‹£h>ìÔÈàê#¥ÁEfóÎì ¯ P5+ «´Wáåf³x æüVÍ ³"òïE^üî#È|~=!d]^¹ô|v‡I›ön½²?¿ÿïA \#hddTÏ»Õ?ƒÎår€ybŠÑyReÙ´O±mý%¶r‰‰‰ L¹t6jÚ†¬Ó·>ÝÌÉ©ÃÍîL•/Y Þq í¿ÖeÊíe—?  U~ ‰ï)+®­é%•ûìêŽ~'ƒXBjw‚D!À» £W&’è÷Ö ›Òµk#£º§ ±q-yÿ;‚q“µu{q«ÄárLa_w2õyΗK¿Ý6 sR4Û|z¯íëµ.1#÷=Z¥š¶õ÷5×3Å-ý¢ø™a^ÓÃt°3{åºÅc_d™8N))€ò´coÆò@JdedF£ðx»ˆÖ8ŒÑ›8¹/çöâÚNr‚¶\TqqðÉwÞ¢Àš›^Zcð„¾«“É‹¾}µÞ†…i[˜Öºýá‡Õ¨Ã‚óϰSÏﻂN"7™:#‚<WPÓÌHõns?¦šM1àp¸r4*P©¨–ø|2FàÐG»í™iroíØa²sÎÿ!â„üíl]¶/1g‡ïv;ú¢•^xÝ–1ì}â÷ ée3õD6ɤšf =dWÄ©YZ¼·»GÛ—P_Î: ?(+«ð3Ÿ†&³ö¤e×wÿ]óuLô›Òã3ç™›@ÐóúcnèIIj_ÿrÊXíSìFû<›©8ìtÐ\¥ìs±ÕßYG umMß{Ó«ßïat|¦—AâìÀO¿¸Ù¯Ÿç‚¸EG’¹­òéïåÔK6ÿ’£õа²/‰} ?P(d S($€ÊJqTÕ’‰Zò—‚œœ†6P#&“ $-M €Ðn¯ Q}üìûm“0g—?þÝßëî|ûíì%Q¸æŽ8±bÚáë{šê ú9Qµ t>§¤•¦E^ÜÂî:!øwm€tIºòïsV É©T IMíËÅØ¼¤‹«Æ\Z¯aÔo¬‹·çè +ìN;^.ƒÒé78©é8Äq¾æp ¯¯¾ãiU~NqP5‰õ›aU‹ cŠŠY @UT’È)ª><×yÒ$“Òн·¿¹%ª,õáž“:ÓÌ›>oØža-ñêMÃÞrÁfgÒSÕ1#d¡øÆÓ÷ ÑÓT‹@éÖÛH 8P!2g¯<(œ7~úæ]ìHùÑce„ïBo¥‚¬ñ{SÕ®T%“Ñf‘ç#@¾û(‡Yz#F¨€ 2½y޶O±mØÇf ê‡â¿9½rûËè7Ñw²µoÕ¿*“^4:7Ü+ ˆM@˜äµ·ïñÍÄ.Øû¼üGG/€lÕ¾sV%”ÆœQ"JŒŠdͳ›º~ÍçHõI¿Ñ /ú‰ˆ›Z¶%'§,ÿýÞkÉ‘Šví9чVîû~Û$Ì™\:kðáÜ\6˜’ÈP–—ñ‰ 2þ+ªÍÖ5ø¸MÒÍ;ÏR UMÓë÷5/ IDAT„âk‘UÇòÅëÊÿ¹ŸSwÿ™ŸŸ ;â/μ#:U—¤0É/xZÁ¥Àèw…Àã”äåUWÛé+™OY¼Ø¶êÿÒø€3O¤Õ]Ü! >@qÀì?ækMêùêuqœ©/bY0Álè îål³ykÆË\uuðNÎÌ€ÕÈÛŠÇhî]+¢2ŒÑ¼p´ÕÀˆ ÜwêâÅùŸŸ]ºø*âkΘi›¼*£•G AÖ£GUû:ãÉ“º†l»[çú.ÞãÃÇ^ÎqŸ°dúΰ“Ù?*øæ¨'+³@NN-6éebQ6c˜~rõá—X£ò´'aá_O…‘‰7¢sÚ„ ¬Œ #ˆ±ü j6Åü}{“ÓnÆŸ³g»÷ä½ñ_ï±/¶ê ÞíËŽjlša7öo ïºrÑ¡Ýñ—6OàqÜuœ¹êIEÞÞƒª–0™åí=+å@\p|€ !:ª`¨)ûQLSÝXû 3š¸Áþj¡<`‘ÇÖùÄ.ÇW¹wÞúûe‡róÞ]ß¶Ù3¬jp˜ûÙиâQø‹ª+;RE嬣ä¶Ç¼-¤?çÚýîÄÏ}qÊyíÁ·|дÒÛÃ4†»z‡Å—"ÊÔ‡­òÊ-ûœ}ÞuÃ9Âß§l4âö)v£ý æ…õ;g÷vzõ=¹aµíüÍëþRZK#h ]æQsX?çèó31D‰‘! ÷Ð6Θ¿¾???1`óŸ;".^hé–̽w¾³Ò®³V÷åf>ý{Áš«¿À:Û&qÎܪ^_=rßÎ#Ä4?dK€ˆ?BÕ¸ÑWÿ#·lêx§ÑÔ’¬×=¶lºQu=ˆx]ù?÷sêæ|â¿ïèÄ3Mêîu>@ Ú=€t}è‚)«&ê) ’®{­òzP5jl§¯j½Èúúÿœ£ÏϼìH0ºØO|IÅÜqý(EvÊ-n½%Œ3üOÇ-Ôó6Ogg¿¾¹?ð8×öœdèÔsX× ùGÔGîQÑÆt±w÷˜Zuƒ”ºíï¶ràáŧÁî vÂÆÙ“–špsÞ\pÛàý”$³É;å_[óèç02NûÞpöû¿…fg¸rñ ³­F£ë½]®?|øðᣈˆ‡>|xlf{šî0׃CÂn_?»{¡E; éŒö:tãÚ‰ý›¢\„jKMwž¾v/ìÚ©K‡éÓº-ó¯ÚžqÔoÒ¾ßù7 ÂNJüžKTN’|E~aaîVõ—Îè2ÁóØÕÐ;wnøûm´ïRõìÙ3¶Ÿº~ûNXÐÙ½‹­Ô%­á:_£:jåÝ–œ¾ºy°jõ;ÍÓk“;8ž|QÿGÚ¸oóGרù™¬ºÞ˜ñv³À󿈎ãÉñ›=zÈPû%×is‹Ü“÷œï9]xÅeÊè±ó¼^öZ»ÜZ6+<­R÷ÏŸ8ÙùwÆ–y]E6õñînÏ·Î;fº{dûå®ö_ö™9|wî<ó”U+ó{?ÛƒFÎÚ›6Àmvo‚µIêåžq¶¶¶Ë>¿÷s°µµ]ðohNr_©ýÈÃa¬½ÓÞþ\n+ Ú'êß]i¿ëýÈqý¨ ©&(!„Ú€ž 6ÛY4vÄø¥bÔg/¦oN®Ú6ui;ÿ&GØI‰ßsæÔ³þàÙ³Ë5ó|"¤ªÝò%ªÖN5ÊÁ=Bëç1ªÐ~Òª¹´Àeã~=gwjÿ?YJ6à"\g#kT?Å.›¬žyî¸÷©:¡YzmåQ˦ËääÕ›§‘ßæ®Ñ/ªiæ2ݧo?~/,àø–yVí«bd-Û.„Ü <µmFÏêãÝd-Û·„…‡œ_mUkö¨8hí¥à“ÿëMi’€Ð÷ÊŠ‹9¥å\¡€SZÆ-+.ñÔ]P24T‰»sóC §òsÂ͹ææ]Àl mjàÙçe¥ÃÏßØÚˆXœÖËÂäUð¥„Ï•E WøÆdSÀdÕõˆˆWÿÙ2ÏB®î2¼Â˜çÉ ô¦©ê÷¤L̺Å߸’\\Á΋ Ï13ë BR(T … PÔmVìß3»[3•B­ ][S%ëulN§,+öʦykoˆž3ˆîÊ¿K4Yuý¤£Åˆ§CnÝ8»iŒ.¹:±îÎÿkÎÛ7Ïo›Ð©ªßWì³`ßÙk×CÂܹvþb×YIªDØI‰ì¹ê 9s¾òÏò•¾ñ%ßVgq-¹Ø[7’YNQÒ£Ø\m ¥G9{+£‚Ï-Œ{üF¨«« ’ \§Ø}±9«´Æz¸èn8ô’ Ð|½6ÃÜÉ©C˜O³Þ\’}›-[£F»'â«0÷~ bD ¤vƒÖ¾~óœ×øN­a¨Ü$óñÎsW–M²›æâ¯Ù·»€Üo+Ü»¿ÞÇÄqÛ†1zùyùjjj"WRRª,-áV½(‰½r"’ ñ{ÇY[[/¹JÜEQ”ú˜uJOz_ÙØJSTT¬,-©nl%¥%JJJÀ¼sáUß-ç–h„—ÏôÞ9.ï¯ÿ¼l¦òB¨u©|côûÞÕS¬:Ê“A(ˆ~ú–¨®¼n"t9‚zæ÷±öËïwøÃÑ‚ ¢wþÇŒ•¹°tì8ç»í—Í@mû%“ ýfŽ3rÎéÌÿçR&A;)Ñ=×÷CâœeI÷nF¥„QgÄòÚo®Ûõ’¢A'Õ¢â"È|pÔÿe‰¦ØÍ¼Kibr¡"^§ø}±ø9€f8gË\î¡çÒªûÊæéµÉú3– zã{,NÔÌz‚o5jv‹µµµµµõ¨u· rï„¿1¢Ý1Ó:<Ü8×qk¬ÁòyÖ´zVûƒ4ÉóãÈ$2M^UUŽ”•}y{tU¢nçÎ}ÊPv/ì¹û,#%H(ÒëÒ9?êÐëb.@zjv­”~eóºÃòø‡’ì0ø”‡¬téôh⻹4ƒÉn ½æeDŸÜózÇ–ÀÛ|V~üx&0Ht:ÇãÑÔ»˜ö’Qàfr¥è¢æè$RÕý²£w¯¶9ûÜ"¿$¹ ž¹·(TH½¼ÆõCT³¾j%äÜٶࣣÝzÙy~kÜ¢óÍT:Bµ:y×ÝæåO™=mùáßW§Ü>ý×Á€/aWN˜é7N„|(xÿâ­p‘®*Dç‹ -èp@r @I쎅¶ @n1“YÚ‰L"‰LQìn¬ ×ë?Dý-ÂNJtÏõýCü>Žpq)M³cG2 Sáµ-«SåÆî uëÇI¹áå²;ŽG¸²zÔY§ºØqJV#Ã[ ?œp Ïoð1ÎêµUF.Ì9»0¼&Õ›OÂo³kÔ$”º¬6‰Ú<çI€ˆ50oúžŒLH»ÿ’ó?-€¯ªkfßÏœœ†Vý‘U7wb¢ðÛ¯B(@vÀîô–ºøÍÒàe¾¼{æïCáé\ Ñ¨ÚwžÆ*£‚ùF ¨T*ŸÏ' ¤$õQhê—WFFFÿ½N¨ŽÄŒN£lSƒ7¾Hd_¸;çôH“C¯Ÿæ| Ý<óövi)>»BvÂ_³z *9 …Rî>*@~•Ë©$þŽ?U·²nƒo@ï®üzv™)GfÏ=›I’R·]ë³o¶ëì'ôføÞ…ß5Z €¢a½ÌsžbÀá`ó…‡üsC½×ù=ÿþ$5Býœ¸ÙÏíz|þo«Yëݽ—1Çï|BxH‰°+'L„ê+€@( Rë;>Y;'™D!3>µëš/ý¯´,÷¥÷žg’U‡¨“"N¬òí£¾œ„¾[d-Vñ´Ì ¾°épTÒ§¯Ÿdi‹u0M^oÄúm›I¬—àÞ¢uЧd5zÄ-´ÿZ—)·—]þXÿÁ´ï{íSâ¸éfNNnntg¨ÔŸSÒo³¥jÔ$”¯qí~ïÏ9ÏË«^ލàËà™ÏçWm2-ìûíûèÑ;õæ7(aÉÈTß· ##Ã*a”']Û¾üÐôͦ¯ßê6öå’«</ã’‹ãéµçóùdJuµÉäÚõ—Ó·Ð¥"þQlv$&&6¦Vè{Š]¥„|^õ›/àKI}™¸Ë jTþ<ìiVÕù eãýéÏn¼üÊ**ÅÅE¬ü|j»v²e ÖN-//ß}Gtýbºœ< € tu …Ü”úo“!'ïñ³/›.ôS·êûÞÿ㬒Å*¦ËÊRø '+W\\ ¶ëvŒû°Ëù@éÄãŽÏ7ÎN˜vu’åñçaB¡¶‡L& !;3òÈ©‡“æê+ÃÂ}5aWN˜X•Jåòç#¢¨uîá4Úí?^ƒ@ÔI'VùvÈQ_NBß-ΰž<>ï ÝêàÚÇ ä:¶‘}uóe[’ñ¼ÐÅÒÂ#Å®á:ë‰ó»®\ÂñÓ/nöëãç¹ nё䆿¸¯½6|ûŠŸŽêÚš¾÷¦W¿îat|æìãébß kÔTF¬qé¾Á3–ý%‰hDý#›¤S˜Ì·oeüÖ[‘F×6Ü,çíÛ’þ¤ÿ³wçq1u}À³Õ´O‹’$´( !Ñ“5Y¢ÇšGí²…T”íEɾ•=-IÚm¥•¥šiÓ¾Îúþ1•–™"<çû™?îüæœs·¹Ë¹÷œ{mM5‡Hàiµu &ååÐÔ•çàn¶Ãc¹:(Å%²ã T$$†Nµ²œØ©s”‚™ÛÁ»ÙñzòÍjóójÆN—åÇb…gê+åå·×°Ìw¹;ºøØµ·ã$jš9Ù.KâÕ[b$•’’ÀJ‰‹Wšg1VBPh°á’™¸˜Ø<.#jM}ùFcî²QRD¢Äè¥ Ç¤Ç$|ñ¢>–(«¯£RUJù1mkFZö“…J¢üÄcçO—}šuÏ}6:^Ël,Ë Q©T`°˜/—… òû“YxøüÎZƒEø 3Œµß¼åv.ÆñPÎ1"òäù°ɉSǶdgâR$G<Ÿ¸”‡Ãa¿agÌñ ÅýÈÕý”£÷Ç8ŽÙEDŨÝŽu c{›j"XÀ Ö7¬¤˜C«î8–ÉcŽºÊ¿rŽX”P÷ÃE&n›µ{qöMGí,¿EzmæIm~à¨Ç®<ôrâÁ9únÒ&Î6C¹û¥~î‘ÊùŒúWôµýZãOÐÚá.Π$ß< P•ƒ_³ÙÇZ^W—wê`XÔG;<Êåð]+®™üòªG ª"ü¦ì9qsqþõ]׿¯ê(·æc6¥~@SN1ïN5ȷʸ¼/Äy‹_°³ £¶à¥¯÷=JÛ5ïŠk%š²‹Ú—<åŽ÷Q5ç=7Í„ZÈéa»=b ù鑽ʮö—îIÑŠŸ]Ûy1›ëº,h¿×@{çó+dpŸ2#<„U€Æ¶S Ù7,¯Ço€ì“æk) ´ázü­±ª(-ÌýXú÷Ϧ¦ÃýÿÍëQ®ßÒUW‹É·Ýÿ'ïäqý½4=|¯çÓFhfWö‹ž‘½Ž…Ì­Š<äûUËA~WeaÇZoùŸµ‚(½";ö’Ó¹·,u› Óæì>©×â­ÚöŸåƒ 2nãé°=‚-Å)7vz¦³€ûο‡’ðóç®=Y Œ&òë+{]®¼iæ””#Ž)®G®§œSNpŽð1e÷_=?Âìfy>çƒÁÌö‰ŸÝ15Q;õvG?=sÂ`§ç] Qhªú˜|ÙóVA¯ç†k™Üç¨û¡¼÷GíÕÑ^îã/îp0Xã+ÿ³ŽÚ½ŸøßiŽzG`ÂôI¢òൠù‘ûsÎgÔ¿" ‘øù‰GëÖMÿRû%é7ªªªýÒ°_bÈ`qzE¹EL^^œQQ@®c  ~!ÈÇ=­³‰‰gxøü#¢þÚ+r¢±-d[ùÆUW‹¿%3ÁÐ-ü¯óíï7†0l•ïÑÿÍ?–ÖÇÓˆ È·êvúº` ȯ '$>`IxA ö ¢àƒ‚ôííÓÇbkn„Þ º{ç¦÷Ôò+~‘z‚  ûÈo£¿®´ap||x½•Æl`  ~)Ⱥÿ€ô•_éþ‚ ²n©>yÿ‚üÉX j+û|°cQðKAAùS¡öK‚ ‚ ‚ôª? ‚ ‚ Ò[¨þ€ ‚ ‚ HoõIýAc[H|l‡ûŽÚ ½Ø?¾ 7CÀ 6q ¿wÁv¢X_ŒAºÑt¸qÅàžÃßVÔ¹e²_—GhÔ2K!¢"C¯¶ž$ÍŠjXì?7âñ£à«‡¬ÆKbmß+;ÍÎ÷ÆýÈèè‡!W}Öh‹p ö>;g8Yý͇¯…D>ޏë¿cŽ"¡ã9s߈ð}F¢íß5îÇÇÆÆÆ<}|ÿÆ ™¾˜Mš`í–”‘›Ÿ•üäò#9t©AùeôUÿéç,-/v T†:.|ÊÇ&Žßêk–ƒ¦,Tx²uÞÛ%¡s'œHzD¢¨(³®½2ù3È™m[E¶šLõϱƒë_ÏÞÿŒ9zÍÞ¥¬36æ‘d‚⢽û·èYîÎïý†€Ö–è¡5$×àÇË‘„;©51•8©.gí•Êð3¥»ÔQZËïQEäH„®Ù‹+@æW –Tsz£ß°¹VÓJý-·<©ÁÉ-:xu¥áíä:ŽA™¹dç˜Rz¾«“b’êíùÌaK=ŽÛÏ{n}»Jcü¼Ê›_wΖëo±êj1^|‚íé]–1±Þ©‹ì=Q÷ ;ç`Óo»Û e±z£6wâŠëåßY*‚ ‚ô‰öü%fsM9ûÍ‘˜á«ÍՓκƒ°p8<‡&pÒú›÷þMóÛt2õ§¾.ùïT_ºÓqùø!ÄúÏBÎú]K,¡`e ¶8o4R%ÑKS®{{fÔC[ÐÚhä¨,§ 6ßl/Alªó½¦kO§r¾¦0ñLúÃ- hIKzËZ// ÏhJJi·|¨gd>ˆ)[¦­y½ßpŠââ]+Œ7 |ê¤%;›iÏkù´dIw6QcªåºÜDih 4IÊÈtÍ^Z ¿\sý¡±¶–Jjh¢±˜Œ†FZcm-•[£^§$ŒÑÑÈÛšYEȼ{Æ+€‡N/ÓÍõ[ó¾¦[zõ‹ä÷¢&2üß¹S­§O‚b¿í6) ß ý|§¾¡.þzýûJEA>ÑW7ÅVž‰ˆˆ¿è·c ±ó/e‹ø‚ã[ÈQ×3Æï Ø(ô¸i¹·×Üò㶨ò€üp2ómþfÞÙdfºÄÎ?}àxuaá™¶®êoÜÏ6]w±yñî•jmÁíjî&³—8ßùÐéd4TmIiÄ"çQ°Çœ½Ú€!ˆÔViÈz_ PWVÖªª3^ @ÑÕJ"‘Іð=JoºîoX}çáýð‡ç “¶yÆ´p ö>;'$©µ¡¾­SŸrçBÒÏÕÓÓÛx·ŠciœÖðÂìÜï_—ââ$€ªª*€âÀ ³gÏ=˜øÝ…"‚ Hßè“û™g×- ÄVpˆ©³»ÃügV×)m¿ ˜N- ³Ì€Ò¨k£ˆÃL·ï´,÷wtzVÁì‹Ñ#OX – "))Œ)ÉvËã;(¯¬\™ä—ÙÈ„ÆèÈdת$Ȭ¢¢\‘xêM-  0ŸÒéÊtá7—R¥¦ôØÆ/LxŽO„Ój^¸»Ý¡4:<»èóÆs_ð#F]Ezx:ˆ´!|ñi[í†ÇíXÿ¤Œ ¸ÈÉueÖÚSohƒ½ÏÎ)!Ã~‹´‰W˜ƒ`°”€õþÙ\¦JÑêJôZÀá!ÿ–£ý‡>™Ñ¬š‚´îw:A¤õÉýZ]9…B¡P(%yÏoEæ()ëø §=I·(.¶´ý«ŒžÍ±Z‰§ÃÄÖºxb=¯î‹òµX¬n_Y@ :t’¢iç|ÉÛf†€@ÀZè°M«…|€Çã Ží“êóã"%“¹^ÖîÐj§§o8oWúŒn3$€Yá¶|ÖÌ9 ,s ÈjbO"Ú¾•àÄÙùa¯ )äÜøëOZæÎÒàì}vŽXmÿ¥Æp'CCí÷j˜ ­‡òÎXN™¾äÉùˆå0î ¿…ÌСCŠàú¶TAùV}Qh¼ãÐr•öo,´]¸PÕÒ¬õª˜ýEÔÀÅs~åQ›½oG˜JÞeyºÒÌL½é;õõu‚‚‚ìaAAÁºú:€¦ì{[–ÿ5ká–SïG:9Í‘:þñ¦……………Åâ…¦¶AåÀ`0°¸¶m‹í¼q+L26Ò’åÙ|IXÙpöX)`Ñê ã“«'ꪀ¸š±ÉXqjs @\B¢¶¶mß@àc1èmÕD“ÁÇÇÏ%È&¤8eî_ãåøxe種®–_X¤­O7¿´ŒhYù»/³¨åI¯ò†©ªp+´×ªkjÄÅ%[^LLŒÙ7 ó¥L‚ òsôEý¡†.¤m2{Ü"_B}δá™ïrÚ’¥.™™™Ûö­î¹ÏFÇk™ €Å`4*•J ‘¾SüîÐä™cÅü²3Œ´Jß½«À(˜9Úšj‘ÀÓj+*êL(ÊË ©+ÏÀ?Ül‡ÇruPŠKdǨHH je9Qès¹ fnwî>fo$Ècä c{›j"XÀ Ö7¬¤¸ˆšfN¶KÇ’ødõ–I¥¤ä|Õ†À¢1™ô.‹Å¢1™]?,‹Ie0º~˜,³•Áèúa²X,f7 Ö¯丶FDÙ9jM}ùFcî²QRD¢Äè¥ Ç¤Ç$ÔóXù€%Êêë¨T•R¾»Ä›¤Ä:_¶×Û~››÷: h}ûužFA~}qѳ%öìá NC¥ø[Ë2£½=‚Û¯ÓáÕÔ” óò:š·6³ÉTô4ˆìu,dnUä!_έ”ä[´ÆŸ> µÃ% \œAI¾y  :+¿f³µ¼$®.7îÔÁ°*¨8vx”Ëá»V$\3ùåU<TEøLÙsâæâüë»®%Ì_ÕQnÍÇlJý€¦œb^n~zæ„ÁNÏ»¢ÐTõ1ù²ç­ Üñ>ªæ¼ç¦™P 9=l·Gl#ôzCh­ ʬì>›Lî<”PØ3èú8·gò¢¤g0ã× r’qy_ˆó¿`gAFmÁK_ï{nA€š‚wŵMÙET^Ù9* Úï5ÐÞùü ܧÌaUÐéùK×ã7@öIóµPÚp=~‹ÖXU”æ~,½w³ÂCmÈöuî³­7áê>>=½Ë%ë„"‚ ÈO†!?7ÉX·núÙ³Q_奴wIÑ®æ¤çˆk¹Iѯæ¤Çptå÷à8"DÁnÿ:UUÕ¬¬¬òDŸ¨Ûž–ÍÙÄÄ3<¼_¦ù}¡½"‚ ?G·ƒ¯öKâ" +däT° .Ü6ðƒp ¢àý×!‚ ‚ ߀×ý>¼ ,žUÕÒÜ‚„gUµ4±ýï·á8"DÁnÿ:t¥ ù3 ûH_A{EA~Žn)^õù¥ #%òg@õ¤¯ ½"‚ ?ÇW´_BAAé ÕAAé-ÿù®ZZÃSR>?]FN{›šTCY9]VÓNm@CY9…‰‚(ØA6))©ÊJ3EßK·=-›ž²r|NÇô Ú+"HÿÂÊŒ[¼ÌtŒ@yfQóËÉcÝR¼î?¤))(â@L¢mQ°_‚½¦nûÙÞi?õA~†ý‰÷?ytÞm‘jÇ[ˆ1"£ÖûGFºNjû:ØÄ=04üÞÛ‰b?sòþlÝ2Zæq)äQTdèÕÃÖ“¤¤ûÇwáfȵ@œ¬þæÃ×B"GÜõß1G‘ÐñƒÀ¿:Ü IDATœ¹oDø>#Ñöïš÷ãccccž>¾ã„LÌŒÑÑ2[áûÔ§WwÎŒn#ýAÖ*˜L&Gl0Ú%‰L.ò5íï‰âŒؼ·ãÒßg§<¹âd8Ç¡£gJI£½Óò ²“.¯QûºcòK°äR™L&Ç9©òH4iË™‡/2ó?d½Žºd§/ ¤µÞ7üù»¼Â‚÷éñw<͆qy) AzÎŽ#{÷x»/ÆþÞ±÷.)Ì~ýøÂf]QÎEþöx>‰_DŽŸUYßÐÂ'2˜ŸUYßPÏBAì‡ [/z ªÛ¹ÖÛYœÏÿËÉ.õóû`«ûƒb܈µG¿¹ÈáAíà¿¶;[LàËÎÔo>eäžrËÏz z®~»$tÎKS—Gt ŠŠ2ëê8½›NPxøa¾Î‘¦†ü<¾úâƒõÕéø1³d„:kËž='LX$'Ü9XUC0\=¬Ë­òCh8aöfeRç`YΛ`b«,Þ9XšsÍ·RXŽDè¤ÖW€LŸKª{ýrI @îïóç5¬vSFýsì éÔìýÏ@€$%Ò¶<‰ã·úšeü³& ˜c™Òf'Îë'9콓϶Ôã¸nÔrëÛì7câ¤Ç¨5¿Žy_ÃN©ép߆òϪ«Åxñ ¶§wÁ¿¼SyNî—ûO-¸´¸>ÞÿTtÍãµ+u„mÑ\u»¦·ËùÏøÑý§e­‚“ÝÆ³^ìÒœVÔöq¬ãHFðzyë°7Æo„Qu|µE4öÔ™8’é–ê麋¯•õ6e厧ø—}°¾gpGgöÉñ ³¡¯ê~öl ßBÜäTÜÙyâ, &ÿØ4}/ÎÛƒÈ,ßçççÖ?ò9ý\ÁÂÑ|dÃ%sM—7‹ofzë•ÇùúNjϵYªÁ \®bÍꙛ׆€ª:[’•Ï>d-¸´¸&ÒÛ#¢nÂ×¥êE>Ó |þˆgtë?ÍëýÓtZsZYÀj@Aì—àw’0;qCõ‘;mÞ6£Áõñ>ÛÜ•`e ¶8o4R%ÑKS®{{fÔ— ˆMu>ã ×²cíéT®/Qä­¥š~c~= ÃoÍL‹Õ¹I÷O^‹Í୯ܖ,ÃaÉœ´þæ½Óü6LmåP¦À@qÁΑFY@As`— @-+¨2yH—s}Jëë·ÄÑFÊRƒE-I¯ÆÏÕå"ù‡¦¨¢ž…ö ÎÁœÆ°G`°\[®sð}cð™fI™.µ—fZi5ô}ð+ê2¦0ñLúÃ- hIKzËZ// Ï*škÊÙïþÆ _m®žtÖså€0FG##lkf óî?¬:½:×oiGý¡½úEò{Q~ëò«Õ$ßòõ} ¯Äg[©«+Âíä>(A¾“¥9ÝP,Œ4]Õ¾C–œøïÝ«§¨h”ÔPoçÝA¹*Nq‘V);Ýe·lªÙ·åÅÒÓÛàˆé¢sù’ºÿzìYm B¢—½‰8æ²ãzf èûdÝXVq|õÑAN{M׊9/ÔXô‘ ØÚš`¿¸wïÞ a–K50Õ5<Î9zlòÖÏwj@¶Ï4ÃNµ„úwo¾}9`ñRõCäþˆúC7¼nŠ+^˜´xÖB~®>Ÿ=€‚(Ø/ÁïG;ŽxcÓü…žù—Ï Â3m]Õ߸-žmºîbóâÝ+Õ€[€4TmIiÄ"×1ˆ‰‰ÑñJË\ }q×ßÙXИý ±°±sBrÔõŒñû6Ê=nZîí5·ü¸-ÇÊÒ[2@qÌÙÛ©‚ØHm•†¬÷Õ~$è,[Äß­H‰ÔÚPßVƒ©O¹s! é‡çêéém¼[Å1Ž4Nkxavnß®K@àãûrJù!Þ½{?qÆ‚9Ó5²²r€Æž ®¦"q;V®÷û ºê˜ïzEÔ×\Ù*kêºnPYiÒ´ ‚üÓwŸw5•Í»âáó¨n”…Ϲ-£ÚKzUò¬ë×Vä:›;=$ÿÙmÙÿü=—FíÙRÍ;¡„„NiÅÅg¹9 wÛO@gBãý­ó¶„HØ=|õüª3– <_ó(¢Ç†Põôˆ½½ý™=`D!‘£G fNNÿ4ˆøáxÕjÉq%e&4ÖSØ(ˆ‚ýüò«ÎE³E¸L¤FD63ë³Ò3[€ä••+“g62éÑ‘É$UU· @á7—ý{m¼5re CÔI»ø¯ù¼Užjö[gKpIYu`­¹Åö9KK‘ŽNïx‹|á9>ñqÑANRv'ÒèŸã‚¦SKÂîçqωÁ`@ÈÄ+:::úiLÀúÜS+Z]‰ŽŽŽ=8úÙ±{Ý{F+œ°”ì ¡¦— )}T*‚|-JB|ñ[×ñ‰ì»wÃ5µD¡:îÎí¸'CS¯>aœ5ñöé—`$Ü8ú¼€@À×Ô"AÍÓîg|wOÌÐqZí»Å²û®ÇOŸ { ,"YIIÕ 8~üHÀêLÔÁÑŸç˜'£·iïj± ÓaÚV§nÛ”Ex»ø'ÿ ×»ÿ§5„Úé…D†o?à†Ù¼ýqÛ}œö$Ý¢¸Ó¥¹z¢nGs4PÕÒ¬õŠçÉA]]-¿°HÛß_ZF´¬¼œWzµ<éUÞ0U•¾iuG Þ±òo 3“IÚSí}ê“"äðñeœ³µ³Ùy«˜ýצRiÕ!3f̘a «­­½þ—Ž T* €@ÀƒöºÄg,jc]]C+ %)é5€Æø9S'…ô¨'%Jعp|¦pG&“#;P`Ü €’’˜v01íerZÄV5î)U6_9:&zݼmE[Ю;ó­°]«¹ÔfÑXüUuŒ0`Žaô{°§OÜ–·9ð´ €rÏi¹gL pXïÕUÕ8°8 µ• <ÃöU¹é±!p×B~óâYìÍ»I5 ¦­õgþ•xÕEd& ”’Á‚ pÛ ¢`¿€¢¼üšºòüüÃÍvx,W'p (˜¹ܹû˜½‘ "©é)Yš¦‹TĈDs£Aéi\žæ_÷Üg£ãµÌÀb° •J¥Ëù¦)‹Å 3»~X,“NctùЙ,&“FetùИ,&ƒÚJïò¡2XLFk3­Ë§…Áb2Zšh­?Í ƒÑÒDëòif°X,f7 Ö ~Ïꆂ±½Í5,`ëVR\Òþ“ô(uÉÌÌ\žÙ[S_¾Ñ˜»l”‘(1zéÂ1é1 _¼A„%Êêë¨T•Rú¦DSÁóÈÇO“R jxÜù@Ž[ð4ðÖ‹Òö6Aù¯Sꀤ5}ªºúKï;wN­Ëå|ª -­HÆ›\×ý³{¥.9-½‚ÛhJ €0Ñz­äG=)hcõþÞö—ÁÔE[Ì5xLcfXXhÿãí¼ÞÚc¯…õYp»Â/3ZSÀ?r¬*×”ïÏ­0\ìñ¬°,4–üÔ 8ìýA® ˜É$ `Hû@¿{ §´µWŽN£Ðš _F§—2€ÃzÏHL¨¥ÅÛ×Y{ÙÌ$@ù³çùð.=JKwîØ¸å íl¨ýšGc£‚š±……ÅTE<IÃÄÂÂBO¡íH.¢>ÛbÅjçÆÀ,(ü3odñz~+`08&‹Åê@Aì— |Çó[%ÌNÜP h¬gœü {— ”H¸fò˫Z¸@ÌÐ嬣^Sð޵~¯yœËñ)ou^k $άxqÒË7¡” 0Á9ÂÇôóÅ“†0»Yžm­š° ó<½¬F VE²õŽãÜ'é N 9YqÁ®«&*ˆBSÕÇä›G¼n¼a÷3ÁOÙ¹öãÊ¿ÏäY&~µýz£Q2¸O™§œŒ+e~~þ[öIóµM‡ûÿ›'À¢5V¥…ô8óœwO¾^>¿µè˜‘¾×Û^/ä¿è§<¿UèÀ¤' @Ç=íÞ߉ëå­Ã$&X»ïZ=u¤ 3å̓£v.×ù¶ÆEZ§­ÔIÞ”º·hú‹5Yžà¬ºø2Qo«çnËIJ$fùÛǾ;·_Lmh{þRGmbô}ÞÞXF(9m2Þ­ã!È#ÖݺåªÙnoúï=®•eó½mg’¢¿¼¹ßñ`™@gtq“ZKÜžE_)à•€0ríÅóNIQûVþs-÷?Ý…‹ ƒõy ßƒ¼tûSqXï2úvž»–MTgTd==¿{ûéWµ€Wœïæ±í¯1ò¢Ìª¼¤@wï§ŸúËyC8 ßñü%¶ûÖC¬š¼ .-æö¡$ãÑq—ëÙœÏþÛéöüV^õYùñå¨!¯Ò ŽÛ<˜ò*í%Q°‚l?úH‰ ?Ç—ëÒ;Ì^;TÏ\[+=iõ¶Å˜Ó޽ïï)âŠ_bÈ`qzE¹EL^^œQQ@®cüAÌ,5ì :sWè©bg2˜»rXMýDúW·ƒ¯Ö!¢Ãæ—ŠQñ¡ìDÁ~ "‚ 0aí¿÷úñ°Ño µ·>ùëV'$>`IxA öÀuY¬™4†`dû@¿‘_ ¯û>¡fmSs+APšÀªmjnd¡ öCí¹Ò†üÇ¡ûH_A{ÅŸƒããóè­4fûãO ‚(#Êb‘[A¸}€ÙßA¤_}Eû%ù¥ #%òg@õ¤¯ ½"‚ ?ÇW´_BAAé ÕAAé-T@ù X™qKÖ­·˜,^ù‡ ‚ü7}SýAr‘o|äNýo}3°œ¹oDø>#Ñöï#7ÝŽ‹¿²RwNm!W îì}öÿ4‚ü û7î?~ò0è¼Û"U3à˜²÷Ùq²ú›_ ‰|q×ÇÅÏÿ’îë]Óá~|lllÌÓÇ÷oœ°1ùþyDþ3,¹”E&“ÉqNª\Óà•æ»ßˆyŸ›‘zd¥†È[G;KÛ«Ã5¿¸öú“÷Ÿ½ÍË{÷2âô¿ºâíqé9;ŽìÝãí¾dû»ÑÑva%…Ù¯_ج+Ê­ÄÞ3:Z@&Ç9©úäv #Èדš`í–”‘›Ÿ•üäò#9tÙAïö-;aÝ "ÙGëŽùƽPiŒŸ—ו—uíßßXd``°)è_ŸõÙÿ#dÍ\7KEº,5™µd×Ë!ÿ¬&öU){Ÿ]z¾«“bòþUsþZêš ·Å~žtû/Ý×;äú[L™:kÅá‚ÉN–cûfN‘?Ÿ¸‰ÛN#‘/¼¡Z~õÑã«'ó§ùï÷¼Y4d‰Ç™­Úm7 ˜¯/lm³3(ŸKvá{/îY0ìS„¿ÿãOÃæ¸žÝ>¥­.\zq夙Æz Žu~½xy¤÷Vû}÷+]Zq¯Ó ÈÏ&jâ~aç<¥Ú'ç|ïä‹ÏØèçµXú˹Axú†*ŸŽ®üs¿À<-Ý쀀‘W´Ÿ¹û‹Ò†ëA›FHèn8~#"êqxÀ‘õãÛ®Ýil ‰¹{rßjaNewÂ);FjªËåðÇ®í3Uà1õXYÛc×ï?Œ¾t`Ùh‘ޏØTç›÷Ã.þ3ö¿õ^¾ÑZªéBóë©Ôš ¿53Ô~MÊÞg'ŒÑÑÈ»™YÕÒZ“y÷Œß ¾´ÞéÕ/’ß‹ÊÈôÅž¥&Û^|üú}~vJÌÝc[¦Ââæú’ãÕÚÌ<žG~¹{,ð©ÿ}êaJö‡Y¯"ü×i Œq}A&§¹Ï7v¿Ÿ–—ý쪕j¡ò 6ع>„<¬ç™Lmôh<äÞöò9v߉‡õ ¯7yûÖ§ÜçÏŸÅ>¼wëFÈëJ.ÙGJBñõv^^6v{®>,å“h»}ñ13ñÑÃsk;'¯÷ðFàÙ¡9 Cäûb6¤OŒÖÓ'AqÀvC®ÛüÓA@ßPíØùN__ÀjêŽH{–üòE¹ŽîPhNŠOQÏ>1”ÕÑNLx€»ÆyÂÛýËþš·örƒ©ã2öù[úá¹zzzï~ñ^çì o²H.Êõï¿÷¥(m±œÀµ <ÓÖUýÛâÙ¦ë.6/Þ½²#?i¨Ú 1’Òˆ!DnYÿHbbbt¼Ò²WCEÜõw6Vàzüà˜²÷ÙI$RkC=ý¥>åÎ…2|i½ãHã´†fç¶~×,`&;ù;ÎOñ²Þ¼ïrа†š“QPP²²²‚3öÜ»²~”èÀPPX ³üÀù¤ ÿ½"jÕL÷z®Ú^†Ä_kŒ*ƒƒÒ˜C¦m·žöߪfþø'8z.ŒÚ³+¤šwššYñCÅ$FS””dÿ‚›áž˜˜”ü.7%hë8A.Ù%$$ªªª0Â2 I¾ÿûß­”:¨zzÄÞÞþÌ jäQHdà虓Ãíž‚ü|ââ$€ªª*€âÀ ³gÏ=˜ØßÓ„ Èoï«ë˜Qºc²ž¥2kŸ=oÑÕ ñoÆêhÄtt&%¤3˜©Ç–o:ŸQÝÒHy‘úQJJêëFÃ5;9â̵E•äĘ4¦ü` nùå••+“g62éÑ‘É$UURÛ…wÜ\öïµñ~Ôøµsþ[Ã`0DÍ‘´‹ÿšÏ[噡f¿u6·EÇ1åWe!¯èèèè§1ëGpŸ,E«+ÑÑÑÑ¡G?;vïÃwÍ!àÅIÂx!’@cfÈ¡µë|³>€€¬ìÄÉót¦›èju…5ÕÁvóÌþÞêsáÌ‘àl€!C:ºÕT‡{Ùñ?xý¿ì q^£C~:ü¨-^«åÒN‰e‘ˆœ ¸´Ã)é««ÿK¨žá™˜™è1×ÂþoV>Ü·~ýúõë×[Ûù$=ÁÞ‰[[Žö2ÿ:”˜˜˜˜˜øh».4f> xšGï‘|øÆÐœìßðt×–³y}5»Ò§X5iiiy•=ÿÀ‚ _¥ûuäu릳âãKz¦ÎÊÊRÖÕ•2ÿQô..MWìú½Z€ª„ø‚5:£0Ï$uT^D&3Uît˜£H Ó0Â2ðêk'Œ[vƒÑ1€Çs½ N à-ô ˜A<±…ü–¯ý—úü¸ˆÏ—UUÿM•³>±XÌWawÞ×2 öÅ­È—Õ•!ô9§¤,N)ó9sj9,º¬OmÒà Ãa¬m°=ƒÇ¡*ïŒåª«Å>igß#–ö–Ïù9•ÙéíH¼×WVV„·ãõA. íNرZ £m´ò}]ð¡ Ô§®´TUsV¡ |øPLÒØ¥v[¦©H "M˜ŽSP‹ °ìäò»¨¨§‚#€CXªˆXÝIUÞªlq£ø%ä$èe”:ö?ŽùþìÐáC%¨%9òNéúcY,4ç'„µmþa5Zk¦,ª ¯ªÊ¡6œÕÞ¹¢%áëÝž®ÆØö]G%·¶þHj¶çðþ;G+&ÍØ3žž\oç“Õ½sG‚|!™¡Z>•Öóú7#‚|I÷ð/½z®n³ßRà VÇ%xáx{›Êã*ÍuTÇJj¼ItoþkÓ’¦3K—Ä50%ÌNÜùÚg‡|9;§ÑiÜòÓéô7íV^.êñ‹°Â¤É*-éq)”èznú'ãS¨e|>a|>Rœ2]µ)9òe  ¶ŽCJNA΋Ž_¡–_X„@~iѲ¼ò/M‹Zžô*Ï]_…ÿÒÃ/¬Ž/®¯ìÛþº¹]FuÂ;ï½&;lM/¯L(,Ù3Ä^]¾$·r…ýYa1¿ÉIŸåÑÎs–E ý}%ls÷‡zú_ù‡ü&øÜ–ç²;ï«[Ù>µöž“½_L L;i…,ýÝ!“G2@\g•õ<͆‡NÇ߆¸@Qe%qžoºQª»þâ Àb14ó*–¨ª—`¿Œx_w €Bá1a-ä7/ž½}IÚµ|µ¶–bVhrÏ4#ê¸LÃUUU€¸„@@JJ ²òÓ——‚ôT]S ..Pƒ-/&îyßZÑ*¸¿' AßÛWv£’ÐÕ•ÈðeF™o߼ߧ«MxO ÇÇ·n_¹@,7þDàðx¢ø%G›Ž“nj¿XטžQº^WŸÌÈ‹]½¼ì˜OÛã9)ágï8ÞzhS•zËËÁÛÄóôAX·ñí²S Ù®Ço€ì“æk)ê6A§ÍÀµx+Èõ[ºêj1Çìa/¾ügóùPjÉëÛ»<ÒXÀ1{}ıã\ßµ"ášÉ/¯zäµß©¨ù˜M©ДSܳär÷ÀqçýVâÌŠ7û¼·?@©¦à]q­DSv•WJ®Ù{( Úï5ÐÞùü ܧÌaU ±Ãz¥ ×ã7°hUEiaîÇÒ¿{.i¡!Óךo[8DœU™â¾Í=†PXð@&-íCZI m•qaA!4çÝÿxÄÖõ§¥ßt[d´ó¼ý\mÉxŒ„öÊí³ÅšóÂ÷9OýîIB~’’„ˆ”*%µ–¸Ç¯ÙeÚÓK¹­˜çdßJy{ÝÑõÈk:Àùm®Êû7LÛ´k:­<'ä€ÛÞH.—êí\½³{•é†uŒ²×—lœO¼c€üÔ­Þ;5@ÆÈÞÛî[ߌož±Í{:­±ªäY ýŽ€²ï›ÆÈ}ë}w[L]¾˜^–~ÃÙåÔ[Ô~ ù&µ!Û× c¸Z̶ބ«ûøôô.—@^wÒAzC$~~ѺuÓ¿Ô~ AúªªêmM4ÆõŃù/,㊞O‚ü@÷´Î&&žááý2=Èïë‡ïA ÇA ½ˆAAA‰ð® IDATÞB¯‘Aviî:ƒÜû{"AA~ièþ‚ ‚ ‚ ½…ê‚ ‚ ‚ôª? ‚ ‚ Ò[¨þ€ ‚ ‚ Hoõeý;tåÅØøH×Iì¯B£–y\ yzõ°õ$iÀ 6q ¿wÁv¢XŽAÚi:Ü¿¸bpÏáo+êÜ2ÙoÉÙuCÀÊN³ó½q?2:úaÈUŸ5Ú"hCø>D•{ÏÝˆŠ ¿í¿kž ÷”=wA ªa±ÿü݈ǂ¯²/‰áž'«¿ùðµÈÇwýwÌQ$tü gî¾ÏH´ý»¦ÃýøØØØ˜§ïß8ac óݳˆ }FÖ*˜L&Gl0Ú%‰L.ò5íï‰B~É…§BœÇá@c[—#`÷=X”©°òbÆ7N3ò{êÃç/‰ÏÞ´T°´ã%©rfÛV‚­æSFýsìàú׳÷MY¨ðdë¼·KBçN8‘ôˆDQQf]ÝìMnȮۆ0l®Õ´RË-Ojpr‹^]ix;9¹÷^X[ZX s„Ö\ƒ/Gî¤ÖÄTâ ¤D:[+”ág*Jw©£´–ß)ÁÍS•“èl)¹”ß,$G"tRkŠ+@¦ƒ%Õ4èIÒtËFɘ[`‡-õ8ióWü¿AœßCÏaôŒ9zÍÞ¥¬36æ‘d‚⢽û·èYîŽãü9éù®NŠI«¶ç3‡-õ8n?ï¹õmöZ-ñó*o~]×)q®¿Åª«Åxñ ¶§wYÆÄz£"¿”Ñ3¦KŸ8+:}º£¿'ùqdgÎ’>•Âûãö`ß]&òßÓgõ¢öºuC#ß¾}8;€)L<“þðc ZÒ’Þ²ÖËKÂG`ápx L&à¤õ7ïý›æ·édjk_M‚p"¨¾t§ãòñCˆõž…œõ»–XBÀÊlqÞh¤J¢—¦\÷ǫ̈‡¶ µÑÈPYNl¾Ù^‚ØTç3zM!;ÖžNå}ôí±!4ÖÖRI M4“ÑÐHk¬­¥«÷N@Q\¼k€ñ¦O}€´dç`3íy-Ÿ–ì éÎÁ&jLa¢¼B—›( ­ü†Ã”ä;ëZî|¬–‘éRQi¦•Vƒd?9×d%„S†¿¯£dÇ¥”™ À¹þÀaôŒ¦¤$‘vûÁ‡z&@惘²eÚ*ÇñdŸ0FG##lkf óî?¬@Ûå7ö›Ôsý–Ƽ¯é–‡^ý"ù½¨‰ ?Ú©!¿&Ksº¡Xiº ½ÇüO6Øx–D¤g³ý;FjªËÇ骓NnßVÈä¼ÓزíÓþ@…M[ôÔ½òwÝ”Ïè}™Ã×\^3àT¼9»äUW‹;ÈpëvëéªâŒÒÔ ÃîçSj:h²TuÒI—½÷‹˜€ü®ú¨ýVaÙ¦©oýÎ¥}¾„Zsövj#† 6R[¥!ë}5£®gŒß°Q&èqÓro¯¹åÇmQåùádæÛüͼ³ÉÌt‰úÀñêÂÂ3m]Õ߸-žmºîbóâÝ+ÕÚ‚ÛÕ2Ü-Lf/q¾ó¡ÓåÒPµAb$¥CˆœGюÆPzÓuÃê;ï‡?Èg®½((ŠIcZ –¨à–µ ôtÐûz€ú”·TAeßY¦¼²rEâ©75­ ѯù×*KBj%†_¸ÿ¡ ÷õ;ö=a®“„üêú¢öǯµnÝÐÿ»MîñKC¨ž¾á¼]é3¸ÍœŒžÍ±Z‰§ÃÄÖºxb½¶HÏòä[u»9Ïb±€tè$EÓÎ?8"ø’·Í €´Ð+ `›V øÇ3Û'ÕçÇE!ºI\<;*¾†ÇßVcÖŒºˆG…B‡3ƒÇóº\ܱ#d²˜XLljᷗI |>˜ÒétžÐsD¼' ùÕõÅÚ¦£#=h _ôÒ¶ïcãUÏ/·Ž®/”ñ µ’E«/ŒO®¶ÓUƒ8ϹÚkXx~eò.ËÌ%wÍtÏ'G¢n9H©¯¯d ÖÕ×4eßóØr¢ ZK·ïwš“ºñn%NÿxÓnåå.W¯ ×¶ëÄb;W®…&MViIK¡p¯BpÜ6}âc1èm»L“ÁÇÇ¢hCøVD½EóËO˜:„Õ÷øIHqÊtÕ¦äÈ—%Taeû Ç âjÆù_…§~q ‰Z®ÍŸêêjù…E4à—–-Ë+ç’´‹Zžô*Ï]_…> 6Lȯƒ/㜭]zStñô¥_Nüêºíë¯=k*ùáj Ç x<žFçÔŸŒ·Þ—ÙµÚt:½ã`ŠÃáèôoœ$ä×Ñ÷²üéµ™{$µù£žåùB†‚±½Í5,`ëVR\uÏ}6:^Ël,Ë Q©T`°<žŸˆ _©øÝ;¡É3ÇŠøegi•¾{W€Q0s´5Õ"§ÕVTÔ1˜P”—?@SWž€¸Ùåê —ÈŽ7P‘:ÕÊr¢ÐçrÌÜîÜ}ÌÞHÇÈ9nµùy5c §Ëòc±BŠ3õ•òò?|Õ†À¢1™ô.‹Å¢1™]?,‹Ie0º~˜,³•Áèúa²XÌ:½Ë‡Ád±XÌn¬~r\"¢bÔŠŠž•ó]îŽ.>¶Fm}T8킈šfN¶KÇ’ødõ–I¥¤äpY›­©/ßhÌ]6JŠH”½tá˜ô˜NcíK”Õ×Q©*¥ ÊòKáãÃ< ¼õ¢”ŸÝøýuß×t r>îú, ¡ƒ%X‚Ô$CÍÖœ÷œŸ3ÁÃW”YYZ&¢1iŒ4IjÈ` çåËèNWã#JOœ:–‘—WÉN("?LšKœ8ulKvöWOò ùawšŸž9a°Óó®…(4U}L¾ìy«š› èiÙëXÈܪÈC¾¨þ‰ôÖøÓ´v¸„‹3(É7äTgåà×lö±–—ÄÕåÆ:VõÇr9|׊„k&¿¼ê‘G€ªÿ€){NÜ\œ}×µ„ù«:Ê­ù˜M©ДSüõθ¼/Äy‹_°³ £¶à¥¯÷= |ņÐZ”YÙ3|6¹gkA8”PØ3èú˜CIëз=ƒÅ/J8L}¿9À`0³}âgw¢vê펨)xW\+Ñ”]Ô¶Ž8ï‚(w¼ª9ï¹i&ÔBNÛíÁ½GKYÐ~¯öÎçWÈà>eFx«‚NÏ_¸¿²O𝠤€Ò†ëñX´Æª¢´0÷c齚ùYˆüüì>Tøtß×q²ñÄwVwJõááÅ—ÿl>*#@-y}{—G ¸ïÁ8ém™ÍÑgÿg°û@ 9_cÊÿÖÛ…”ÖE;4jûÞ+HŒ²Œ`·ý)m)EÆm<¶G°¥8åÆNÏtô4°ß†Hü\ƒ]·núÙ³Qý85ƒªªjVVVO‚|/Ž{ZgÏðð~™ä÷…öŠ{ÜÐ{l¶3Šg½~/Sc[ȶòì4!¿Ÿn)ôô,AAß”Ø4c¤‡ñ}Xyø1e"ÔûAAä7U²í¯ß ÌôÃsWõq‘HÿA÷AAé-T@AA¤·PýAAAÞâU›2ñ®Ú“@Ö@—=€‚(Ø/AAAäÁ«þ 9JuÝ"Å‘ü 1r{Q°_‚½¦nûÙÞi?󛯶øÏã¾ï¨ D•{ÏÝˆŠ ¿í¿kž f°‰{`hø½ ¶Å~âäý!z.O.8¯‚ü û7î?~ò0è¼Û"Uÿ/œ¬þæÃ×B"GÜõß1G‘Ðñƒœ¹oDø>#Ñöïš÷ãccccž>¾ã„LÌ$‚ô££d2™L&|ŸuÙyºzj ‚ ß×ûøIbCIÌÒõÍ¢bÃHÌÒõµLDÁ~²õâIçê6A®õvçóÄÆòEÛB>m¶¼Ôå5n’‹N\7|ñ¯Ëõì°¥''>ˆkýHƒºÂbö ¢`¿¿†üªsÑ–ÐúhÇ,v´%5"¢° +=³…ÈòÊÊ•I~™LhŒŽLv]¡J‚ÌŽA€Â;n.¥JMé±¼FyvÝ’@`‡˜:»;Ìfu|µŒçÌš>mòðê{û‚‹ êÀÚ(â0Óí;-ËýžUôÅ]–ÿŽžË“#N«ƒÁ5GÒ¶ük¾O@Ãêà­³_؆r¬ `02ñ sÐ –°ÞÂ?›Ë¸­®D¯òo9Úøî9D‚Åb`±è¹‹‚|/^ýä—òÍý$ÌNÜP 0rOìÓØrlZ ¥Žx¢(ùÊÛ rŽÁo›X‰Å¾w”¯º' él=³W·$ìVXdtbö'v}'£·iïj± ÿdm«UÚBeÞ.þÉõŠ! ˜4Oªkû¥Ê¤DC+ù®í—ŠÂˆó\”»¶_ʹr•hé3ºkû¥Œã'¶\ÑéÚ~éÅî½D׃®í—b·,È“ÒܵYQqZ¨üœ`Zq3ôÄqy~QûêÈ1?}gÌuÃÑ µ<Yî´‘çsN9˜ŸP9oäÎþq¬m°}ý¶çò@c[ȶò«®³“vôÀðI8û®+´·¼Ä³ú? }¥—ýŠŽé{½…ÉÞÝZÕ|fžöî—?kùCt;Hñº1|®qøé)&B `jÄ@Aì—à@§Ó?Þ´³°°°°°X¼Ð”]Oàa…IÆFZ²<›/ 4Þqh¹Jû7 0¢Þ¢ùå'Ö9œ¸Óq²+jàâ9¿ò¨ÍÞ·#ÌF%ï²<]if¦‹ŠÒ+œ–g!Å)sÿ/×ÞÛœãꨭ«e|îóÀ`pëÎRWWË/,ÒÖ§›_ZF´¬ü‹UIµ<éUÞ0U•¯{j‚ü‚eEÈJO‚ ¿=^õaùA†:2rÜ6€‚(Ø/Á (/€¦®fo$ȣȺ¶Éìqˆ~ õ9Ó†g¾Ë£VTt½µP÷Üg£ãµÌÀb° •J¥‹áX&‹Å 3»~X,“NctùЙ,&“FetùИ,&ƒÚJïò¡2XLFk3­Ë§…Áb2Zšh­?Í ‹Åì†ÁúyAŽ „Óòl[Gæ»Ü]|lˆ{ðèã"†ôbÿ»[FvJµSowtû¦0ÏÓËj´`UÔ![ï8Î}r‘.¸/O±©N§ôš‚\×Mgp^| Æ[×(‰3+ÞDœôòM(åÖù?ÈÀÚ~½Ñ(ܧ̈SNÆ•2??‰-û¤ùÚ@ЦÃýÿÍ`Ñ«ŠÒÂNzœy^Ís&Pû%¤¯ô²ýÐJsžÝôpñ~\Â}'† ÂY·ƒ¯úƒüt½]S¨W=_äL˜ìfH»êù"¦ Q°‚l½¨? ÈoÕ~çÚhòÅG>Н#éÏ4šÜšr,¦BÛÈXšr,&¯ú7ȆöŠ‚ü_ÑÿA\UyÅœ¡*| >B‰=€‚(Ø/AAŸOJÅXK]IUÔµ•¥ø@@i${ ßƒ‚ ýˆ×ý>aYVUic‹ð VUic=Q°‚lèJòg@÷~~ALC]]',**Ìl*k  ýŸ½óާ²‹øïnÛµ³g"E(TÒÀ+HS‰B{XEi’JÑ.¢õ¶÷°"šf*;+DqͲç]艹+¢õö|?÷{÷Ìßs~ç9ût~ig¯²@kE”ŸC?Ö/¡ üV oJ”ÿhÿe°@kE”ŸC?Ö/¡      ü¶X((üê$   ü ý”¾‚öPP>+6zžÃ2ëñÒè…n(ˆ %å/§ßý¢Œ±ÛÑ+¡Ñ1÷oÞ1GµŸ·«»„œ[$Õß857„Ÿ^ Þ__(`ålÏ=‹‹ö׋ ÿ¨¥û.„DEÞ>³s¶rç…iÜ#ìù7äÁÃèЋVŽíÅ;N|ÂÚ—B¢c"om™¡øéþ7É9‘ÞÆ|]¿57„Ç={öì铘ðkÇÖˆ 0k îxB¡D®‘¹)‘By0ý›¾HVg)Ê­%™±å ×?Ÿyò½úàúïÔܷ…Ù/£‚×ìÕ1Êà‘šºãzlú›â·¹iO¯{›Ë²kÅK¯Œ¤ô$ÝK¸µ–D<Ï.,)Îψ»µ×Jžw¯ÊD®‘€¯Kˆñ¡b–ƒ²’¼Ô˜³kõøƒü¡ŒUÆÜÒÓ^Êû âFÇc®¬~FGç’–ÚŒîkåìïåfŸ´$wýÖÚžüþýû÷e”ÇNJŸùVrŠIñÒù‰ÉEAAùeü¥öÎ=ïr÷û%ØüW§¦ßô·ÿ nµÅY*ÑËvÆ´ùÃxìv.öC’…òc0]3Ÿ«¢ªW7œ¼ÆZ:köúËÔÞK†a@ÒÊÅŽpoÍÌÌï/»}™Û‚#já鮸j—ÝŒió=ã%×¹™w÷5*žúú^xÑÐÃqAµÁÄIS(ïn3jÀÙc1ÒÈP@ÉÐPö»¼Wœ³÷‰¾åavà'¸Ÿp5{{Ùgß½rÙiA®ãïFd8¦n9ºL_ èªÿÁˆ I}û}kÆ÷朑zÖ¹“­wŠøÍ=v˜"ežóõ£ »xïš Èî]ÔAoooïË©T€ªgÞÞÞÞÁñuÀ¦„TEû9»y‡×(šlÚç¨2hÙí#déù|˜ŽŸmo$j¶¼zi—ž÷¨ë²(½¿{ƒÛ±gu]¿SvêHKK[«þ5‰DAAAéÇ9NFa*×·íϽï½ÿá1ñY)IjyÁQ?ƒ#ŽÔTI»‘ó±­½¾ðîíMM1Ô[qäZäØˆË—è Zj²ëÑ«áÑ#on4–îŽ #Ÿ˜i SÓp2ÿCCÕ…Æ®>ù2·¨ 3þænK%FÚÔëFBvaQö“MºîX#ÖïrD^ªØ Qmñ‰¨”¼·os_F9hñH(ˆ4g_=àuêäΓՆÂü Ê·ákͺr*Ð×?è^XtF 0ëjë{sÎüPðüyÒ³¨»7®…¤ÖÐê뚀Yš|÷îݨÌuµuLDñÂs©µ/®ÜJmD.!ÙQ×®œ:ú@VFz3Ü0\³d³)••Ý Ïd %ÝÇÂÄ'<½0/颣*&øçR(±&VG½.Êœ% ¤·:(òenQAVâ]¿ùª¬óø„ôVF$gå¼?j3‚1^vÅ÷êé]VÀòÊ£suŒªt|Ò)”w/ïœt™Øû$‰Šk,…òlãð!w) …³F+mºëzBV^njÌé•£ùYnE—Ü*8´hÚ¾Èô7yÏŽÏ’ìW:QþN­ñ5l2ˆðñI¸ŽÐüWGç_ÍëŸYWt 3Dˆ½‡ ¿¬(ª§0òô˜1G”„…Ñd¸-ÿ-µï|Y ßœ²]›K6ÆÅ£µüìÃŒÂâ7)QA.Ær$võ6öŽ;bD’ ½ê¨³cÆœRW6çý¾U¥8yYo uQ"•ÎÖB­ˆX–:…ãà«Õ _B+~víÚµ°ŒÚϤHMÁÅ·>› l*ˆ-½M¡P®Û H­Œ¤Pr²iÓÚ‰C¶hhxH ¼ND?Câççooj¤²~0ŸûÍX{½°£–zè¾Þµ`š¹ýù¦é¨ïÔu*¯÷ÚÎ0·5QÁu­QçR'éióäžm³³Ý•¢¸n‰>xþqòTËÚ9×tºÃ¹Ö¹ÛmU%ܬšécmf:ÏãÖ[Ú§$åT%øÉJÃdú÷JCÁÊ.X3éuàéôÞG)ùED™5Õê¶»·L“©®ª€Ò§§n¦5`üõ•›rókÙx'“ÉŸJHcÊ­³ñÈ80S__Õíˆ~päÑZ %yíß·ždgç5²œa¨ž›[$£g=§óÆn±]øVÅîpÀ2EîiÛŽ:ŒçL;é} ìM×èèÇ'ÝÜÜ‚“?ÓØÂÝ»-È™A^»#ëU§{í]*ïþ]«]‡´^®«:ÂôP‹ã §îéJαú\ÁVš£Ýr WÍê}Ñ! J_Zâk‚Å&ƒ–l§,3ŽÔóþ}l‡¼’% b˜½ÄÞgˆ|üåÙ©EïÈ€l2Í£FLœÄ =q"ott*—€`\’6Þëégf9ÞÚ7Yj‚ôæ½O Û;bìˆá&Ê)*7¬~ñrc)cº’¤Û˜áã]1bÔ~!æÇ"·Ô܇ìÚ!ìkEäšö»Alr4%¸¹¹¹¹¹m8ø¸€ZXX•‰ EZcFãxÆê©Aû“Çñlº?-aÙi®E¹D‡¥ºHˆ“s ©èg_ ƒé9ÙOoo£¤^¸š›©ÉiïÜÕX]_)E¥êøãi5m97÷{a;»*”ûçâKŠŸ¤u,¨”:´&10§™Í£_y.R!CNŒòÐê„YõT€’¢ò¯ë’[;7U(µd§®žÝqÑ1¦¬zuG"‘h4ATYSƒ‹ZJ%’º¦xføGºëvFø¸îOÿ²­ÒEW á6ó Û lùåeÖAyl\+:^xl8<ÝØèöö»òõåñq\ 78So^àPUM->¨½{ëfl·DŠç#ÝÑÜÇ3‡«qAí­€}gcI ãWOhΉºœ“µ½{,Ĭ½çjž‹{›˜÷Q–wÎ\U)€bà1²wYï`©-†ÿøÜ÷@(ÚøyT…ï\úVJÃfëú€#ïÌæž‹4‡På½ì½àxGÌw_7ÑÍ}î¥9Wä6ûO§Ýpw|(0w§ÇñcÅÓ,Ï"OA €XB@aUè›UPód˺S…É\ÁŽ óqòðQÇà#9|dmzæ¨ðu;ÏU6~™ž±¸D×¼peøÏ#™’íæK´É¼¼  ©E†º‹Ç}‚Ÿñ4Œ›Ðp´– Ð5µø¡îâ±]ÁÏ0I K¹ `pú÷ß‹¢šZåÃÝ© h »{x†¤}hM¼uãM3@ZrZ+':ª„Ò7¾´Ä×Ë¿0™aóö­Ðs‘Ki¨÷ÞXÂP<4UQ.”×cè aR‹l\YHa"ÇÞ¿6NGCÍ“V:@SN3ƒ„6&Óýà厉ú„k¼“&I?<•Ì`çÁ¸°X,_LŒSœûè”Ë#VÌl½¯bGŒˆSŽ»ãÕ»¦€–5JŠ( ö=ò’áòªå2ÊZÙO=€b­ðuYªì-˜oƒØäè(ˆ¹\À©µ)d·HóMKŽä`kaá˜1ÃáðX-áÑ“6öáÒßÕ”lûX5VRÖVQÚR/¸ ýeÿÁÁÁõ%.®ìk×¹˜=ß´,–É`p©ÌÚºa†"FÅðˆÁKÖŸžFë|Í… ±Ýy Ó»¿`1X–K‰Y¾—h€çh£¼&ïvù9E±‘ŸÆ÷TT~úZã?Ü·\r÷·yR¾±Ó·½£‡Ã5ÇxšÆðZâ©]͆¦PWý0¯ŒÉæÝ;1k7—Š"h¾»„4G¸OŽ€QN÷ÜèìºPlcw±C5ð8hãfóœ„fÛ‘zÜõ¤üøÇ-Ëíß>Œ«³t  óN¿žA"psq€è. ½Á šïºnв “ ƒ¼šÓ»5ˆ•/oïÝt.,§‰ÅŸ«0´¼MŒ| ‘ͺ—­—Z©œ÷Ë’ ¤ ­²¼UâZ‹âÃ:+а:­¥ÊÉJƒîì „7þ'.„çA³ÁZcëÅÃÃÙFÔwÊn8¯¾R.gµãÀ®[‡ªÇz3äk7úúßX_ãafÖÇèz\âÃx’÷ü pJÒ’‘y§ë Âd2€Ng«ª R©@9;Gå ¦½T¦¨TPi4 ‘H@$u ™™W·fö)‘?øò; cw.Ö‚x®–÷©_.w|jþŒž¿û®Ì?¿'§á‹òù¥u ¾&X|a2:Ö3gÍêyFBvÁ¡½qƒ Ìæª3¬–Y;úd\ˆaªLGн³}×O‹kÏaõQM¦:êA¾ËÄ1˜G¢G>½Kcï²ÝÆõþ_woÅ­{ÂÖHR‹Cíô¾û†Ú«÷Á¨.ºcGŒƒÇLU4&0K¢·½é1ÈÝ—Ø™8 –€ @o#Iˆµ¢»šö»Alr`Ä-Y«J¹d³üß·t`¾JH¢.4Õ#¦"¦ÇÏ|ùðQã7ÂÆ`0,‡ù,§ß]|ÙøÆýÓ$Ù/€ ˜±‹Þ,^õtâšy-ÁóçÅ61­ŽÝRc9¥ÑhX\§&±\dLÓÇfäN!F{wÝÕöüg[Hètú'ïØžO„GvÜx嶌ؔò6èÿkþ/Ee…ލÄÀÇó;ŠS9³ÐæL p+N4Tiyý¢¬ ¡º/,ÜYw‰‹TUUð <;ó~Z “ÚX÷ªÖUOvÅ#iž$[ÿ©„DÅø* {ß® ÌŽªÄ—…>”IÿF}ãiöþ¸Å'‘˜yÚÉ5£åq©!+·T€Ú Æ{_°œuÔ×€"ƒ¬Nð½Í‘ÌÜýª?ö˜± š{ñ…°µ¬ÓÃÆX;hpW_·ÕwŠîîãEñ'@2Ê?fšæ­gT†Áb1]•+ç”}qÿ.§eï73:˜Àaáoœæ3aîÙrÀb1¬W6OÀãp€Áã°D"!77³×8ûD%+9éu2&qÛÂ%ÚZй¡¯¾vÓ]Bº‡i¾ ïTäê¾µÌ) aÐÇ•úù’+fGsC@§uðð=\Ò £½£K’:æ£øß¥>I¥|ª¾¿Nç 7a æ³zŸF£/4<ÒŸµaè}Þ(,Ø•ÏOÖøš€çÃt›L¬»Š„û—qIQ8±¯>7¾²©î ¢qõäs3ü*öO|—ű1™òÑ•ö5ôDu^D;µõ扦Œó.sά4~ÅÁàý -ÎU~Ã{_ÿ•½÷=GL:³-,'㛑÷oÅ^w:«h¾œôjuá©•ïO¿¯,`7à‰X+öøÿSYb2™?1""ÂßÊÔ— 798Ô]ΘÁõb׼ͻ6ýµ%&¦‚©æ˜“$å ãÒ£vàE¥ì¥Åäõ÷ÞäÜù|òáû^=ýì*µg¥åiΜ7\ƒÄ§0Ób|cFV5àðxnN,„FN-Ú"$%ÅCÄBia‘Ø8 ![f¦×å]&l5|_X$¢©'M )XmÙ³På¥eâc ”å&9ÚŒíqL¬¬ÕÎ}[·v3þ™»äÿxrgëw2ó`Zëýú¬Î€ìœm>7ù;wÎü3Sbã”Ì­G rqKMž÷îé³Bº¬‰ÛzKU^,`9¥ôGË—•"4T =íE–úÌ#„98GΟ¥‘ñ4þ[=bÀrˆOÐQþXQ>( $ˆDlñ“+7’+HDÖ¶¢Ô” kNRSÓµñ»uëÄ’Q$(/-eyªÓnOß#Ž]Ë5¹UM¬­­')âÈêfÖÖÖú²,YBf¨ÞTmþ¦v^=»Õ“† ЄÆ,^Ù‰Íx„ñf”A§=9þ§½t·Çʵ¾Î¦\P÷*…µðMl¤¦8€4|”  -óõ;.=ûë—:z­1á†ú/ ;# Jó·nYµnŸ“)'4¦¦ög±R aýëfj½h‰Ç*A`—”v¾¿þñ6kíì=é”ffÕ!;*NOo²ÉO‡åÛmõ(éÕP”–Zd“5[ì· >ºP™ñsÓ•¥¥d#] !1E9Q<æäˆ›¢ÀÀ¡²äðÙÕZÄŸœ"”ÿ_Zâk¢ï´5ЀG@ÂfÈÅ ÊÎÊJF\lŒ ‘ÆŽ ;“)yÕ6ÑÉn|vô£¦Þ]~fè’ý»ŒS!Rk+*êè¬ûA°Í¯ì½ï9j+i!ª‘9ˆD®!k‡I(÷³UÛÜR}:;ÝåMU+Yvï¨áÿ°S<ûZñ˲T]] `²ÖÇûôñ¥½^—Ÿdmm=s” H·¶¶ž®NFnrÆ{sQ'•=}T§=ÇÚÚzþ8)€Š„„b Œ]i¯E³‰Ë|Ä(_YþykÓs¯~l”ÆV÷ª—Ýô9(é¶í‚­®±äù…r˜§îl¼µþcÚ ß ~f{Oî‡UW"ïî¾ù|¸¡¹äùißp¶ëá#±éÀmG2®•òââžB*|Œ º >f°uïmk>hùøîÕù½7ŠÙ…Wyg—ï73‹Äpr"÷ìûê.!'f±N][yÇçØ_)¥WãV0©Íß§‡ùΔ qtM;ûí1Ûm½ñÛ–l ¶ µ–gÝ?tïe+tÜ=pÌJÉa¤Ñ°Ð¥Á¢SšNröÛªbÆn~ƾòz\Ä¡]1Ü—ØŸq}çl³;[ϸÍÔ: n¸fk×8rÅ©Wâ+%(½Q~Éeµüž æv'0jÞ„ùzùg”kȳgÏžÅÆÅ={öìÙ³Ó %º‹bôƒ‹ûu„-Š(!ƇŠ),JòÓž\Ü:Uª«ú±å ×?Ÿyò_y"Y¥P(·–ˆJD(ƒˆ°îÊ€°ÄÌ‚¢ÜWÎo1–üEJþžòû¡ã•Bù‚È5ÒžÉJºÏ¸é ©ÎøP1…ë®0Ù¿ ûû_€¸ã= …¹F`ä¦D å}Àô~øï®¬ÊJòRcήÕc{Ññ¯f ö.dì•^Tœ—x~©*»û->+n¾ÿ¼÷?¢˜Þ]õ# ìÓ6}Ý*¡§sMM­=ãÄ×®Ÿ&âVžk…£7Í7›:oÛ ™åöSøAbâ,ÙGÎæû ¦ÎÔÅpðñ¡—ˆ¢ "iþ3 ÖÜùXdm```© †Xy:KÄnµžaîpàíøíë ¸Ñ¢ˆò—ò!.ÈÛûà­b¡)+vÍ"³„çlÇýc¢oyøÍŽeÐà3ó9»Õ\©þÑé€[EF«}çþÙ-ø_Ë»¨ƒÞÞÞÞ—S©UϽ½½½ƒãÙÜÙŽòÛ1ÒÈP@ÉÐPö»¼WEû9»y‡×(šlÚç¨2Èifï£gÚ(=wŸ{®ÕhÎqŒ€îBëÑì{J#—íuÒ•›è¾g±roí¢Aé?ˆ ò¤DEä7ttÔåŦTJIIGj©dÜ-jìè¨Ë \úφûõÀ&‡Çá°À`Nt‚Ó!›á¿¥¥7ˆêZÃ3"nå×·µV¥Ü‰©ÐÒŠE”¿”ºW7mò¹]$55E^I¡PÞå$<ˆ:½T±ËFÚÔëFBvaQö“Mº=½]r-½¨ éØLáþFüs)”X«#^åÇÎ’Ò[ù2·¨ +ñ®ß|U°yþ¡ÏsKÊ(JYi)…rÙšÙ;Qmñ‰¨”¼·os_F9hñ€š{,¥à°ý’ë鯂fw¸™•}Ó^¡¿‰ÿ©? ¥—7¯ß³ßÓ%(8'LÖÃ#éQ!l´„ Oèƒ7Ös½™Rð&õ–³& J ù­¨ˆ¿žK¨}q= àVjcçŸä ›n§俸ºj$ؖ䱫OF¾Ì-*ÈŒ¿¹ÛR‰€¬O6ªït.&5¿(/åéíÃë&It5Í¢OÄ0‘Ò‰œ£Æþa05 'ó14Tev]¯üu6{©³£®]9u,ô €¬Œ4Ûh~%ˆöÞi›&>áé…yIUñÝ;zLpe<Ь3ô½²L"íAbÒÜ·v© 4±‰Jhò¦]‹ @æ°gã8öƒ?ƒÒÈ ²s©Àð+*ÕÕ×ðóóÓðJ v_ }y;ÈÃD@yx5sŒ÷åUbwbZúùά:ât<­}0R€‚Â~~þö¦FëGcS#™LF‹"Êß •J ‰ðñÉA77·à䎞ÿrOÛvÔaB¾²Ó'@Ã}Ÿ5¾Çv_JÀ ‘¥„ü)´%°_µuÃ邈ˆ@§ôë’̵±·nÆ>:šx5ÝÑÜÈåQux2ž›ÌÙœ²ßÞ! ¯óè1LÄt"æh€±ÿTÊããJ'npÒIK`õÈØe¹f…U¡oòR,áɶu§ ]>úH·½@m„¯ÛÁ }W“Hâì<1:hRsCý†]³ëŸÌniFL´ýQð‘#ÁË 8æø‘#gbiCØ,•”ó6¸uœƒ½ôÊÂnÜÙq2!ï€Éd2^†Ýʯ§C}òèwçÕ†Bèsœ˜þ¯%üwN†i;ž¸¹¾2ÒoSЫÆo…‚2˜ÝSšÝ@‹"Ê߈œý•Wö­EW^-FvD àh4ú×ÿT=Üc×·+‚¾ŠH s:(gç¨\Á´7ƒÊt"•J*$ 0uo)­+v¿Èj­jÛ©ôî@¿ðÎ5ßuÝeA'/@Ë—#ßø? n19ζï‰$}ö™>iTFW‘À`0ƒRBþÚjjšHÝygñUI&Ì;ýz ˆ<ÀÍÅ }"ªŽé·ñªÄ¦Y®' \™m%÷¯r Hmè£>ÞqLä0‰D„t"æúû¯‡”ÿ¸e¹ýÛ‡qu–޽d‰²Ϋ¯”ËYí8°ëÖ¡ê±+Bó/]ö]ŸNgÃfJ7äŸçdy¸&O=ë"T½kÅÆÒ¯Ü1K“n]Oàï0pœ,II¾u=¢!¸NcþC¶EÕ1‡ Çn>íì<@}C=àS¡¦ÓéÀg°i¯EÍ¡õ^¯‡YxµÍæd••zb Ê¥¡¡žÄÍÝ9ÇÃÍS__‡E”¿”ò{[l[[™ÓžäúàG £klŽ€ÿÌ,„ \ƒ¯^>â É9ˆ˜Í Mítèè vE„Çã€Õö»Úo%㈖œŒìБús¶…½û²•Úådæî¿P½è𣅧ò¿÷¾'þ ¶®@@@@Êæ\BÂSï)D}ö™~ès0JÈÿÏKrmÈ####=mmíe×jõ‰¬:ZÞ5—iš*š† ¶Ýÿ ;e‹ÓôÎönŸôùñãGAA —°0'@MÍä0‘Ò‰œ£¾Çþë!3O;¹®ßz£”Èê/3›ŸÓFÉJNzvývbðkký–kµí½Çÿ]öÞÁêOàñ8ŒˆHç¾åµi[9%ä‡úc‰Œ‹o ¡ÍU\k+d1X:µ££ƒ lï#F((¥=3=oÙ,¥—!¥$U CñÔ o †E”¿‘–âçÑ1¯?ýæV51צˆ «›Y[k½‹¿W^ZÊ€qSv×O2yTßXýÅ.Ó 00¼øÒ©ÔçýŠ‘âôô°0Y㙯Ê?K€’žQ ÐÚ r­g׿£2éíuïÒRJÛ|cqx,È2CõÆhó7µóêÙ­žtžmdýHü@VbBƒ­é/¿ÖGÍ£­Õ¡=îY2­¸AŸÆ} ƒ¤Ï7qHN£„ü¯(JMiK-ÃIj-­ZK6ZpÝv³>ލÏkHªã³ ›Wsý^Ò›Z Ñ«ªXE¾oúÌKJ¬[9ËrG@Çs>£IfQâó*ä0‘Òé—À.Ü?åi‰Øâ'WŠF™²vZ!eó>{ÿ¼j¦Ö‹tdLL_òõ¨üo¢½Ãào³ÖNUÜJ 43«ª««¤MÖút,aÒ¹A<ÿô¢É'++[Aƒ…æªwZ‡íÓA®½2ó †ÓÔ?î;'@ùíÝGª&ïºzÊIþ¹÷˜z€öÖVÀû'w(F‡C<†EG¼ ~#t”¾£¹!<..îÄ,A¥WãââÎ-’ÊMŸ£5Sö\ =í64Ùëð“f´(¢ €à$g???G"€˜±›ŸŸŸí(ÔÜ=p,¹Šk¤Ñ°ÜÁ/{¸fä$%Ô´·¼MœM†­v8ì¬R²ñtŸ.”ws³ÃÁ€Üë'Ÿro8pôèÑc'‚.†Å?ðÐDìÛ·FÚó^eÙ‰ý¶Üçf›m¹Oך©Íþ>—ÁNü¯¥>d³ƒoX‰ˆéÊ5ó†5=9¹zÕrd}ö™6$} !:ýi%äO¡=f»­whÃØmÁ§Ø)Ö$^»÷²±| !ªŽžR3|ŽË¾Àc®Úu!>K|ž²fú¦Ïæhïeþ‘%äI çªCÆ5'^3‘ÃDJ'ûpÿ”§ÉѵLØyRCÿ² ¢F.~¾;ìGu$]qÛr¹òÇ'¸ÿ Ú;`µm7o#Sá½êH@ù̓§Ò?òªO”Nò:œÜé½±²² ëvðù­áNÂáAw œ( G÷ÃS§þ€Ån('***¹¹¹??^’ Œ”­º˜ÒÆ/--@¯.¦4ÐQ!*ü†°kZ3³½?°ÿ!(®Žu¾¾b¶jp¨®û÷œu‘‹ò¢«è ((((ŸÐðL¾¿štv¶†'Û)¤ï„ ©=QU úõ£ôòžÇ4}ñ’BïEAù8n2'ð\‚–¼© IDAT¬/¨~Sˆò}¼‹Á¡l¹ÙÝFGŽŸQ[˜tÁoï½üPw 9aAî:Æ 1ÌyÚ¾)³]ûWjrÖ<ðu:”Xÿ}éCé ŸºõF§Ù£exÚ+ÒÃï=õâ€{Ä‚-hKq¶—gFœØPþQK<]-4DheÏ/ïõ½™ßÂ.Lœø„UV#6Åõõ -ì¼!DrNÀé%5þó·F7€æ†ð£3xLFGSeîƒãÞ‡ŸýÀÄ1¼#ýÎ)Ùnì“À^ˆŸâ¼mù%Q.FcYÖ݃;μj H­wwœ¬"‚o,Nº´o÷ÍÜvѹA·× ïþíúÛ#ê9L”¬í¹Cä–‡31LD;¬œí™óŽ’QYr“A®ç^ÃCëôŠOûxg€Ò´×1d“õocÂy“Ko%¢ÿJS#6Œþ¤¥øK&‹»þÃÈ›9^2¼|¯wˆ. ™+ÙÃçëÍËoWÍv:5¡ÐÅ94£ç>pä9¹ùÌ¥?7 }Ã+k~h¹añŵÞÙ, ·Æ$— ª²åEqo„$70Ùù%+Nßbi I¦—æ>Ø}ãQ^ûÀÓƒöPP ¡éëV =]=we1V~þžãë§Å­¾óÞž¶±ù·ä“;ɉ³d9›¿ž:S÷Xâpðñ1ÞAxmQΞjÓ«:üI2OOaGÝÓœ¬0oOa{Íý ¿$™ð¹ËÒjû#„eµ}¾ÑoäR¯ùÌàõs¢)ÅÙ^»ÖéÛlm‘´r±#Üsœy¯œsÄòÃû–¥šîJbpLpòW´séÎ<αN‡¼—d.8ž‡|F¨…§»bâ»ÍE ùù{ޏ™?_y³ *žúVµ¦6ôp\dmw±/ ëtr›ÍÓg~i}My¿š¶ÙÃZ—˜—Yù-¡üLÇ)A6ëÕá$gï»h;ùæ«q+ϵÂ÷ç»”â†Ù<`?%zÃýšÐ³ž°î\Ž1ÎVyo€>Ãü!ùDAù‘ š Ó5ó¹*ªº~"™L=»z~ ˆhmµ¯K dÖ~.§<^àý´ÙJ”§ vÆ"h‰Wc1±¼K¥5qWg¦t6y9U§žœ\ž@`äu ¡«9\ÏüM» <~ë\]|Ég%Dn†ÏDfàÉM>à•ô—íž©a}1 y@Œ0Êy‘zÑ%Ÿíe¤qλ ç„•ô~8k@û(ÿ¸ÔæoݸpŒ GãÛ¤S—Ê:°âë©,̦Øé)L63DŒŒ¼ÜÖŽ‘­å¯Ÿ7´wà…X/šªøÓ/(-o ß2MÅ„ «º5#¶x®®><“Co˜PBìÔú =3ùU[ëØÖÂçÏ?´µY §’ˆ³áo[ R³;çÜšâã²Öêh"žréè I¼žÁNÉŠvÿ.”è!È8:×õµ9‚0¤žBiRÀb0€ÁâøÕT¥!„¦R•:´:áDV];@üãT’ýP!HCN<¢w¶ÙoK‹Œ,iÈÍÈiã @}B|Îê1£ áO¸tu$âo¤3ÞÝÞ¸$¦çÂÈöZ¶ûͧ®žÝqÑ1¦¬ºDlMæëzþGPühÉÖx,`I²ãÌ÷ZNÜ›@At‰ø8 8ôäüF€Æ”×:‚l‹ÍŸKñÓ%žIXÀeÇÏØ»P;qO¸M­t:"OG7Áœ/='ê/‹ (ìúùP˜Ä9aúhŽÆì‡m ?5ñƒ‘¾¿dõîmGé-µé/ Ê€ˆaã’D Òt¿´¶½’Š'°{ñõ´ÿ€ò‚Éüâ'Êïì?.³Ú5h‘­4íÑ…£'bJ¨@ à%fù^6¢ž£òšx<žNG€h,Š,úVìÜ:ÎÁ^zea7îì8™÷Õ¶¢6T•w®/¿ýfþPy€rœ˜þ¯%üwN†i;ž¸¹¾2ÒoSºõûa¼Ü¹ðÁN"½µÛòÈ"®rÐêªFà•1Ù¼{'fíæ˜öŽ×ãiÀk‰§v°›+`v–¥æ÷É0Êéž½—YþÂ`»‹¥¢¨GÀA7›m‚k¬©AQضÔ@ùÕG‹ÏOU?‘õŽÉd¼ »•_O‡úäÑïΫ …Ðç,8íqzïcOvMÞ#é1ÌWýJV—NÉdàpx€†Ø×åÊŠ˜\~]Éì(´û0pºë@“Çã>ÆÇ/ÕIÒQNŽf?ÄŠØÚî@l‚sP2Іm¼t}ySsešŸÿKäJ•@øT©Òh4žm{Ñû7)¿á¼œõ­*>þ½ÎHl¢ Î°¤¨—t 6T–ömIËÁAîþ6O €`·‰h2ˆõü€ÖZù¡sJ¢üqf¾ÑäþéqÀç…‹ù.7é©¥GYùÆb †MZ&ž¾%°€çK÷Xy}µš§wzö#+“r„µœÝÕJ4øI©˜•—¶E^#ím“ŽOÊn÷tŠÃb›ÓÓ8'âi´ÁØòß[âŸ`qqðÍ:Æú‚ Qá/ö™ÆÆ...Öw..®†Æ€–¼»{Ö-œ6uÖºùÃÝÝgF{wÝÕÚÚÚÚÚzî¬éNwª€N§cq6Åö4Ùq&ÆZâ½._âПmQuÌañ›O?½T†˜lÙ¿P¹Ë “  ðlÚkQsh½×ëaV#^m³9Yce¥‡v倀ª‰Ù(ŽÖ6:€€ `}}ÏÐɦ£„€Im,‰{U;VO ¡º/,ÌÍò%",RUUÍ&Ȇ†zog[‡$*ÆWYUÅÆi7ÌŽªÄ—…ò*ʃ1¶3"“Në|—Ðt"‘PßPÏøô‚éÙUVÑÒl|ù²û¨2$}"†ùàpx:e"UÙéÕÆ«* ×(Îxþãšb!x<žÚ¥ä¸ø•Q:êY ÉìW×Q*K?£º™,±^7ÎÁÌ|΂…vNûcÞ³Jb¥J£Ñº+UG£±í†#zè{ã—_«££2JgdjÜ *€âÒ‹?ã … ²_yQ‰ùãââBœGqšî‹»°TÑdëùÁ]Ëÿˆwýb²k°yCô̘ éúÅdÔÅ„õ‚oM:éìªL˜¶zëåÂNää´ZŠ_ô¨Ì1ÈLÉÊËËŒ¯ »üßù©c”iím ^>Áæ¦îù:qMó1Ã%»šõõu8>rç‹_@¤¾ö›o³>ЛMdõ¤Æiò€ ­Ëú‚ Qá/ö™ÒìlîñÿŒâ'ÄŒµ*²³0²V¦kÊâ©õÕÕ t¼/,ÑÔ“&¬¶ìY¨F€òÒ2ñ1Ê‚‚r“mÆr WÖjç¾­Û»sõ9/Guõ³u4nm3ÓÑ"’ ÚŒ) 9Ùo á¹ÿª—rš‹ÁÒ©TÀ`ÙÔ[L*ƒAûìÃd2™Tãó“ÉdtÐéŸL&“ñtæ#ìÇsçдrwš?ŠLâןg,œ’ò€.kâ¶ÞR• XN)ýÑòe¥eÌ”Ø8%sëQ‚\ÜR“çýƒ{ú¬Míi/²Ôg.!ÌÁ!8rþ,Œ§ñßœ ÂrˆOÐQþXQþ«7³ÔÖiL6'a±ÜŠÿLP*,z Б‘’«9}¶2?‡˜Îc‰Œôîã¢#Ô„rr ºý#é1ÌþÁ)¦ÈOÀâøÇTn-}×¹åôCz,uø’qÃÞdg±=J¥ïðJË‹±¡±“Fµååu*™×®ck©U—4(J&à‰ÂÂD‡Ã~ªº+ÕÒÂ"1=CU~"‡èØI£è……5ìEôPSQÉ«>NC”,,#%ˆë%Y%ñqt;+ÍœØ$ÖBñw7]m>cw4›Q¹³õ;™y0­õþF}›3%ˆ&ƒXÏÿêé¤ÑcG!žãÕ‹ËOzvãï žF=N£SKúÃYZʹ}Do¹·Þro½åýó©áǽ­C;˘‚”P1å MÒß¿Ä"ïøû+åššó0©Íß§‡ßü¼–] ðuM ff{#"zϦ®G¤ÿôOSrMa®S÷>G Ž^ê±Î\]‚‹^_üâ’ßÞÛymDYg{%FuVäq߀ø Öz!üÄÑöïlŸy×›>1Lôçš½vK휻æ5öÇҌ׸ Ýó<Ž_á ÑÜÆ%Jj/-x¸ïzdz—æUÌvŸ›\{`×þëè](}fœg´I‚ñöò57×—/[kpTðð¼@¢Kˆßøæf^Q®¶Ò”kþ{/et©tØŠ§Vžµú»·~!0aÛé=ÿ°¶ÅÓ[(©¼6]ÈjE¬TqÒFn›—OV&Ó+3ïÚ”ü‘Mâs½-·ow+MlN9ºÌ5¤‚uþÒå/®nÌÈuw¬ öÌp ïmÙ¢Étÿì8‚ɰ¹2e€(m>`3óÓtm!ÇöìΛi=ÃN]L˜@­*~}òÒýè*6 üÇP——ªUÝ·!­)u°¿"¬ù¦þW‚¹pšKKÙ'/FEWöÔÏ×5*Ñ{½;/ÁNrðp¬8¹0¬³g=b¶“}ùqçxÖD’¨Ãöé­Ç~ÏûÔ6ïZ?óSs½5äÔúݹåqK·©É‘Ú)oã]¿—ÔyÿÏä9îjm·ÿÝô–¥ Œ²Ås} ~ÚûÜHŸó‘¹âââ¾êëë³¾|ñ’ê­ÿÀk²Sר!g»þ¶±ÆÍ9ÛýËZP!*üB}é?  üþ|wÿáOF~A„eí²‘ßyŸ#J_PïÑdü&–láÞ ‚¼]ÀA¾£‡Ól¬ßO 0‰bwƯô|ü­“.þOü–ãˆà$3ó m ~*u¦Zt$ø=Êký!Â_H¿ú½­_"˜©be,@Õ¬/¨þ! Êoõõ“þ¥×BïÞ¹sçö­ë~“ª.ÜÿÕ#;܆»"cîž]òà_Õy€ßóqüáV9vÚ°!$à:‚õå ÿz›ÀñIpóÑ[)•tq>F+¥’Ê@…¨ðY ó(ÿþÊù”?ŸÝÎ=mÿ}w]À`±LÃܦíKø9%¹ðŽ˜ë²ÚRK†»½"óþ ÿs¯>2û!Ä ™¸ÖÃ~’’'£‰ò:ô˜ÏùÔ&®ás=œg’àì¨|äœôéÒŒìÂÀà%’1[¦ïKÔ|(͉²¨±ó{\>¨¡þ š:©t~ mÄÚk«×/¿JùÑýÞaö §ÛË)«V]¯ø%±¯‚¿“ö»Swu^V@Pžhêa*/Çì-+ºp1òîû_£¤ß¢š‘™«‘Œ$‰VQ”xáYbÿÐqó5ÔÉŒ²ì~—RòÛ0ü“ç™9j‹Š˜MÕe÷®‡ŸËk>kÅ ýb·È$ph[„ÚsŸÚzéÚïxÿ`xåÌ­6(>çîýš%4œ½h•¦¤‰ÑTS|ûÖùSùlNU°ŠX?žÜÕ4jL 4¹Æî6¾óûÞµ³>óç]Ô÷—#5m³‡µ.1/³/-›·§mlþ-ùZ.`ºf>WEï÷ž‹Zxº+&n°Û\ÄŸ¿çˆ›ùó•7Y>*žúVµ¦ö¼Ö§ ÈÚîb)^@×éä6›§ÏüÒúž!¶üºòYºqÖ"ë;Ç竼NýRŸ’gÉ>r6=/t¦î±Ä4ààãc44 5ƒ¹x4xˆ=%-ME…Äa8{ k32ñSŸ{ ë+“žtgKòô~,{ü”0y‰<ßg)A0];”ÜSXùæÚu0s*ÐSXñæÒU˜á2Tðsáù+`îú¥ðìÑnIògˆwÔ•VƒX…eµTø¡éëV =]=we1V~þžãë§Å­¾ƒ\Û‹[y®¾ï<ߥ7Ìþàû)Ñî³}F_Ò¾Á ÔÿI%¹¨ÙnÍ8»qá£r‚‚åÖm«Æ9ìŠoé»P~ÚÒ‰Ug6<­Å‰ÏÚufáÄ;©áëáÃVÏ +çnïç³4ÝÂ7¹³ L6Y>›«rPî C† yÌþbËß:¢Ÿ–øßÑ‘ž‹ut •™=oå¹ÞŠç‰ßÉ«åXy#ËóFÆú¥þ¦-Û_ˆˆ¦“.Ô7 äAmæÜ=æïgüû–AºÖ^áíÙ Þïzsçì0+[x»’)¡n¯Õì}ýI#Vb²å¿¦Ê·ó2€A’-I…X U)³÷«?º[­§èâßgöL øØšöžx؈•œèpõŸQ×óÙ^œX¹`ï„vÝ÷38û§­Ž]SyàC5w1–jŒówÙù +n°Îc•± ™V‘rÕoÏ•ÌF`#þIÁô[B¶ØŸL£÷ÊwQ[~üÒ³]¿ C¿3m¹è#·6+°wDÐÐQÏ sÎùHȹˆåÄ|ºµ· pþÓüº/üÐj“_å󙉑¯D(?©|2ZëªXŒÂ’9j‰§v²¹Å‰ LÃaÁœè„µ^‹©kާ!äžÈ9DY€«§¤ŽþžÂ)«9ä³@55·Cy¼ÌgmýòöÔ×#‡ ÷¾oKLåc1B¬§ðmËÃx}km‰žÂ7ÍaÀ`¡¶dOa~ó½(˜l£-ÕS˜×|û>ÚjK.¼Ð* &öY?§•ZQ B}"÷ÄyR¢"ò:òbS*­¤$ߩđZ*᫊™Kÿa2™Ð×gĆ_\’àWPȺUÜÄÈŠ«š­©ñ%}f4××Sù›[¨L&­¹™Ú\_Ox—t&+ú}Ú2“³K¥!¹€¤ig'ûèÄ=ùr½¤IÁ*bvÃÎGbëfmÎ8sîv9+9jÖ–™šª<ŒŠÂ¸ý—¢^5F\ÝÒs¦–?T×Ѹڟ|ªòÐËß<ñ½ò8“íá(’FF‚dvOºb„'¸y¹Lª{qf§wh1+n°vƒã¤adzeFÈ‘}çÓêAocØ?”ãú ïûEÊ:Øx¹{Õ¹\fˆþjWÇÉÃÈôŠÔ›‡ý®¿nb¿–íæ5f dn>Rsù\ñeÛ‘òko¬ýè{CfÅʱB)gvx‡ÓÙDÄ.ñ_Â9Åû¶ÅìuTT[À÷&‡é¥EÄTP1yb ¢` v¡ >±̧"b‹Ø-¢ (‚ Ò%ÝÝÃ0ñýAˆ8C|÷·X‹™=ûî}ιgîœ}2zñºG dígpk‰ IDATÌsÞd­'M¬Ëþüâš÷ðBfÈøµ›—«‰`k2‚/=ù6ŸÉ6ï­ÙÔAÊKiÜ[Ê­«¼[ï}£®ìcè;Ÿ˜Rƒµ*ß~ …yySýr©4€ÔØÜ’‰‚œžuýv;þJ*Þ¼*if@s\bËRP²ÊUUÆÅÎM­ox˜¼l…ŠÒÃ’ôÆÆ:7…Ê`±˜*ƒRߨrÛÒr(úÂA©PöK‡Ž{C}ahø“q…£Wj}«!TJ5·žJg±z*£žBa÷“9pôÛú’¶>éŽÓ¬9‡3Ç,š, ¼“7¸h&ìýÇ|ºýÕÆöØj'!€€¼Æ²€²š,‰£”¾@I zù1§‡ÇêÈÙ^ô÷÷÷{ìëé:[µõŽ`ä8MHô¼Ûõ“R@@ ©¾®µ×E?¸ZqÇ-ŒŒV²½+ ¯«˜“š>M®_Z?ñ£Ì#<ñ ¡¶¾ï\ž…onÇÜwËQüQ`Ã"÷#–¥§7° PØàµtûÓr„¬¤(\]ӹߙL¦ã”¼ùìµÿC/ç)rßu–t¾G=ä÷×äÎÔ•–ÒTõõÉNl”¶œ™Ü!”<ø÷H½ÏÓ‡ž7þ´Ã#„ …!WÇ5 8²ºŽ2%õkK!#²ÿ¬2Nö¾žÐ}sIÒÀ’´Êu·SŒÈú)šxàÒÛh-}ýÐ×ãÿÕŒÜg®„—þæ…²q7Mv>°-¸¸µÃ¥¿y‘\üýf.Ç/ÓÆï›,;Pe7(P03%¼ LioKO'ºo…ÃÑ…Õ6cpÀkâ¸Y9öÐÒ9Vk.V˜¹,Ž`4ÄŠOžT^>wóÈ+Ö8^Ó5Û4’-™9×ñ&uÎÎÅjIN[1«ú²Õœ™·²‹o¯ý׿åÇE~ª9×½ Vÿl{/µªÅ;[Gœÿa±Êúú¼zz<áaÉ 6}Í"æ£ æÙ:_I×Õàà5[³Y5ÙcÅÜÙ¶nŸäׯšÈÃ)Fk¶¨%Y6kæ’ÝO²[k]—yÿ¶ÞûHcqPXFv§¹'™Á¶gcË€,%"\ßÀéY×_·ã¯¤ìëåwù ŽKCMŒ’SZ À/ÈǪ®§)Þg;L¦º®L€W*£v_£Úî_÷ôغ :Y[o~myúW%eÓ4äE%äG”eùc»¯©yo#’²;ý^U¾ßq³qù¿‡^:|uDÒ߸®Î®–0½røPÀ¡ïm\4WšÐ…bù‰ñ™¥—‚l éµëÔC¡-RjŒ¿N#@J\2•D•ò0Ïd (AQ.‹Õ ¹š­ çÁÞÅÊ qÁÿgGþ${ÛÏ÷ņ[vºó­³ÂnÐÔ5óh7k`n—W#<Gžo¦èÖŠ…^©´•n-,2ïmÛ’Õ?éÿýõ“Ûxú„‚ç6-ïØ–ç›ƒËߦïÜeSêµm{xº„¨7$t§Ì˜j2i¬bÕã}Oò8h!BÒÚ¼nÕ>®áGn4Øð¬­Ýÿý=ê;Q“{3âæ©$·]wž3êÊ^% é&®]§ê¶æ})AaÖ¦m‹ÓVy%Ñx-?Þ¤OËzuÔùd<@pòÊÙ´Ûk‚j`V·É*÷ )¨HýšMS(“R©N:“]ßò%h!% åbRªÕIg²)ÍÙE­a‰˜”JMÒ¹*¨o#Óv›É@.Ç–Óÿ;êf&M.&l½¾x3, çC\ór !€Rieå²p¯¤š&¨ {K´U‚8fbäjã¨ÆÌÈÈJêÄF¼ @ZY¹üÓ¥ (Áo¿l·V%Cj [GµEEyƒ‚Á’ÕÕ¥À¯eÙJŽßågéõ_c’iúBìqJüÔ‡}LZ¥§{£¯/ñ0 Ç+,Ì‹eG@àùu F˜ë«•¢<¾ËéY×O·ãï…8ÍiíÖ¡ôÌ0ÿ­¾ùt"Ç`0q‚âÚÊ~zU3G>µuÖ"!Þ7ßUb'LÙa^¼âQ! Y¤1æzÄú¤`ê8¹ß—ÞÀ«³ÙJ2øò‰7U8%ãù»&ç-}šÍ~"÷¥[0D¹ÑÖ‡ç†y¼ëó*©Îñƒ½½IË‹‚µSR ïêò.æ—ÝÛ¸ðxÜ9Gn™ÒG¢&8  .óƒÿ7£êêê?™!vôæØµæÚÒ¢ÖtE÷¾Z«(TêÚÛË¿ÜíRÐ>Çí=J©`µt%Qü¶Oôí O¶0º͸h³ôf>B3v>Âf‹Í'bßïû¯¨Ÿ]‚Õ3÷áBÛzVÀšˆ{¹×5UàÙ§–Ï:Ý£¾Ó¹&_ûu1+?àà²@w.£±‰ÛÒÝZ‹Õ!·Áä±Ù~ûbó˜Å÷ß/¼h¦å•ô ÞÏÙô%ŽWÚlë^dó¿A ÚK—ʾڷ§¨ÃC ‹Tµ>€Éb¶t*`±x&£µwÁ c±xÀbqíÂv°X¼°Ñ1]:` 9Äþ)©A2ÌlR]à†Ü"Æ·Bf  àp¸v!NÇá9¶q8œ¤å¾+[€ÅÉíÀÎŽXE Yª›.ßX^O)‹;}êK»¼ý¾3Y-Þ{•x6T……å,Ñ×D> ë«D¾ié.~zÒKzź3Ö⌂Øw·=½ÞæÒ‡ÃÑé­¿6 ™áÛrôcÞ; »Ì{Þ×o;6’h5µÕì¼\ò›vÌ]w÷ý3ÏøâŠ.œôÇíø›izñŸ»Ž$3jêþe°Þ+…ÖLÇb0 ‘OfDpkãè ·æ°q…q{Ó*™E©‹wij=*¤”E¤6¡Ü<Ôˆ÷»³Ò¸5GŽ/ wI/eÅ,u©ý4û3[UzCIeë4Тàè´‰RŠý?twþ´f-ÓéôÜ»›m¯çu+^9ñªÔ¸ÑETè]{¥oð(7Qoˆ ø\@˜âºYäîVŸ4`±AF"ádÝzvˆúåE6—Ù,Å!ÊÕyùðÍ@ç/Éèz½5°h¥a‘Æ©¯½êê¾÷kTÙ§úÙ%êº:u‘÷Û¦Õ³+O~ã‡-³Ž®?U?ç²mÔn›äù玾ðwÏBý5ŒæÍ*ýoúÖç?F[jrMm àÛ̈Ž-†ïïQ¿ñ­&CÖ/›Ã$ nj@ˆ~W ‚‚‚555½âðxƒÑZJ “@ ð*7äIxWÁ¢×ç}üR½~”:Uèë‹JŠŸö·jõ;~lÒ[d©ÑÒ@Fdgmr2!#ˆ§×–—×2[º ²²ÄF›j qÜ2Ó\¯ì6åç”÷âÂB ½±*BBrãìðt÷`ï}àãå¢U×õdXºnÇ_ CBcã?ÚÜ x©á² eÕ…¬´ôPéá ”y¸¹Æ›h`c¾fÔ”U+«MÆ!¢ÒHe¥Âòìv#é!ë=¿dsöògRSXT¥4ÂTÁ”õµTŠŠÚ&Iˆÿcc·cáÊͺ­E ¤o0r$™€Çó 3ÔVÊÉíûî­ýµÿ;êüO¶ãøClcá盇2š9 ªsS‹êD¾æ÷yö8û{LoÙÉóhˆ9Ô?ß<õð'¨ÎNʯjHÍk-yj°÷qƒ­Û¯>!6•$¹zÒíøÁw”<ÚDb‹óåÅâØŠdÿCŸWB‡]kn‡¬‚Ô³VË}‹@yÕíU¬fJe^ìó§âú/·Ý3Põ§¡¡’“Ñ~!‡òllYæ”÷îQá‘SO-+Žg?§¦ü“OùbÿclúÎooaÓ"ö´IüQxÀ4òGáÖa!? 7¨³:*³®g#Ì‹`3 2¾ÇB6 ÂeîbÞ.h?À¡sM†¢‡OË9ï¿å È,Kðßw$°m&wç{Ô þÀš\üääYµ-.7fqS‹ü÷»‡6ôJ˜èsøÅÇÓw·p3jr"½O=+€à«žc·»ùþÇ4Vå~ññxØ»þ5|>qWÞu©Ë^fqfØŸtÔ}ö|£å¶ÎÕºèK`âì)mš÷å]VíYÉ‹m¨H¹á[ôk7ùk 63H <ÛíÒº€s'‡nq½f-À(Mxqèh Çön}À¹3C·ö]JÆR‹"o»g6spTè=÷ü?[`4ÅúÚã›Ô‰¯ÉI)¨êô¤Í ã·™_zöt[[º*5k»ú½´®6#ÔëäËÊ–lžPß´Õû¡Ž’÷ùš‡%§¼W½¾|ÇÈÅãÆÜì{ûn‡ÍXÜUÞÙÀÖ{_Qp>i5£e º5ÛÌ¡éÙéS—ác:¦]'ÅuåSv‡ÕôÃíø{iüzn„Åþ#ùVY’{Ã'*šÒN_s^h{ŸÌÈOŒØó²„™áC¦:mY½Ä¬)Îöò-ø.àús£/õ‡WZ¶Ô'¦õ©çŽƒÉ{ì7lts!1ª‹SÏÞýØvxN}VNy55¥¬u¬±1Æ?;¶ïÁÓJscø~ì¦é[œoooÒÝü%”߆ºº::± eÀöIëlaqØÏï·¤åo„×ÔíºáÛ…nïz¹‡X?8»>š9§?¼üâSGøÏÏ?ß›(?MßoJOœ0Ã|\c„{`z#aÙ¨iÓŒ›:} \*&[FƒŸû½¯a«ÙÍå~¤ï‚”Á ¿±©æ§€°o³qÔœü–¼äÚý;·oßö½uã q©ï«´>ÚDùiú|;Pz·úð‘Ó4Ĉì…Ü*Z?~ D1i£´T¸9ivsùŸ :þ€ò×€Ž?  Ðñ”¿ ,™ÌË¢”Ô61Ùé ‘OœS_SSÇ`«ÙÍå~¤ný Ê_£®¦ò‡åìß„ì>fS]Ûvl5»¹üÏ¿„‚‚‚‚‚‚‚‚‚‚ÒSÐø¥§ ñ Êw`ÄõçÛ¯X8Vۇ´†     üŸÓoñÂ7l…W@€‹á7 Y{ÙÑO_ù?¼¼wž*7 Ò|Ÿù=¾²a ¹¿ü¢ ´#é𤰰ÐßI@kGXaaÞùéÝ^Eœ{¥°°ðXË[±®'Üþu?0_a@ÓŠòsL?_ø=Ñn£8éŠÛ|íMtJVFRä«‹ë …Úää±?~tÑäìg”[t'G…þN2-f;Õ³“Ù- 9©_¯¬ÍßOy투õ™§Ïïo 2ÓãùwlËA€[}Žë7î=¼wóü>»Q"-B¾¡swœºzçÁ½ëçþ]¬#„prÔ-Þ±rR’Éý£¤~Þ a¨ÉLïƒký~ã®õÖ*Üõônüä¾:±¯ˆ”¦;/Ô© ö¼ð¾ JÃ[»b[CJÜù×,s±ÞqÔ!ÀØãWïF6]6‹«´¬õ]å+·¥¡­ççµW›‘žÉA$§¯¶Æ½Ühã_BT·=¸gI¼õñH¦ÆBçY¬ë.˃‹qò–Ûw88 od{ùˆˆÎzsì³cžÏËñC-­ÎÈ›y#ëÞÒäï„mµéæñ “ÄC®Äv÷Õë;áè—%¾"ÚNS°~Ç/úUà5¦Ïu›–?Ï'­É=BDs£µž¾4¹ªƒPhĦY¼žWv•a”Íç웪úîb°ˆ²ºòð9£¥&…cu{ãFÑÇåÂs»U#¨¬±S̺zó@ÞÀjÞnóÂ%Jú|nz¿ÄUéa/Îú§¸SiêŽ7Î|23ªœèûzùAc¥³/€…Åâ°X 0™€·ÖmI³§ÓÙ˜¦þH 0Y:&ÉÏL4Xm_á1k*Ð\óÌÝyÏ£ôf@dÌ÷ß5OWJÛO•Yíÿi×pHõ˜4±µ HÐ\ròøUAVEj°çÎMÞÑõ¿`¢òæ…:UŸïž?ŸÀ©†Ô%½ºã›øYôkM5Y€_?G,^,ûÎë¹ÜF9`RkÊ[öÖGäÌT¼é^ÄA ÿó¤ *¨‰‘),›!‚tÁ¤gorëYiae³G(AxûËÙ¡drÿŸúëæ*‰Ôgzzùù—²x æ<4Ê^ä]’c¯:Ü]ƒ(ævÞB7Ï€‚KµDŽˆhOÙ»@M¤>û’÷ógELDRÇdëL5u>fIzÌ©a1õß;jȹ|ñùÓ"& •aÏ JšÐŸTÄœ.(YlÎpÿÛºêæê*‡2ö£„j"/í?XÀâ™ô¯Eôò-O+@ÎÆs×i[/Êϳ ¥Ž>·€¬kkïµÔá±ë]Œ…k¢®:ò2‡€‘»j½Ý8U2£4Ñïü‰[q5×Å\?xØ/‡Á¶ÚTtà!' ¾;ø­ÑÒï£6Þ7)ò¢™/øúT€ìÒÅšÑîn¦Òñ1+Ö-¯ÂO/{|öÔÃäzNŽøµm]9EA€›ØP\ɹ³ò` ›qpÔmâ?_Þäu~Ÿ[bì©üäW𦴙Í ÉEL AAÈæPÈý”ÍAC}ÙçOîÇ—é­PRl“dT2·5±’žûÌc `À×<жšd’tåj¾–þÎT *ÊFE±ÿ¤Õ7½I¶sPVzT’ÞW£ý2‰’ôòcå;YTŒU^Fn{ÐušlYi™¨¨(¾¹?rß-GñG ‹ÜX–žÞ€(ýLRRÚÓÙ3L†§¤´|=ˆ¦ÿ^q™Î÷ÁÕv…g–úÒSçW(ðLÛ}Æ~,WÌ…}ÇŸm;ï±ò݉-[¶\ŒønDL|ÑÁƒ³â½Üú×hLw;¼Lþg…ÄIëÖhãK[ÂA#÷ÚCCÓý¡€—œ4V€YSSÙçgÚ^JøÙs«ØÖ@ð$> -5 `~ýú‹‡®™9ËR®ÞJú1YxÝ9–ø—?Q9j}¼ù,¡Áñ«P¢¤gÔÔ••5)ëèò#8Qý2d2¹;G‘Ð4Ã~Z·ãüæ/ÂŽSä1”„Œ8y}.1 y¾„ôDdù]1qºr¥ þá '“Öà@lØ\‰ô}‡®ù*êh¡„.5 Åâ®]ž½ÃÇ«ZÓuštëœ*I- RäÆž[¿®2WÂ@Ù׫ïó,—†ª%·äoëQì12&“°w·,²Ù*ã0_@ùü)QYW‡@TG—/"<™9·VMŸ¾êfVÅÓmÓ§OŸ>½-x©É³dÂŽ¬u:¯à°À<V¬SLp_µÀfÓ•ŠIÛ k-dY³)\¶/¶q ‘´·…öÕ¦kä'MÄ¿ Jkoi÷Ô;FM´ä¬w´ÒÒY¸;Çß° õ¥x&®Ü¨ž|Ìaþ¢¾Ô™[­U8:’˜j7£æúªÅ æ;ÝÍ)¹¿å` …CŽØ:â˜xÓÁ׬ñˆUtøGÛËûÖSÊÓ¯´Ôdu±†¼RŽ…ÜOÙgå}ÿœçã!1p¢s—-¹uxõõ f“ÄZ›¿ÕÉ9Íjr"ârZåÙq?1eá÷"apö˜Ó“#+¯o6Ÿ)ƒç¤Å/ÈÕõ4¥Ñ{m†ÉTÕ—‘ùz6å°klý4‘H¤Óéx1U²üÍôf‘Püæàr«…;ý¥lløîlÛ~+‰Ò½!”^Q’?~ë†Q_B>¶ÄŠ:ºüPõáÁýo¯>‹œ¦>È Õ䆪×ç^ñv¿×z)%ùÕ­[·Þe|×Sõdó̹K6z\¹xâI*€¬ì |ÜþmðM_JÓÔÕÆðéê‰G„'vUÈÅo®ÞŽÈ-/Šo)E…ŠÈ÷)54jiDH" I ÑKŠj[~eqš=Þ6‚Pùððn¯«Ï“k9´¥ØÞÍÞžt^poãß"ù¹ÿßÿàdÙ˜“_Ù<ÈŒú°(˜„á‹É9P Øù3ìˆQºa×J»Ó¤¼Ú=ý5ŽWjÒz×mˆóàjVÁ[÷UA§Iµ‰{ÚA+Ín±ÕþŸ…ÅàêÂâ«k Ayôe²S»œÈÍd¶~5™,‚`‡Å· L:ÓÖìéà¨E Éï¬ÇK,IfÔ”½vȦ‹)gAXm™g2Y8 <âS¡µÎPä³€®RTPl—ÕÙæì IDAT8£­<Lƒß.¤Ó8þGG-šlª gWÈЉãëÞnËû)ï?‚Ãáŧíö4¦ŽD-Im×ììˆY’”£ìtÞ{ICCyü¹s±mrö9ú©Ä·–üÑäïyò–(=ròî%ȶ˩ìkrdsÐÃb±˜© Ïò©  F§äm—T„ @Ydš Û„†Ûîø±ÝYù£ SË*ZYŠß%$&PÌN‘ÖÌÀb‘†¨§³¢¸GàèôþXw<`¿¶¬ '"Â@QÑÒÒ2à7ÞqØ2ëèúSõs.ÛFí¶IžÿpîèËQƒ¶{¥¿éºU'9„øK6Ç5å›XÖ Põt«ÙáÏ-j´šrPb2¡%ˆ|—¢ÅvEÜg,àYrãùZéî“2Ð z††¨ ý˜ðMÆ5éhȵŒô¤c¦'’`äBû8j?y8nóI® ‚a4Óh´f@0×pÊ€É~ç{/¢˜Hh¡Ëü] º&45 lÜ<8g§M„¢ü|&LÝpÐåÈiíÖKy4¦,\¸p‚@`¸ÅÂ… ä ‡¢ÀY•ÑSõÈõM|£—®™Àiå× ¨¯/Û±{U\KG @ª­Þrß…„„èÂ#—¬nÅf¬€¼ÙÊÕ«WOSõ­V¯¶/Ó ÇìjHË'|šæ Û9;NfvNwê~äëÕeÓ[±ñŒ§¾q›ÞÞ¦QWì°ƒ­&CfâšÓTy1€$ ´å ‹€¤5cíÊYÃÈ’¸ÁÌ Âqq™]:b· ¼ÁòhK7æ–´nQPœÆ”_<^:5.«Ãº·ú’*¢Ö0)Q^^QŽSÉK˳„&Èq|:2ôÂ2N«uC7̡΂—Ò’“/¯*ä ù×Ã;DN„€à„ô ‡QÓÓ[{¦ó"":Ö3´¾~ŠêPÈ¥¥¼CGjŠ…¤$9rav¶¨ž±*?(¢?V‹‘]ÉA‘}µá^o☬·ï9ëµw(ÈÎÖÒ“"ä¦or§Žçà# °X,Ó}ŒÚóÄs‹I àœÐH#-ZFÆn1Å5œæŒPãFÁ&+WVÍ©&÷C6ÿ eæ}Uf)E"øtÕ%3 Ú'š22¶_ŠÍù©ûjè1Cup8<ÆXU…œ¢¶%ÑBsl-7-žë¤×6‚˜–ñQjø|en.c lLzL²íŸñgé¼p4ÄêŸožzøÓ»n*.[®=iÎ÷Ùu5• ÐÔØ2#=ïÝ£Â#§žZV;?@¡;Êÿ+$"±å¡5~h Üc»·Ûn÷ÅYÄÆ¢„—'ŸD6íññÿæ*Ûk™ª=[vQlê‰)B6º·î®#n¶ÅÝ ^¬¾âwr ÚÆçŽÅÝÝ;ÏâÑ®Ë[,õ„Ͼëêçe`!Œ¡P‘’ÒqÑ‚PÿèJe ê‡À/-#³€¤‰Ó®¶¾þb﨡Bs\wÍli? Ž]±kl­oÊ•÷g&t ÛÒ fºÉݤ™RYî»ÅõV7­¿œªŠB~vV×ûÔÐÞ£7»^™Ã‡P«ócîœ~š %ÏÎz©¬Ûæ=‹Z’päTX¯;6¹dWnYíBj.L‹vói_êPÏm=¾ÌýzÇÇ~óûçï–μ6GI{çt.Ž}á5$½=dë²å ø˜¥qoäqšÙßø%Ôs¸¹Û¾‘ü­ª8×Ç'ú¯kô^íe>Û¸¨…±OŸNj+ôˆÁyÓ3Oï¸z”âsiÌV/K<%îÒæ=þì·™©{{ñ¬úúí­ÈŒÒdÿcÇã82ûjÃÒ¨I#ÓÞ^èv…u½CýÛ‹žêëÝ®ÙðcK¾Ü?•ÕÌÁQQÀ­¼“ž£±8þ®ûþ{½nd“øÜw¾1KìOûì ÑŠâŸ>Õå"“>Ðûñ¢Ö”={ôøæª’ÜÛ·¿p*ä¾gsÐ!¿þЬ)-§Øo0…¦WΟJ‰=ñXh½ÝÒ%¼Ìòìd÷;©µC¾ýü«¢/jlèé¡f›w8 ã›KsÒNøÄµý$6fçT×ð7¥•µ=þ›Òþ»&ºÍzÉ2£ éó^ÿ¾oÞ ‰ôí {{oï7ý`ePWWG'¡ Ø>i-,ûùý–ôô7J&÷ÿ©[ß¾™R X,Ž…×6Ù«›±Î; iÑW†®º¹ºbkûfJ-àp8AÔp•븈­CþŒBæ™èê=ú½Ý¡?»ëÙÏ;ÂÝîkmûo¼¬õÑý|ÞK¼ûbó¤ïÙDé |ã,ÇRO¿®ÒadÔ”xúu^ã€ÿX:ýHýŸ/¨AAAAAx¸õf<=¾Ò}|ã¥{hð0Ppï¼{ÿÚÁµ×<ÿà€ÏhÒÐÏo? |û›£æÔ÷ä…^7¯_»víêï½cËï¾ùÚG› }Î&JàR¡9YCˆ$åá-/Hø·€Ž? ü5 ã(ƒƒÁ>þ€‚‚‚2ØÀò ðð2©%µt2//‹ZRKc ˆð¥ÓÔ@n<†‚‚‚‚‚‚‚‚‚ò—诮m9C¨¾¦¶~… èü%”ž‚Æ(((((((((((=PPPPPPPPPPPz ºþe0¡½ùé陀`0,&àë…Ë} /cº~»ÃD5AFIì³ÓG.F”#Òû­Öá*}dÃɰn7&GAù#àRµ\»rÆ0 ­4õÝÍó7£ZQCxT­]vO+8±øìwç^#ÒszXKî(ÿ^ˆˆ._»ÐPAˆÄl(I}}ùäÝx {aWŽØ¥UVwý<]m%ï“Ûù/-‡0HŒçaF¹pôeðOmÄÖ&ŠàÔ}Çî­<Çè^·÷6UlÏí·Spgæ÷ä·ØwÔªêâÚã!-·Õ—{/¯pÝú˜Óá8ÒÉ¥bé´Êr„$±!ýÎþÝÏsÙÚì%lmö–O'Â'c}ÒnZöÅûR¿“+L8êc*ùòF‹P°ra¦ÃOÏÿúôàã—©Mìý#b<ÿÊÌŽ'º¦Þü2Ta §áüÌV%âÑÂ{yl5Ëg,w»wW@$ˆÚÓ}mxn¸ó¨»£ÿ(xåÆìrQàãy:¹+5~Eƒµ³‡ %3‹S£ÏÞÍ쇺„Æ(ƒ‰Kc¾éé¦RÇ¥7[OÇ•˜ë²qHÐÆ…[òˆCíŽî[—úÏîŒñsäÞnœ™8ÿ™¥Áa¯é@âçgÖÖÒ~oêQPºDÜÜ~.ÀÙ! ”¤ºp÷މKÿû”˜´fµåBfjÙúä‰Kfp••w)”5µ6,¿µÉ-¬#ná|rοøÀz¶Â.±7j¢!ߟej"®ý§ª,ñãٚ感Ü[”½Íÿ{ÄÆ‹…ÝŒïÇàá;›_¯9οê˽WtV*ÿt˳¢)±§ èNé$Žœ½ˆïÃÆ/Ê¡ýnöÒf'ØÛì%œNáI»f[à2ãì·â™¸n,WQ»?rã|ÝÌ»Ûö’ §ï>81ÕÊ?“ùÃEÿçT~zjÛz¢:Qmâѱ¥™-oŠÃ׋ÈïN“€E”Ñ‘ƒÈ,Ì05ik€„‡®µÒÕÁ—¦Tw§‰WZ¾H>×÷ö‰¼îÌY[M‹_”öy£'4~@ì†ëósJ«¡D? ,¾¨«éÀÂbqX,˜LÀŠ[붤ÙÓél Ú&AùƒA ¢|SÞ61 )ùËW¦µ¤|©¬ÍŽ ºþ8"G{Ç(ùï´‰ZóçK¸â/ë$Ó…°¡¶®™¿¡±™ÅBé uuÍœ„uFxœ•÷ ÍÅ>æù¡+OG—Ê¿â8\Š>:&”Õ¶êr[¬Z¢ü% Ù`‚±HSÄ£''¾Ô bÃÆ9MSUâa–¦Ç\¸ÒÈÁ& âZã×NSQæa•eÅy݉ˆ§ð uݬ•|î΃RŒâ”®B×úfQú^ø,’ÆÆ<“Yßh®¸¼¤xûö§eÀ¥:}íÊYÃ%‰”¼˜€»7ŸD•4LÝûŸÒ‡ÿèföF’õ‘÷ŸúPÎÞ&[Ô—{ï›J€lŸµŸ2k¿}€^½uåXášèëÇN¼-è`¡ƒMái=—ªŒOGRúšÎCɺ~#9g´Í(•ï> Ž4¯w垘“b‹@Ñ`BIÀôÌ* @@ȇ G)ûg¦±7Ê7|þ;927/±¡¤ “÷`{ìrïåUgžI/Yª/\Ëýøë<†Þš›J.ÓFÍx{.Hz‘µzÌ©íw¾ökèù‹a65–·ün#ÂÖã$¢üý‹z£ÉžGÑV‚,’Ž\u:ûƒÙÿT(åQŸC%–ë,STèZSYitI²tJ@ÈûÔ…Kå_”fõÕ=ºþe°C&“›êëZq¯«¯€Â7·ãGî»å(þ(°a‘ûËÒÓÐàåO§øÓ—IŽOe˜BCfV 4d†¿‹.ø¡G‘š±dtšÏÝZײîÿQ¬Î_¿|寑ÑÑûÏjâ$äàèG*>Ü›½í¢g:+䯙ÙÛÎÌ>] Ùïí¶™}.2¼¦2þ™çe‡ûzÔ$€KÍþ‰”[×ï½s6b“‰8G›\jË­D|o.Ùwçzú¦ÉC¨KºÄše©!$8Ü~TõÕgƒ:x5‡ÿð!½‹¾D3»¹Ì—{VÛ¯Ý;Yt¸*wÛM-âó=«ÎçéÌ'Ù+›)—ì­¬¬vùwîC2Á\ü£û¦Í§ä—ÎÑÁr°Yñb§•Õ²‹ñÌVVVVVÛŸ–uaóÇtò/sRI=åd»Ìù>uÚúyÊmòŒ[ºZ>éôúeö;|*Ço˜?€ê «X–vE§.3)¼q-’Ò?éìÔÌ·_¢³8’#:c­fÚÙ7ß¾›d~aVme“ÜÜÃs'ÊÕT”ò ‹r²)n¶Ø¼Æw½ý2ÛÍóJ»¸µ|Oe&™ží¶wp “°§‡À¨ˆ”y]‹QX8÷à¿ Öh]©ŸËÆ^MÏÿ0±¹õ½øÈãVÝÞgaí i|šÕ)94U9qY­òœ¸¿k|‡Zú1*;¿Çò‘yY5õ4ù‘ÛçkHÕÔ—“y…úÁ=?  vé,(~sp¹ÕÂþR66|w¶m¿•4¸Û(ƒ—{w}/¬zràz2ç~Còø%´Ç7C뺒Ç.³—ðØáììr©ÐxÍ\U'á@Ñœ’OcÕç¦7DDj³?äÑX Êǘ|~i1~N—Šˆ*ÔdÈi¤Ñê>džˆ @aHp  ¡›½=08øoÛS½—¨ŒG îr%‚Ap<‚ÜH]Þ¿óW>´·{i‰Áï ¨,JzrFt8ø¶69Q|ûIlQUItD2KB‚Ü/6L§¤¼|ethz‹Qϯ¨È±†HÊËWD‡¤ÕÒšÊ"à òò¬¢WÞŠ.ü×Õ’~¿Cyô5}l>Õ‚|3 C|NÄèLž¬ '/ÅÏ 7ãDNWו”4  €Áð©(·Ç‚ùo|_gQ˜M™ iÍbbÌÔ˜ø&*•šSE¥Rñ8<'£„ÑÊE‰Ù-ïòÂ7¼áäqkÝÉÇ^‚Ëæi‰sÒ@ªr¢I²¦Ú²õ©¹øIã? e0˜xÑa B¼t&‡ãX—z: e°Ãb±: +nääfG~tṞùûëKüÝwxEÕ±5€‚òç@ysÀê-Žgˆ±ãÖ Èžc¡l;A ìçK½;q¬@ k!—ÎøQ¹oN$0JŸ…Íñ¯q3-0~ sVûï€Åà„†»lU¥ßTYLàt ƒc2[{ ™LÛúƒÆ(öûT7kJÍÍσü+¨Õï*èR©ì•× IûC³EèEIa¯Ý) ¯à·Ï¥—69Á`0Ú_àpíã}²ÙN{:q8¼ØÔí§Œ€%6•~娯áð’DÇáÚjHÚË€rKëâ[o¿[Ô?éì=DEë¢ï\o}÷ݤћ± %ÎÝ,€k2ŽNã¸@U𒣏òÄÙ ”Š$ï‹íßÕö?‹‰Á œ.`¤GªU…¿hû¾Ó©å•­±@é‡ÔÌñ¢²%l5Ê¢Ó÷Œo¼ëшó+ýëhnf`°˜†?›.-Þ‹=Ñøe°S[[CäáÁ0€—‡·¦¦øw¶Ì:ºþTýœË¶Q»m’ç?œ;úrT½[k((¿ ù1#¹SÞ%U±è”‚È„d§)3b„ˆ¸èß­ï‡ÞSº·á,žpOžÅd¶62˜L&€ÀáÙL&£<ÆíxdaO4Lë :ƒe¶µñR³ÇàÒJdg‘?½«éó2Á?¬Öø1%Á[¿ÍÙf±˜˜oÒ6½ 1óõù½¯Ïãx¥†ÍpܼÊ4q—?çU¢?ØüɤaqtzÛó´Ÿl¶Ã`Ћ^ØüÓL÷ï4ÛË‹ÅÒé­5„ 9s !-ÄL ‰ˆ'Åm5¤¿ÓÙc•Gˆ ‰^ÜÛöÝT¸§ñvâÂJ,Ÿø…Dk+8%LØd©v¤³Ý‘Æ_”Ü?­Æ¼çmÁ ˜ÞäÕü1{ƒZ ŒÅBá  @J\j†PCD2v°ÄXÜJc¥iñ1yÅt€ºZ –Ÿ‡ ÈOô×íýÏ"/ÀóÅç‰3 &3keë²xˆ ¶.;âÆ…7]löÈÆ¦ªÝ…-«-OÞ³†lŸµ[·ïApæÞ¢Ö‰ò>Ü]`{ìÒf­$ñåñs­û7±±É¶6ÙjRÞ_¹¤êèêiÍ¥–Ä>>ŸÃ±†Ô¿¿â¥ê¸éÌl~fyJÀ©ÿXˆ¸…Ô’;›jÒ®™lY¬óé¿/‘Nöhïtu±$€Í½iÐðôšíÁ¯ìiaÇïÉ»ÎtÎGÏK{¼ãÇÍ[K‚î>yk>0K>öˆÃNMƒŒª¬h~ayûüj|¸§ú$§Í+„ðôò¼¯çîÄ—sÐhYÙöòפ·ß[ãfiÚR—ìÖNZॠgS !/¯¦––ÑžQZúE_‘us^âg¥D ìûæ­€H¤ö7öö&ÞÞoÚߊL™´À´)hOh¡ÑÄEf´ =¡ ¨þa êêê)))ýPë{ QHVZ^–]H%ËÈ2ʲ k¨v#ì‚NOÚœ-,ûù `=F\ðo;32dµÇÇ~Ü8îo±9ü-éüüèW&Å®8ø¶¼ÌÜ}»ø®­¸Òåib(½‡o´¹Á(jŠWPÕˆ)c h)^AùÔþ±tú‘êjþß0õ s•¤ˆÀ«¡Öò¢Âß"ü½`yEE¸Àq µ¼@…¨°[! Ê@Â7ÆXýËûÈ~mìþ-6‚¿%lhþÂguÆÛëÂ… žçÿÛ9¦âỌߨAIi˜ÆD5Z_ ðo¡«ñ?Ÿ?«®°žÆË'ÌϪ+¬od¢BTø„-ü®ñK àXô¦ffÛ *D…Ý »@AAAù»Àòyx˜Ô²::7?/‹ZVGc ˆð¥ÓTWñ ÊÅïŠPPú4~@AAAAù»èÅü%”Ž ñ JOA㔞‚žÿ€2˜ÐÙúb}ÑÊ¥7ó;½þ9SNùöË}»?â´á›žž›%жܻîùÆiG£x†-pݺ@Oš«©(ÞïÜáóKi‹ýÇVëp•¿>²ádX·Û£|ÇåÉA#9iãî•“”Ÿ™u Oü{9ª®Ç—óL;ör»  ‹É€ºç[¦²:É®ÜÃzW@-´œ:2ƒÉbÒêKR^ŸÝw*¸dòÝ? <Ês7o›\tnÅÅÖ£p£ÙÍ¥(ˆ¥ƽ¸âEàR6_ag>TŒH+OÿpçÒݘJàQµX¶ÈlènZYjð­ËªÙ®ôC¤'Xí•Û|5¥°KÖOæ~á뙊ž¯2P˜º¸É>Þx9±ëeû?iSi‡ëd!@0Ew>íø<3sÝ;»êúÖ³aPµ9mSu`×sNÕ ÒÙ¥£$ K7WÕ×;Ü?TNeáÁ5Ü>ÎÞ±ð™ß“5ÑÞXFŠ‹U[’ûôÙ»·EWr’–û¶óÝØà3(Ž3ç´¹XAÆéÝ@T3o3Zz‘^–“|ãÉç„:Pžbó¯~žû¡w1L ›rážûǾèâ„”? œ¼Á¤ãe¤¹Yµ%¹Ÿr¨!rã.¬ÐäkkœP¢ž9<.è»÷>[@AAi'ë’͵œŽ©¹›–âŸ8X>)â¶òÔÑ_Ì÷çŸ#÷vãÌÄùÏ, þ {M??³¶–ÆÆŽWOŒ—«£¤¹>ª7RJ€·£Vý¾k,'òÝY»Må/Kp“•ÄÈß K`gªK uR ®åଵdE: rÏ¥ÕqI |w´+­:¿ İ Š]‹“My†³?VIÁÒaR±—ͺ·ÕX©yGoÚN¼õ´¶§—S^l5~Ã7=ÝTêø}ZüÞóHiã—Ú¢t¯…Koæã 6\Ømó>ؽçǪýBÄí—[há³Ó+:EL†Ûæ^‚‘Ÿ½mËìQáÇCêÄL—ÌÄí]TFTž·}ã¼G¯8¦Êì5S™÷l /Ãʘ­qZ¨³ó\4»†+?$4t¤éµŒó©ô!cŒJö ÁÃ":ÆPôóݤ~mZv°™á»ÙÎTmN/í¬TuïJUS2å7¦³kG¬‚—·ÂƯš7â³wl“ä”ņ…·wþ5ÁŸºÍdîÏ—|ÜÊ0Ò†SvY¨G_JükZ¶¿•ꨗë[gוÆí6(ËY}'CÖ½«>aUÙÑfë̶ßÍAZKbr0ÊCp¬¿ª?OÃv*wÄÅ›{J12FS÷LÓˆ¼˜À±†”~Þr*ª°?Ý£ñÊà‡[Óz×¶E#eIuYáO½=}>Ð0’ÆëœÍÔèÅÑ·ÝùÆ×A«pµÙPQ(/¥q7Þm³@žà|q«QÃS×åbzùó‡ä|¼÷*—ÊjlX"·ì:ñêÝßÓêûÕˆŽ%‡]Ne|? ¾ôì‚’={^–IiêÊeÓ†I(ùñïÝ}SÚ @6ÝqL!Ì‹>qÉhñ†/׎y†U°·ÉU›Ó.¦dȽ·-2»®Ã'‚úË×--XsûÔ¹à¢:Ú$o:4)mÿÞç…¹¹û7‰ÞÝáù¥0¢#mìÿ1Päg”§¾¹~ñqrpH'ŸæìU‹'Èðsñ˪1ùO·ùÐÈÎQsòûGÌÏ/gN}¼7¼úËÑ@#ÀÍ•ö¡¨© +¥ Ü€, À¡uÈ6ñl³ÉF(=ûðY’.×&@î½mœ‘þ ˜´ÆÊÖþ8¡ÙcÄcß–ðIˆäÄ(mbd|É*7"Yt€¬‚M%AÈ!jÉÔd•wmøC›;3í}aS3@fRAÅh~1Ž5d @×?  zÄg­_Â|à4wúüÍ^q#5yx'opÑLØûùtû«ÿì±ÕhîÔˆ?°ÐÂ|¾óƒ¬GÜ Èk ! («É’Ø»hGÎö¢¿¿¿ßc_O×Ùª$€ü÷Þ÷c(ž%­ ßÜŽ¹ï–£ø£À†EîG,KOo`< °Myr ø®Ëþz»¯^ø½º41lÓá÷Ô^]Ζ¸ã–FFFŽ+Ù~ŠÐ×UÌIMÿCïecöçØÂï[?¼|| œŒùºƒg.œ?±g¹¡$ $òa@j#‚ãS*וS @©¨ )h ãCpÂ#†Jñññ±õõñR†mY1Šþ! ¥ˆIª¶³E’ïù:zp«Vm‰dÛ){ø¡Jx?ïëkVj«J€ÐÐEcoŸ¼æ°ïîãÒº§Ðà¡+¤ÇâÃ>fv±i¼ð¤Å–Ì€ƒ¶¹?HÖTjÔ êšÄW‡Öoºœ?bÚñ^ÙL»±ÎÖÖö@`çÞZ‰qfbŸÎìÜy!InÑŒáXN6k>Üz‹ŒDL/º}ëKpY´L.åÂö5ëöÞ­»zŽZ[ ù!¢æ›ÕÝw^·fµë³ü²nßµé;%¾þÓí'õ&ë]ç’¯¿mé*è'GN^ÄNŸä–o¯¸@µ®+íÏ6›ì„ùœmmäV½>`kkkkû—Á©Œ˜‚Kz‘BJuMJZ‹À«HIñpµ<ÁjÓóš•d„DeÔ+ò~ÁèX’ûiû¤Ö"!$@鲆ˆêصü’ë’“+M&Áw¡ØcÐñ”AÁàù„…y‘‚Ìð{‡Â[„2**åažÉ&P‚¢\« @rµ¬ªJÙÇs 5Í9™Eæå<Ø»£X¹!.¸Ë¡údoûù¾XÀpËNw>°uV¸Ãí"ÞþÛ h~6‹¥¿9¸ü IaúÎ]6¥^Û¶‡—±Ÿ€ƒÂÎåÉÁI7+~p]ñ¶¯4o»‹mÊòs Í=¿¼W(9ÜZXdÞÛ¶%«_LþêJŒ#7{‘Tçl\¿Ä(áÈûîñ[Î/ÓjÎÿpÑýj*âž\ûºÁ锣¾2íCZ)» ¥„†R2Ó2i„ßöÀ&'ÊBïû%G¥0çŠó´Åçl²Š_ßž°Þy ³úɾ°–©€rrU1wÒëhP÷åsÊÊÙ²dH­f›Îú²²FiA Ÿ’¢¼û6†øcâK?†æ,XŠø½+h­Šýãè—€ã:BÃh˜’ŽxÛIÅ]©þx¶Ùä˜÷A ^_W±$únKm`~º’k¾nërFc}ê—â2À·>ÁªòâIºÆÃ 韚FÊtaîOǧ©­a<\YW¬!ð~Çåš;=b0€†èOØ4shÌùXN+{î»Ó{{{“–!!}_\‚ò‹a±:½e@Ñ£cge×löZ,NÏy{ã̹ÀœfÀãqCæ¹eJ‰Z˜HÇ`°í€¨Ëüàÿ?öÎ:,ʬ à焘¡»)•Q[Q1À\]ÛÝŵ–µ»[×NlEE±[EéîŽaˆazÞïBÐB0ð{ÏãxçÜsνóÆsïÍlͺ ª´¨>(¾èú“4SC€"€šà%}îåõ¯Ø²ùsÅS&^½ÏfÐo»ë0ûp _ÉÃ]ÿlqp £ _Ô§$!Šóо™w×D刊®<Ÿ0¤ÇáøÈ6go'¦þv!!©õõ?²wêÒ©çºJEAœøêivj⟼-Ül¬¯âj_íšB j¸üî·Ùr ¼ -;êÿæ” QÌåËxø0kéœT¢ö¸¾””\Òð¾Ïî 'ˆÄõ 8‘XˆÇþò©ˆÝr´Î§ê”ÕÙ‹¦øpùåY¡§2:¿Ô¿ ˆ™‹ûÍæ–ƒšËž½ªá3}ÍpeQIrÄÝËWà ›÷šËïÜÐNÒhò‹ñøÆù :EO^0‡z—†4ÄMðøÆìB‘ˆ@øü iôe¤æÌܺk<§–™|î\b‹Î“,Ç WHK“2ÂôÅ…4a'úÈèNŸ3°3ùÑû§×R¬6u4:/±˜­–ýW§mgZù´áÍŠV¾¼D$Š|²Õ 7͆'XYL†Â2NÐ.±×òõ«Ñ1ßÓ¶<ùÁ»'—SZ¼B„¼òŠúyqÆ›´lW€Nï?`çOcü´XXX´&R]]E¡Pê>S(”ªê*€Ú” ­‘¦oï³bÓ?#£Ü, …¹×–Lh6È&‰pøú˜>®ipŸœ¾‹«76ôc‘ôP Á«–¨\[V¿Š‚È™öw£Æ=ˆ.CÕ9¯#+–8YBþßm£²vøí¯{zzäš©Ioz;Ž|Ò9Cá¿6’êóiPÝ=,j#Ÿ¼/à‰$T$¬CˆÄ"‰ÜböNå—¾ý±ÙÍŒ Y?i ÓçÔÔÔ Ÿz"±€¢×Û^6õu ²‹¢’ª¦÷0†ð(š‘‹ )14™t­º¦FªVœ»[¯œ7‹Rÿ^ä:ìÝÛ ±XÔxOá¼X,-R@¹§«MÒYç%í'€Ñ ¼•k¯Ò°5ŸÆÄQýTɸ† "nöóSÛžªi9tö3ú%o~*}Èù _ žh’t’,† ftæ©y¿…ºÇoƒóxNÊP(¹O¶ŽZ·`ß—±D_ÂëœêvÉÿªâ['y¶þnÚ†¾$óî*ß.¸ÜÖêŸ!±˜RËŽ¢(‚´8¥ØõÐÖ¶ää?n\×CUs5#$D²@ŽBoˆCHOLËRàD3‘Þ]ªÈÖ+ßÎ °…EÝÈY‡“_"P±ð;-n{Hý"ÐÅÖ?`üJä'&R]ÙÒ‰dÍžöʼn‰Õˆ¾÷òE#ìô”‚J£J €¼ŒLU;']2ÙÈ{ÕÖÉVD(Ê/ÐìÕ×LIÉ ßì©ÎÔOzõ½×ïX½vÿROJ ÆYBªÃ°¡=Ueˆd%«‘Œ’ÓDúƒ—ú±”ÇNV§OOÂü¨z·{Áò‹I5€Cp"ŸÏ‚“r;£±XØìEQT 7ÿCQT̉šÿ‰QT̉šÿ‰QTÌ ›ý‰Ä(*â…ÍÿDb†E¿[¢ÄúTŸõ¿Ñø5›—ÿ»{‘gý•ÊÌ –MM2G5äf’‘™ÕRöÎ'£éÖÛŒY\ÔE: HMÊ6w÷Ô—#‘•»{:«¥¦äˆµ\¦Oñ0¢â‘Q·³Ò.))’…çŒÉCÌåI2ªvƒ“’r¤èD”{üîTsýQ§:)à5~ÔP3:”•ç*è9ëȉrvݵDÅåÒVžðxBÄáð¸_­=ÓÉz¸8ä½yפ/PÆ`¨YÙëÓt|FÛÖ-t@´ΘÒ×B“FÕTTÔˆ›vÛ¢³]P”Õi„ `ÓË‚Ÿ“[)U'^oÄ4ÛÄóÛ>À ŸäZ·CDq~¾rG#y"Iɦ§…(/OšQ^QˆÇã?»D¾0„¨žîÁ¼y-†Ãzué~˜¯ ­S }¨a5û+; ¥˜RËÎ*+£šÙš+É+hªÓñ-éí2(ëªÓ ŸSD­A^®C dI$y{gŬ‚ƯDÙï7_ŠÿÊ­ÞTŠŒ°Râ¢8dÂàÙcGüfS¿Î¡ZDênonM#ˆÓ^Æzù¥Ù`ÿWž»Âøÿƒ÷úØûUÿ^º¯(*м¶åR:@Era査çë*ã«ÒCï¸Ë€ê‡û÷tÿwÏÍÙ xNáû [3À|xü’ûºC×&d^Ys1lôozY¹)EÕªµiù-‰rCNîq\öÏÙ`2¯$éÅ®­·Kàå‰C}Wo»9‰µÌÜÈ€m׳€S7 •÷òVáöýwF1Ÿì<"yƒK^Ù­$ ;Bœ”´ ÛÎ0 º•OÓ¿Lœœðe¢Ï5I›ŽFHh_Ç}¯D p$Ö'+;1¿R©6%¯á7Š ØxÇÿ¯£·ý)¢Êì÷Gv”Ÿ£í4î¿påõºð1›ø²­«MfØ…¦ûW„\¿o?oÅÎA/N?úè6 *³rñc&-™ ¡€¯Éýxõì«¶¨” Óxò¾5ƒ`Û9ïúÍy÷_Øqn´ï_{|8Ëe‡]¥V2÷ýÍË=çÿ¹}‘“tyî—]k#"IàŒ´•‹JÊ?Më³âOßW=~Ò ²€‘“|((«î Ö¥)ÈöïØ7þ/}ïÊ'ï8ù•Õrü¬²úÒóߟ6sŸýçoŠDay~ÆÉ›‰åÕµDFæÓŽ2³fy`ñK?-ÉÉÉ?Ú ŒŽ"ñIë?lضû÷ˆ??xGŸýÓ¶Eò!(3Bî~À¹ìí×OÅÅo§}øâCï:q¶«Kè$ôZp¸o¼ßî m¯UËå.û]Hùn†:I=FC®÷ Þ¼”3¯XÖžŽ=ù)g^p¿IâOËg/)lþãgA”Ÿ>jè¤cÅ"@ &ÿãal3/‘ëíjóôH§†Êu ÂŒ÷áÃ}wôŠP´63øxÖw4„ñŠŒ¡•¹{uÉ…Wýnæîì’ ¯ ¸ß$±«€Í?`t°ùŒ_lþ£k£Ð¨T1·¬F$[ÿA€~“ÄŸlþ£­ˆk«ªk ñ÷Iì*`û/atúôÑþÑ.````````ü¿ƒõ00000000000Ú ÖÀÀÀÀÀÀÀÀÀÀÀh+Xÿ£Ë€PŒFû8ð[Æ’®ûìÛö:´gË¿3ûê¥K¶=Q¢NªÉ ¹+·í;¸Ǻ?½,é-o›®0|¶¯nGJúÔÓ›aÚ‰ ÛK§—¨ÓtÒû-Û9ͲsÏüú¤Ópü–#GŽ9zlí0æ2ª–ïÛ3§wãA›&¾;WQëT7Úá'€Æ°ÕÛ'˜t¢zEåŸÝ,ߪnïµ+ŸcÖ˜€×èî¶ÂoúÉÕ3öÏè©…-Wm/ˆfŸ±ÇV5{nPtz®øçSŠÑ@ßËúZãHÝ<¬5Xá8úÕÈéÛÿ9wòe¾«ÇZé‘:G²Í`$F—@Íuú´AVÄœ f“DºëDozÔ®•;‹pZç/è³ëe¥Dɶ'JÔi,•\LZ÷±³|ÜŒè(3#äò© ¤jhÍÈXM[?°ál‚?;FmyôÇ·÷’Ë­'ê7¤õ´ sS6–òP€´'s¤ÿr–#gMì£M“•#q,|áýÕGßhûîô­<óXcüvRÐÑ㯠Å=~;à̸*°N{}.Ls¬—I©-w²º|÷K"KwÍøðªîZu µÌØèwS˜V>MçürŠ8–F G¶Ò©ÊéŒc™¿úöŒ¤¥Ùµ\€÷o3¼Æè<-Ëë d;h¿Äå äåe;ªC òò²ÿ«²rr>¾+â4OÌ Úø_( ¡jkÑkjj¤I¶=Q’N6“É×ïÖM (u7×”—“—âfAÈõÙ›ƒJØÏΜ½éäìOÍb‚™áéùKËïVX»« úöÓ§\Xr*ºÖ¶Ïàº÷¼ŒéÄ*™÷n.ÞuíhºÒdOã¦/%’^¯É†¹gå×€Œ‰ï(µŒ k~»oßåwŸí¦ R IFböšÔ«aèàAf Ý|m+¯?É­ý6%’®³}h;9#Þe·0–¨Ôwâ0ñ‹]þKWí¿®daÔX$3 Ò³ÝËý »rlZK­ëL¿¼lîܹ;_V}–®îÜ_õÃÑ ëO'ëNj…Š£Ïo†™§V-Z²åßã÷áUo®=D='8+(÷÷éSr#0¶Vš$ÅiÂ4ýÌó—þ½úxœö¤q½š^ Mý, ^3wîÚÛù¬g;çÎ;wn]'JR1³‘S»ežY³dÙ–ûµ®S@«†H¦c&YÆ\Mêgá2ÞGç6ŸÎ“£ÈˆðÊÃ|&Z1cßœ~®*ÒÃÍUܼTÝ^»lñ¢ ÷‹Êm;ú¦îŽÖrí#ódç²å{#ÕÆ·!à •Ê/^KÐ3pÿ̰ï®!Uk—Q±oYz#¤XИÄ+‹ŒÍ+úâ€ÁªŒ|‘Ž¢ŠŽ3?Yüù·?3r4*Z]+е[0ÊL£š]!OQì°d{h6ÿšZäìl]ZÚ¥æp0000º Ô¾}»¥¥uªV¢²¹c§ž={hW…œ-ùF:ãï]ÊX0gÇ1»"ýMzÛ¯T˜—VÄ(*ÎHhÎÛÕ—'ÈO+ëcT×#QRÒ©Î Ì©åd¿}²ù´Ò¯6j˜NÂÝ[‰u%eÝê¼›…|ø‘ñ…3]UäQ-É¶ÛØ]hM<)¾vèa]rö’ˆ·¯í<—øŠY¯ƒßµœÓáuC'GAø¡ü–D!Pèt Â(Œÿé ~ê»ð"@vzŸÔ$"º :¥Á¿ý(± $: ¥Nƒx–š®.+îV6ÎLjäCôå!»Ð’gWÃúÌ_ì'fÝÛþ®®"QRM[§"öF*‹ýüâió¦U×F??/&šzuí.àr…P˜V<Õ°.Þ½Cx£‘“­6&r¤ûù5•Õ ‚ Ô„gï,¾I00tÑp³¸sÉ’›fì2GÁ!€ 89Cu-€Â×A¯òjrS2Ý”i⌄d¯;· 1¡’׋G ÿšA(²Î» ‚Þ×€ÖDV~ÙÖµ©6ó=ß¾+mO$àEb1ž¦l®G¤Š*E±Ã’í¡Ù¥™áà`ìéÙCV¶sVW``t.³fyüh00¾.W‘Q‘Þy*e»ùü;»;#ìÙ«“Aq9•Âo¦- ?µö]™(âñeû-Òeª¬„½g€¤Úß«›N$B(tHªû#ˆÄõ!)6"|x¼!¾é𭨺@IJvqéó5ƒûUÝŠ–øÔY%ê(ˆ‰SovøÎ–»£å¯.ª{Oò¢$*Iýð0ðæû¢æWIù³}ÛÛ©Sbqý®H$Æãñ@ àUú-ÜÐ[x¯,«¾Ñ!Ê|ÂäŸÖ7%Q’@À‹DõUÇÍ速ŔÑï?sJm¼H„È*5üFR ‘{ÿ¾WpkeRÃÀµ´u6(ŠŠ3“ŸqEñïÒ ¨ëCr¬dѲô½)ë6æp*R/]JúôEý¿bEp×kýÙ!8x)§¿^ Жˆšòø,…¿œ8÷Np‰ößÜ·ND áp7á©_€Œ%^$tX²=4»ðE"qDDZD„ĘV ŒŸ RîÌÀ%Ã:ñìRÉ:å ­IÉoR+€&O« ”’ Š¢H«ÃìŠ¶Žžü«þË©EeLõ1ªK‹E8¤¾±å©§†/¾ º_ÕÏcŒyÊÉ~½dyüþãÑ­N¹95¥œ/R¥e'hq d–é éE‹z[ÕÐû%j“Néà-œìá›ÊPÅ54?7'$`O¨æžÓçNé“¶ó%«í:¿Ò5<^$€H$*yv`ÃÏ+™h6Ø”YÔmðµèG¥¨4I‘Hô©D2òr§Š#”ê'Ú–f²¢ë8nКÕ1µbZÿ%[ [1Ä‹8µ·Êkž—í›ÓѵÐB‰:›mºæA,–¶NA±Ï«˜-‹ÿö3¨GÛHGIQÎÿ_ëúÿëÏ2 \"ùªGÈHJÏ¥sb+‡.ÕÇbWÕâÍ)2\§*T±+¾’U3è©)HN(`[‘ìØþ­]ŠUÀbubçAªN’Ù€©šÊÉ*6½é))¹-é¨-¯$›˜j(Q(вÒÞ38ŽL&"@ ë˜[Ò„tE…€“Y@ÓsÒ£ñD û›¼M7Qé{ÙFCœ¬e œY ¯Ù]‰@Ðîå¾ÐE­}#Á’³ãt]]¬³ß칋¸89Ë}ÓµI§TÝlóß½oÒR^V¦ji«K£ëôòÑ£®’ÍþS|\ÍÔix!»‚U+h)ÆûKíBVYF@ ÖæüܼJ()(P0ï®N jõŸ±`°Q}%õµN¾¼ïÔcdðx§ºÈ2‰’¥JÖN¦t"AF½Ïì s©-ùÉb–SLz˜*Ê+¨«Ñ¤þFx[—9Uå&\}í:ÞëOÚž~å¾Ú´‘ÞûäqœòüÛwS›6yR½g Ô^{·€ËM¿òPý·I¾£)Uð ˜Ù¾è-IÙE«ÉÕwŽñØ¥—cÌçÐýx'û­JÔ&Ò ÷p²Î¿Ú4ôžvë‘ÍïK7y†<‹vU9ùøþ«Fdzó£o\û|ÑsË:&lÿÇ£nÀúc^õû5î¿°ñØȹ±bËãòÂw÷G_¹k®Œ€‘òüD@ µo¯]6šö×öQò8#ñQ@¾Qõ˜ä^vg}*¯*ój˜ë\ïîQgâ¹’$ýöÚƒ)Ó×îQÀsŠîœ«”æ'/òN í¬y9)×·•ü½¹b;uËþ •iÏ/ºè<ß!lÙùX²¡:·.Ĭ>Îr}@’d?;Šîïÿs¯ëðMžÛø¯ÎŸ9•žpò¡ẩÇQQf^ê±;éÒfüoî­\h$ˆ¹e)OyÙ ^ýbèL_6¤Oݺ­‰³\€ÿúr@hs‰.Öùâg]¹­üÛ°±;åÅ¥é1GC·dåTÕPù9LQk’‘‘‘é5Àذm÷ïÿh/0º Ç›l#þ=öá‹ e~.ß‚®âç÷`?{kâ?Ã8€´†/÷£^ÿç*ˆÞÉ•ôt…ŒìB.]WWQÄÈ.¬}“ÄŸ–Ï^RØüFׂêàd÷òD§6 ¿…ÎoAWñó;!ÌŠ|?xüÆ]£D"@Q@k³žÉþÑNý‚੊ªª‚šœB!E©îCÕ·Iì*`ó?lþã§Á“HTȈ>ˆ¾MâO 6ÿ€ÑVPŸW׺oüðm» ØþKmë?```````````´¬ÿ€ÑV:gý^Vm‘©®ƒ žÇ« ÊH½]ÓÒù4’0XôôÍróÛ3uç?ü*è®[\ûÍ ç?O—Í “Ñë7ÿ=ÌVWž_’ôôèÊ5çb«ÔÜ–ì\7Ùш..O XÿÏ7ÌvèU—¿¶¬ÒÇT©Ì|waݢݡ@µŸ³kÓïîæQe~Üý½KWÝÈ’¾ô—:Û%Ùöìÿ—tô>ú¹ êµÖ"'þžÝÚŽ6+#,$Ÿg³òM«ZɆ^kw.ÑCM˜quã²]/Š»VÐ)B1>o¡{ÉÙe¤'"Êv㦌°ÓQ ‹9eYa7¤ÖÔìÇNn«GÇsJŸ^½’+"‰PM†Lçb¬ *Kz~ùJH>¤$¶„–ó¨Å=ËÏ ‹ëŒò1$¢å¹ÜÏ=ïüúËñ‚ïhÕd–?]dÅb!›™ûèzÐûb~»u¨¸û-Ru}ã™ÈÎ=þ°Î½Ñe»v=oáOÖ÷˜âÓßB•ÄÉ}pôÀ‹vœ¦?zí"w@p%¶l{ÔI§Pãµlû.bbBÇÕ”äÜ |zïÓ©ˆî@Ÿýƒé/O=Ô9Æ~-ðjݧô5Ô—ÇÕ–ç?~ò¢H@еw›â¢­)‹V—æ?|ø:´¤þ9OÑvøÃת$(à\:€áŸå¶ÿí ÉÒc÷hÊÃÁO¾öøÄí”Aæ&òbFfü¥‡IyÒnC§­“Í© ‡>pbÿó¨¨ÃÆ;§ÿ@#ʘ9þÅlGs›ÉZŠwSË¿ß+Y­ßß«ý|L)5MßPº3ö˜a[øxï¦×”!Îßz¢"ÞuCŒó?‡—x"on~,ëõ÷tÿ㥬W¾‘tІDòC6œôVýx÷¦wú“–_rxy¸Ý¿ñ^þë¼lKCl­8ÊÏgÚ¶?Ý\ò¢Í:Û^¢¶gÇÀèÒàe]´5ie™ß¤ „Xø><rxÏe…ù>ï4áb;Z4oùô¼¢^{‡H:§I“Xò²*ZKÔtnWqwÛÑÕ8e÷9+Ù¾J}S«ä6y =âð¦£e8Ý¡ æ µ‹<Á–(I²öžÞ­èü®€[L°òü»kéúåRŸÉeÑ›OÅtRw·ŽÎé?T° ϱo.¡hœ>—9÷ð|$æðÌÉ{£¸ ì¼pËÚîf ‚¢èà]þko¥ ܶ'_Jð:]èPu~¢Å?¡-Úk Ų¯CÕñ9Ç­ƒNY6&ZZ[ =pûîÓIn6¥Ï”>®zÀ0R­ÎN¼¿gÃÉ0–ót‡AVÝÔáMq[uvwsS€´ÓÛ÷œN¦<~ušÊÎË®’Uh~DPP–áTŸHKʯ'QgÛ%Ûž£³‘³Ÿ{pç¾Ʋ•)/.ìÚòß“l^ueOµè¨„{| øÚXÈf~<]Ý{sÌ–Ò¿Ž˜®]?H“ºmÖÜsÉB¼ÁÈM»þi«A`&oõó¿•ÙžÞ5ÎPÝh¶¢.*9•w²2îÕˆš·“½Ïdüv¥­wú‰÷‘²Ó­ëfô5S–Ä?Üÿïª+IRN Æ´è5_¡ábƦˆŒ(œîÐ »W¶Qä…÷_|äC%¨Í¸ñÆæ–Ê–1†•ÿõ]x³¯?bÓž•^¶*Âüðs+ík×Qºõ>ªêÌÔÕ°ÄU)i|8ìô­þP§ð*ó¶¤ç·Ô`Uì¿&xï43Nض鿟IºíN¾êË80cŸÖ?Fè°ûûÌ»)?j´9òqÝ’-Ç !BÙãîüÑCU.ž-“ ¬~ö#e·Póo-*ÔîH.H y$U6j‘…9g ™Åß»QS~ûYlåÜÚ-'rÙl¡—+DQ„ËrÙl!ÑÈT7óݾ¢Z 3xç?(ŠJ‘S›ÅoV§Vr>>ÿ0ì÷Z·ó $&Jô“d¶ðo—úçTiäúôŠZÙnîîìTihMfÔ»s!…ÕänÛí ×^Hª5‡µãp‡ßgI’Äø²óü>uŸ ‚7ÆÕÐ,GNçj@C+²Âî¦Ôfo雺aï«Jйj.þš lI’íÔä†Þ ï;ßFçfV6 úOèa®Fâ'½¹ü,¡ŒÚÏï/ZІ;9uò8ÛéÛm¢—Ÿ«öÞäç&_çyL~½i£q›ÆU]x®>z¬5rïô™×EbªùÐéÞÎZr²T§¬WôxÓéw’ŸaˆR±¾£ èÀb ex/›&êɉ˜i/®]~žU ý¯£`½rûH€¼Ûëw=gJ¬£q›Æ±öíxZmšÓøjH†Ú&ÙIþÅ< éþ_t„ƒu£Bïi ÔkI¤ZÒ’PŸV“wö.»!ì1X>üÒ;‘ÃŒ’vÝÏéZS°Í!êhêç§îbðP€ŒA @—•ÍN[Ìä¦1hÊ•µÌø˜ˆÇ©Ìnôu›hÈ-âX)@>¹›vuî·øu¿zú6e©+rj¹‘ï2†Õ×~QžÿýÌwÚúu‹S=æÊU_/b5^ŒJ^˦^>H©;ÿ=דäëά!ºjúœ£Y¿í?2Ç 5pÕÒ­ ÄÑg–.]ºtU`j{ gã2ýT|ó ‹ÅÐìÑË€®Ô½§%@YYrÏMsq¸) ˆš\-Ä••R™u*))àM¦œ OO »y`©»ªP ì{{ýuGiÉ£ïÎŒež˜:f[T{ül»dÛ³ct2ÚS7ú‰Níií:i{„Ž›= Dªäléx2Ý–ÀЍoâ˜ùL’;:ÆÆvB°ÁÚEžD Û°ËæãkK—9Ï,¶®õ’oq’Ú,C9vѹ<&›¢4ÓPCCš¤Äûˆì±öôÊšç·î~\Õ}ÒîSu—–_ô49Ü;<Ü;üÃö2~YYy2Í{Ó>û -»ÝW;ûð"ÛiYç>”Þv=—&{,k´±vuû‡›•ͰMÅã/uBÚSLšœÚ¼î¶;”QfæÒ¨äg ¡1rJZ¸š.¢®¨7šÞ’R…Á |©Þfô=WÎOÕñšnŸ~5(g8jÞ#ÐÖÖ´ ²ÇîÐû~Ê:::-y¥¢3a½c£J4QŠ@íÝÄè%™LŠšé~[Ë)ʲ²í+eáæEG$”pÛÈ|yêgȺí[¶îXj“xär €B¥ŠðZ~ÿwÓŽmëûöTÇK“¤*( •,¡Ñàß§8ª±X,:]AJ¢dø©ÿm?ûÇö³\Na7¤!º¶“JŽ_^q6–ÓÃÅC€—‘—¦®mIP6Ô’ÍÈË–"‰ñ9¼·Güüüüüü†}ªd“!¾–Ù7­X½ë1Çiâ}^b|º¶¹…,€’……l||Žɯ„ÅbÑétPì3v8äຕ›ŽÜÍT47`—È()"2¶“Vþ=XèŠJe%%(d®òóóÛúyÏPÓÉYæÅU«þ‹V=¸;”]Fõ­¾»eÕŠ¶=)f>Ý+­ó ÛÓ{’^Ö…ÍþþO†‰'dßà¿r×#~¿iƒô€õrŸßŠk©âgüüüüüv=gvn…´yЬ¯2zúäs›æžús`?µú–¢f?£GqÀãÂVfH¤ÕÒ—õ ˆ"óê­$‘ýñ.F 6ÝÔ¿eÁ¾=T Y„Söô»cÉ”-¿¹9*ã "7¦ÔE!QÕén ðÊ>ÆåuYY 4ÐVTÖ6­ÈOéR])ª<­f ulf7U¯®eÉQè-H+÷X¶hÒN¿ k¦¸¹©wÊÔAçôŒ5LfSY;ââNUS&j¨6¤W=ØüÇöC[.FT”ÀÈΞ¡7CŸŸ þ+ÇžT(yx)8–€æ„^ºtéRàûŽÏ°|¸p0Œ)7pÛ›¤7[ñ\Adô.Ü~r¢.óÝŽ=ÁírA -Èw–ÏÙüŠo:|½ÿ({/;±{„ðú?³çm{­>û¿CSÛÙnÂøÙÁápDºº:a&??¹xÍM€ðCEM7:@ž® Æb6Ä¥¦^Úv.¾RT÷ú#OOO Œ,»=¹þ¶„ÃcFŸZþ祔vÝs²Ãñ‰[2òå‡ÕɪÒ$%ÞGFvö ÀzôßæGÖœ~ ˆAO{¥– Ò” çʳå°8ÆVV%ÏnGU‹…Åwo…*ÛØ(׋qÞÞ¸žÆWFGDs@¦N²èYPd9·6ÿIð[™îVjí)&(Ìèfh+bì‰Y“ÍÈnò ¯eåíÎÊ9RT€S%·ôЫ~¾}Þ?ë—x@ÑÑQl¨–{[W8vøn*€œ¼·<%½„N§'>.ÛÄÜ @µ4WJLÈD¥IJBkð?;›1ÏEÒ/‚‚ x &‹°‹’^]¾ù¡Š‹Ë””èêúzòê&zrŠŠ´Ò†ô¿½û:¿VÌÏOË(+Ó€]^ÎEA¨úúRŸj::¬ÄÈl¶HÄ))*4$jW&|ÌᢢÊè©rzzÒ®¦¶WÈ7²±†ðé9/ÌV›7ÚR€Ò„ ÿyX(»µìÒjéËú439•Ïçó ’’«x<ÐÅC!é« Ãî­:t>_ÅwIýOG3³q˜æ;nÝ@™Ðg)¥-¨¨ÌO$k;wÓªÍ,äw©ö‘€‰Q¼¼’©."‹x©o³¢¨Çnm=sgÛ¹'¹ô1ƒÍ•¥I¶ƒf—O´î6X_ÏŽHlýPêÀ •Ÿs«ª…jÚklõ!7²°²1WȈ„BÔµàI$"€âÄS #…@’*… ÐÒ½1nôæV­K@œzrbï`#%~Ašî?±n¶(ŠÁjÑ­ å6¤’7·­9~önRÕ§X²’¶’°¤¨ª…N -øäÍd„übùÀñææÀçkDLÛ}øü½`÷ýÓsÒ´Ñægv'·UgÛ­·ˆ´ZÂøjš\`yçþÙh¼zëÝ?´™oƒ­ß”&(¯¨(ÒQ°–‚5šQÕØâEë/*T,Æáp@$…‚ú—YuÒ“GM­´~y£5oYyBƈ¡}7™ @ ™L–h½Þ"Qyž¡Ü۴ظúò‰D½ßΆŽR›E†æäôÙ )Ö_ÀBØ´YÞ–»À#8"@Ó%±E„( H‹… „â†bâ†^š@ €Â3ã-.#<6¸ €Ãsî̲¼ j3nðù-Ž‹Ä( ªûQ›XG„ˆCðH3WÛròùµ… Ñq÷D¢o°N¶êm]ôölz‰ üEÔ ÿÞÆw²KPTœú6$Ÿ-vrHd©¿6¼åI’,ð8÷ãé?Púà„B€@Rb; ©ôá좊‰€BƒäúTN\k˜¡’)k¡Qø!•.‰ÑÈúnS'8kâE"DVRêS«ã㋇˜"‰tsÝäÈT±tI ”„߉o’ ¨‘´bfèµÛª^ãT1Ò£žÝŽ,±JJ(VêŠU?’µt•äÅá- ñ¢ ÏO±­ôCË3 u}V¬Áá°Ò¯_o!8Ç‹EŸëÆã ÊnsV:ˆOâ—gKm-·¹B¾ (ˆÓîpEÀ~š¿DÃØÆŽ“Ô’vž« ´–]J-}YŸ¿( âì”—Å<1ð’>dÏRÓ…Ô²öÄéý­X©/>¾¼^VÙʬ3!›¾°7çÁi.ÑþûxÝ9E"<á&½Xž coá­"âUTÖϼ”Gfæ÷VÒøŠãæ4»™¬,=äåUž¾8Ä®­–¡ŽÏÞ”‚Ú’±m˜5àów–yn{_ŸPYy,‰pD"à‹úË®BëïiÅÞ¿Í÷²«yôÏDè¡HÈ++ƒ^³fÙPצ÷Yô¤y—EvÀŽ×ç¦h w¸WêÌ <8<àñø@$x< <êºHmÖÙ>É–h¥C…Ñ>»Àjb¢‚‰ë¼½'vN~;úl ¯âƒÀÂVަ W‘ÞB ¼P(Äáë_¿x9e¤²´ºÉMÞòåMTÒ]¨Fý˜²?Ø¢ûغæ;Š¢QUUi’õ‹ûˆÏÈ P/_ß—bènd _ž¶ÿSoH(fœ˜ìq Szù$“€š?ÈZ»‹Y§â3} töPR’w*¯$½y_ k«Z¤¡˜ÍçûQ>»ŠPXXˆ¦†:@1hikäHáoÁ‚±šÎïºê†âÊÛiI·š?JZ½ ©Å^ã¬,=bã¿åYD¢Æ¦ƒ˜@ Ô²›;+‰¥IVVâèt.Ðé ,KJbÛQèÑk/jý±\*ë>iœAC:+=¯²§–ž.Ÿ ï‚°%IŒVQpòêǽ·iSGLsûs­AC:+.¾j¡…®1Í(+ᢠ%É/ÕV”µ¼Ä™N§WVVðòÂ. »Œ§¨›˜4ÓÇ%}heI §…¶lad„â0+#«¥‘à/Kä<Ö"~÷¿'$-ÉhÙØérÓ>¦”Õ=kÄ C6€ÃÕ·•E"QéË£ÛŸ´jTr… (ú¥Îo@u-m:p"‹ôÌõU”å·o³«O4úÓäÉ…¿KhœµPK¿å9ï+P[ +63ª¥u´™IIÚÇ9ªËå' =îÝJQ3p‚NŽ$£CS2Ç‹xÚ-%ƒ 8øÏÍOý7Ó¨‰ø÷QvLL( þc嬹k§;ÆÄJ PV5š)[v ·ªÉã8#)IÓe€‘ €ŒÅŒýgÚKÍLJÒàe§D–Õòî,LJjg"»–q*1fqZ)GA›m·A TšÚhu©êò¼ vK3t4'ßÓ_9Å 7&VJÛ6éîÝ p˜»ËÎü­&ióÃo?lWs†âÕÝv»>½¼8åϘä+Lnk;˜~»¶â}d žC;óµ×Laa±­ÁÉhõ´Ö***d¦åš8÷Õ¡’HŠ}”33ó¥H¢iqñZ.ŒidÛþ¸˜ØB)‰mÑÈð4mSsy!]‘&K@Xyqí!öéÜ–%1Z‡Ç“dÈJ¤:š+òhª*²D@y|œÀb°›ia|"¯eÉöåõûŒp"ÄÄ ên>ÞN&jò»’U+®{TV—Ð-̸ùùù`e…·kš@ ÊÓéD‡Ã5oò¨»Oé3i¾wã3©œÁP6ï¡C£iØ ÷ìVBÁ(*T0µT#5ݦÌh mþAr…0ËËUÌ{èÐhZ^C¬ZËøZøYùéFVõeÈ$yÛ>fšY…™é÷ÏŽ^vpô²ƒ£—:ž)x~ú ÄδTK¿>‚¼¢]ó~êd‘jÙÓX5¯$€"KT×¶}g/qÞÇ=IßÐô;ƒææÆ©™ Ô••!ÓìzáSrFÃèî#ûûóoY½×ˆ‰fÖ&æòÞöÇIõuã&ø¯àäžxäI^Û•ZŒ]µÚ«nàSÑuÎjתËÉg^½Ø2oÊú)^ÿ,å%\Y¾ro”´4=þXíQŸ³ødäù°b€‚°‡™&–ÜЧQütÞ[={7qïÌÎ"Fò­õk·½æ\Xêgºuñð©ËÅÌŒ‡{6o|XwͶQg^›%ÉR²c|k1 „¥ë.®4R'T$<Ü´ürÃ-’YQA×ÒÈÎLoqÔ‡¸f¹ÝνÏ4‰Ué/v.½Òž†5YÀ¢LÐ4™ÏfœMŒÕ7› ,G Ü{rìþÉ=Üu÷øíG‚wnÿò>z¼nÖN™µS§®ì).M\±zïGi¦ðvÊŠr2°¥·&@ãþK•kVôÜs)r¹2žóê¿%IR—ñ±×üÓsïÑ7( Þ_XèÖúTÁ—ˆòËs7T”öÖÒ ã¸e ÉÔèãô•öˬì@i¡Ž7¶Ò›9ÜmѺaüâ„kþ«öÇJ³¿g¦ŸÂŽES–õä¿?øûò‹í{gÚ‚5©Å‰ü¯)^ìÚ ©µx)Xún›çT·f{ÎþÞÀ ?ê9Ibâã o}Çü½ÑWFÌ.N¾ÆæëK·Ô}f®.'fe¿¿p%’ Y’$yÑ7ÎkOš¸|#MÄHzzæQ*-±e×AQõÚÔeâÞUyI—ß:Ž>‚÷FÔTÄ¥“‡:±7L¯K•Ä×XÉÌw÷ì}Ön[•ñêê±k½g-ž»÷?/(Œ§ ñ¨¸y­¾M%]²Íh\½„ ¦,'&øxp¦©ÎËÇ3o” Ç.Œ»s5¼ Ð’Ð4(*ä•×”É*Ê—–«ß `õþ‘ ; I ,üAñÒ»†€˜Wžö$àÔ“lÔç0Øò¼ÆV·=‘¬¤§£(ddr麺Š"Fva•¨¶îvÖ¼ôkáUæ}ímøé×Â¿Ü êçá³—T_zñCÀ+/s0²°Ÿf§}uçãE^ÏÛ·§)QÈ,Ì8{ë<|zŒýc” IÀÌŽ¸ÿ‹V²0;&ÒcôêMÃDb@Q@ksž\ÌýÑNýt`µô½!*k;v—)hÖUh-OUTUÔä )JuªÈºf&ŽlÆ­pžŽ©‰#‡që§î?|ÖÀÀh?¢²­±ÆÀøEa%:ðÕ[A`´òÃ+B~´ßVô•ÝÑW~´?;X-}gØ ¯Öf"µÕíJä&E•¢B!ˆ‹’¢hÝv…¬§W߈yl½¸ø嵺UïÏÖÀÀÀÀÀÀÀÀÀÀh(ŸSþÅZÀÖQŸW7OØø@Ì©®©[Ì©©ÿÐuøÊõ_ǯ¾þãWã³—Tçœ?ñÿÖè2(Ù-œõÛodP´_÷¡d‡á¿­k«Öjö¶’L µ–½Ó užKm7„ñËÓÒú¼¢‰c¯nšt2Êe%}ˆH¯)Ûzy¿ºù®¼^oÙØà'É]jÅG—…f4l`ÿ²œgÙ†Cö¯È¹q6¹é:}’‰Cÿ ´Ê‹7£%Ÿàј=¹µÕý­HvÐPkÙ;ÍPç¹ÔvC_ÙûLÖÁÁoWÚzŸéØÑ+Ô‰—Òöö«û|o¾ÖìÛ?Þ%ŒÎ†¬×wâX7ce² "'ò~àƒäʺtDVoÐÌY®¥—Ö\On*¨ økÑ å¨³k®'x­šçDi8Ä›ûáÔ†O[<6—”lˆ¨å4Þ»¿™E\SœòòÖw’7Ó×ôžo]tîñ›†Ó›Tz˜Ž Ù^%AV»÷šþµ‡/Ä·a3¼ªEOog=9§¼àÕów¯‹­gj}à””7î´÷ÄñÎÉþ ‘wžç§õtëôNÜ…é“NÝáÿÌw¥‚c<Ù½÷yÓó'•]çýéQ´ëbtÝomàµÊ«òÈþ—ÒN‘øÌO²nß Þ}ÍTHœ¼'§…KÔÙN$êl/ßÁÏ/ èÚ»MqÑÖ”E«Kó>|Z"Rì5rË@Õ&2u‡`|A»‡Ë8G-uqMYáógoÃKE@Õ±™8ÀÔPN\žxýirðªæ=ǹèëÊáj™/ž¾ +éõõþÓºèÔ‘7Éb š÷Û0Löᩯ$=«~Zd5mgy[–Þ¿|5³%1IÒAZè?ÈÛÛÊæ? ~V…ÐÍÝ<ì ž¥JP×T"¢¦¡† í:ä£#<ž»øˆÅþÓ‹ÃE¬Ïzmìû‡ýßãj¤ž(ט½í†$ÓAC­eï4CçRÛ ýHxïŽþý÷m¥~‹W{a'“ÿ¢(»ŒöÀ¿;´ù“¤?döoƒ3×_K+÷?ÎÝŒŸóå‘ÛrÃÝȬ¦é%Oö6oJ–”hH¾×ÈaòñÇv„– ênSçì™x,\Ò €]Q%K£4´«hTÙŠ’ß=tsŸþ´¸[Á§ËPe+×yúgŸŽêŒ#T”ìì•bdtê®MtæÝÛ¾âx­ó¹PEü£•ü̶6 ?ó“Ø­ÿJôÞͯ+€Lhì ¶SçgHÖÙN¾ƒŸ_ g6~%êÂõ]eˆfo%žf±’*cž¬H®;3H†ÎKʰc%@5ÕW6îÚ­ÿ˜ˆ†½û‚~&‰×Rªz^ô‹Ü»TJ´è?pªc{H9J3ŸèNùp#èD%NÇÙc–³AtP D 3MH.@ŒõÕñh—ê:(˜LÔÍ ÏÌiµ%.±B:j¾…þU†X’UÁ0 JئrT ‚ÉQ× ƒ¤¡\Su¾BNS1ˆ>4C\[UQ B©ï¡Ä\_!ÙAC­eï4CçRÛ µDwèú=«ÇÙk@i“SW•n]7£¯™‚°$þáþW]It<óh·#}¶Õí†9è@ÆYç€a³„Ç,$Ÿ™>—9÷ð|$æðÌÉ{£¸Ù!W³AWiFóþÃ:“¸@²š¶oÏ"3E´<%äèŠÅ'?ÖHs ã§‚‘ô(û#ƒ/~VJ®xФT±‹’?Ü{•Pdö›•f3a¢‰ç µèà·êãÕ[Qû¥¤$CŠò2Q‘µB€‚ÄL–‹Š€Äþ«ZÖ„ xE÷͹§¿§PÑŠj¢hÒs‚›¡Ž¬¸"/ñæ“Äì†sÛi¦ÎÓÐk î‡F0%¿Ôšêºi‡‹¹"€¢˜ÔD·îFò_(›öžà¦¯KA+òSn>ŠÍàÔÍip®DÒGºëйE‚CÞ–£Î^Kœh¦º#jû…ø2‰.µ#ûÏŠ\ôÍ, ù €Ñ˜5ÃË ©²žÛıî¦*$NIÊ»'_%— ä]æ,ÓŽ¾&rm«ÂI :u%Š%Y§D ¼VÍs–€¢‡;ã šôz÷qÓÆÚÐØÉ÷.½g4ÑÐD'½ÏÂGèt[²n@ÁýíC*$ë”è'¢h5rÜ0ª˜™’Ñ¢pJÖ£Æ í¡+'®È ¿}íi@¾çŒ¿²þ÷¢Ñ´h†âƒÝW“¸õ³cÐee³Óßó¹©ELš2@%Ÿ[Q?H¬8¼—jBÈK =ÿz¨&ž>£ziÊÉPˆ\f®øÅ® 4¼VyU_ Q1¢“þèüÅð±Åø Ì`¡Õù÷ïÕ† 2H½rèI^—>=„&#“—ù¡”'ÈÏ(©°•W¨ÒÕí^žº1ÃNô‡¬Á#u5CÊKµÔu 2þ+ç£Ù¡÷V Êù%3}:Í4ªó;ãXæï§")>òEF…ùh]­–%%UHaGÍ·°þ¡,öahFÝ~Rd:]–Ç« Þà‰44)4 µš¢’ÎlRa´Œ¾×³ÇŽ ‘×ê>4C~œÿ±[F·š½í†$ÓAC­eï4CçRÛ µêð5g¹ÊFÛ¸çnZÞmdµ§WŽÐÌ8¿u÷ãªî“vŸú«»(;»455)ןӦ¡! Ù9Ù äµláåƒD‘ºóßs=‰’ IÐ  >yË–Ñ qÇ7lyXi9bö™Ò\Âø¹(ò&‹€à©ºÆZÜüB6p â"“K¹ŸË"j}‡Yç>|šÝ,ÆHmÀëÖ­]³bé‚ NÚ$©’ å>Ú.¢ ¡h¨Ë³ÙRZN¢Š*‘<• ¡*ÇC•´é²tjmEÙpô`Õì·Ö½ÿT`9©·r½¸¢qzv@@ðå<ÅQ½µ¤½‘¨²2¿¡SpóØãÐj²á(O¥ŒwÖ»¯Æx²³:R÷½²‰#1ñð±Àc©´‘Nºx€â··—í½óˆQzíü²½ç—Õµþ¥¹ÔÆì?vvÄèy-Œ%*8Žì/~sl릧g+šê5n¹H42!½>¶yk`±y_;•vé̾½ÉßßÿèÛšÏÒU\”cÎïÛ{5]sD³¦¿fS•¯ÿó÷ßx+]{Ñßßßßÿ`HE :¿ôSÆnÔ½œ+;×m<øœßÇg€ŽT2¶#½µ²®ìÞ°é¿•ö¾ž†TG¿·‘4E—Q½÷ï%q;ÇÏP¹90¥.‘ª¦Hçp›*'uïOy’&1\”zs©y´{Ó†uû^”0_¾ð¡®Hê={“CnÞ|2Vy¸‡%§§PqënªÖ>„ç×"ÁÚBUªÖ®AQôÞÛiu³‡Ë ÈS¡†#жž>ØXµ¦¶RŽB ÊʈñŠî#G­]è³Ê×Å^©þò¬É.èiÑ•4X…]«MË+M,(mC\µÄ é0-Ÿÿ€§ªéêëjѹéáÕÊÀ..&XêÅ1BcNð£MÔEDÅT1„À)~SÃøìY",L‹y%[,õ‘Ö˜½í†$ÓAC­eï4CçRÛ µýnV¨¸qdÇ™Pr•ëBwM#;{`]øoó‰¹*Ÿ½=핎dgƒ¬¦¦³«Wo'»7P‘Ím¨z°ùí¯d'öžÑs Š²€¤±)I:áÊí%^Éø¬·)L}ùñ,õôt²%º„ñó!Ókæ:o3aqäµÓ·²¤ÊÙs¾<×ƴü'w„àGVí9nêÇÔC¡L‰’Ò ízÙÛô°P¯ ¿&õÅŠ*6MŽ®£Æù(«­FaQjò«Ô”´jòï PÄ&ûôV¦B9*3~(b0ÒKQyy€J‰J‘¦ÿA@QI«&ÿ^W˜VLtV”‡’*`¦=ˆer òB}9y€/c»³Kp©Ù tíí϶ç AVž& Ì’”°À”O_2?~,åägç HMÚmÐ) æÇG¯ÒÊʲкi«ŽëüÒOU-ͪä‡y\¸qÑéúéP!_roVUK³2ù~.[줸L¢§–ßœW”–ZÍ·ááå~CÀTc Óžæú–ÊÜ·Òt^$䔌µ‰Q•€'DQà£- †.~ëo”z#ªÂ’u/s7'Šßã×|ó%VHGiáÒ!j8xºhÖd¦¦½-dþ½ókêúø÷Þ›ÍÞ{OAÁ¸÷n­Vmk—v×j­­¾í¯ÖÖ[­uµuµuTÜ ( (Ndˆ²7 ƒ›÷ ¹@P±ù<>—›ï:箳äAµŒÇndÅÉî¥ÈP#Z‘͘ÎÕ/¾¹ Yÿ÷MV·Ÿ%—ÿúþ²QêÆ;"¤Ž ©›Ì‘éBÒ£Ž ˆ£££¥¥%†aÃ(,ìœÛJ&“”˜² X(JP(•@¡PZK+x6°††à!‰UNPQQ 0”rÞiAº”®ôÛœ¹pÕÛãm©d @Œ ºBê$88Ø`êÌ<„J¥jmmmllT«û<ÎT éÍ=koa4û¡ó—>‡ü¶/—°ÚKö›<ÉñöÁ}-ZÝfJ±€×1^›w5§.ÎÅ •P’Ð5`æ‹‚Zn]¹öWra]«îú´°µáîæJn¾^Å\àêŒCÀPÌ*èÅ|p@IrASÇ Ww|[pGQ=â]óA@­ÀPL£®ÂqÅV«Õèx8t‡d¤úâ=4Rœ½]ÿ:¼kÇN;L½r¬5ÞTž—~úL.§ësλ²{[mêÇ\M­—bŸljÐĉa$›‘ËV Vf!o©ÖYÁ0’&$•J¥ IU}õº ~rSÊ­.uCÓÄÙ (nÏ.Æ/NËN?^Ú$о>¨Ë _An†Þ&7uKeƒûÜUk¥R~yRRéƒÔÿ«u~%8—ÙÏÅóK/çfž­hª”JŠ"Ò¢ŒO‹¨˜J¥5àÕ¥W82dÅ9œ%®P*àU[-*½°_JŠx¬ié7ˆ3¤¯è®?`nþ’œc—Êš¥ ÐTSÅcHëEˆÇÓy?>™8Å}õÊ(Á™-›j†nx-Vtf˦lía&´±KÞ^JË\¿ã q3…F=ÛÐà’}tdHÝdŽL’u ‹ÊÊJ…ÂÀãØ¥ŽãxG‰ȤÎgP.W0É$ ‘0h/÷WVU‚ËĉV·öþé¶ìùx–òZUO&Ù¤Lýpó∴µ3ž;ÏXºïÔ[îºCÒâAåÇŒqÉdÇDŪkx¥êv…P­’pfy@î}"I§€k[›•_Åuüí»Ñ=uó-ãf³®üžQ V·×: %½çÜÝQiÈè‚3ÿ÷ûMƒ£Ûp¡Håäæ,Ìoh”ÊFøØ‹+ù ÂqÞýÝûîêá(ŽëêQKedŠ pfEXݾ”LŽkJE(ŠjJŠÄ¨q5Ò¥~b0$ýêÌhxóŸLXR«Õš:Šv~Ÿeu×ì¼ÝÁ/nÁósc*¶géž%ÚÍf/CÃ0•ªójšÈ¦•JÕ”¹çÇ4ãÈT*•V† šÈ¾cF«ÇŒ¶+ÈÐL$5uœFcßzcõ¡b‚ùØ..Òút½1YEϼ÷ó†?ûaÀ'²oÈÈÖÛŸ'•j¿—Ä"1Ê S¤À [µŠmÒ®ù£õº¨*©¨³”Ü OMõjï9ØIQZÄnVèÈ>£ûuhaAQ‰%„K<©¹ù/—˜Â½ã¡9F ³#µó  $'ŸÐŽtƒêÆ;"¦Ž ©›Ì‘éBÒ£niiÉáp V†][‹ƒuâ»ÿûø›-¯Dvœ¬ÌÍ‚u›¿üÚgËFÔçæq]Q)£»»ssNdÞFœ ¶²BG»/Égì¢E‹fFÚ€ÇèE‹M°&´‰b$(Ö®ž#£¬D2ÖˆÞëL’™> P(Øl¶••)Æ™¶ƒ; ™=c„ ÄÂ.Ôß©¹Y×B™µÉ߬íà«åòÛ¬ý!•Û¦¤ø êoIÆÈ,Ϙpçššz’„ŽhtºR 0jjLk›ÀÙihÆ%͵4{—VQ+ðùl¦s €9GŽ~!Ú¾ã¢0ìé(‚ÑBœœ]Kr(êkÝâ©$ŠsD`¨Œ[Õ Àç³-]#)$#8ÀIÕÄ×»xŠ˜ßjáíëhM£9XÓP=!©þØ! cßÉÕÊ3^K‹­¨+‹åhi @Y×Pãî?Ú‘B&3#}ìê8šC¼.ç×E:öþÃ*vʘù“'Ìêx23¤Ïè~_"|Æ,ôÑœ¨¾òwûŠÞÿ±ÛóI¡òß‹“W:iöâðpC]ë¡/_:Òí,ºñŽˆé£#Cê&sdºô¨cÖ¹°@OhJúþ—yþ/‡O :ùÒNÇÄ$ç>ù[êgK–|< çY·þ‡l¨ª¬pÊÍ­È­ËV¼PUY@8lóêwßm?Žxþ»ïž/û)÷TMIÁ_¦½÷ê¶oó}1ê±õ{>˜e·uAHfú†B¡0f`›±Èïž;öìÒâi qK/ÉäÎûü¥èö9±/lŒéÍ=Ÿ-&R/8VÂ# Éxu}‹à!Á5Ù'´¶o%g„>ûÚêØÆëG2ï ¢Úzlâôí-11»àÌ¿7õ lzÎX·r´%¬Ú8ØÉßþ”Þ¬Yƒ`õÆÄŽ…‰ï\(I˜þözkŠ¢¹ìêÁ£ë7Ø$„Ð&¡¤$ûäq¯ù/}4™‰Ê›KÒ²u^8qöɽæ/ú`,çWÝøûP™±={DËùÊå¢ê·¢ŸŸt÷P‘¬?â4Jøä_Ã5'4[= Þ.¶ œý³ïšo_༹êËI€ËZÊÓÿÞ›VÝ· X„Nø6Tówå¾.ç)ª“’mŸ8}=oª¼»ïz³„E‡2,LŸ•HW êËÿJ­l¯°i׸ZíËuÁÊ 1íí³– Åc®icCk]QËï,¶fH_A¨TÍb 0öWG’>6U3ý€ý°÷ ]Ú·“úγQâKûvh¯A>kÉ,êíŸþÉ&®DkÔ º­ÔÒ3É>:2¤n2G¦ Izpp°‘{Œ—|ÐÁ?^³ŽðM»vêÔgÎ<ª¸Ì x¨C–® ÍÙx ÏA 4›ýÁ@‰³;¤ðEŸ+þßï·¤€œÆ¿¾œ~ú'+w\OŒðØÁ¡²ò¤›Â€Q‘aŠò¤› ²~9ùÄòÐGê‰è…5c L¯‰cbc]ÉÀðšÐ~в÷àØÙÑ^–ÕwDLR7™#Ó…d¼#3f̘y$Ð#†zÞ¹oÒÂî@±Ù ”8 PVçç2&®þdݺuë>Z»æÅpAúmóÞŠ¦ÇÂÍßo˜·% ,\;úéä@ÁÜÿ0` Ñlè*Qs“œæhKÇEÍMí(„amgˆybâžNºÄP¿•É>:2¤n2G¦ Iº¹ÿÁŒ~Ìýf̘1ó€Ò˜tªZÆoSQt*Èøm u¿œ|byè#5 *;ÿm”âFnûp=1‡Û}¢•ºß¤o'ÌêÆ;"¤Ž ©›Ì‘éB2Þ‘3f̘1cæé—ˆDíµ%m"I?ž(˜Ç/™1ó(Ðí÷:x3f̘1cÆŒi1×̘1cÆŒ3f̘1c,æúÀåû|Âø¹îd`ú,j?èyPôø·GùØT7Þ1}tdHÝdŽL’ñŽÌ衹8™n'„' ²­³­ùö0cÆŒ3ÿÌõ‡Íilä $ 9Ži?èÉ+`ÐÔG±²–ºñŽˆé£#Cê&sdºŒwÔ#Ö Wwœ?ÿñ(ýbŒAÏ}ýç‰sΟÜÿýŠQŽºV‘/mÚw"%ùß=_ÌÔ³ßÕ§ÿx¾}‡ijèʽÿ~1®³šä¶à×ä3ÿ7ÉRK2óÒ¥Ké©§ÿùåx§‡-ÙÍÝvbí°^eê0êß|¿ÀO³B÷´¢N›ÞËþ¸”©7÷ŒO{Äû':%{kèŠ7/Äè½ ã¡º_þÑG³õžD¬C§¾øÖêÖ­ûpÕŠEc|ÚWÉÀì¦-{kõGë>|ïÕy1®$°¾üÓ.Ì Ñ©®Ó{ß°ŒfV¢‹Ö —¨ž ±í½A²GdÜŠeó>~yöÓ>’‹òxaF¿°j†¯i?ælzNYõÚhÂËaó⇫ç¢õÜfϰ{í½O­ºC2ŠûÈg_íGkW­\<1ЈÅÁ¸ é‡a‰Ÿ­œ?ÇûѹèXFLú|ÅB­£BP;ÿa/,žóñ«óÞ_0j¸î£f}¾|x @öýdŤQFNž讃=;û£å3_›袷ËxI£1ÏŸ04ç|²«IA™÷Ù®b\ôÐ^ÒôSûò©ÎM5êÆ;"¦Ž ©›Ì‘éB2Ú™aË¢<øS%$ĻҹO[·vÑp‹¢|ƒ;^ºÍ{ÿòñWfgÓ½öÓ¦WïLùòN{wèò/^ú¢ˆ6òÝÿïÅüç¶áúíX^õù¨[^Iëܲ¸!cû7Éí {Kw,za-Éfø»¿}º$ãÒw9Z¿¹LNtIÛ–mhÑ,Pÿ¿[ë‘´ré±Z€Ž´÷4E6SÞ\Hoà1iï-©Ÿ-©å—Ÿ5½´&¥ÉTV»c9kÆ(?»F`è¤ãÐñ¡‚‹¿î-hCmcž[z£"[b=+™»ÿç-¨ËØç »ûWnë¿~¼ßñ ûNy1šÝ¨KÐшeÀÔ(ôöÑã·„$ã çl¼È~‚—4é;Öá6÷R+ ¼úÁ¦ ðÂI¡¢ÒØYŸýg¯°‰žÝÞµù6ßÂ}ü’çÆWnJ*5t‡<¾ài> ƒIƒ»Ú™Ñ¢õþ¥ïË:š«,<¢^ÔÒ¬€Ù£i¹'Oï ®ÑcŸöÌ?Sj²“Ÿ”°oGLývï=$÷)“\9©)G›H±ã kú9«…øN6^²'îûjÀÌ£—óZ•j¥Ôò–V%(ºöj©XÔ¤geºñŽˆé£#Cê&sdºŒvd?kã?+C;›×Ú2ÖÏý8xa'^iÖé­.•ÿ..@¿M¤êêμ”j© ¤¹YêW=ìàwè˜øòã³n7µ¤þunùÿâý¶•è3â2cý*÷ãï¿•#ˆxÿ͹¶Pº}aF1ÿ!a%ïÆíbË©N€Ù¸'$ڞߘÛþõ¤‡-\¿fq´'µµâÚ‰]Û\­Ó³h:5vñ\ÁïKŽÕ*ô¥½g)¢F½ü²÷ù-G}×ùêIuÏÒŽØýèk&8ð²¶®ûìTïŸx¿ùË¿¼Þ|{´=/këGN×àºÓ.¾·û›3û?›xnGq¿VÛ‹sÎ_)lô[쬆‚ IDATÿ¤T,V1d2¨q©L)‹•$o—êœß9R5@MêŽí’r±°ãê9Æw/Mÿ·E‡:±#B\¢>ˆ“˱JíÊ’°Ï%gÝá«©AcV‡±ú·X¶oÎ ø3[=uå0K€Ù G@sî–C÷[Kߘ…c½Xö…”+·ZÔˆ_Ô¬žn4œ__z&ín…¤«#iãÅ”+7[Ô€‹opsùJ”UÕMê Ø&«*>ØFD0óOU©<§¬š"üý·+-à=mõ¤–;³ø`á>bÎôѾ¶d)·ôvÆ…«Å<%3zÙ[®ùIª¨©ƒl%Ågü›/ ¶ €°Bf>3=̲­äü¡£wšÔà9eÕ Ñ h¼ðK!»cy:Ï)«¦ˆ’®ÚOJ²””_<|ä×g»d K\rþŸc9ÍjJÄ¢†•nÙs£ǽñ¼ÅÉïS¤cÞx}ŒÀ Ÿowמ:MHâÒ ‡ÞæàˆMÈ”™Ã\¸ êÖ™ã•b!!MÅi5yÍ Õ¥uêqvL(5PlÔ•!¼÷˜oL¸Cqö »áŽúÄè¾cç&qbPi$)O„r.ÿr8lj í³>Šà%«‚ãwNä8LçQöïÎôºÇ_¥31j…LØñÁ±aWr#«€äìäÊ.ßÓ"WT_KùØÔs%¾–À¶ðsÕ?ü9|²qsn)Ý\'‘ÜÍ©—èî”ÕÒÐGÉ`¿4`pˆÙúÞŠ/ÓÀ~ØÏí] %>³âزa^ÕwDLR7™#Ó…d´#vÒþ šf¢šcû2t® ÛV”vöj•1ëØÖfì:’Ó€­B£E…Å<+GuW±ìŸLóär¸úLý—þß ŠmŸ¬ìè=Èû~fllìÊ[Å1ëaC}«ŠJµwÁôKL°8—r¿ýëé4û¥øÑ7çMvÕŽ<çè0¦^ç£'ŧ¦i¹"J{R„z=÷æØ‚í»sØêÉè´{Lïváã¥Kÿ/Ûÿí%Ã;Z®¼Hû^Ÿ1ëítï·–Å úÓŽ¥¦¡‰ Á†ƒê52öýÜ’&™'×%Iãßùpõ굯„–8Y¨ Ñé8æ<ò™«Ö~øîË3#컼ý1ÿ‘ÃI·¯)t©;Ò…Ï`ôÞî?’þ,·LêŒH«êªœý(VδÊÚÎÍ3Ÿÿzæb³äZÒߟÿú÷ç•+ß6u‡ÿ9›Tg8Ì ŠWâX›ªÔÓ›þ<ŸÚæ=/ºó±ñJ.ÜóÇñ½eÌÉí’‚Ú´|® PŠ»›”Ã{º›n#ÂIùùuz$¬†%Äá7þüqó/Òj¬}Ü5}¤$/òµ?¿ÿñ$ÇT¸ö€œ‡mÚޱ)8¼}û±Jç„XªÏnÞ°aÃ7~‡9D¡dý±yó¾{¶“â1=6íG`™{6¿÷žCBœ +)ªvñó£XùúÑŠ‹j8[7lØ–ÖØzý 6lØÐQy°áPxô·íI•N ñPÃf:WÛúíæ]©­óÆzé ©¥0ýF• 0º›³ŒÍ6ø&î–!ݼ÷ˆMp‚_Óù›\¿6C'Æ´]ܶùÛo¶grùWöÎiN .ânÅ?u®ÌeÂìÒñ °ï·èŸ0ÏàáXéÕJ%Ðiµ•8eõËóÞŸ7|°uÇ °­š­tw±´qö°+TUŠÆ C›Déöìx{‘DÈ é‹g¼dO0× 2^nYå} dü¼öƒ.¨8u•7jø:÷)Ш>:2¤n2G¦ ÉxGâËûVªä·*4Õ«ˆ9csæå´cÚ\õK®€B¡(•J²càÁž– ¥Â‚BÑ£í¿üËW(gv¥r 6‹û½²/---íä¦ðk?%Uhýš8Y–œRÖñŠ d––_;üõO爫!8¸¹µUVjÔéIŠlߘ/ß¿-Õ˜Q4Ƨ½>yç5MõW3rq÷޲TÕ™ßOWˆqié{j;0öªŠJ{7·'b"5#lÊT‡Â#»wîÚ“Ü1+Î@!{»©.ÿ±åûí'k\§M¬Uû±Ž m¹s‡£[½gð*2 2µª¡®YmÍb€´¾¸ÑÑÏ  ø{0Š+ô^aEêí:n›¨¨œ£d1˜`eã,ªÏo”)mEe²½MÇ(e^ùÅžT­d×5wHX ¾ðó×fΠîÏâ¨"AOq®ÌËÓ;AŒÆdR1§ôú‰”|MiYY•Ÿ×$WKëkê ußv³ÉÏK»ZÖÜÊ+)¬RÛÚê›Q½sñVƒT­`WÖªl¬µn°n6›r2r¸rµ¢±ªNmkÇIIq—¯@óó³..ªÖw‡ðs/\*æ yÅ÷«TÖÖL°sv–Ü­+‚â{U$g'–¾¨CúéÇïÎ`]=p®ÚÐÒ=Cºy﨑£•Ù¹w ŽóxRAAénnšº AÚÕ5¥ ¹\ÞXV&’Ëå$ìi„B öàݯÐ\9²›êöÅÿL>Þ`;=λýÂ!­ eÎCü¥5 kûq2 Sá8ưñv±¤á*¦ób/Ùžæ[ç)CPøó‘öUø‹¶)êö³üfƉ›F©ïˆ>:2¤n2G¦ ÉxG .;´ÿ곟ŒžÞ›¢·XÝ#D'WÅž"³<Öýï ä­u©2¹ð¶Ô§¤°ær}Â¥;?L¹vÕ‚so®Ñÿ,Û¹ä…ýµˆ…cüÚ_XòÁ’?ÛëhDâDaòʪN1ö±o·z¾±jÇóNÊÚœ‹û~Þ–Z¥ÐiÓÖÆV(0XÔ7>E”¡/¿ì}öÓ댘Áh|ÚU*•æ€Dêx/ª; 0¸o?©7í ¡@jkk`伌þÃÂp'ûHe“€ŸUûú`ÏÔÚ&PãåÙ7Ù$e×ï6­pw†;¥í ¨O SÑEõ ÝîˆèÌ;µZ¢(€¸¨ª5Þé¦ú9°óêôVéÔxÇåÂq¼½\„¡˜ÖIŠvVi´µKȳOýZØÅ,œ¿'W·eåÀñŒ$Éû]ÿœþÍÓçí&M]>Ú o©*¸r.õnSׯþõý{ôÚĵ.†ê­Lv^Ö.—ƒ0N-É›Âââ–8?¤„áçR–W®÷‰Å»ß!öठÇ0ÍB’ôÎ w0ª}ÄÌgæÁŸ‡ ôÜ!2D+™¦…ì>ΦâðYÕ€¨š_Íq™¾òíñR™°êÌ™Ï*ñåø¯€:z¶^pmñÚò\²²üª¦gì¡\ À+­e-,»|H†…>¶`{R¥BQTVšùM)ÅS©tõS/ÙÌýë÷ÎyÕϬ‚ßm?è‚Åðñs6&w[6§›ºñŽˆé£#Cê&sdºŒw‚ó{OÖü}0[w‘Z/ ¿13§E»u:cŒ›ijEkUæmÞÈ!B.—doßÑ è`ïÀápõ™TUýóÅñÒ ËjWË9Y·Ê|‚;ºHQ‰cëSÎkM/%}ýöâi‰sßÞVúá‡3ôu€ „&Óà‚zRôP†øÄÄ8º.Üž–™™yâ½HÚ”M™û^Ò3®‡i‰¤P>|ñœÔ—vŒÉ¢ò W– ¼³`ÝYù‘ˆ%ð @¡UWo/iEE‹>õ^‚¢Þ1·ˆWY׿áâæââQ_Wö «V«ÁpÉÇqA;m¢ÚÁw…jïéBÀåM•œ6/×>¬¬õ„ƒúD„òòòtï©ÕjíÈLÍÈÙ·OìÝöݦ÷¦6¸MŸ>TïóØÍf—1TSÓîKœ:lòŠ‹Ûüü\½ü=ª Ë»Ü!F~U¸J“dEU:g´QC{±TÒ¦¢Ê¶€·^ߟ8x8[Y¿üúÂ/VΞêJŠœºðhâQ'–CüŠv}ûý–­Û~ÛwúnóSÝãÖœ¼eåod±TÚ/@õƒwHMY»®²X8ÀêXâ6 Ê u|¨tV›D3Ñ‹jçìl‹–ìæúÀÁÂ:ÔËÃß «öƒ.`öΑnV:ékÔwDLR7™#Ó…d¼#UÁÞ÷>?aÄúR„x-øô«5m~wRGƒ“Ê+áƒwæ„°P@iî±Ã|êjëÔÙ—3ýg-Š´¥3ÜÇ=;˸T¦ßªš}ò«ïk¦~ñV”á…Q¥ºÄŶ4°Û»È#âKSR›5¿#^óÖ¼;}ˆ§-I!àr…*}_+»ÁÊÃÝКºSôp†nŸÛÁÌr$g×Ä.ÙS¥Ó.v†³»-%Û7DVRÜ‘Z–‡£J¶96RZTÔl(í®în‚Æ#'ô+GìfMBŠSx§‘  ¬©¬÷ãL#“­ü†²­ªÖÜ¥–îî̺ú½ê=ƒÂrd`J ðs”sx“SyõEjçøpÇú ¶V M"hµðôv°¢Ñì­¨:¿H|A#Ó5Ì‘B"Ñ|ñf¾®ïnã=-6À‚B²õvr´š®'ð  ˆnÈ+КßÁçól|‚™L§A“â:*ÝöÑÓ‡xÛ10•¸U(Qk¡Œ± k[†`¬€P/eCCW¨!´Iµs´$!3 ÄKÁî´ÙT\ŒûÅÇxÕ•iÝ!­>Õ3ÀӒβ³eê¼CZ9VþantÙ2 ÄKÅiÔ'n>5a˜ÄÂ6ÈDZ¥…×Óà õ×N~¶íï϶ýýÙ¶¤3õÊœ3o½I|×c‰Áb‘PEV¸±r²crš5¯5%›Sïê;ÜžB&Óý½lØ\Í gçÿq¶ä±÷÷˜ºº";¿Ñ.TŠ3t°Z^Û9RËrø„ØãÆL ’ì æñKεW¿½8pcÅ·7ááæ7É™¿~IµÎ¦¡êÆ;"¤Ž ©›Ì‘éB2ÞQ;<¶áÚÃðµÉ›§·¾Ü”9D§V%n¼üÊ{µ[qQMÇ8LIúÎ_â×oüw‘%ˆ[ªoïÝx¸$é?løøƒ?“ìµ×¬ÿÃÐâ­ÀKûæ«è?>YÿÒ—<:× ø;óu(Úº`ù_lðýïÌ×ÕŠ¶–šÜS_ý”ÔÑ #ï¥ü¨ýå–^zkó ;LXzyÛ¦SúÊg²«i7Þ3šž|N3¿„0íºRôp†ôƒi¯Hùãækoí9éD“×Ý9òé×¹,Ö°•¿úœ.­ÍþgýÆ<5¢/íîcâYÉï}œ†ñŸñá¢!íH ? ²;¿9YJxòrRöÌÉ/­šIÁÅܲ §oó€óÄ9û ÞÏÀ…µyÇNÞí\xuuujâ4>xjˆÔ‰½ëˆ”ây]ÏBü/çRÓ++×\ΫÌëž:¬Æ'Dd¥dö¾òòœ­kö²ÞÚ½mqhÿ­søx±õÎï¿Ì©Þ´þð¾ÍO'ÿÑk_ž¹,\v!Ó\y0´Ð’ü"“–k«MÊ kÖ¾·$F|1ù ©<ôO†˜Uݽ»ô1o­zï½÷Þ{÷Ý·… 3sêwPO5$k—È 7g P\||"=-»4'-œüŠ1l¬iè¶íºÔ æþ‡F±cRpI+OiaÇ¢à’Vž\» ¡1X–ˆ¬Y$#žW¯Q—ê·2 ÙGG†Ô{áˆ8CIŠžúþ“Aq ÷‚üâ7ÂÔ¨î!¢â>Á¸ÿdÿƒ3fÌ<½ dª‘¶I¤8JeШj™@¬½Ã¬æ$Nyð+‚YXÔJ™ï@@F½õÕ#ò¾|þ—ìö|EXƒ^ÙüªÏ&}u"Þ?±m¶uçN­§Þ›¶é6cÐsŸ¬~.Ê&cçŸÙ¶ñ׫:æd‡½yì·7VOý:KÔ _ŸýÂnÇ‚Wÿb¸-øu÷‹M›®?/ìtÔƒ¥Z»ÃºbçkÌ¿øôÀÝþ]'ÞÂ5fZB´— Y)¨ÏO?›QÖ¹EÕ5~Á³QÍ'~8Óe+AÄnä²—âl Žþp¦ À}⋆Ð;§éIóýœRE¬ŽXOœìȲÀ¥üúœÔ“Wª¤T÷˜Ä Q^¶…°6ÿBòåJâ}œžæÍÈîœSd3xÒôÚž;DÛy9 ys”äÀ±B}xu€Ùú NêæLG¤üÆ›W³oq{º*kÔœxÚÕÓz¹sRÕûæEËœ®üš\eÂ}‡Øt÷úóÃX€ Í—wíÉÒ^qÕ:jñ²Ñ¢ó;ŽßkÁí>ñ‰¢ƒ\Óu5ŠÓÂ%fZbŒ· IÖpåðÁ›\B›=„ÐfOyqvƒì9tä¬!NvdŸ]ž|!§P@w Ÿ76À‡‰7WÝ;v±¸~ ¬ñùÈ!»…G'F8ÚT‚ÆÊ´Ëù¥/aªã g¦ú7_L:Ýe)[Ä~ÈÄåQŒ»ç’NWƒëðiKƒï¿U†ÙwԻ㩗þ¹x½Ç[$>6hΡÓFùº3p~mñÙÌÒFÝ/Eã%Æ\0´Õÿ”ÉÁeJÀÙ?grñ‡× RÞÌÏ.B”MÕwDLRï…#â 1]HFg™aË¢<øS%$DU޶ӫãOCß‹­ÔÿÅïÖz$­\z¬Và>mÝÚEÃ-Šò*œUì^²äÏ.ûK»Í{ÿòñWfgÓ½öÓ¦WïLùòš®bNYyXdL$†×hÎ7dlÿ†#¹£kãÓ’úÙ’úW~ÙøYÓKkRŒ¸µ{‹õÐI#±œ}[sd×ø…óâj¶œ)WÛ„OMŒñ&5ÖwO}иh ö·°)sw×" ªÛŽ \Úów¡µ‰š·|dÐíª\©[ìÌhõå~»ÏÇ¢fΰçD Qy¦M(¢2éõ&*lö–ß´‘Ìâ”óGZpëÀ˜çÆÕºÛ`Xí¿€Uè «¢ôjVºØd§mÿ6 Ü'¾1ùa!aqFr«¢ÆØôCq’FŒ¡Ýß½í¦,Hš·km>±Íòâìî3pF4zóбB’çÈñKGr¾<_“<¦'º5¦œ=Ä%Å.ºéû+&ÙöëéÂÒoòôÎñS9­˜[tüüaÜ3Ô–ÞÓâƒ|0^]÷6š×øA$VCšìèãe ˆ‡»=ª~ ÷’ÛÄñ.Üô '›0ß‘ñ³‡4ï¸Á#¾CŒ—ì‰û¾0ó¨P+…R\«”)øC×^-•ËU€ël! n¼#âŸûæÈzofˆéB2:ëìgmügehç˜À¶Œõs?NëI{4ê:î½u+&Û¨rŽ}ÿÕžl~{£ùË¿¼Þ|{´=/këGN×´׬Ʈݹ:V|â“å¿å˜¨_äÑA]ñHKÙ庂ŠÚòzˆ³aˆÄܲüôë%ŸùŽ]¤É^±±ö÷.f;Lµ×c“P]&‘(é2¹ Ô¸L¦’I$*º££ööÝ&©€}·Xíå%5%BÕ“˜ÏÈ÷ce‡÷åÐhj¡H€Xy žãáLU ÙÅ)—‹ë:5cz›ëÁ’°ÓR¯ç t|þ\*r¥*îý²²è`&4ˆkŸÈ©ÑÎTµ°¡ìÜ¥{ÕÒŽ>Óù–ㆻ²d—.\»ÃS; Mxi `úüaÐrwDZBaH=P2° cÜO®QtíðœüÖXþÞ½7`á=-a¸·-IÚT‘›™q£Œ¯` }îUç{§Uƒ'…ØHKÏ>uOHl“÷‰o,ÊÎ¥ÅÚµCfà”9‰Á̶òôc'ò´‹»Z6YÖ¬ïðò;ñ é¿í½! ¶I'b0!qlˆ3]%¬ºu.ùFT‡M@¬ƒ&NâLÇ…µwΟ¹R-`„Ï_>¤öÀÞkͨSÜ‹ó¬2vŸ*•õ5Î>",ºÆ½ÃSâ ¬¬jV`1„îî¡Í%k%2€¼;•§z8_ia«Ó¼bgLŒp Shd_„6eíLÊw˜øÆÄ¶Ó7íÆ÷gJ*/'¸Ó„ûM}oÿ‚2`$3ïlžý˜8÷Š“f²MZõ|ä´–Þn*(qPÖÔ´¨‡±˜ÐÐ*”å]«âû&¸v}+b^Qave¹Ù6Ã4oņ&©·›%4}ÛÖ&§.n¼ò_ê%2€ûùÕq\nðˆûã—ìæù¦çú‰#Þu'Ãã“öƒ.ã¢Fü2ÒÃÕ ºñŽˆé£#Cê½pDœ!¦ Éè¬c'í¿ i½¨9¶/£gƒY˜“ßù0ðΆEÓf¼ò+7ñóå‘HûyïÄÒ¾×gÌz;Ýû­e1¬µwˆ«•µ'U§Á'òèIñÅ©iZíàmEig¯VuÏ/¯e;“““Ï$ýµý“9T€ÚŒ]GrÚ²UhT ¨°XO1Žwýº<:ÆÑ+&²öFÇ ©¼ïgÆÆÆ®ü·å!Q©óÝ.|¼téÿeû¿½dxÇ\—î9ï4û¥øÑ7çMvÕŽ<çè0æ xQjš˜Ü› 1^qfv0š‹—£¬¡Q ²†¢»eÍÝFì¢Ç±3®Ôvi…µ¹ôwÞy{å+ÏOâD]êÂ[Ig¤£_ç­·ß]Tvøl±@"*}¼iféãeO§Ñˆ£T D8“ŽÙÛ1äjk'…I—DžÇØÕ¥'ÿtàÂEÀŒH›qK¯(Ëš¤Ïb[OˆtÒõE¢Q)J¹¢³¢Ür0ã–ÀÂsB¬MuzÊ–ƒÒÅ^3‡v ¬}"ÈÅžú»‚9~ˆ+ÀÍNùfwÊåÉ­SG¾Ù}ä›öÒ¿®ŒT2p Åîè(V€eä„‘êìƒÛÙyør­•·«¦”ìáE¾õ÷¶íÉM~ÃCm´4 Û¬MݺiÓ¦ƒÙ?²¶ƒ¢lî'íùýtµãø‘>ÚWSÛfë­}›6ý|®J]x|Ó¦M›6í½!Ðc³{œ”Ð S]êOíØòóÞ«Š¨#uÚ¤„ŽOtª9µëç­{3ZÃfŒöhË¿xM3!œi5tBDKzZ©Ì4qöAMj.GÅÃÝFÊáµЙth“(]-žäk/ ˜4K]êÖƒÇ_ÚµõçŸ~Ïj\ߟ”ßž$ûðÁ7þ²õŸ"›q£ü0ÄÕRp.­ÂqL4–u:_äggÂd<„u— šd€R\]­eM¼‰÷p% IDAT6ó KØÍݺGëÀñ>-éÙMÚoEqmƒÒ͉eíä)h0åÀþ‡Æ ©Û$*§9ñÞ¶m’VM×.¸ÆKösÿÀA).âòÄ”’b.O"yè>Ç›¼ûÉháé½)·p„L&©T-¬J¥’LêøZ¨;ÇàjœDÒ<²­å—“Ëa@bkc+î(V9쎒ûðù’…>lÑÉU±§È,Ï„uÿûyk]ªî¬.¹~ÓóÛ…¼?_ä[ÌÖëK“ó*•J“ÉÝsž}ìÛ­žo¬Úñ¼“²6ç⾟·¥V=¨,(„©­­ @î²-Ë;¼)£Ú†M™3ù;é>aõ‘ägw÷x€ñà¬JÚ*è¯-¸}Ÿíh@x,|4å¯nQn|i{z}•º¥àÔî{É$\®°²p„»®Ñ-­mbš³³™—SGŸâ䈃¸@QŒå7o¾(IÑÚÒQnQ«qÍŠÙ#Ž  V (¦QÇqE. ©ÕjtÕst†d¤úâ"-8جWHpç\ºíØIKFXªx5E×ÒÒï7wñ(¸}hmêï|fÔ8Žbšüì“M š81µ2÷åP²BÀÖYÆPT®z^Ÿ+Œ‰å_ÊïR74Mœ½D~ëøÁ[˜…CЈŠ°ëL•B©BDV|ùËbJ¦Rél+Qók¹N‰Ë_‹—ÉZkÎ×ÌÓ<¢jµAžä;¹o(r“ä¢vÃæŽƒƒ©5ÄoE—Ð8ëÊãçÛê´ç—×±„Ë®“cýÙlr”*Š ²ò¬ŸÊ(~¨ ×9ÉÓhÉž`®? èŽ/„:ˆ« ‰ì–†9H« qµ?XDPðD÷Ïñ»O£Î54XÞ€dRï…#â yd)êŠàüÞ“/X³f÷¼ Z©T¢XGù Ã0¥òá'œD")”»L¯Q£¥y—³ÙnûJPÀdì?uNød•ý¡ÕÚ÷­V«A˜ãâùgsšÔŠÖªÌÛ¼U#B õŠ ÀÝŒóÅ.-WëqF~<»fr·“⢤¯ßN²¥×Ð…ë¾üpFÎÊ5¦1&‹Ê7¢^Ô[(ŽA”º»5"PI[J«Ä“|\à~)‘¤½ËÚòùU].kœ¯ì:Â1™yûÈõö)êj5è,c$Lã ‚‰t—0_RÕÝ0 ‰Î;µ¨ ·w±o-ä6ÉäC¶$’ýЩs†»ê¼p<.—åìB#‘Y¾A8—+@GLô«JýçÔMˆ?Hó"2yœFƒÛxÏŒt§ €ì|œ­-P[[èàçJ¥X° ñBËjt-8†a$:“IBQ}Âj¸ýní™0Ò×…‚B²ñr´Št Œm¸yfã®#wÙ¸ëÔy¶2ÿÜ‘]Ù/ ¼¡ààùÒ~\:¯Ÿ`×—ØúÆ8S-,˜Aƒ<Ѫúά¨±#ãb'ú‘ IösÿÀ¡µê³sÕ VTq®æÁЊ—n]½ ºÛߨïˆ>:2¤ÞG„bºŒÏºvxìÞÔ„É?};h݆ž·V5æÿâËì¬a+;õ9]Z›ýÏúyað«‹Ø­â’ÚØæ$»švãí1£éÉç4ƒ–‡¯MÞ<½}6ò¦Ì) :µ*qã¥]ß_ýá'í)²Æûiß}}œé;‰_¿ñßE– n©¾½wãáJÝ~´¾¥ÍÔšõ—þÎ|ж.Xþ»"囯½µç¤M^wçȧ_çêÊy„WXBzé­Í+<ì0aéåm›Niµ€º‰g]ü%ß4YD„¼èrZÀ´9¯ÇÐy[sUÖÙ[Í>‰ï,ˆh/*Î[3dy‡J&ª0)J2S}_|“IRÙEç’s[uªgÎMœ°øD .iªÌ8Ÿ#Aö¹ .‰3^j¡ÔåŸ8[¬óÎ“Š…*™´I c7«[Em²ª YvS¦ÅQykãõËð«®Ö…Ÿ=Ã’¬â³K_Öý–žÉbN;i•²Ò Ùí6¯ØMŸ8‚Š +Nfèÿ&*‹nçŽùj(&cçíM)†d¼º^g²_˜/» U{à¿(?ãºÿŒç^jÊI¾Um tô¸cl¨„[’ž’¯gÊM× +žjï-|yMp.íüãO³À+kâ;&jºwµ2~ܲ7g‘•üšÛ'ÎÖê´I¡MBIiÁÅón‰ VÄÑP¹ òúYÝ=ÃÒ‚‹çܦÌ|uÖåžlßÀ:jò~æžjE[Ý…üðÙc|‹Ï”Ëû#N£‘—æõùü‹!4PˆxéŠ8 ¨9™b3oÜÔ™xs彿nê\¼•Ÿ¥yÙËïÇ.ç×\;uìZ}ßB(È+ .xÅÌ[DC”m|ÎÕKíÕç)Kc[Àäùá ÈM>~V×Bé·Î¥¨KͰž:zÒtœW[”tM³$«¼™+’ДšWšNɾ€Pµš]çÏþêHÒÇ&°j¦ ÚÍ °•Ô•Ÿ[Ͱ“Õ•Ÿmé2~)ØÇw$©ùX‰ŽMÐ4ê-†áì£#Cê½pd0Cú/EÁÁÁ………Ò'žÒ=","ß?ð å‡å__}b×ËëYΣ.37ÿ6-kåk‡ºÊÞ!„oÚµS§nROD/¬c 3‡¸:b @ê<èêdï8Ê‘©sL™P«’}tdH½Ž fHÿ¦ÈL/çl]³—õÖîm‹CŸ‚å?¬G½óû/sª7­?lþd›yDЂÃÜË JMZØ(6ûƒ'ªú¢û´Ñ¯¼¹rÅŠ+V¼:?Hxͼ·b?`áìí5ÈÕõ‹…1l¬iè¶í]¶ràæDÑ%i@ýÉÆÜÿ0`@IÖL­ T$k*¦VÈ]§×R)¨ø2%qíU£npÚ½!É>:2 Þ G3¤ÿRÔÿýO5Çp/È/îÏåŠ T÷Qq Ÿàþ1÷?˜1cÆÌSJ¡S©j¹P¢Ôüƒ`$µR¦À;º|2Õ’‚HÅN(i@ý ã¡”yþÀWò%íXÍA¤2™¾uxpb­^HöÑ‘õÞ82”!ýœ"3½EÆÉ/~Ü1˜iíý’ǃ3f̘é?p™XÜmy µJ.k/òkºü¬ z$ ¨?Ù˜Çd˜1cÆŒ3f̘1cÆXÌõ3f̘1cÆŒ3fÌ‹¹þ0`°`Ž÷rÍDÌ×~  áIBuãÒGGÕ{áÈ`†ôkŠÌ˜1cÆŒ3fþS˜ç? H´›V1÷ŠŠî`Ó&æ^uù•à$¡ºÁÍqôKöÑ‘Aõ^82˜!ýš¢^À˜öíÙ‡‚¢j€ÖSLÛtC—¼×²?~´þ~ÎOyz­†¾ydû3Ž€ U»/ù³ÊD± P—ñï}úÚxG:ÞZw7é‡Ï÷Ün°ŒX´æÝùÃ<™²†ÜS?mÜu³Y­C’Ì%nåê×'…;Y´–gþþÍ7'Ë:Ʊº-øu÷‹M›®?ß¾ÀÕ§žÁÂÕ¸\ÔXxnëÿýtIçÎj&€â2rÖìH^ò¯ç;6y 9„OšíeKÅ%ÍU7/¦Þí\ ¿›$Ð܆OîÆRñ+³/^ÌåÈuÙ´p:yüPw+²RȾ%õJ…H—$Ž/ÇHŸ*î¶6/+zúhÚäK~Æü€1ÿ9‡ë{.Ôà®c_+:|ðV÷¥’­/xn¸(mïÙ"ãæ¤aÓ&zÑZúžKÿ‘Ýú’KXÔ„Pk²JÈ©¾|µ ÂàÞfôàñr‚­sôêŽk\ç¨Äg8'þÉ®TÉ{økqÔ¬cÙa Á^Bs žãíÆPóëJ.^+çè^?ÌxI£1× ’–?ï p… ð–}íÚH‰Nªïˆ>:2¨Þ G3¤_S¤™aË¢<øS%$DZm§WÇŸSïípï—ùñ¿@Äû'V›ÄÜ€Âgæ+ãv,yû"s›¿iÿ²qGnŸ†¿´a¡zç; ÎדýæoøòíØ%Ÿ]JÚtœýñ‡~Y«_XWŽû,üz˳®¯8Ò^îmÈØþ GrG[­tÇ¢ö×’l†¿ûÛ§K2.}—Ó/É´ 41Ê“ÄakWyañ±Œ²£nFì†NŸ?&¬âH^¡$É/~ŠOsò_)\²÷˜9SbØ{39jBI«ÁccÐüvß’œGÎ9²ö·óUÄ’fžP,ƒ‚-K®Ôêߨ³µìÊ‘²ÖÈ-Œ³iÆd°|ÇE ù§Ïæ‹H.CGÏÒôë•FSlûõ†_¸ÿd¯ë95ÉÁÓ*9ˆ›‹=ª8U ¹ÄÇ97g¦§´¼£GO‰hÙ{›O|‡/Ù÷}5`æQ¡ÆEr5¨µ5¨n¼£ÞÙé£z/Ì~M‘ö³6þ³2´sœS[Æú¹§éÙ굨ë¸÷Ö­˜l£jÈ9öýW{²ùàûÒÁ½/ylË\¥Û¾°¿lG¼þù{³ÃìðÆü¤6ì¸ÉÓgÖjìÚ«cÅ'>Yþ[Î@[àÁHÚ¹µH¬Pã*Q›¢M XûûÛæ9[ÑŠÜ?›Ñø\T \Î!’$„<8&"ÿÔ{÷[÷ÿݹ¥‘@kûêÒí 3ŠÞoPÉ»q»Ørª Û2¦@ÒTqïòí²&ÏY¾š“–tJmá=ŽTÀ)¯i°²h#”t÷ókÎß]Û&(Î.1ÍÏ>“Ã%”„–ЬúBžE}Uƒz¤ ªDÄ’:az™>Â)mÈ̸U PÛ ž¸8‚ 0;x÷þ“V„.)ý¢©¶£GºV¥ü}­á¿]#ä4K=\XÀ!{9ˆ8}Wùáäê'¨ØÝ •ß«1ÆÅþ6ŸÛGÉ`Ó=` Û¿14h©=4ûíÚž$T7Þ!}tdP½Ž fH¿¦H vÒþ š×{ͱ}=©<0'¿óaà ‹¦ÍxåWnâçË#€ò=‹bcï,å^ûÂþZ4ò¥µÃ ¾|nÚ¬å{EÓ×<¢ß®µwˆ«•µ'U¿Ü¦áÐÇ_Š^<šrúLÊîqYïoÌeÁ1ÑV(ÙiD”·µµµIB¬­­e¢ÖŽ>ÞÖ죿_©€¼ïgÆÆÆ®ü·…P³6Ô·ª¨´_* ç”Þ¯ly¨ÆÃÎ:xònûFµ³cH¥’T&D"¥kô´I¡6"‘ˆÁdè²)(»–['Œæìî oäˆuIêÂÒs0«îôÉ‹) VqƒQ€æÜÔ-û.dñ¤9)I[ö%miÝdá?Òª.óÂŽÃWĉƒí:Ô­<‚‘âÇÏþ[ÅŠwP{*=Ø“ ‹ £³lU|úÀ”‡¸h/êÓwmÙ²åHÞÃ#blCÃÈÙGví>VbãƒõÄfóõ}[¶ìËjåÙ²eË–-í£›(AñêÎíÛ±ëŸ+¢àÄnŽB‚Ñ[‡wíú·Ô6>ÚÓ|‰ h­Ï*l–jáìl%kæë¾d5(v°$kß®¿¼Ù,¸}øô½öç”àj"Î,aÚåj‡QC°›çî¿·Í£IÌ“Uà³ §½öLâÒĨÛŽ»[RߨrudZ9ºµrVç•A±Té4m´§X"¢Ótí‚k¼dO0÷? TòrH*WƒJV!Éä]›kOªïˆø×¾92¨Þ G3¤_S¤øòþ£•—y# ¿uàPa_EÜ«ÛîòeWÒîP–ØAN‘ žóÓâ7¡­Mp#§úÃ0{ýv«Ž~ñQƒ¿8ïRϪ3 ›ñï­ò½üÉ«É~ó?üxYáòmw×þØ|wãÿ?§róÎäÕÑ%IdAÚ‹4Œ©ßœZÊ>øê¢E:ð{e_ÚrÀHP~xÍzfôË=xPH`€·8ÿÜ݇{E:!‘H8ŽcLGw7>UÅW‘0½¯Jج×&x)›ï§&]¬ïñWµµ&«€Ãàÿ?{çÇu5ð;3Û [X–Þ;ˆ"„ê½·X.rwŠ—Øq‰DZãÇN¾;¶;ŽK\$Ùê Q!@‰Þ–eØÞwæûc©Ò6šÒüŽÎÑp÷Þ¹ïÝi¯¿Ž^Hå°œµ›zñE:Y¡ÜdhiSPRxlèÕ€ª½´IcPÈú‰Í®$ñ‹µÖñòPÕ_jW(›:!“ÏpϾ«ÅWä&€ž©-Ä‹08Zm¼çäûˆ4-…Rƒ ¥±“2OĆNô]+½ÖkPHº‰6´‘—ØÔY+Ö¯°)šÊ”ô:} *•ÉAA™~¾|¨¶OL¹áj]ms¨¥··Mg‰±`4ónzk¿=ЈBDÍ^??¼õX#€¶§›F5u]µÄˆoq"ÇÃpÇX¼ 1…aÓÚ0§¯tÏ5ÇäÎArS0©5Øß êà 7t²™ ›{îÈtäÖ|<ŽÜdJs4 ¢éû¯ŠîúÝBõÑ/N:n¢v•J±ÙY­V*…êL“·í•ç6FR­„ã eîN¬i.8Ñ<ÖÔÌ$X™k³›ü¾¢ ~{öþ/Ö$X} ï8ñÚ½§ÞfÒl#{ëßïK!œi::'AØ+Œºc/,=©OüÍÅ&‚M{v?ø•¡‰³_ü×_wÿf÷o^‚²ø®µaª«•U'ŠZ{tÎG¨Ùl6EÍõG?® 'aC7›cLWþý*Fĭذö­ÛÔM‚(ëàŽ Nû¹Q©‰¢C…bð?Â…9‰#€¸Sí¾‘/ ¡ Ž¢®ã9ÔPB Ö¡'tN q‰qî¿Ä„»$ÝÁXªsT£TaDÚ†EȾs'¡º«W¼ì¾˜ÍšÎÜÜŽá^Í;›Y«è?U×JäñÕàÈ9£ZG ôæ0.ZÁG‹h…"²õ«¾j4¶7 EPFXˆÈ2lNrÂÔÕ뗭ؼ8vDW%©¨­3—ÏÂŒh•ËÇÏ1œS§VÓÂ8L¶€ÇB@©Ppâ}™…hS(.1ïÍ0·ôŒ=Iw8/xÙÜp?…$öVëœ MÄPŒÉfc(Š¢w|'ƒsŒ85(28˜…aÃ/:@¤ž@ŒËjöç6÷ÞÊÔ‹ni³ ,Í—A£²£‚Ñvéà+›š•±lAæâ0ÌæD Ç/Íôò¿_RAÈÿ9p0ƒ#¡csÏ9b‚ŽÜšÇ‘»€LiŽn¤_:žÚ€úÄßþ<ë¥×¿»o“]9øÚåƒ ¹ÿþGö«o}³“¦+ÿÇOŸ=$=öïÙÏï=ùT_åÞ?=÷Þ“²Ë IDATºw>~}¼ê'?~¼Ó¾0Î×… ®ÔÊö:©ÆGß ñpêë äÊ<ôâ“|‘eSµ^ü×{¤ ÝÿÞÿÅ¿ø‡ï·³]UG^};_çLÓ!²ßø“ßo^üì>_¬·æÄÛoéƒë/|[øs¨û`ç#ßH êçßþœ°èú:.yÓÍF tùÏ7'Ú‘6>æ«?º@ßüäðúúc?ÑèHóL[cÞ)Ÿ•Kïy˜ƒ+[/»ØC89ç™Æ’‚ÈUNc€EßßqñLeŸ3M‡ûŒ(%¥Ò„ì k¹›JÖ|¼hè»lm¬¬Ž\4ïþ8Ô,«þîL«ÆÔž_"\¹he:ƒÐô´ž,ü¨ÑÄYk×­¡ZUÝMÇ‹gÞgýfaè“) ,srxh5<.LV›g¡Õ[[Ú¾ ûîǸT«Jrùø™.^ à'@Oáçß–;Æéé9,%…‘kÖߟJ1K ¾;X­1ÖæŸõ_¹öþt&®‘VŸ<5¸Z5=8ë'­¡YU#ÌI†±´]Ëž³qG4¬z•¼´¸ÉÙ˜XÕµ ý»vÿr>àfUgÙ©#eãû ÝÆXÚkòR—oXÇÆ¬šÞ®³Å-ZŒìs˜i•/kW^!oå¼¥³pegñ+C«˜™ú:ÓÒ£ÁÝiN„ÁÕ°cË›û¼<ô'»*kTtçÙ+‚¸fEw¾'…¤æ=”qqqµµµ“ð ’ܦ8¼C®{ÓÚyqݺwŽ»YéšÎ8Ý~ŽÄ-ô¸ DÔÿçXý$ì5…çt¾¥ÉØÁ¢Öü4¡ýÓCöE—0ïŒ[˜ùŸæ‘•²I†9;>ÂÒ~®Zaq Ô§&DZí¿NPsÚrÝGÊÕø% #Á›Í@†H!)$…Œ™ÖFABBrgÀˆŽóo­mžÔ¢ÈTœ“d2±u7Ö3ç=ðè#?üðÃ?°)ZSvÜâ}ò¡‰CBâ¸ÇBšOðЯÔœ)¸ê@0/Š[-ZãÒPÂjÑÚH!)$…íÐd?²ÿÄ5dÿ ÉmJg1è„Yc°„8É ƒý× jN[®ûH¹ªõ6µÉ^P²iL6RH Iá°„„„„„„ä7éõ7¬T1,4†~ æL\‰„„„„„„„„„„ÄSÈú ‰§`Ê𦄸å×jÏýɦ¥ÏcŠÌNK›Çô1[dZRH I¡E6´õŠH$R(&c!e’Û‡wÈuoZ;YÑÑ… 7+]$$$$$$cດ«ù jdÓЫ¯2Q¢â˜Æ^}U7A I!)¬êž SHHFÁžµùžLñAsΞ3-@óM^’•àEµjeõòKÛuN4nÄ‚¥s#¼ÙTܬ–Õå^êºÙwyq‹îN6æ¼X7c‡ O¼fmÚš¦;ÿÝ™F2ÈÓD˜½3‰Ý,—\’Õ t︵K•ÅÇÏu¹ ‚„E;’Ø ÇÏu8uÅ–ù‰/·@ I “qñHaÕLÙÎPœüèêpæÐ¦EŸ”È'ª9\­¿„¡\.BèmZ+ÊõB½Mk&…¤Ú´C±‘ë/‘¸f­¿„P,ÚÀv¤”À…›»þX¥öJݶկö@N­†*ž»~5óÂç:À¡¦pîOÖsÊöå7¯ÄÕ;C›¾:Z{“K˜(Û;ÒÛ&iWÜë’Œ”íæcíjUouJH!k×Eó­ôî2²þàNð’ŒÈ L%£øY.V í0‚×®æYéÝ—ê›cˆ«gÏ)àŒUkÂtŽÎ¨úÃ<ÓþÃuý“¨éŠ1¬¿dÃ5Û¥LÇ :lø;šÎBd0Î4‡¢D8ÒôÜÜm]k:t4R8ó©ˆÃ$¹6w’a1êñ¤Íw\:«P¶•u7ª¬8X»;d0—Ç‚CM³Ñhc˜-6 ³Åf6¯E†ðB“—Ïôe!ƾ΢¢ËujÂ.\‘èË Ô²–sEµ#„/د­²Dz˯ò3Å='Õt‹’Í0ºÆY”îÏ6vž»tMM€8ùÑÕ,è¿öß¡ú%tóݳC½ZšŠÿU$›’ØMG¯ˆÙs#|X¨±·ùb^a£Š@¸á Ï‹ôaàÚîkçÏ•w!dñC1ê"[ølfm~ #ݯ#÷ÇK=â…÷-П«âÏÏ a;JNåÖ«ð[x߯&ô–~7T Æ­}pQРWkýñÿäIœ$‰dÒÁgÅ Úª¯òf ]©1ç,['dÐè³FôW|º^8t‰CY¦Î²Óg®õãŽoÜÕ©§;&u{óµÊNup¶Ÿ·k!À`<¯VóR‡â©è7úq@A òÖ)47/á3Ÿi1ZÈÞþ€h]ì´HË-ƒÏÚæ:CQr¨é¹¹[\kºõ>óñiz‡IrmîP“„äv JN¤ÔTµYÔ­—®v›eˆEf¹ÂàLS[sΜv÷»ïpkxÇñ‚V«3´àÅ™üîâ³{¾;}¬Ókéœ Ђ²3y…g>Ù›w^¼&eà³îÇÒç–õøÌŽÂ®”_ƒ€0/àÇ!õ{÷ÿ¡›$F §êß_øûÉfýHGÖ¶ƒ_øû—þþÝ…:ƒ¡¾µw£4Ý¡Gg.ò‘åïÿò‹ïr: çGÒ€•™-’æ~ÿåW.èb–ÍñDÌÑK¼3’°ŠsõDx0ÑÑhåÁ¯¾>ÚÌÏœ„@÷ù¯öìÙsøÚ¨îKíñ={öìÙ³ç‹ÓzmS¹3ÙÍñŠÌ î/­îs³n87n^¢áâÞ¯¾üïþÊ~Í僧ëí}䂨XZÕ᯾:Öì5/-pz3Ì\,ªæÖ¥Å!â9?¨ÿÂÕQñ4H{l~>l/‘¿FÞ5ãªR¼˜»v­ÿÙOÖÜ¿fN²›MO™»Þ™m]f³öÎSn±uu˜-.‚0%‡šž›»Åµ¦[ïã0Ÿ¦çq˜$׿5IHn¨¡qšÚ½}ÃZÜÚÙúêÏ/ìÆi2#d Úr6k1á¬EKf+~¸ süµõâyë» eF+€¬¶ò¤‚€_¤“ÊMV€–6%…dž^è’Ê-V_KO›ÁcA†M©ÚK›4f…¬Ÿà°axÉGÐ#ç¥HʾîrZ£¹ ñ um¤z+€üjan‚ÏÛ[×^*3ZÚ›»°9"t2I—Õlí“tè-‘VŒe²²¾¼¾ßÐ+•A<t¸µÁ[˜å×~vŸÄìJ‹d2¡Ç¤†[k M0˵¢I£6 aˆ}xPkoGWÖ–]ë5˜ºzlA\€Ó›áŽ€f«-l2AâH±NÞAŽ ¡š»k,Q>·*qã¡·öÛ( AÔìõóÃ[5ª'¨9¦EýAc,8yǵԚ OºL<%Gšc0w‡kM‡ŽF Ça>>MÏâ0I®Ík’ÌxЀРeëÅ‘rsíñ=µ(½rrät“Á‘&58&¬¯öŒTIhªšSwDû]9"N ´ðYÔ-ƒB‚¨oàŽ¢®Ë-Äà‚¸îúc†¦.už8,¿³ ¶†áø@<Í}ím7qÇ\™ ˆ¡uäˆEYâæ³û»nhÒ%™*(âØt¯ŽœB=Ý*¡éî-Ú¹k®Ù¬•žz,G^bA¦0±3Š86ÝKræüñTwtsÖÆš*NšÑ¨[“¶qb3kgcªk%òxž7€ãZçšc`ZÔ¼K²è¦juqûÜÄËe,^D7»ÂP”úé4=7wdךŽÃÜ!“ &‰¼?In#Dþ¦®jÕÀ_4ïˆ0jw}·p“²­ËìMíŽ41 #FG0Ìé×'ð¡B?Ba2³Áb)Dt¨.áAqÜÕà fðò ¯†ü2ÉÔ÷€ã8Š”*“˜ f|¤EÑ¡º„kPµ¹rô¢…¦œ\²öp3ø‹9æ–ŸDü-ÞèSû}µƒ®8v\fPû/NÝY5è±"ðóáp˜›wF ü-Þàsõ\Ð#éT°MmZ$Âå¦܈´¥ÌæCW•ö¦–áŸhü€okGkÊæFsL‹1ÝTÌ7€æÃ¾³+ÇÔM†¢äPÓss·¸Ötë}æãÓô< Ly’Ü>°}}™ ùÐD‚µpA‚„ê(P©4N4}}F¿ðH.Ah¨Pa_ŸÓ¥<4jÛ7NÌ  AôÜû³ƒBq´ˆ†Q˜a!"[¿ÊÕ$Û›…"(#,DdéS9WÃŒŸŸ$l¹t^æf|ømˆª¯íÇ¢ 4^Üò+¢ÂàHFa‡ûã}}®†$ÑyB6† ¬àp«B¡wªÇŽÉÎä7ž»(½Óªh·ù圿=üñ·‡?þöÔù[}þa‡•ÀPŒÉba(Š¢wz'ƒ äUg>ùîÈ'ßùä»Óç{lõGöÆ—×.lØÚD·#N Š faÆð‹)”ƒk²rS³2–-È\†¹ÓœÓ¢ÿ¡W÷ýg:˜qóV&—~ýÞÏô®‚0%Gšc0w‡kM‡ŽF Ça>>MÏ2Á$‘÷'Émêã#TõöÝÍ––² aKVÝLG,eWeÁÕ~'š «8W›¹éÞlnìï,-¬qºT‰©=¿D°|Á²Ÿ²P“JVRÒ¦ W.Z™Î 4=­'‹\n»Hg­]·†jUu7/î€áõ—ؽ՟kTSÄ1A4>d?p§­¿dj(.ôY´xûn6fVv\*¨×Å‹—ß•ÂÄuݵ¹ç\®÷IÌØ¼{)Õ¢îª>SÐ Ãë/ÜõX(.|ûc•†BçÁ¦‡fë/MKÔõåÊ-;ž¸E#­Ì=]yÇ< >ÙÛæÅQ`ц°ÖæŸÈ—::9ÁŒ­rYÚkòR—oXÇÆ¬šÞ®³Å-ƒõKSŸBg`Zz4¸;͉àjÿ’i‡>oÍT¯­TÓæ¦Ó,õÚJéˆá4lº¡Csg jNБ[óq8r©Ë¹ÿ‰k¦Ñþ3qò£ƽGêUîUIÆ‹ßÂûhýpyÂc In9Xøòûc%_Ÿ¨3`‚´ëè%_wßêtÝn0#gÇGXÚÏUkƒS"­í窖)N[®ûHM‹ñK$ž@§„E3BøаpûÁH š{îÈ!täÖ|ŽÜdJsDBBBBBr«°õ472ÒîºïÞ{î¹çž{îZ®«¬wÙ½G2.hâø.h>Áöƒ)ÎÈþ‡аÙ(a´ém‹‚Ѧ·ŒúÕС¹ÛÊ­kÍ :rk>Gn2u9"ûH\Cö?Ü tƒN˜5œÆdÐÁ¬1X‰)N[ưÿ4É´'tû$AB¯¹a¶ îHèØÜsGŽ#·æãqä. Sš#’Ûܤ×Û—z7ô¦)ÎÈñK$$$$$$$$$$$žBÖHHHHHHHHHHH<…¬?Ì8^™Ëç¢ÀæÎ·Œ L \‘Áå¸5÷Ü‘c&èÈù8¹ ÈÔæˆÄ¦¿/ïV'bª  ý„Ô[’›9ÿaÆÀdÆ% urÙ%#+6IhË.uŽÜ’õŽ&3¬•¥Çëú™wºÛÈÀæ¹3‡#·™Ú ö¬»÷ÜÝs‚˜&é•c¾ó¯¢žáä„=ðÙž|~å›E@ ^ñÔ -ó¡hZK¾~÷­}µNIÎ~îè?6rq7keµ§>øãßò]-úÀçÿÇÿËÖ¿Uyšbïmþ'æ³mï”})ÔgÁoþf~Õ÷ý³ÜÀˆÙúÒ »3ÂxxSÉ—ï½s°Þñ¶©âŸ|òÓ #g^Éz5^êC/?»%ÅÇÚyáïüi_½³¯f?wô)éÏüJÀHxü“7|ÿ󨫹½;ÿõéCŠ÷w½rÚ¾zeò3‡žéyüÁ¯Æ»¬=7í{~Æùáµß]íj¿®É&JYº óÒcý½¨V¼éRÉe©aR3&JÜ9Kì\ËÔ‡ðvƒ³j°êÇ’nÜgîö¹úSÇ®:Ýšc²MïsŽߌišãÇk¦Ã]G÷Ž]®,Ü©@”xÏÒPÆàtZsË…¯.õ:·¾S%ܵ8d8J­¿)ï„–’2'Ø‹E!ÌÚþºË—+{,5}’—®Sä¾"!€”v÷Gn2µ9ºÀøxmMËnæAêÁÇ6”2gýìoïþ´bí%ŸOÁÚ_íbuU'ü·¿ü„èø¯w=#Ábùë_Yvú¹ãNOÝøÉ=~%¡æ=ýñïwçå¿Wéi’Ýã¿jî‡åãxç Q½÷bðÇïÿQbðÞðäãÞy¿üÉ/ZÑð]oðÔúÂ_þèð«¨8üü¶s4û1cî¯ÿµ½®‹ž~}Aók¿VÇÌ|úÿþøÐ•»?¨sSòà-|ö Ê^,wÐMwÞGê1TLÚÒ÷}9¯îîzìŸï¼ªxøù“S¸p"72s~‚?Ö+YØ¡§g(‹ŽŸï£¤/ËJ’.ï#<2#ÓÓ˜í§Ôª^Üâ•é‘’ÓõõFDZôç_JŸÚýi“ ¤­hOÕÉv£ Œ—‹¯? ö†9cΣ†þûþˆ—"€–”Wuôñf p壇W„ûdXûK/Õ{­ó¥PÖ¼wtË…?ß+€ˆÇþ÷WÖ;[þ¦}è_<ðaáNhüh׃_IõÏ~òÅÇWÆñ­Ýåß¾÷ö7WF¶a­^#<ýÎe{ŒX‰»^yþÞ¹! MKÉ¡ôuQ§ã{<²îݦúÏî%ƒEM!§üä±zµ ® \¶=(Àaý7({ì%Y$⡉Åÿ~Mi‹³›n¾¤Ðä|sê‘·²#?¨kp Äã+Ï|æ‰J@ò3‡>Ü&´ç:¯^9BO´ä·o=¿Ü§¿øƒ—^=Ò†Cò3‡žé}ã›Ð_=¹PÔ_üÁo_?Ú;Ï»þÚ§:öÕ«ÛbN}R?eëïû;›Ê¯uôû/  }ƒƒU?t,`h»Öš’Ì/ïë÷\ÈfP»[šûÌ6€>‰LËå(~ÉɼÖKuüL>Ðù†¼®Ye&z›;ôñ¾èèq˜Nï„ɦóì9Ib–¹·²´²^M œ€øÌDo:¡ëm/-o”™aûÇe&ú‹˜ˆÞ`£ZÛìׂí—9Ëß›Fh­¥å-r²šânx³µ¤gø®c†ÌÏžÊ2J+ ” ™›9;TÈÀu=õ‹®ÈL˜yW„¶Ì”Äl*nâÍNw¯Rà;xÎüÙaÞ \×]SZR#7;sD÷K^˜%`Pé‹F¨®ÊoâÏÝ>×PTã•6'ˆeê¶{wâÈi⯃¶xGl÷Á“u¤nZ‚ýX®ª(~Á¼?.Ŭêj¬ª¸Ö©µ ܹóRC¼Yˆ©¿½²¸´Uí8ïÙ1A¯·Q­öõ•]æ}½O “º£µ¦ªS˜åç=ûIº· ‹§™­8ˆÙŠ›MfW¨·ß 怂(Ô÷NƶÌ7ßMÇ~¹É¦ÖiÊ<_~µº‚šc€Ó=c‰w?ž¸-‘Bñ½öƒQPfmI|b—Øé»gÈÜsGŽ™ #wæãpä6 S›£Ñømܽ’¶cw6Ó•–$ïßû*u•—0'F[[o’ÑлµäêGŸ^úrñx<+%êî·¾:|êÄŸ¼¸:ÔƒT`üô´ˆ¶ºF€®¸°26#ƒà›‘áu¾ š€æÏîÉʺwO£|ïãYYYYYöq;œUO¿œXýÚOÖnxôsÃO^} ~ä)#׬¦:YcÿÊûnyê~|ÿ¯¶o¸ëÙOªüæ&ºœËB]¸2»>'·oXRýɃ/R ¼Èo¥JéÌvèwï ü¦Ð<1¡›“xëwëCä=r—¦Q÷ÿñAˇ¿ÿ_ë@ÏIÕ_6eee=þCßuŠÁëvžyùþûÿXõäîy˜]¶f5åËŸoÜüä¹°'È@]ç¯ËÉE׬Žs—› `ékoîT.LÓY,B¯·ùÌÊÎŒôÒëõ,k,BP\>–×h¯¦Ñù<¦Éh‡ðâÓBUò¡¢…Y¯³yûûÓ”à˹uÐxFQZOÏÍéd͉£@õOŸíÕs©`ïñâ CÀ¢8ÕnO^^øýÑü¼fí€/ªÿÜ9|yYþ÷Ç‹¯XC³boÛy3“?< mi®{EÆó: -’ñç$¡@ Ÿ3_ ;hßþúˆ¬1 "–®´¼KV5!^´ðôL‘âüÁ½ûN\±Æ-œåíÔ'jv¬ñòáýû¾?Z­Ô];™ßd¿-ù‘Q”šÓû8ÓÎ3+uæÈYâoÀÚÕÙ#ð÷§°ýý©½ÀŽNŸEÔ>°ÿPîe9ÛOD…l %G÷ï=TÐÉÏH ¥:Ë;-<}¾·¼èðÞ½‡òëUw˼¡÷ bQµ´ö(o¬'s£7oY½{óòËRã˜SóIº3nÔ†M+ïÙ¸lÛ’ä8> oÍ-³¦¬Yy÷Æ•å§ËeVgšF™Âæ+bqE~:ù-E7Nè a0Ù¼#§zzƒ5aͱ@ö?ÌL¦öIƒƒÙ$±Œ×H5Í4“Ó„‡Ì=wä˜ :rg>Gn2µ9 %ùÞ»“1î²Ý[öä}ÓéJ—³ñý/Ì37{óÙ?_¶×ür‡ù«ÇrT°}P AÆìË“¿ÜùGfòcï¾õëµ¥O¾¾ì;Däc_æ>š÷>ÿ›UÑùš_ÎM§=Çš—p~ïe§¹ŽŽVT£ÃA—{úÒË÷Åñ¡f°dŸ°f•éÄsM¡Jåz{sÎæ’½o—¸ŽˆO` ®uïuUš_Úêk–/[Ñà;\ŸXÙ–tÙmwO§Ó­V+U3;…åe‘Xhtº Ó¨GÞˆjùÏ9r·]]'ö|]ÚБw,H €¶cÿ9Ú¢h¬¸6ÐGä2ïm-­¢T¨¹™Íå†޲„¾b ×à†E€±}ã"BCyƆâF5#|v¬íê‰6Ä:"ºª/Êgmû aÖ÷4É5®?Ie‹Ú ЧPÚÄL&€Žã%4ÈËûÌ6IWçÅ„~àP© m„/¡A^Ño%ÀÚ.é]Ãc€Ê8Uñ›éˆ"Âm-çF<`ÚæŠ+jU{žÊa踡¾³Ba²©³]†% ˜Ð@È¥ÝVk€U)•¬¡V”‰pBCge¯…K{kwf¢½&‡ŽLZ­…  too.4ÚnU• ýf€>™ÂæÏa8vä,ñ7b–Hiþ¾hs5ÀŸÓU;ØUÒ˜L*¢UvÕ–tÙ%\@ßYÑc°ôÖ]8¯Dp”wƒ—@hè¬P˜p•r°ïÀQÞ™IëW'Œlé¹t0·Ñ¡÷© ¯þàñf ?ñxÛàßÒÿüAÈ/Ÿýä>_«¤òì—ÿø0§Íy6…¡Z5j¼);ã×{^Ÿßydïø¸¨®×mY›³`~GÁÇÝö¿Lf3†aºœ—׿p·R,fWUÑÆ=/œÈ|ñÙ§~µ·ÃuýÏf³ P(ïÅ¡Áb8Û….ónQ«ŒB¡Àñ¨ž©Áfõ´åïm E#6›m,B ú§¯É Ð6ÕÕVvöpÌ7%…×\¯ÑF¨›Ïn)¡`¸ÕJY‘(v•,bø€ßÑ’0 IDAT@E‡FßᎢèuÂ!Pe‡,]á‚Yõ*²›ÜˆOx¨©åôÈ Œ'ã (:$ÄñÈ;EQvÌ’a8 «¶w¨qƒ#¼_8oÖ‹Y/»x±{P<|Ý {â`”HTIþ>ÐÅôJ[» ]Ci¹WZÆšD®éi»Z^ѪÂEQxÊ-ÊN‰ó¼##„.ó®®;w¬ud´lFáÈûT€[tº×‹¶¡«7Æ‹àdfü$\Ž™ nÑé£ÔØÕí%0ù…¨;ÎÉu€¶^š¼2Ð÷ŠRêHÓ îìa¯ˆ6Wå˜Ñˆ[•ñ`ÃqA,’Šï%ÔÇNòôXs,õ‡O°z9ßXÑ–×Ë[¹‚o®hËkµÜPÄ¢Ð4šòÔ™~dzB‡Ì[ܽêÜhNБ;óq8r©ÍÑ0¡›¶¦Ø û`ÖâmË>¾xÒáÇ‘½tûÊñJaÑ´^êv~<äôfdˆü>ÊÝ5 ”Z÷Ù½tªˆ_áb® sOqYÓ›‹bèÐb‚®ÂóýïgÄ¥ “* ß.ëâŽ"#¿ŒV«µýûgøâ†ÞÊœ5KºN>$–èë¼ýä z…¦ízé6V>þƒÓIÃ*µŠÃáŽ0²vléùç†çŽÜø!dG.^§¿túâ¨ùqi³5eû—FRË呈  ‘OOÜU,lmß½öIú'¯?rù§{ê=ê P(ëõšÃBWyÇ8\†Ru“';šôz„ɤX€Åbéõú±)A±1úò}¹M#CÎðgqØ«ïÃ&¾×ûÊá#õÔ𬻹ÇLÃd[ŸŽã2P†AÇ ˆ‘BdHSÛzöló¤Ío¿mAý"B´-ÇÜŒÙ&FFÞQÑy¤¦¦6÷èÕ"½#VäÿÎ{ó&ÒÓæ8ñT~p¨·µ»U:4§@/é4,÷÷3}ä’â¡¥¯¡$§Pš—o|fö¼(Ù©zèlR 0,¸Ã¼8Ì»Y§q0 ‘÷ œДŒÖSuÃogU€É¸3NHò|FkN½€øV¢J 5L¢˜M@z:»zÙæ„ͨZ–É`Bü¯t&e0M¿§zù†ò­2I¯}à„ Í @6ìÌh´€`Ž/êàÁ(PŽ/'ÄŸFsl<ÂÜsGŽ™ #wæãpä6 S›£aÚþûèÊaÖÿÖqål¡«óÔÖx. (3(+=¼SÒ PûÑŽ¬6ýµÒpüù¬ÝŸµ™«ÊkgoØÃc0|3v® ¨ºìj®ð@~þ‹2búº¥ö–ù¶ó…¶Œ·Ï®)(QàStË¸É RÄ|QH€Ž¦fŸÙóƒéôˆí¿{ûÞÄQ½Ôù«³Oæ QFB·?ÿô†Ù!BŠE%—«m®ªU=Òn^p{XÀõâ™årG­h¡;ÿæó¿}ÿé•£ÆÕ‹g%z×Ô4þI”Fm¾'UÈb-½k–—ßtã™FBH¿ù—Žu¯=1Çå€O¶_ŠRE –Î65Ôä–.¦¡TïÌ%©Æºº^wy Tɺ=š7©È$‚¨1“Jå†Ä…!ʱitºMo¸®ŒÔ[qàë~(ë±6ŸûúH•0ߨùéñb:FáÅ…1e²±M¿Ói•,Q¨€†aŒÀ!®Öè@§Ó°½ƒùt&×75Ægà–Ój• ï€ñ#’Gógú‹© êoisWvU+•ì€Po:Fa„ˆqe¿Ó¢ƒZ©dùxa?6sq‚uâE1“‰!2TþžœÄóâfÏ›¿tn؈¦M­DbóŸãÛ/é( óbç¥Gúz1PÜd0˜‰ál†‹™JõŠÊÚ¸(œî,ïZ­–ã,d2y!)‰T×y¿‡Þ§#N  `b(F‡û ú”Î&ŠLÂ嘱qŠX =J>á~‚>U€I¥1yû…³0¡B|j­Ò‰¦BÑp¢¨Í³QÓ …L Jð¦S©¬¨¤K6˜N\úìùiééA˜;͉@ö?Ìä²ÏÿÑ8 ûbà`$ÖªýÕÕ.6÷Ü‘C&èÈùx¹ ÈÔæhÎíùgö+ïüpèûÚ/}ñÎÞVgªÒÞú{è‹oüï1.¯>ñÇ?å¸jÞŽúù·…?',º¾ŽËGÞÚÚ¡îüyá}Ûß~cä§Úûïd¿úÖ7;iºòüôÙCÝšûˬßþå‡Çø˜¡ëâWoLÀc,\yíäÿ,*ö×6P~âý_{cêÆ‚ß=ât>˜ŠrKŸ\¼uâÔ@¡AæÚ÷ ×iØwueë5‰J¨¯ëYš¥ÄÇG·55 7¬Îýõõè—óß"‹¤äëW>w·x+ôçþé͹Ÿÿî¹ì‡_Ë\ àÛŸCÝ;ùFÚròó‹?{â³Ã¾Lsgž߿}yàZsÓÿøÈXFIùw¯¼SE ®ò´8›{öŸWÜ&gÌÿÉÒH{ygɽ`iÊý¾¤«½¬H0?cÝV®éºVp©«ÇBJÄÒ{‡{íÛ ¾.lwè\Ww¡Ì{~ÖæT«¶§©°dŒ‹·š;Ë*ù™sÍ¢º^Iay€©ërƒ_VVv¼ºµ ¡'Ú>ÙÂÒYVÅŸ¿`I ±êWË5“ÑÕ~B èm)sÛ dn¾T*š¿hS"ÐÉÎ;߯Ü|é¢hþÒ­É Ôª•^+QâNi›¯¨ÖnÜ• „E+»z>ïê˜V.v’x£J¡11,½ê‘×\)‘Ð’ueß †Þ~49mél/&jêï(/m2ØÁ{Þüõ;X¨E-­º0(¼1ïÆæÊkÁY+6Å©j ®J¢“\åݽOŸE[2bìvÖúh°Öœ,è¬/òKÊZµ’…Ùt}ÒóeíÎÖøå˜¹X»Jüf-X±œ‰Ùt}ÝÅ—ÚuÐÛTК4wé²…¤‘_ªh×€#ÍÑ­J3­òe••]òÊL]¸kdÍuCK²šUýzÝÚ§ÃÝiNdä";¶¼¹ïÀË“pV’)€ë••ée¾ÖUªä,\àe¹ÖU*5\'8= ‘ª.,V;îÌ2—¸+o¹Ñœ #wæãpä6 S—£¸¸¸ÚÚZ7¹•P¨T‚æ»ø×o-?ÿ‹—sǾ´5gõÛßeålåÌøç¯ÒRŸùúwô¿>òvÑÌZÆ|l›Ê¡þ›Þÿx}ñã?û~´¾Ã;Äá›öÅuëÞ9vlüé%¹Ã …/ÞÔz  m6‚£#4$kg¤ô‡\{½å%­ZN/ÿ¡l ó~nZâï&~9H<. Xå­]F^p°À&oíRÛ¦D8m¹î#EŽ_š10˜Ññ‚0 tf”ý`¨ LÉtº¤â¹çŽ3AGîÌÇáÈm@¦6GÓöò7Näüø·ªÿ:ŽÊoÙêäâ“…ZüÆ\ùÁó_pŸøôÃ{n×q(üOýçŸ[Ûß}eïxw°&!#ôpŸ®ÉÔ—¿8Âí­ô¤MÛ·mݺuëÖÍKCôW›Æ´3òMKüÁ„/‰G`lŸ‰…%´L‘p¦@ö?Ì0ŒÃÆ£YgÅ8Œ0šu£-ÓX4bÓêlŽû†Ì]lõ噿¹1‡#·™ºMûþ‡i]œ WêoÏ&1FP|°¶¾Aé áˆì !!!¹ @0BXM|ðÀ65ÂiËu)rþÃŒÁfÓtl ŒÂ¬7»ªØ[Cs‚ŽÜ˜Ç‘»€LqŽH<ÀÔs¥þV§aÊ0JjÜOk'!!!!™±6³i È1x05™ÂL“ABBBBBBBBBBrk ë$$$$$$$$$$$žBÖf <¿•[S²Ã1ðò[a?¾(eÛr?/·æž;r̹3‡#·™Ú‘xÂô÷åÝêDLT¡Ÿz«ABBBBBr³ ë3¶ u^X‚&?Å~0 Ì7>l~2ßéYCæž;r̹3‡#·™Úöú?ççççççÚŽ>Ÿ1igŸ~ > žúøë¿ìŒ !ÂõÓONŸ~yK»äg ÄÇ£9à•|ÏŸýp"çÔÁ¯þüØ\o§ëU$þêÇ“¿ÍÄËßÎ-üänÿŸwþëı?®ª1&?sèóû‚ÆŸAnÚ/öüïý{g±Ý«ÞB˜QK·b^ Ƙ·lݦ-[6®]:7¾WÂJ]²fãæ­[7­_™• ¶ï­ˆr‚gg¯Ù¸e˦uËçE \?ìøE‹R„“œvXúæUI!㬫MI’¦ŒÈÅëçˆ'÷c>|NQêú±G:ì¨%›6Î ö`3ÐëÏ96¸q+Ö¥ˆFœ'É3¨Þ1™+ÖoÞ²yê¬$¦G6SdÏ@¼¢æm_¿t®øøž©bׯ[¾míÀ¿³ì=ÊñË^²xËš%ë²’"y(ãm_•àg_ É?e뺹1žÝÓš rÙ÷·Ý;bavöæÕY+fó'gæ39zÆÐÓôéû¸Æ–æÿ¼/Á5×mÞd¹üý™fÔìtÕ¶!sÏ9f‚ŽÜ™Ã‘Û€LmŽn 0>^[Sãb³ÝÑç²ÂXw˜© Q½÷bðÇïÿQbZÿÒ‹÷Ì£Õ]q¾Õ0-ŸîÞýß¶‘’¤‡_ßEìyjçé.jäŽ×ßx2k÷«ÎöÓÅ™é‰P\…¥f¤bxǼ;ï£?õ*ÔãÎÓuô强»ë±¾óªâáçONÛm›Œ­EÇ:Ê?ßÔÅ‘ý*`„¥$1ºòNäi¯èÌÅ)¡]yÍF¯ðÄ }õé|‰ åD.XØØÓbfE¦'3Û Nž×!ü„¬¬„ Éù¶›¼Ù¶¾»ñ’Ñ&ÛÆu·=ìvç¹{rNò9õÕå«ÜÃõ0¦$ã‚™‡¶ämÖaÞ³²$Ê—u»ÛNëÖ%žæŸAÑOÆuwšæÓ-š‘fPz½½´è¼áÇÌΊñ•\” }ùÐÝøøðÂéæìÓv@zr¨ªéu{{`â”Ù"UÅ…R5æ—˜6?Zu²fâ[È‘õ‡ƒÍªQá`%€<aÒm€;}½ÙZCs‚ŽÜ™Ã‘Û€LmŽ®ƒ‘ùП)}j÷§Mc~:Ñ€¥¿~éËã¶îÊÿòægåJ{£÷oBõäBQñ¿}ýh‡=¡¼%/îy.Kèw|\9—m`dÝ»MõŸÝ?J }ýÅG?ø:¿qÞ{‹¢Ç~:~T”ðò¾ã- æxžìî91PPéD¹®¶7=# ª¸‰’:û¦ÊɃûO7~´+¯^9¬‹ˆ–üö­ç—ûôðÒ«GÚp'‘g%îzåù{ç†04-%‡þýÑ×EöÒ“þÚ§:öÕ«ÛbN}R?‰;•O&„ÕdXpß+>J(»zQ lUÞÞª4Ûú»äúHÀh1™pšÅŠAX¬¸ÅdÆ0‘@Ñ–§6½WÎtîÈ+fÁªh@æŠhP7ž(hÕÂò‹IóÐq½¢½¼ª­×´¨ù ]Wm!q!lKWuEi§Ñ?ei¨¾÷ g´_káF' zK ›ú±2ƒö³ukê-ÂØ ‰æ‹Íì䦥÷ê¥+M€æ—”Âc‚QÑV[Z×grž$¶lzœ¯Fèú$—›åfÇIšªK2)pBBå @”º>Õ—S§ŸÙ“tgÎÖë"Œž›ëËÅÌjY˵+õR €™½ZÐQ†‡§s,ÒÊÂÒv½ãs#pNfZ0Ã$½R\Úª!@”º~q$TÕ';•—C”º>ÕXVÏMN`Xz®—4,¢\ŸN»¦?ÃÜ}¥èb«– †.Ü.;q®Ñ^‰«QÊ^6'¬ZÏX¼=ÊîΞ»á$u_-¹Ð¬&v`Ꜥ !Ð+š*Êjä&'IB4Ò«Šv•«¢»9 70÷Až"0ql¤Wg]#7ÑåðOº8anjN¥cUÕž,iå9È»úæPÝe[@<£µ¬•;+Q$+={­ïÖWén˜@(èëÊÓX€ÞÚ ö7@©2‹}ØÐOõå”ãÙ&éÖaÒvw4Ôukü2|ø®5½}5GzM€Ž¦îÄt^ZéÚÄ=äø¥ƒìÓ¯¯d. Ä1OÚFAËxhý¿Šñukî¹#ÇLБ;óq8r©ÍÑhü6î^ÉÛ±;{ì œUO½Sñú=ë7>ö/ùš?<’:04'lÍjÊ—?߸ùÉsaO<1øÈòÃâxü¨Ø¶â»…P®Ì®ÏÉí–èêrµyøš}`ω'Žøæ£ßma€Z&3ÅeÌå¡TßùsÂø|ïÍþ Ìs3Ä¡©’Òr{%«ê/›²²²ÿ¡ï:Õàu;ϼ|ÿý,zr÷¼¡97FÞwËS÷ãûµ}Ã]Ï~Rå77qÄ ¼.']³:γŒÝJPߘ(´¥^j轚SÔb/ Óx^ “ÙúÆ’2KüšM7nZ(=_Þi ÑèÊ‹Î\¹aó¦uËæ„r~<ÔõEûŽ_U›ŠsöÍÙWЪªßì^oåùC§Jkl!ó¢†Fa"ÖPRp¬JçáÇ@¼™Æòk½ü¸P´ájˆý8}uGŽæì+,Ï §´ååäçKYÉÑ>(â1ÇGuñ\Þ‘ÂKp| ßU’R“¹òÊâC9¥WŒþóbΓ4}á…„`íí×ßÏ#aE¤ÄMyÇŽœ,¼ª`‰½‡Z )>bJCþ±ãåj¿˜à‘Ù¼þœœ°(¶¤øôé‹=ü”8_•G÷ïߟ×týåð £4ä=Z a'Çû£.ÎÉ AërÍ—x%Çù"©T!ðõ¥°|}iÒ®^õµSû÷Ÿºª24æíß¿ÿþÁÊp¢½º.äœ.“ó’ãP †¤Ìá+.ž:|ôìChF‚Èi’´×š@éB¾¥_é¶Í}§„šì§ºÒ tSÂg‡'EšªO=|èt­ZW—[Òjo®qp9!S_QÕÍŸÖ–µB wÊsqkà„/[µdÓÊE«3#¼0 Ñ¨ʉNËܰjɺ… ¡œ¬I®°‰¼™¡H×+Ÿ¦?N°ª%…ƃmi ¸0<3%€k4ôÉ¥Eö?ÌŒš¦Z™A‰ƒIÛ\+3^ÿBÁ•í²ºÖiKÙ¹çŽ3AGîÌÇáÈm@¦6G#¡$ß{w2À]¶{Ëž¼o:=0&8:Z^ôaµÒp>·‚þH´7T* íØ޶è+®? ö†9@Ûþ×~Û¥¯ÊŸÞ &>ºÖ½ãkè¨ù÷£w}ƒÊ Ùðâ›Ïm)yì[iÉçïW¿óǃ§ljyÕ±ª.`¸Ø°é.½À~`Ýr¶öÂÇÆ-s]ùê:±çëÒ€Ž¼ËøcAB98Š<Š T®·7él.ÙûvÉès´µ´ŠVR¡fz¯¡„j[O°ÃX>!á¡AA~^Ææ‹-Z ¥¦òº.ävêQ¯¨9éqÊ3WzóâùyÇ/RD‰ 3SCe-ch™gsyFÅ¥•«¤³on”Ô&›B"ÕX”Ê>Š yŸÕêmÕôÊLÖ`ÊpÑÎ¥é¬nÓ˜Ì •MÄ`è{ëOƒÅŠƒ¹W¡º¨_³¹<ƒ¢ªßlJû±ú Ž“4m†„ØÚλ- ‚Ò *èÔÝ—º‡åVy{›Æ Чè³a#²yÃ9umWëeZm—‚pÝZ¯n¹Ú¬4˜{úl¾lÀ`Ãü çÔ´Ö´ª­*y1‹Ã0˜¥Ò¾$±mí¤øú²¤ We9][uT îTà³X =—Ç7H¯ôšlR‰Kà3@atš$jxÖ¦4_›ª­¬°\áîÝîI§Zh|0ÞTÚa†(׊fÎê…‚ t¡€-öÏ y ze=V«ŸU%“­AVÌÕÃ5sQ5Ÿ=׆Bá'd&Êηã˜7/);~Ťf&È.tze”ˆ0ŠEÑh ¹'H`ŠÊàú)4B£Ød¼ÖÈúÃŒ¡OòÃçöò’?¿qļµöD‰«‡Í=wä :rg>Gî2µ9`õýëí³˜Ð¸]÷ÎÝ÷îű”$©TŠÍ60ÉjµR)ÓD‰ÁÏ(NàÊÐ#«i.8Ñ<†Óß„¡Z5ίEÝ#˜£ Ý{ºaWt8€ï8ñÚ½§ÞfÒl#{ëßïKqÙ`ÔpábÈŸwõÿ÷!%m‹K_C‘·ÙlCA¾1òÒÿüAÈ/Ÿýä>_«¤òì—ÿø0§mø[Ô*£P(˜Ö»l#b_mWõ`¹Žê›ºtžŸ®µ¡¹´ZÚoÄ(~¡ê– r  «—Ä­ ]éÕ=-MJ3fYc»f…c©? Ê Z¸ØµêU×—[ íE¬­à€â™ÎEq¨L—×EPbð8¢××E“4mAD!Áæ¶#CÌ×mÒNànÊw×Xp‚ÐuäÌ+:™[xø‚dŠf„2ƒ££­M9çŠNæ•ÕŽº9%iè¾@P'fÖàÔ'$P×Þ1ÜI0œ£¡¼Zû›/åŸ:rèXþ¥0--Üå;ã†sŽAÜ“Ékã<§N*5ùú D¾ÞŠ.Ù°žÞ뮦óû“Ê 1p³FÚcòóuÙæìa'/o+téÚ;Ög§zc¡sW¬Šq¼Ä3<ÅOzöðÑã'OåTthgÚ}<é°F vìñ0[F¿×GÜ!½ÝÝý½ÝÒ5wÚ5T®8Üàp1 ¥zg.I5ÖÕ .ºýµw_yõo¿Y9ÞæÚ›C´›äѦ¡;ÿæó¿}ÿé•Å¥•=gÝÚt•.Lܸ,¢æZ0foáé]©|:Ó?뮕¢òò—'µUîùÕ‹û[Ü:gû ©(U´`élSCý@oˆ<ºýù§7ÌR,*¹\mY–  Tɺoò’Dc…é-dôõ•«i4šÍ`¸n³Jeò faBå…øóÔ*5€MÑÓ/ äÓ0 Ë7*„­èu9*ͤ×SE¾|&ÎeÓÐiU ?@½ÂDzòäŽA( ”!3m ‹:Ðbî(ILï >Ã~~|\£™a‹Ü ¾¡ªö‘SBôz[Àg0xÁIñþÅndZJ˜—ŽâfƒÁì¦lyã9€ÊâÐQeøùØ”Ê1O'w|NŽCP†_àˆsj¤RÂ7>JÔß%Ñ>jÔë©"“ÎàrœWÔªTL¿ !Ø~"\¥rv5 nÈì”H! „Âñ÷õÒê\õ0ÈS@má¾£9ûŽæì;š_Ùkk»˜sªÞqJQ¥3‚ ·“ÜÞ˜qŠOP€˜¡M,æ©TJ[_¿00Ò‹Ša ßP?vŸrè Fô5å_꘴ùn=ì¨Ôä9)³g Sê•wyÆi +(Üé–OF;9~iÆÐUûþKµ@@Ôýõ¥:¸¾©Ì|á߇JGg›{îÈ1täÎ|ÒM^’ ú¯w¾‘ƒsMœ´tCŪ•7œ _*¥ÇFª.]Ùùj•\« Ș¿: ³È«r [;2·]®¦Ï[KÃõ½-ËäÎòhí¼Z07sm ¬FMOmy£‹‚£§A¾¥èZkÔËWmIª“×^,®ó`ôÛ«¬©Ò'>-+›‰ÙôÊžŠªN:ÊjXsÒ$Ò C¿ôâ™ý 6ò31Ój_ÞsVÏ·ãç®kKé¹Kr0«UzÃÖ¯|ËZ{*+¸éIó70pmO[ɵ‰/Þ ƒ1Ü—¹cË›û¼< g%™øþkWúË«rå>«Wû›Ë«r›F¾b)‘K’ÓiÒ§¤Žë•CæMî&ë»Ñœ #wæ“æhò’äÂ<..®¶Ö³éãdæïAK}æëßÑÿúÈÛEÓ}dÏhÆyÔÓû¯/~ügßÖwx‡8|Ó¾¸nÝ;ÇŽ?½$wÔÌ5ÇK$,¿2ÝÎ9r Ô!Ðÿoï¼ãÛªÎÿÿÜ{%]íi KÞ{;{:›³$ŒB)›oÙ{JR(«ð…¶ÌB~e}i e%¬PBg9qìxÄ{˲$kïquïïÙŽ‡dɱLìô¾_þC>:ç|žsïÕ¹ç9E)Œ«™·ÿÌöæhk_°äU·>ð›¥J–³³rÛsÏ}Õ1tÿ5—¾þÎu¦?_ñØ®ð¾ñóØù— $E\†æïÿöÔ+{ 3T@†$k^i–Œ‹‘^k_S]³qx'¦$ÉÒL×±oY¡Žðs*Vçóú|{Ü ->ky:kxu^°ïð®z3°dyåÅiRé6vÖ×wÛ‰(1nrñ¼‚d!›A=ÖÞÆšVSÄ„¤lmºã@m÷ðñ¼ÌE‹{:#íÚ/ÎÝXà?p¨w²¼†@ùªœÒì$ŽÝ–Îæ–.{¬ÆÃÍ]VÎj>Ø8é¹w3–|ÁÓ—¯µý§Î”À•—'ó®_‘ÉqµìÙÛ>zÇUnÆŠUy¾úÝÇtáAZ|V±ïྎhwsœ qVyY¶œ‡mmU;óœ"óœ*?ƒÀ$Å‹s“„LÊç45Õ5vØINÖÒ ‹E£âè|U×—µ3 T”RP–)峨€ÓÒÞÔÒã$0IzaYº„Ëymú¦†Q‡žð³­Éæô×î«IÞò•kÕOÍF 0UɦRVK屎¹s$K’Q^ –±)·©·®©ßm«0qîÆÅê“UzÝ÷MÓߢ‹öæ Úª?ÜQOÚ¼à?úô¤mÜîÝ÷Ê ˜W3yüB‘™¦P¬ä JœIñ …Ѻšš&9ìÀ½óÕ;!Ñg;œøëÖÕ…²{¿| !ÙÍA$çÞ~W?Ҁμð¦õú·®¾óG¦Ùúü׬Û^ý¥#yË£w$}sÏ÷j±ü^~é†õ»ø&ò­R\üèCÙ¸ö‘N2óŠ?½zÿE‡oÙÎ[¿ççŒÞšÑ‡Nµ¿uåµh’¥w¿ùû«÷ì}±vF ÈÍ(ÉE{*èõb’üe‹óÍߤx©åeYrÔnø€²RвÞÑáÎÖ½c›€€©Šç+œ5•5LQ¼tA®õ§&;1&?5?ÙÛ²÷.€ð2¯ÎIî2õFj;ù<>Ž û8Îò:¦|fñx8šyœš£UNЧ)\Všn©ìœ[ŠÌ\M w ÙœÐm[Fåikúñë&ŸU2>’Wß\ç ™ãm@³Sæ°ú÷üÐåE؈/8Å<Ç9Ï)ò3Ø9¶f~®Ý¿¯Å‰³çm(ÑôïïóõÖ|©š"ÂlÈtЛ²FO.ÊÃŽîtƒ ½dE~²þh¿Ÿ“R’…öTèñb’œò%9¶ï,C7”•\”†yGUH&–‹ÀhCdR1BE;qV‚%—Êœ Õ5TQP¾0˱»Õµpuï9ØãŠöí©@ûsÂo3TÒo5÷”P>‡Ó¡¨UæHòø…"3M¡XÉ&”8“â`/¿î…ÛîºúŽ)¿ÏQõº{¹eC$¤¯ý쥧ß=fƒ¬ë?zïú4€×*/€ö7®¸ö-H—ýæ‰{..–‘†úÏ_þÃ[G&}¯ˆÖ>üöž/wÛµ§úJ°ÞxcÆ®W?Íz$+à¶Ûb—'H‘!—;è¶Û¬Òu;oít’õo\6õXqfù’²ú÷4Y‚Mÿ~û ”ÀQÇW·¿qÅžÖñ=Ñ„µªºU¸Y‰Ä·ÇØA\†K¿;DAÈ2h£òø8 úüc_S‡Þ!_¢މ%åçñûOt Ê“ä)S)=ÿ1û]GÞ"• Éù8^" CA‚ $D9@Úïõ±’p@¹Åç«v·±Xàñ‘ÀQä–ç*Ä,Êcé«?Ñ7²©[‘¿¨HÁXNoì‹ÒwŠÅ"ÛÀ{€pôõsÓel°û®2·«Ø¼“_X¤dM-ÕÇzœ”¢üœO#©ÊÅ{÷ ò%ƒ5•­¶Y¼chlØ,¦E¯uIû Í›Êáø±Ý® W•&•ÃÅÁâ@“²3úön~ÁH­hw’d\°1åb¯}N¹ ‘«Üº,~@×mÌ/O´:'9L=ÑÐëæ «^úèÇÏâBêÊÃÆÀÝøØ¿°25fòø…"3M¡XÉ&”8“âÕWogl½zu'äƒö]åÕüáÊó.¸éõÁsž¸aÐùî•W½Ý>øÉ­×~ @ç]ÿðÒÆ?þò¼‹nxÏuþƒ¿,œ<_qF¡Z$ÎÉOcOoNƒ¦ÿòöµo¼süäë\ÿ¯GÿèºîÓïv~ýÝ;ëÞûì€H$"9¿|惯¾ÿößo=¼)=jŠX,ö»œC­ ç±O·í×@ÝKVTTÜúïÈ3Ý0ñ¢Y=-í3â<€[ßÚm!e‰eBÂn÷aÐ]†­~V¡ÊÖÜfÓÊçç®Ü´éì³7¬]1/]„‹ÍŸ/$ÍYXžÂóù|#Mˆ Þ®êãÁÜõ›6ž½©"ÙXU§âŒ’^/‰³P€¢ø"‹û½^†ª¤Xhm8üÝOÕm¡”™Ã¯ož*ƒ;xôà‘ ¿8S†D):‹É$ƒÄpY,õ{jº| eqß\_õýžcM~å‚lñp1UiXß=8EY2ÀÙQµcWU‹Óßuä§»~ÚnýG3)Îä³Fƒõk'›TÅI+Ρºþ¸ë§ª+'I2²’ “%1ºýçÇ:§l>p 4k]A»ÅAÊ88@ä7/ŠIq&ŸˆS4!í‘Éçù#ÂÄqâvvÕ ž ™µZ`³ÚCب¾ÄxòŒ‚GÛÒ1èpë-Çu7§‘çD;yB¡ÏØb#( úMå9"Ø"ð„B¯±ÙÌóò„l°øÜ]}i‹–.¡ümúÇøÓ±sz lEJJ†Z¥Úk´£,`¤¤)ݽû'›­ðx € ,±˜½á~tg_K#`7YÉ$.@YM!Brú ueœÈ([–œœ¢R(yîFÝð{Ž‘¶ ¢LF:u͇Ãs2•’§ uUë‚£jEðZé©*Œ0w…R$?·ñÓEQФP6_&Ƙ¤w¨öŽˆ£»rxí Æ×,*R÷M{¬…öæ ††7žn€Æ7ŸnœðµÿØÿ<Wòø…"2M¡XÉ&”8“â’lúõy @ ®¸jñöçLez,“É Ï¢"‚Ɉºã·à’Ǹ ›I¾ŽÆÊØÙ¹ïÛÎ)2çÀÜxcÆ7¿Tpr-îòsWwîø}M 0ðñ¿~×z)Š<ºãÓV{ìUŸìê}¯8¾:)Ïá™Mî¯Z÷5Ì»û‹ûCÑ–¦@ÇÛW_ûa)V?üúËWßõ?ḟöUíìC™|MÙÂùp¨Z±“ååñµ5Õüd(ôy‡Ho·Î‘%äØÈ‚ „®ú{3%ÉP”˜EŠÒÕwÌì¢<9«5Ò&kDÿÖçó±$R!ÃÕkÁËÄb |z APŽfñ  (ò:‡^u#SÈ(ŠvÚb‚ @…óINFJ}~Z8—È&Å™|€H5ê`ÿÁÉ'5{{ê›y…%+³9”Û¢ë8Ѭsõû¼]‡L1ÏhŒ¾›èÉÛ1­Ò1ôHR@ÀçGØll6îóù8šò‰1QòdSŒÂ°h6Êë#Óeo¯Óe)yƒ'œÄ£=|°'ê(Øè¦Þ‚Á Êd $€¬lmšã`MEQ#>2Yò!£dL@ “&O~úAdšdvßÉv0Òh?éMöžºC=€2ù²¬²¥©–ƒ=Ñk‚ yž¢iJ’÷#AyŽ@R”»«jo{ìGRÔ¨ ‚Ž<À˜,+ ³º’²3yú“ûE%ÚθÁ”i9Þ–Ï÷GEKåAKë¤Ee§É •ߤ‡ãŒ“kÒýß× ŒÙŽR W2Z«HÂ5hõHÅ`ôɤ{å†á™Ê’µ¢Îªð¦†V£ÑÎ ½HòÏnÿtøýŽÕÞ8ÎöùG¼a_®&½ÕCp’ JñþªîĬCWÿ-p¤e92 Ø’üð‡1`IÙeù’¨ÓßF’Ç/™i ÅJž0¡Ä™·PÏ?nÜx’ó~;ç´Êe E,¶bùÚy¡ŽŽá^$“Þ ([Q®'¥¥H1ŒÁ`ó8(à²Òó)<²”>k’_rú–'ŸìñWîßß Ž9Hó[+†¸ðåZï7V\ýn½³ÃV¾nC2Ž¢¼ì³WåttvêŽ5Ï?kžˆÍV.¹t£ºîx[”<ýµGÊ.üeI›--½â’òº=ûcÖ½(;yÕ’<‹~`f@P|MIqº˜‰Âà)“øO´F…½ùÇCüÐhiìÜÛê PŒ¤””$6†b¸85Yh³ÙÀ¬7Ó²¥8ƒÁKÎT£z½ bÌ€ÓªÔ ARàpF½>¿O(@N*è´1Ÿß·+¸(*H-X”!ÞY†Íc!Š+”âí]²Ùíu–ˆ…¡LAŠZ´[}·ƒ-U‹˜(†+”bÒéšÔAx½ i’ˆÃÂù\2‰Iq&?í Š•£ô”×ãá&©„8.Pæ*†ºù¥Å©2ŽRŸ/£ýçxòœLG”­H–…ûnM3ω¸N¶LÁÃ0AFù¢lqÔçv:9 µ˜…bl…JJ:Ã&!Âìb¥¹ñpM'd¥Œ Ñ%Üθa1Y!Ÿ?â,®DıÙ'ß4E1›"÷Þ“É$}þqýOYš¯3@0ž\"ðzÝö¶C;vý´c×O;vh°†´µ?íér)k×ÁÚþÓ1kmzXÌAr¶„Å`p’Ó•¨Ñ4\nfIqYqY‰j¨Ù IjeŽ¢(K’":²Ìš˜3tí¹ãÒ½@’@í»ûÒJ?Påùîñ?í*ê$ý‘äñ EfšB±’'L(q&Å/4=ß¾òBÉ#øç¯Ä!CýOþñØðkÞ»ûïYýø3ÿw)Ë}ì/7ß÷åÀ×ÿ|õƒŸ|w—¥ö“çxqó³o>7ÞZwÙgo^*€+oÞ© l½-N¹§M›˜Bæ õï=õåÃw¾ñÅÃܽûÈë/~>ÿ~æÕô‡ÿøÑMr°áÛ§žû!ªgøìÏ©îøÝ_)1sÓ·zf‡Fí¿ðqåo åo—Þðó›+CÝ–¾ã;žŽqPÇ)C ´4©æ-ZŸÅD¿ËÜ^×å—mZ’®ÉŸ—D_Õw£'¹Ò·6ÈKKWmdc!¯m ¾®×„¾±FX^ºz›t;ªOØ©h1­íµ}eE+Ï*c§©¹¡'ꪀ€ÏK?@ÐîŸÏÔ76 Ë,Ïg!!µý„‹·¡Í’U´l%#=ÖþcÑ=n¯¶¶™SZ²8—\–öú^[8Ï&ayéÒlåµéj&oe…::T¥%kÓPÂÒQY£óF4)þ䓊ý ` ÜÖß8úgíëkîTÎ[¾.ÓÙS×mH ?ùm$¯hIú¦ú¾IÈòmX™î]Ys^>8šÚ×áÙƒ`íyC9ûÛ Š*6r!¹»¦Î5ψDÌ3bÌ ¶±AR¶d} y;êœQo\PÛX/)_°6›Ey-½µÇÍÜÌ’tOë^sÈomÔ¦.,ë3agü ÀH]pùÉ=m]ѱJ/Ù´ŽÝúáG-æD 5D¬Hc M3y„gÒ$É š››cÈÓüñ ‰XÓ>¼yó³_ýsÙE3çaj­Uê~<¦Kà¦Ìs%Ï™`®Ø94yþÙ©¦ªúT»b ëÄcÐJsÊ0¤i%ɘ¾½Kïg«r3TA}C·7)'SEèºmDŒ˜£#ÄH>Ë÷’¢ç/ͪeëÊhÀW. C3¿lýR%/râSŠL,¡i&O˜PâLŠ_ˆ†††æg•¬‘ öÚØ+yÎsÅÎV½Ž™»nㆠ6lذnq²·£>[q&A¹Òu’ ‘\•’ÄE!ú3æhb$ŸÝÐãs[&ÅI§ÃÀ¥2œr:¬ÞÑÓXŽX(@ýf‹oºàˆ7â4ÙXBÓLž0¡Ä™4Irzüfrèñš3 „Áb3ÂçRÇTÐ CBTŒ˜£#ÄH>Ë÷’¢ûTç „Ïl /GóYŒ— R^›=1rO E$–Ð4“'L(q&Å/DCCCCCCs&C<œ ú}áÕÛ#bÆýýäÉg7sj°„†fÎRPPpºMÏ,4‰††††††föCû44444444444ñBûsåÂÛ~ãµ qP,¸%üa øÂkn|â7  ŠL,¡i&O˜PâLŠ_ˆ†††††††æŒg2ÿ“ä¬8ûÂ-—^zÉ—çHNŸÅJ*Û¸uëÒ‘ w‹~qN!?œF6ïÜ W¤rfÌàÿ^$Ù›/Û°.›¢¬sÃÆÀÊY·á²s²D ŠL,¡i&O˜PâLŠ_(ñð.ÿH7ÌÛM''|Ë6N÷éu ð0iN' QÖ¢5k “N†0Å™eK+V¯^±¸8E€%$å*ó,_µfíê•‹‹Sá÷[‘¿pùª5k×®®XZž)Iôâ9qΪš8–¤+eAEQ^Å’ô™{ýžšÝyNIþªÅi³ä©c 3–®^Y"‹H3†0}ÑÊå…Òñá¼´ùëV‡‹²+V¯\·jèoU®„YK֯̕!˜¼píêòÙò4ÄS”V¶hÉꋪ“žqLXtï—»v½ýëôÉcMò àd½3Ñs IDAT/˜ÇÑþç«ÿ8Qþª ²úÿÓæåg-]Z B­¦ˆ'¼ãšEËÕúCß÷ö“uÎ@:¿ùŸ *C&7ø¾»õ‚!Ó¸£gÝ_ÿö¾#¨³/B‘‰%4Íä JœIñ %ÿá7î¹ç éÚ{»(5vlš3NraaºuØG/çÇäy%IîÆ#'œ˜,o^I¦ý`»sºlMa®¯=XëE™óçe) Ç‚|M–Â×y¸Æ@8©eË2Z«n®-ø;#a«Tc»eæ·m™ ¡ŸÍøÙ GUR"C]6¬@šqp”…y)RÔeŸx•˜ÊœÌ7:ÜÓ{øh߸Ö+…Š¥B0Û±D„PsªñŠÊò ¥îæÚ.L–]R’î8Øå ¼øcÆâp8lF 7cÿÇfº»¬€¥ßàÎåó¼~›®³¶IkK^£OHµl¡ ã§³øø‹9 á5‚à'þ0Òc±èHÀîÕDÄüãšfò„ %Τø…â¥üѪon÷m-ô¾e[×_6|tÞ–c7U}s¾íÖá¦ç¯Èñ|ñºkßn"º÷þ³R¥×õdËnûÓ׭Ά†o_ùíï>nò«ø×ÿûÒÝò$”¹eïÜû÷c.$õÜ'_zlëéÓ„æT?À˫ȜèåææÊGÔ£ E3~˜²lUŠå`µÖüìååȉýívÀ„©Åé.F¸Íº®Ž“— ³ [!Ä‘ ÓØÑÔbðD.;°åy…ÙJ!~?‰…†ºŽ&+ûX£"©O kp ³ËäN*“ &ŒL‚nÇ\$è6ë»zÍni‰”?æ T’‘Î3vjy¹“7åt¤.ØR¡×9§ÜËä}¥-@´ÆÌ"¿ÓÙ-ˆ?æ˜dþ’©îÛ}ዉ‹D¿ßAK_—Î¡Ó •­,!ïor$°™E3мK>­Úöæd_ü¯ð‡1¶¾¹íè?/ÎN Pdb M3y„gÒ$ÉC¡“ÉŒmAÜHÏ»~£é‹ÏŽ“ië¹e}ïßðø»žŸÜñþŸþü½£äÊ?¿sg €òªgž¹X\ÿÖžùÖ^xþž½>xçýþ/7®äÔ¾ùÔK;ÚæVÍx&Àd2C¡HE8f÷Øf “S~?)Ê(-Jæú}~ǧÈd’(?½tiÅšÕ+ª¸€¯¯þ‘±bõªUk+̵̓“•Œ«TcÚêCU5ƒìÜ4) ynßÚ\½ïPm‡_Qœ.`(òòö–cûö­ïw5cм|½¹zïÁÚnRSœÆŸD‡†¯R¡z½cä®:7ØPUuÂÊÏÍLB€¡Ì-à[OÚWy´Ã¯*Î wý!"¶·¥Ý,ÈNE»N €\Æ`¨ò …öƃ{÷í¥g£ q4Ù©ÎÕûöVu»}=ÕõáÇ’—¬Æúª++kŒœ!õˆBÑŒŸ@Èl² dR[*e˜Ìv`kò2(í±•k;íl‰ˆÀPåMU•{6˜yù9JF´²3Ty…{Ó¡}ûÖkGžºÉÊ>†ˆêÓ„pô–q?íÈIÐ혓.£!ÒUâ¦ä&9:zƶH9©‹W,[½bɲyyþÐû5h±’b1΋½6ëœr¥˜x¸öN-ÍWrý?Ί¶J3þ˜Saò'ã)Ò³3ÓSÕ"_û¡ç$1Å¥+Åö†ozè&ÊŒáÔUí­q à8²·Æ50¾ªÑÕÖìáLÛ£%™XBÓLž0¡Ä™4Ir»Ý®T*Íf³×›˜Gßúõs÷¿¼ŸÛ¿òæe“ÕS„HYóˆÁöÁßž~{/߱⊗7,Z …¿¸ï¢f¬ë`‹%]pée…ii)ÝéEÅ\°~úúóÛö᎕·­INˆ‘4ñ€ãxrr²Ý>ÃÁ¢(F‘ÊHD“ôR(ŠM;ÁÄ"²æØÁ˜(«¼4?ÙR£ °”yù“1*&o~èÏW•í~ø‚_îâýúýw„;]H’r"€ÉÿconnžšÙ4³ ßà,À#é÷û¦;ØFQŠ"cÚ¦(:µÝ¿IŠ‚á& ‚ $E å|²]ƒŒÄôêŽW_æH3Dš¬ðTù&EQ2áÊG‹éé;^Õ=áÊb«s¥¦£û꦳0%²ñ ¾\!Y '»,ý&S`žT(f‰ìæC!gSM? L®8µ°4_m;¦õ)&Æb"D€ #–}tàÈã±ìAŸ7‚çI}bú$âvœQð$6_¸J3ô¿¨BØS}Ü—šÏÒïïý+°›ì€Ésk{Â` €°FjoV¸öÃàÉ‚Õh ÿŽ&‰9²ï“GÏ~ë…ó5Õ»÷Ä›=Ñy€ÉÖ?°XxÈãÏyãî<\íÌZ1_™è}ýhxÊyËJŠ• à*†>Œ¡,.YV®à&P(2±„¦™~ÜâM·?zãÿ<~Í2ÝñºAc €‹Õi¹ËÎY(rùË®½m­j@«%A|ÎÝÏ<úÜ«7ÍK\hfÖA_“&fa Ž"M‰ º¦HÚ¬‰:EÀÄ0¶4UűÙA—; –+Ù( ¾JÎw¹¦¶#™×íbK”&Šâ²$åvûÀçõ²År>‹ÅMÊJ“b#1q‘Œƒ ¦(2¨L%wé±ÞÒ^— —)…LcËäÊíŠÚØõ¸\¸XÆEP^JQYº"„  g¡‚œr¯vdãy)E¥…åyÊQã¹^Ó )ÍH‘¸LæÐp¬‚<µ„ËBÈ ßOPá¶ ×åÂe*1 E\uɲ#ZÙ}^/[*°Xø—Ú𥠌ß=õðmQ+˜èm"Fæš+2Gz÷| ’—lY“^0ºúŠLvîù´jdv„¯ïÈ!Õ9˾;¨Ñ%B3Uš?¹ üS C@}zqùg@Ž›“âü×õ¿Ú>!tZB‘‰%4Íä JœIñ ÅËÀö—ÿ~É+W•­I}é®W¯^Ø4ò "]xÍ#犼_?õЫµ¼%7¿øâÚðwe¿zñÅ_u¼r|GÝ÷OÜøûñ«¯~tilÜþÈc/oãÿþñ‡ü{n~í…º=¹uóg½{ÿ… e{륿nɹ±ô¬ü¯®[qÎË›"ÛC3G¬.W‡+í²õÉ@èŽïm6 ó—Tà”ÇÜÓÐåM/Чmnã”,ËbQ~»þD³>öî&]aîŠt[:ZtS«ã c[› °pa:“ò9ô-v€€±C›T\¾(ÕÝßÐgѤÇl”.Ébá³õ¶žöÙ!³L¦’9ô­1;ù‚ú¶QaÉòt&å³÷7žˆ>éŒÐ·µŠ ÊWf±Âkémºò…¼]îEËÖ†›TÈkí>Qß3¥•>QŒ¸Þ ‹pzFßs—ÉÄÈL÷µ¶ N$+§<›‹#A×`{³.0TLaAáÒU8JxÌM#ÊÐwôÊ‹,Ouõ5ô˜4™“•=Õ§‹¤xU©fè§½Z Dÿñ–ˆOÿvÌe$+ЇjÅ’Šd tõ‡š#=ã!So«4'ÁR#ýSK«~xzÓ(§knù_!Sk3¯0w~‹ôXµ #NAÐíôY„sd/j̉=Ÿ<úûÌ·_8ÛúÎÃÏîlßF„Í>yXÆÖ‹ŸÞþù£Ó,Í ‘¼äžÛº¾ØövwÉ]w-ö|±íí1#¿ì¥7^w÷È+¯5$J(ò°x,¡Éã'qB³¥D“3jS×™”¡9ýD¬iÞ¼ùÙ¯¿>-öÐÌEª²åI† †ölÄ)„*ŠW%[öo*ò2Îc¶ío¾ kyÒœ2Ó¿4ñ€KÓR$Ä`·Î'JM•„»uŽÐŒÎ°ÔòB÷ñ†qÞø—=0ÌLà\ž¿DCCC3KyxóæÓmÂÏAÄbβÏ;§Éé-朾ÈsÅNšÙÏé}–âQ§ýšx¡ýš9Åí.ï,\•¬âÿÅŸ+e?½vΕ«DC3÷¡ýš9®Ì/ËMb%&3Þåé†yû¢SÊ"ãîtº¾×ω'®(ã%KžÓpNIXÒ´ìŒô¬L9;vTIZaùÂ%K–,^§˜Æµâ« SSKÃÖ”-[¶4WzꪘBÙ“Ф‚eË–'OÜ”n¼˜¼`Ù0y2˜$0Lï*M`Æì¤¡™*xæEÏlßW×ÚrìÇ÷Z§ÂÆ~ËÞô—ÝOwçŽÈ/ÿG³N§Óí{¨RoùV7šãX%p*Ðë§ihhhæ ¨ -?CÌA„ùocÿôOVó~ãž{¾®½÷±‹Ra_ ”ƒ¢ø©Ÿ -µNüž˜±Ô™jéïÒ;ðcEƒ-bÆSOŸ0â/ûée¼¤s £Ã̧¤Ëð‘HgB}šÌ˜44S)¸ëÝ×~-ÜûÚKÿ'>ÿλÞ}U»ì²OXÅÝ´õ\þñ—ÿÝ6ô¿dó“mPÔ˜óðÈšm÷½WÞÖNN¤À©@û4444s¦,;WÍE奿ez:¬QÚÆI+ï~ñÉkVdq]}û>}õ¹¿þ¤#A¶ü¶g¿nMž88PûÕ‹?þY{èÞûÏnH•^7Öˆ@¶ìÖ§íêü$ÄÒôë=ð~ƒoÕsÍÿ¼ZpÑ»º‹ï_^ðо(9ž\:?^mÝq­€—6¿Tê[Úˆä5\ºÖæ~?cQ‘*üb¨²*ptÛìÞ S¨ÎLW 9 º-ý]ÝFÏŒœj-Ê\\¨ÄdyËd!CÓ‘.;0…êŒt•ˆÃ .‹¶«Ûä¥@”µ¸PèoéÇS3¤8aíjjó(ÊË’]ݽ,:ÔÓîP䥀¶á„UoÙI”«ÌÊÖH8 ¼v]W‡ÞšŠI§7¥¬,·vÔ¶8’"ØIùìƒ>ÀªÑMðˆS)Ôde(…l,äwÛMº¾~[ âGž™•"å㌡†”­óH»,ÎKÅÎê§T šx)¼ðâ|äØ÷=ó–ªdvÜrñ¹Iþ?ÓзÂÍ[7²«žú¬7ü/õc¼¾úð»5W¦Ìí‡òÛô›Ÿ€ÔHSaÌü¥@ÀÃãJN­t444441áq%~„ý‚½€˜Ë$!ÂUçeËNÎÅÁå9¹É‘ÏBV>ôÖƒgKŽ=wËO½wŒ_V( ð³žØöèù‚}¿»ææ7º ®}åõ›³£(EŒ‰ox|Ûï.Ôtôì³ÿÖemyöõÛ Z·ÿîþ?}« k·Ýÿý÷ÿn{ë.Å ìÚÎÎÎçÄ7#)EØ,nŠ%LI– à5uwvê$@ЪíìììÔÙC€ŠÓóÒ¤,¯±¯ÏBðYyÞÌØé5uuöYàÒwvvvv™¼V—aöî–ÖW™“<2 ORò½ƒ&7–%'±P‘€$YÒ´d<@0„b!ÙYŠÌÌ$†{ ·ÏBp¥™*ö)˜4%˜ò´d.éÔö '¹G‰F˜š—*a¸úÚÚ{ .ŒÇÁ Ê‚HR²ü€áD}‹Árõ7×v˜Ã›dÆuéâW§¡™Q4 Pýö²?ïûú.Y?@JJÊÈ—In]ƒØþ…ð¥>{9÷?OüþKëØ<°³ž>pà`õ‰öcŸÝ³ˆ;Y`DÄ\®'0ÆS3þÐÝ[=¯ìüæÖ=fKï)“††††&"BbÑ‚KzúŽMüªN«=«¨è`GG¿Õ:ñ[ÀY¤¥¯Ç‚ò•©2¶×Ôct,xý¢2$b>ÁsÜû¿|á³wüYóÁúù§Û÷UòÔÇ]ÖÒE¼¿uD:ù$bLÖü"°}ð×?¾½9ä ‘уá`8²ý£Á”ë{޲gßG}µÜC1@@”aA’DœÞ!Õè1?#yüb„¥·½ÏŽÉ…*˜É`@Ðe2ºB‚ •€p[ŒÆp74—ÏgaÔõØ1B¤Èóù pOrÔ&SšS p´6Oµc9à4ƒ¸*UÊô;ŒÆ¡\¹>³Éd·c,WšX,äc:/Í}Ýýnœ”©  €t˜\,µÌ?¨u*““‰¿ì„©³Á>‡—À±$9ÇqßLšêþó¨85UŒyû»õ>˜ì%„ÁÀ(Œ…f­IOB4uÊc·úÅhÀçóIŒ/3úlÀˆóÒůNC3£à,&!%I@pÖHW’òâ­äO÷}e`”ÜùÜušã/ݾ—Ò¬C0®D!b›¿{êæ> `‚’+ºsÍý]öá¥ÿŒøÿ"ÏÖLâó7—•Õkµ£ÇøMÿ).ܰbé¯p|†:ghhhhþ{ <½}Çë"´´÷µµ­ÊÍݲp!—y½¯Ï¦°0”’TÛo7 Fm¹¿}ñÁÕ¿½ä¾×VßGùzv¿pëM¯×°XLÉåï4^@‹<. ’ÿ1& gƒPõ?V?¥rãgç—^/ê¨MÑ”|¨*`z¶®ýèpþ”7;§H (Šˆ¶°A‘±1Qt’½C0aZaŽ8Ø;@29㣊‚0äy‹d  Øp¶$E€ßÐtĉk¦–ñø²S ž"E#æ0QÅ&iÙF6é¤ÿW1©ÙW¯Á}jSŸ¢C²öu²Òd)9E)@úmÚ¶V+raI ՙ …¿Cß=0ò¸Ÿú¥‹¥NA“xÁ  ˜÷Ë ¿Åu_ÃSWÓ.Ùº8ðý-; _^‘‡1áµ€à¦OksïɽòŸ;†7ì°-¸~ÍUé©à­Þ?1Nú£Ÿdo ШÓínnmÔÿ! Ö5|ñÝFCCCC3s¡Ðîææqô)gÖòÏ{Ïû×#Ê‚¥Ü÷â6ÿîîóß»¦!°~ùÀÆg„#ì¦È©‘b¦û|&@³ä¢y¢ÞšŸjtA2@™Lltûs¾­mé%ùØÃ |Òõasçˆóðì×_'¢ÔÑ¡(jȉÚü6Ü|Œ G•¡æ¢¥ 3€2|ŸP‚ ÔIuÂÜY×çŠAŒ[¶B†qô,*MÍVðl] ÍVLQP¢µà`J&Å{;<] I-VªúîÄÍZŠCòv4 v1¹YJV†4M#3´ Fº‚Bu–šÒVÖcx8Ñ/ÝÔÔgüI¦ùïD§Ó’¬RèA­Qôö÷‡¿Éݲ¥ÌõíKß»Âÿš¿yòªvßôö#kíŸ?tÿ‡7½ÞúüÆÚ§W]¶mPƒì‹^¯ûóøÀÁxždzý4 Í™…pË[;.7ýë‹CmV §ÑèƒÎšcøÅ‚ k‹=Þ×=x1÷ß÷_ùb•jíeËÕ’yRH]yå•—+IušŠËH\îè›2ùÌ›*“ïÑv<åwNÁPx¼!à‰’3ÔL?øÍ:«Ïé" ‰/sC¤@•"ÃLMZGÜùÅ_v@,6G(`!*Õb¯Îˆ×¤)ú!ß@w¿¨óãðd»€öØî¡IFÄù€§çÈîºî¬Æ^öEËnxò.äˆì¼M<°}¤Ý×!pJFa íBÐÐÐÐÌP¾\-Á}Ö~“'jŸ*#ÂòM¿¸ô—WmY.îÿþ/÷>þI¯/Ôyøˆ'eÙ×Üpåy%ÌîÝï¼ú~­…µé™/ݼ:_ʲ³Ï>»Èüù¶=‡#Ä t© ¤-\{þÅçνÿÛßÿ£Ý@vÖµˆŠ–Vlܼn^šþÇm•ý‘¢×Qk¹Œ£Ó6=oôM­ÍÅJÊ-ÊT pã% æê7¢d¥q Øü7I#åømƒ.8RM/ä0a7ò9Ý›/–%I8àµôuôZÑ{¤ ·Å ( íty}Á©6}n/ƒ+J¤b>°~ŸÃÂ…2¥J)å¡>›^gt[¢‘óB΀)R)A³> P‹Cf]€¯‘€MgçdÇWv£ÉCòD²$¹ˆåíoérà²$AÈbtã5)î"Ü$”° \Ì$…TÌòÍ„4Â=òK2J²“E\°x‰„K˜ .~„@GÜÛì¢`•ǃ†fÊPÆ£•½ò¥çnùÅú,õ¶ûïy£ÎI nyé¶ŒO<úCßÄg0}Óí—–zÿcÛ~“Åt(ÿóIDATµ¡Öœ\´dõyç¯+`tÿ×{ÿ¸Ë1p*F!lvbZ¡¡¡¡¡™q¶PÊc\fçÄuÓ³D-àyœ.Ûé¶#6 &3Œ5í…fVÃÑ”–§2Ûš´.P®&?_áë<ÒlLÄd1šÓºâéêígyþ’ÇŽšŠ| ¡¡¡™;P>‡y–Ÿ!6 ”Îé:Ý6ĜƱs4³ŸÅ`–¦HsÊåE½–n­‰vhÎ[/Rv}¸ý´8@?ÐÐÐÐÐÐÐÐÐÐÐÄÏ${ØÑÐÐÐÐÐÐÐÐÐÐÐŒöhhhhhhhhhhhâåÿ#p¬œ*êJ„IEND®B`‚btop-1.4.5/Img/options-menu.png000066400000000000000000003073011506333644200163560ustar00rootroot00000000000000‰PNG  IHDR’†t sBITÛáOàtEXtSoftwaremate-screenshotÈ–ðJ IDATxœìÝy|#g}0ðߌF·¬ËÖiÉ–mÙë]oöðîSš’BiúÒp5†+\)G9 /)P(å¡ …´”#@¥¤ámSHGK(×f³»^Û»¾-Ë’-ë–¬k4Òïò¹;²%_’¼¿ïþŒ?ó<¿gühüðx‚Y$›»Ó®U<“‰øf|‰Â>4!„êøNUlWYEbý‘PÔîL!…¥½ÍKhVØ•Bí1©¥»·)9vyÒJQ–n+Ždy…¹«ÇÝnài^),-$òåW'}ffftÒ-ê;:ÔéàRöCÝòð•ËS¾HVåì10‹›BˆèNUtWYyâ® $RŠøÝ£ïÖüA׿VdS E1´: Í=‡Ümv³^Á¦“9 ÉuªWã,‡Žt9MêâR|%Q•¥YÐvœîQÆÂ™½˜nºžÓ¦*\="æîž6y&œ*È®žCî§µE¹¥Lß§YÃ¥âÙâþʼnBûDe°ÉR¾Å4+ðEVÑb•¦— BzÑ%Vizýü2vïë4K²áºV·">±â–ÎK­e*˜*RRya)”ÌóÀ@mo¢¸«D]'Dwª¢»ÊŠ5âÃW‰ÆÖÓ{¨«Ýa1j$Ål&Ïn:7hj?Ù£Œ—±»`·îXò/d6Nµ¸:ÕÏðùó—¦’ÊŽöfI)]i2 WÎ_+]­zb—ê¯FÎxæ’ê61?£^ 1¹º4™éÁgÏ_žçmîVÍrV¥Ù,Y½pa,¦ho5ìsœ!´2þá‰péò"J¥”±l¸l<’¤E†üR¥FNIUÅòJ.ƒBAhjíé2) …‚L&€|ÜLq@P­šËdwéèBÕ=±ªè®²òD¾Ê-®V!8zñÂ¥qJ¦ÓHö·»xÿÃU*U!1—*ð™àì´–‡àtd>Bs¹¥ŒÐ¦ì畱éäÏé¹ÜR²Èµp„”PªÔ…¤/Ãpñè’Û®–B¦tØʲìR†×ÉeÌ>ƉBû„”k[̦æfƒªšmz¥šž(¨¸T|ynA’¤ „L­ÕJ$Bž'É•CRsï™N=Ÿ‹ÌŒÏ¦ñšV„PCSµ;Úºþui)ïàx¸Ü¡‘kvª2±]¥èþS4Q¾%“RÏ%ƒžäÞo„6ÌH’lkkkii©ä¢¦³gÏ®û¤²õvšU2™päˆlnt>@„ ,ÿÛàr‰µ;ð„µ‚Øê¸þÀÀÀÖ¨"Îk!·ôo怔pùÌJHëãܲ–ljBûcÝ^Q¢síÖ3‘`hÊ—Ìù-Öds‰Hní#ÏóAp±Éó1ÊBð«—Öráñ³a‚Rš:{Ü0:[ù?‹»J„P£XÛUÒ¡‰áØú± _,wØNUtWYy¢8&äñ)Ú;ŽÚå|>ÌÍEiñ¼+“‚$áØs'?•ì“Y–Çã^¯—ç×þGl˜'8N…B122Â0[l¿¦¾ÜâøåÅ )‚ ÀÊô€H)`‹Ü†–Á/O0Öå¼v¨¾Õ ª8¯%B>86¼PÉý}{'Bí {EÒ`³|ÆÃ^+Q j.O1<[(€L&à@&“ €DÕl¤Ò‘T–N¤Šz ÄÖ=à w•¡ú·aW)°L¾²½¤èNUtWYy¢\¼*.òŒ†<¥ÔÙºº;Í©+!Ñ+z–'?jÇQGar"\¸zò³å>Y.—»Ýn§Ó977·ÖÐõ9š››çææ¶œÒѲ²ÿK%*³]+•HF[ ç@ÕÒÑnÑP€DaЩòy|úBè:!¾SÝUVž(Jiít™µJ))°¥ Ë©X&ŸÏç ¬ °…|>Ÿ/pÕ]TÊ0Ìôô´ÉdÚÐÐõd2MÓUZñzÔ]ÇOË–NÎ{"˧J(]ÛÑSn Ÿ_Zœò¤ a_ÀÐ}䤕yãfû.Pyœ^M×á~'EpL20“+{¿¶q"„Ю#€4õ¬ýWˆMžŠƒ¾óL¯¹4G84`.<þ¬' Å|–ae\.¿²›äbÞiUWDZ~™O¦²ÀÅüswÏIEðEzia&¸[ÿUB¨Þ‰îTÅv•¢ûOñDQÅL–p´÷¶)¥D1Ÿ[fï †a®ºµP(Ön¨ðÌrå97jrê(\T|8j»íÎêuXBíDmwV¸«D5„ëdgµí‘ÿn=¿!„B!tðíÝó[E¥½†÷·F„B!„ЮÁó!„B¡Jmóþ„B!„Ðõï@!„BmÎB!„B•Úçû§B!„Ðv)¬}78 ³—¦¢,€Ìv´¿]³î÷¥·¸ˆirê³RÂòËÃ¸ÈØyOJtõŒh™b«Ê–ö‡Q-#X:¹8;Ìp»×ÖC¢±¹;íZÉ3™ˆoÆ—}Stu9 ¹¡­³­E#'¸\rÞã çxÐvœv1—K¯IX¿¼ûpþ€B!Ô ˜¸ÏSàS+¯8.†'.ƈҲD×ÑgÍ–}c1Ðþá¡…õ¯t]½l™×¬rK—KÏ “ûH·==è/ÿγë•ÂÚá B—/„óMÛá^gêüLRüЕç”Yº:Uɉቨl=‡;ÌÉ+Á²s݇ó„B¡ú×ä:Õg•@Îw)ž-½oXàŠ…å#þ*‡M“ôOUu¼Y|õŠË$›´štøJ¦(äB¡D›]+‡,S}Ó8:éOGi^>ÌN… ÌX¿Òœ¤V×” eŠ@&ä÷¢\åsï™NýÊ'>2~n&¹Óáü!„B¨¤½Îz¡ÉuªCä—¤Þf%B£ ~³”­GÏØcéÔ¢×Ê®e]ýêÄkV§()Ïr+È“³’ü¦õ_§òqJ£Us™HqÇ9)J*¬ny6œ/_;? Œîcí|,½\[ÿn‚B!„jFb07ç#C¥ T­Ç޶*Öý6ågçG $JSgO‡%yy‘[]´L[]ØpÐ[ÀÉCy¥³|.23>›¿$©ªœ+×—™êÐA0ËC~Pµh[Γó­[AjìèhJN'wåœ? „Bí’$ÛÚÚZZZ(jëaXe/æ"´ð-OèÐÄplýО/²[`–o›`‚±¬M¥`ÄV-x‘Õ³› „*ˆüÀºêÇ…Çφ JiêìqÃèd¬ì)ˆ s®ÞÇ>q.ZWÇòí9ߥµû§×²K›;:4±©á¥³‡«þF,ËÆãq¯×Ëo5ÄùB!„Ðþq: …bdd„a¶¸U â!¸Z§å–‚+·),“g¯Î"oéêÇ¥Û› Ê®.š(º:˲$%!–G³†®3öìÐúÛx¯Û·oøÃITÍF*I@`éDªØ¡×@,±ü+c³šKÅ–òü9¯Â²,±ºåI™LÊä åGõÒ–N—*659÷°þo$—ËÝn·Ó霛›Û¼øþ„B¡ýÓÜÜ<77·åä¡ ²&4“ÝüÁGEA¢5™t2’ ¥s³*“YÍ/ºúU‰¢«ó™T¦ÉbÓHI’RY,6ÙÇg5 UKG»EC…A§ÊçW&eJ«»§³ë°«™Ü*çÕøt2Ód±kd$)m²Y´©xâšã ™©Ó¥ŒÎøR[^^Æ0Ìôô´ÉdÚ²Ixþ!„BhÿÈd2š¦·ÎwµÕç/œhƒìÜàHéB£VѹܦWÕŸ÷ê;:–’\!÷Ì„W†ú¢«_(¾z>8ãUt¸;dÀÒK S ™ê›uàq1ÿœÁÝsÒF|‘^Z˜ ®üñ‹t&ÏJ¹l^Ø*ç5˜Ð´GÞÙuƒ]N3ÏLù{²%úf¥€¾çض~þÃ0•\V‡ó„B¡úWzþ’!>}NüqråÂ3W•®~M¢øê<õŒF=[V~]r¡©áÈ/ظçR¼¢œ"…2ñ¹±øÆËŒR³ç‡¯Y^}þÒnÂë—B!„B•ÂùB!„B¨R8@!„BU ï@Çé¬aí~…9kgå¥E/N„˜†~þiC¿CÒömljçB!„B•ÂùB!„B¨RxýB!„PÍÊ–ö‡Q-#X:¹8;Ìp í8}Ä"cÒaï´/YmÇisy8ذŒ¶F*šÛ;ÍÁÒÉ€g&˜å¦žÞ6-YˆzƼɲ/_«wÊÖcÇœŠèĹ™ˆ6H•ÕínÕÉ:67å‰1â½® 8@!„ª¹¥Ë¥ˆç…É}¤Ûžôg çä”ê]}îÖäyoªâ"eG«^º>¥œ€¥qe_V¹¥«]¿4ž'ÔŽÞ^gst ÔÍ‹r} ] & w8 ›´štäJŽ€´oäY9AA2c{·÷úR 4 u‡2ê ªÜªÒg‘f€DJñt6ÏqdŽ‘ê¤«9¯éuLåUãü!„B¨F(Jʳœ°ü)9{!ÉóòšÆtàP”T Uö§M'è¸Æ¡™Øbº§ç„‘ ùY{¥Ù±@¦&J{[sÆw)-íYNk¦ÀYÒ ’“J)/²Ååœ"½® 8@ÕØ{ßûÞõ?ÿùÏ×*’ÝÒ(-Â8ªÄúÂ5Ã8Rª7hx:ܰè×H­F½28#ir:ä2%ÇÂLlf$F*Í]îÖ‚bÊ:|Ê\Œz|qò¡,ÑfŠª¼×‰ÃùB!„PÍðtÔ3õlHKÍžÉZHxGÞ}‰ê€áé¨çÊUy™@‡&.…6_]nls؈7×9.â ¤¸=I܆bpô\ͼŠX¯«¹ÝB!„:ø$jƒÉ¤W@©Œ¥…=Jlxþ!„B¡²èÀØ`X`YàÇ#Bévì½Hl8@!„B¨,+0¥‹‹Vö&±Qàü!‹÷xÞââN*úÍV6ñ»ß}¥Í¶ü³LE~?Üu×]_ûÚ×J?w^»¨6³$“ɬþ,W»è–ߕگ²Ã-ß(=d‡ö¹‡T¢CB!¼ÿ!„B!T)œ? „B!„*…×/!„BÕ ©liïpÕ2‚¥“‹³³Á ”ÖÑÕaÑÊ„|2àñ³v|‘7w¸Íj)pL:äž_b¦žÞ6-YˆzƼɆºyy=eë±cNEtâÜL ÉuªÏJ­¼n‹Œ÷¤€TYÝîV\ csSžP®×U ç!„Bµ"·t¹ññáñœ 0¹tÛÓƒþ,ituè©‘é,©ï8ÜÝš¾ä+÷*aT•ÙÙÌø‡ÆbEPØz·ƒK)£U»˜±õ›õsɨ$EËò[VG¤æv›¤°þÕÑ´xhމз:%‘‘‹aªµ¯Û¢‰ù2ez]ãõK!„B5B6i5éðb¦Èól.JPZ­@k4æB ©Çåc(ªZÇÙØ8¶ÈóÇðÇsE–‚ € ™Ñu¸×®i¬a1©s8”ѹ`~ól)ÅÓÙ<ÇårŒT*(×몀çB!„j„¢¤<Ë-_qÉÙ IžJ/ƒBAhjí1üs…‚L#ÈÕ4ÎÆÆ,NδõôŸqÁe|cSq ¶˜îé9adB~ÖÞ{¨iiv,i¨³J{[sÆw)-íYŸØzôŒ]8–N-z=¡,ÀYÒ ’“J)/²E€2½®8@Uí®»îÚæšO<±½*DÕZu×¾ÍòwÕ.×¾«[¾ÚBª°¿qn[mkU‡!¡Êlxí°PÆ‘$)!Skµ‰çI²±Œ×iK‡K•˜¼<Í*kgWkfÄ—ab3#1Riîr·üãÉÂÖÅÔ©©Ý*,ŒÄX°®¦eçG $JSgO‡%yy‘!¹àoq÷õ;:67]z¤¸X¯«ÎBÛ±½ÑÉ›*~˜ýúòE£Û òÚwRË.ÚÅÚwqËo£œÊíœÛSÛÚEÕaH¨2‚HÏóAp±Éó1ÊBð¼X.T)‰¾Å@‡§R´À,ÆZ™´¾Ì!7´w;¨?¬uöõ»˜È줩An¤&µN§229ÁH×Ry¶À,7€ Ʋ6• €àsÁÉáà†õwÚŸpþ€Ú¦íŒQª?º¼;gª¬}êÚ%»Vû.mùªÔ°‡ìµÚÖ.ªCBaY–¤$ÄòˆÎÐuÆžº,@&“p “É ¦Æa66‚$AX3 $”±³ÇLÏŽzYë ­KSC[¿E?¿mŒ™šR¯“ÉåGo\9â¢ÐÌçí²àx t#´°ñ$Ãez]åõãü!´}ÕŽTª=º¼[gª­}·jÜ»Rû®lùm¨IÙµ­]T†„*ÂgR—ŦIs‚Âd1°éP€K$:mvm"•èl-D|o~Ø 6—+¶›åÉXPµT¹ lÑ;šà8”@Ï ü&ãíº“õ žõ•¥Ö#'Õ‹çf@6K´&“.J§X‰ÚܬÊDË=RI¼×Uç!„Bµ’Îxîã°ôÒÂÔB¸˜wZÕÕq¬_&ä“©|xëΤfÂ]í}§º(¡˜KúfC p¥7äã¡ü¡Ã§ÌŨÇ×'Êáãó^}Gç±ÓR’+dâž™pÙIh¯«ÎB!„j†§£žÑ¨çªÔâ’|È¿Ý2åÆ6‡xyÓià"Þ@Š«"qDkw™$ ¿?^Øa™;¬}»[bYqi~|x^ôWš¸ÚÓí¹¶WÞ´à蹕¦äÂ3W­%Þë*†÷ó#„B(µÁdÒ+  TÆÒBU‰k¥Þd2ª¨—¹ÃÚk«m¯oµÿ“ „B¡]DÆÃË¿86X¶ºÄ5ltj0I°…—¹ÃÚk«m¯o8@!„:P®À”.†Y]¨&q®¸’ºÃ2wX{mÕ¢íu ç!T|Üãû&Àãßb2-ÿÜqE¯ŒDÊåÏd2«?w®òfbíWÕÞÐ=äûǰÍ ¾CB¡Êáý!„B¡Jáü!„B!T)¼~ !„B¨fHeK{‡Ã¨–,\œ f–/†§4ÎÞ#6zêÜL¢¶ÍÝi×*HžÉD|3¾D¦žÞ6-YˆzƼɆºyy=eë±cNEtâÜL ÉuªÏJ Ëo±à"cç=) UV·»U'èØÜ”'ÆlÒë*ƒó„B¡Z‘[º\ŠøøðxNP˜ÜGºíéAVaîê´éÈl†©uxƒÂÚá B—/„óMÛá^gêüLÞhUÆÆ.flýfý\2*IQÀ²|­C­ŠÔÜn“Ö?ŸŠö-Ð2úV§$2r1Lµöu[41_¦L¯«¢b¼~ !„B¨FÈ&­&^ÌyžÍ…B J«•³‰ÈÜØ˜/ݰÇÅë ô¢4/Åt2#(R@ €]‡{íšÆ“:‡C æ7Ï&‘R<Ís\.ÇH¥R€r½® xþ!„B¨F(JʳÜò'œ½äyÈÆ# Ó×0²ƒ$÷€ 4Z5—‰‰-¦{zN™Ÿµ÷jZš dêìƒÒÞÖœñ]JK{Ö'¶=cŽ¥S‹^O(ËpE–4¨äd†RÊ‹l l¯«ÎBuáŽ;î¨u¨®5h¹*ìï|ç;µŠdU†t}ÛðÚa¡ÊaªœÄÜ{¦SÏç"3ã³i€‰ÍŒÄH¥¹ËÝZðOŒ'kÿ–ºªHMíVaa$Æ‚u5-;?2¸H!Qš:{:,ÉË‹ É‹»¯ß!б¹éÒÓ®wÚëpþ€ª8ŽA›kIJ>æ:™ÕaH×7aë,h7páñ³a‚Rš:{Ü0:+rC{·ƒ ùÃZg_¿‹‰ÌNú—ä‚1Rët*#“ €t-•g Ìr˜`,kS©>œnX§½ç¡:‚£´¹†ë!«×Ïä§Cº®±,KRbyDgè:cÏ] 6رðz'Q5©t$U¥©b‡^KDg™žõ²ÖZ—¦†2¶~‹~~)Úó9¥^'“ËÞh[þ¬ÐÌçí²àx t#´°ñ$Ã;îu8@ÕÓ Í5V)E[WÓž: éºÆgR—ŦIs‚Âd1°éNvª¥Ã¦¢Çæ3,©0èTùLXÆ;šà8”@Ï ü&ãíº“õ žõ•¥Ö#'Õ‹çf@6K´&“.J§X‰ÚܬÊDË=Riǽç!„Bµ’Îxîã°ôÒÂÔB@ßy¦×,€C&àÂãÏz’5³‘q1ÿœÁÝsÒF|‘^Z˜ ÒÀ•Þx‡ò‡Ÿ2£_cœ|(‡Ï{õÇNKI®‰{fÂe'â½®r8@!„ªžŽzF£ž‰Iϳg=âù+!7¶9 lÄÈëœNñR\ã%¦ªz¥Ùf„\hj8TæwthâR™ßíûö܆bpôÜj3Ã3W­%Úë*×XºE!„B[¨ &“^I¥2–1±~ì[Ûž@!„:PèÀØ`X`YàÇ#Ë6dbýØ·¶7 œ? „B(W`Jì.4bbÝØ·¶7 œ? „`±âãïI$vRÑ? eò“ß3–î¸"Q•7³$“ɬþ¼Îkß·RyH•{e$·Þzë~ô£ÒÏr9Eû§¨j›yUðuBUï@!„BU ç!„B¡JáõK!„B5C*[Ú;FµŒ`éäâìl0ÃjKWg«^I Å\20ë eùZÇy([s*¢çf 0õô¶iÉBÔ3æM6ÔÍËë­oQ¹DReu»[urŽÍMyb @™^W9<ÿ€B!T+rK—K‘œ¾pþÒD˜rtÛÕ 5··ËâƒçÏM&äí.“´ÖaRs»MRX~§šÂhUÆÆ.ÎæZÌz€¤¨†ohQ¹DBßê”D®\¼8™Ò´Y4P¦×U¡á¶B!„ÐAA6i5éðb¦Èól.JPZ­@.¥–"‘,ËóÅl<ÅÈŠZÇÙøHáŒÎó¥AA2£ëp¯]ÓXÃâ«ZT.Q"¥x:›ç¸\Ž‘J¥åz]5UïFü!„B¨z%åYNXþ”œ½0ºÈdüÃáÒdJ¥”±l±vJ{[sÆ7Ÿ^ÙÔLl1­ë9Ñ& ÅX{ï!sanÌ—j¨‹Ä®nQ¹D®È’ •œ$•Jy±Ô“Ä{]ðþ„PÕn½õÖm®ù›ßl¯ŠMp‰êÐö{ÈÞÛ,¶ŠûçÖEíV95 í£ ¯øÕ,)×¶˜MÍÍU14Ê_»"ª‚ÔÔnFb,XW’˜ØÌHŒTš»Ü­ÿÄx²°ÙúõG¤Ee…ä‚¿ÅÝ×ïèØÜté‘Íåz]¥pþ€ÚŽí èÿ¸â‡Ù¯/‡D¨>§|›GUyÿ¬°À—õæyD IDATP“ÐþÄ%:×Ñn= †¦|Él±¡‹×!Rët*#“ ÀºI¹¡½ÛA…üa­³¯ßÅDf'ýK r#µh‹Ä› Àç‚“ÃÁ ë‹öº*àü!´MÛÖWþC«Þ&~[ÇSåÁþJ‹ÝɺûÚo,Ë’”„XѺÎسCWÂZ›¥à»0nÑl½Sêu2¹üè¶åÏÚÍüe¿¼ÃLÏŽzYë ­KSC[¿E?¿ÝéÈzˆµhhšIš§¯]]´×«8ƒó„ÐöU;¸¯öüƒ]ýLÿ*‰dû+/|{kísH¨øL*ã²Ø4©`NP˜,6*EQB¡€“‡Ý’õ žõ•¥Ö#'Õ‹çf@JF'€AàyßxQO}m€h¢Ñ^W œ? „BÕJ>8ãUt¸;dÀÒK S ¤©wÀ´š)6yv*^à "ž+½ñ å>e.F=¾Æ8ù° Äz]5pþ€B!T3<õŒF=ë“ ‹—Ï.îNé­Ýe’$üþxAnls؈7×9.â ¤8MÜ|õõ6O¬¼Ì*BÚ™bpôÜÆM\ m¾Våqî0qWZT.q=‘^W |~+B!„ÐE(õ&“QE€Dm0™ôJ(•±´P.qóÕ×Û<±ò2«©*s‡‰Ï? „BPltj0I° cƒae_Œ, å7_}½Í+/³Šj¡ò8w˜Ø(pþ€B!tPqEfù²+,/®.”IÜbõu¶H¬¼Ì*BªÊãÜab£ÀùBÅJ_mú!àé§j4Ë?w\Ñý™²÷me2™ÕŸ;Wy3÷¢ö÷$póÍ7?ýôÓ¥Ÿ°º=7ÚáFµÃ-_ÛM·oDÿF›Ø‡fÖaH!„÷? „B!„*…ó„B!„P¥ðú%„B¡š!•-í£ZF°trqv6˜á$›»Ó®U<“‰øf|‰ê^ï…6ÙŽö·¯¿46yv*gêémÓ’…¨gÌ›l¨›—×S¶;æTD'6¼*îªDReu»[urŽÍMyb @™^W9œ? „BÕŠÜÒåRÄLJÇs‚Âä>ÒmOú³ k‡ƒ]¾ÎK4m‡{©ó3ÉëæÝf»¯ž¸[~>ªD×ÑgÍæ@a´*cc3¶~³~.€¤(`Y¾¶‘VIjn·I …Í }«S¹¦Zûº-š˜/S¦×UQ1^¿„B!T#d“V“/fŠ<ÏæB¡¥ÕÊ€NúQš„b:™” i­ãlhW,,£šmšä|0AA2£ëp¯]ÓXÃbRçp(£sÁüæ‰)ÅÓÙ<ÇårŒT*(Û모z7âG!„BÕ£()Ïr+ç’³F€|ÜLq@P­šËd«{*ƒÔÛ¬D(à˜ØbZ×s¢MбöÞCæÂܘ/ÕPg”ö¶æŒo>-l‘ÈYR¡’“¤R)/²E€r½® xýB¨.Ü|ó͵a_-·÷üùÇqýmùÊÕá–©ÃÐŽmxí°À¯`%æÞ3z>™ŸMãÅK»Ab07ç#C9`b3#1Riîr·üãÉ»ÃDjj· #1¬[$ É‹»¯ß!б¹éÒÃËöº áü!T/¶|¶ý±ÚÒÝx·ÃÎ]?[¾ru¸Mê0$´ÊÎ ¸ðøÙ0A)M=nŒá)ˆ"´ð­i'ä†önò‡µÎ¾~™ô/5ÈÔ¤ÖéTF&'鿉Àç‚“ÃÁ ëït>Šó„P¹¯nhcœ(¹¶|åêpkl;$…©«£… NÎåŒ-\pr.Á‰'®’›¶HܼÌõkU^ûn­¾e‹v«Ì-7òæÛs ˲$%!–Gt†®3öìЕÕl¤Ò‘T–N¤Šz Äb«£*¨uZniåÆÊØÙc¦gG½¬õ†Ö¥©¡Œ­ß¢Ÿ_Š6Æ™¥^'“ËÞh[þ¬ÐÌM“"‰Cóôµ«‹öº`g`pþ€ª/û ëU­«“ó%{ËW®·ÃNB"®'€‘7•Ê%®’l•¸y™Û«}·Vß²E»Uæ–qn¾=×ð™TÆe±iRÁœ 0Y l:TжtØTôØ|†%*ŸÉ—YUNÖ¤‘fWž2Ä&½£ Ž@ „ ð¼ÀCù?qÝÉúÏúJ‹Rë‘“êÅÒ£ZEEˆ÷º*àü!„:°rþágæA懟YA(›¸¶ÊV‰[”¹­Úwmõ_q™[ƹùö\'œñ*:ÜÇ2`饅©… ÄüswÏIEðEzia&(r U‡Ð¨Ut.·ú‡à¹Ò ¡|<”?tø”¹õøãäÃ.íuUÀùB!t`ÉN‡xyÃià"Þ@Š+—ØVqâæe:+ι«ï0øÊËÜ2N‘ÚEñtÔ3õlHr¡©áÐNþî"q®‘hí.“$á÷Ç ;̹ÄõåW^ûö·Å !>}..–N‡&.m±­w«í[&nC18z®²ÄõÄz]ðù­!„Ð%QL&½’Je,-`b ÷͵J½ÉdTQ;ϹÄíÅY[¯‡ì¡P(V? œ={¶†Ñ „jâC5½ ÿþLn¾ùæ§Ÿ~ºôs*ª¼™uÒ^¨¼™u¸éP…‰LF ,SäW8L¬]bÉ> ·6©$R9E°…'ì0ç6¹mŹW[ª2ûÜCjK´^•Xû)B!„öˆÀ˜Ò¨duk—¸o¶ª+®¤î0çv·gm¼²C8@-3>}úôùóçK?÷?†L&³úsTÛÌ: i/TÒÌ:Üt!„jï@!„BU ç!„öœÌàèè°5‘ 3´–®óÄڪà r$"t0`wF!´ç(M³ÅbP‘@©[J ×y¢8Òxê Ÿxøû?þÙ“ßÿòßüi›´lF¢åô?þÐ÷ŸøÙÿä?¿õo?Ó\]™u¸A®“Dñ?‘²¥ãȉSgžsúä n«F²þwÊÖc7<§ËPþŒ*B*š;Žœ8ýœçœé¿¡Ûª&@aê9qêtÿ .}#_Ì¿¡‡4¹N ܸât§¶”‡TY{Ž:s¦ÿhg³|y½Íz]y“!„jùÅñ¡(8àƒãC1(p×{¢²ýÕ÷?ðË¥ïýëÏåÏ¿óüÀÔ³ïz,,–ÓrÛÇ>s×±Äo¾õÐ÷¨çÝùÚ×}äϾü³øŠË¬Ã r$Š‘[º\ŠøøðxNP˜ÜGºíéAÿò;’¥æv›¤° ¯>¸îÉ-]í²èø¥ñ<¡vôö:›£ãi£U»˜±õ›õsɨ$EËŠ}ê×µ=„ö-l|Û ¡ouJ"#ÃTk_·Eóe6íuÁó!„öÏ …"/€°²°ÍD–¡i†«$qýê+ª(s{97¯h5Qñ'üú׿üÄ I>÷Þ§~ýóOÿ±Š8yÇk¿ûÒ½_ø÷Gÿñ[¿+Çnèßš†ßûÃrüö'¿úýï?òÔ€±µU!š³L™U_a‹¶·=÷bõ_y™Ûê "È&­&^ÌyžÍ…B J«]>DLêet.˜/³&ªÙ¤Õ¤#¡ËóÅ´oäÙñ AA2£ëp¯]ÓXÃâ {ˆDJñt6Ïq¹#•J6ëu•V½í B¡ ©7œ9Ók¦@Õº¼°½DÑ2·¬hí·—¹½œ›W´–˜Ÿ÷GAb³šä/úMö—Oþ2×yâ„fƤoþæ·þò„„”{Ÿ”Z£¥¾E«ëø?/8 ÀçiñcÔeʬ<øJ[´­í¹«ï0øÊËÜ2Îͷ犒òìêë ’³FPÚÛš3¾ùtß|p P”T Uöžã§Îœé?ÚeRLl1­ë9Ñ& ÅX{ï!sanÌ—j¨³¢=DÙzô̙ӧûOô¹-êÒ(Ÿ+²¤B%'I¥R^d‹›ôºJáõK¡«>}ºÖ!ì‡:lf†$jqrt*™ä¸üòÂöEËܲ¢µßV\æörn^ѺÄù…y—Õ Š¾?¾I•üù“¿cÈ›ÚìÀþw’ì²òf“b±˜øÖ üîçã¯ï:ò–o=qÛÅ‹1@4dÅ2’mâeV|Å-ÚÎöÜ‹Õw|åençæÛs ÓD_ÁJMíVaa$Æ‚µl½¨bZ0zepFÒä8tÈeJŽ…™ØÌHŒTš»Ü­ÿÄx²Á®ë!Ùù‘ÁE‰ÒÔÙÓaI^^d@H.ø[Ü}ýŽÍM—«-Þë*‡ó„Ð5yÁþ«ÃfÖaH¢¶'ÀêÂöEËܪ"ÑU*_}×*ZKLúç3pÂfm¾éŸ§ ý瓃,š›%‹L<þñ?yúÞõ¿o~¹‰º¥E–'–Ç üô·ÞöŠŸµY$ñùÌó?óÄ©®ÅÅEÑœåʬ<øŠ[´­í¹«ï0øŠËÜ2NÑÚňM,H­Ó©ŒLN0åï¢G•@X ³¬ìR0Fר!œ$ä†önò‡µÎ¾~™ô/‰ÎÄëxáÙ³Ü&ËÚT*€Ï'‡ƒÖßéY-œ? „Ö4ÊñïªÃfÖaH¢ö(N¹©³³… NÎ%jýV…©«£…݇H欇îøãeþo?9ÂÀq€õ†LàÿÑp@rämßüç×»¤áïÿÕíòM}/yõeŸýâóì©î.€èØXT4gÙ2Qý`Y–¤$ÄòˆÎÐuÆžº’ÖëdrùÑmË™´šù¡¡yz“rÐ&Xvã´@ Œ=fzvÔËZoh]šÊØú-úù¥hc\/¦ë!ãy{‡,8(Ý-”½²L¯ Vqç¡erü{‡ê°™u’¨½‹S"oÒéŠñòÿìö ©ÐìO$‹ó~þàÖ—;©©‡< »2‚;nù‹·.]jºùµ}™³ŸþÏpÞx“KF£¾´nÁ|æŽW¾€ëcs.ân1ržoþdL8ãUt¸;dÀÒK S ™ZGt1¡¯²³ç„“˜LdÚe tfòñPþÐáSæbÔ㫃Ððñy¯¾£óØi)É2qÏL¸ì¤`§½ŽP(Öžù600pöìÙm‡BmƒÌèt¸ˆ7ªõõKíƒ}nÉmñòºµ/W£$®‘hí.“$á÷Çk|ss Ú^;¢ýóªD|~+B¡£TF“I¯l ‹ªoµ¡ôZÿåj”Ä5„Ro2Uµ¿X¦m¯oxþ!„P™ŒX¦XGßÚ[û0ÜZýNñë¾\’¸ŽD*§¶Pàj|aQ-Ú^3•œ¨ý”!„ÐuNà LüçDè@XûN­ûr5Jâ:\±>v µh{]Ãë—B!„B•ÂùB!„B¨R8@!„BU ï@h=×{þÛzüÍÎw<µI®ã÷œûñ;åÜ~üžß^ó;‚$çûÒ!„ö ©liïpÕ2‚¥“‹³³Á M®S}VjåM$\dì¼'UÛ(ÕdïtYuJ Ǥ#ÞÿR¦žÞ6-YˆzƼIvë"ꓲõØ1§":qn&åº ©²ºÝ­:¹@Çæ¦<1@¼×Uçí®ö·}ámcý›§£µ!„P[º\ŠøøðxNP˜ÜGºíéAhÿðÐ]ëèˆ&G·MðÆBeíîv‡§rF«26v1cë7ëç’QHŠ–åkjU¤æv›¤°þå"݆з:%‘‘‹aªµ¯Û¢‰ù2å{]¥ðú%„VÜô™ñÀo?p@ò²‡@`ü37€¬ïÎ/þäâÄììøù§º«_³nÃ~ô‡—¦'~÷Í7õ¬›‰Ë{Þððw?ñ<Ã~‡B¨ñMZM:¼˜)ò<› …”V+¯uLŽT¥’¥cšåùb&/hµj@ €]‡{íšÆ“:‡C æ7Ï&‘R<Ís\.ÇH¥R€]èuµ¡ÚK“Ý{÷§Ÿ ð—¹ûî»ï¾÷±IËkï»ïåú‘‡>~ßSK‡oýøýov­d×ßò—¯VŸÿ—jÑ=ï¸Y&S©ÕjµZ­” 8ü–ýîGt5l B¡F@QRž]}½AröÂè"ÊÖ£gΜ>Ý¢ÏmQãpmGX¦À«õz ¹^§”J)`b‹i]ω6Y(ÆÚ{™ sc¾TC}PÚÛš3¾ùô†+¦Eº WdI…JN’J¥¼È6éu•Âë—Zzö±G#Ž7ÿÍŸXæ~õè£Ë÷?ÈÿËÆ%³¿›ˆ·7½òU‡ÛÚ^HÿÏgÞþÁÿUý¹ûeŸ{¡ÃñÂO<ûõׯ;ç <úŽoý{êå/}ðJÃ^T‰Bhïmxí°À—F°Ùù‘ÁE‰ÒÔÙÓaI^®r€‡Ö’ó³éCݧž#°…t$Å€˜ØÌHŒTš»Ü­ÿÄx²°e1uEjj· #1¬«iâÝFH.ø[Ü}ýŽÍMg L¯«ÎÐ$#É×·µÝÜÒ¢¢¶îá·mþP^âŽ÷¿ç=F…TÙ#V¿s\‘åŠ, $‘šøÕÓOk@Ù~úÆ ÐÓ¿~Æ·2yøÁÀÀ„Bh¿¥Yöl<þ°×[¨~tU ÑçmðlYþÂcY›J€ó‡ÈG¦‡" )p¼ÄrÄ® ä†önò‡µÎ¾~™ô/5È1?Rët*#“ €t-µL·ásÁÉáà†õwú”œ? è§Ó®P¼d$Ìl±»½fXÏs)•J8ù‹?øÙ×ûŇ^ò꟩ïüÖÞí¸ºŠ’@±xåá·¿æa€å'8aFºóŽûΦ×åÜb¢‚B¨ž˜åòw»Ýw8ÿ:7·‡Õ°,KRbyDgè:cÏ]Ih»:dÁñ@éŽVaãÑbT=©¦EO.EREJ¥l‘ÊØÙc¦gG½¬õ†Ö¥©¡Œ­ß¢Ÿ_Š6Æó•zL.?z£mù³v@3?4ž·WØmD{]°Š308@Ðï77|llËɃ˜Àädn¸é­Ÿz‡eæÿÒ¯% r½½­{àÌ)]†ixã;ožú5€vàÕù†ÃŽÛoð '×RäM¯úØo–v©9!„ö_˜aþyzú37ܰ·ó>“ʸ,6M*˜&‹M‡ P$Z“I¥S¬DmnVe¢Õ<]ƒÔZ;[TÌØ|–ÔÙZ¤K¾,°‚w4Áq(žøFš¦e}ƒg}¥E©õÈIõ⹙͕vÑ^W œ? ¨Y&›§·÷Ð;ö§÷¿ëk–Ýþª}˜ö}õÙ/ýìÉÏòç‡Þ÷Ö/þÃð÷þîöÿÇG¾û¥§š¿ùƒO¡íÍzÓ{?öâBðÊ÷>tïƒÃ«%УÜõíGŸŽïR[BÕJ˜a´\»3ùàŒWÑá>îK/-L-d >ïÕwt;-%¹B&î™ 7ØÅùõ† ÎzÕîV ϤÃÓž8\éùx(èð)s1êñ5ÆÉ‡røÊ»h¯«ÎÚ@XøéG_õÓ®%Œ|åÎßÿÊê§»þàÛpå¾·ýÇ}¢„~úíОFˆBè áé¨g4êÙ&äÂ3WÂÛ/Snls؈7×9.â ¤¸*×H´v—I’ðûãÑÄV´¶…φ¦FÄÿ; thâÒÿ¸ë¹™Åà蹕¦TÞmÄz]ð`!„BŠDm0™ôJ(•±´PUâB©7™Œ*ª\â+ÚNHµp4³r„B¡Xý000poñDïÞ¬\yÎÚ·ŠBí¢½Ø{ïÃp‹Èd”À2E~e«&q‰TNl¡À ¢‰;¬h[!ÕÀuÒÌÑþyU"^¿„B!t \)FWªI\‡+Ф®%î°¢m…T×I3+‡×/¡ëÚ¾À“!„:pþ€B!„ªÎB!„B•ÂûÚšZÛñ÷G,Ö|àîK¾ÙZê?tês7—–Ÿx‡ý/¯i4ûM¯s¼£Ý|DAñ,}94÷•…TªÖ!5 }磽fùò‡Äçž™øõNu.Å '_§^þX~·?·Ãë˜ô—zá}C~_uëºÞûóß~àÐãov¾ã©½ ®NÉm²½kísñ‰+N×.žzE*[Ú;FµŒ`éäâìl0ÊæöNg³FF°t2à™ fùZÇÙH(³÷ˆž:7“XIÑ:º:,Z™O<ž`–…©§·MK¢ž1o’­i¸; l=vÌ©ˆN¬µôÚDReu»[urŽÍMyb @™^W9œ? ´)©þ•í­/P’tý¼T†yæËï{ßãÆ›ÿïG^æ¬u,ûнÆí8M¤þË—·8nqö$Ò翆ˆj$óÿg˜É]èÒì…ù™$ 2½Í¦Ýyqõ¬ÉØ~§ ‘^P['„Lð_B¥·àòóùS—ä–.—">><ž&÷‘n{zП•[ºÚeÑñKãyBíèíu6GÇ# ;ÄÝ_ sW§MGf3̺DÒèê6ÐS#ÓYRßq¸»5}ÉÇ­ÊØØÅŒ­ß¬ŸKF ) X¶±¦iRs»MR(lžHè[’ÈÈÅ0ÕÚ×mÑÄ|™2½®ŠŠñú%„6%Q×°?ò,ÌnlIýùgøÌøÜB X˜Ÿ} ù¹ïüÊSçÇ=Ó#¿yì¾W¸¥püžsÀЧ^4ðþÇ.NO þà}'¢9á¦ÏŽ¿úÐ-·ýÓÿ\ñLþæËæYß_üÉʼnÙÙñóO=tW¿€õþïw¿ûÝ '®Žõ: Sè¹¼7<ÿÍàâ7‚)Ê¥’@óÀ_~ùÉs£3ž±gŸøç×UÀê–ù-Ÿzbhfâì¿ýÅaj5ñ÷@~Û#@ào2׸Eû.—‹ÿ"ùE$èûà¯Ó¾åMߺðÐíÏ»ë±Ë£½¥Äúg™œœ/ùE$ò‹¥|cýË­šD÷zW ÄÂÏ® «ü«}ÓgÆ¿ýÀÉËñÏÜT³vÔ„ÀæÇÒ©áDìéHlªXæ»)¾„æw>ôÔùqÏôåßýçw.=o^äûÞÐÈ&­&^ÌyžÍ…B J«•—#¡ËóÅ´oäYœ6½1¡û.]z¿/„¬_§€,Çü…ûȽ/mõ>zÿýÿ/ÐyÛý_zçáåìÆ?}ó‹¢ÿÇßö‚¿ã’ZF^·T7=Çel·Þs—=”ÒÿÞ nT•ëŸ×æ¬qèû†<ììx$ù oìªKo*újO>vïÝŸ~*À_zäî»ï¾ûÞÇ&kÓŒZ!õ®9qò¡Óg¾Ö×zheÐ!þݼj(áß>|Ï­¶™o}ú³?M}Íg¿þž£°É÷½QQ””gW_®œ½0ºÈEIReï9~êÌ™þ£]¦Æz·XmqÙx$Io¼‡’Ë PšZ{ºLÊB¡ “É€‰-¦u='Úd¡kï=d.ÌùR u(DiokÎøæÓ‰\‘%*9I*•ò"[(Óëªó„ªÇŽýò¿çóéМw.JkO¾êfc$Íwžì×BâW?xìWÿó^ªïÆÓˆ§~ü©w}æ ÷}ûÕÒ¬‡ò9!ôħïù§¯|ñG“š¦&H<þþ—Ývçû>ûÈW?÷ø@[›£fm®¤ü”½ëÓ'OþµIžJû¿ã ód¿’?ùÂ'¿úн÷þÝ׿òÄœdù8JâÉÏÜý¹‡þþ;çä6»¡¶×©Âoûʳ‹Àý滟f@*¥ÊõÏksÖ:öý!Q·¾Í"Ÿ Ì%‚l’R2¨ð«zö±G8œæ~õè£>úس¡Ú6hßšœ|`rò)Ï–X}“ó5&ié7âßÍ«v€'ûõüÉ¿|ê«_úèÿÂuºß¸É÷½am˜@YˆÒx™Ú»TÈÖ:ûú]LdvÒ¿Ô Š‘Z§S™œ`¤›'Ÿ N7¬¿Óàpþ€PõžûÎÞÁö¤ëáкM¡PHü×_¿èþg—–¢Ð-¶ºhN8´–A(dS¿ôƒŸ}í±_|è%¯þ™úÎoýèÝxö¡Éü§jI22ñî™ÄÚ¥¦ ) o}ÎËNè|ƒO®[‰¢$P,JcŠ’&SË>ÇÞ0Äú§õݵ©–Rñ¹OÒ¥ÿ•ª[{ÚN°Ñ¯x‡\bYÅ¿ÚÀs)•JëçÎÈš»î2Lû.},XVØ0jYûn®·²,mÏÒW{%'+þ}÷§E{‚eY’’Ë#:C×{vèJ˜Ý8Œ„úy†G#b É–¿€2™¬P`€2vö˜éÙQ/k½¡uij(cë·èç—¢±¥•zL.?z£mù³v@3?4MŠ$ÍÓ×®.Úë‚…k3–ƒó„6§8m3´‚ÒIPšçÛl½¹øó4 ®ç¿æö%_Qà˜¤ïÒo/Îç=ƒSðŠþÞÜ—£ûßô—«þßݯy@ôÈ£hÎߊd$% r½½­{àÌ)]†ixã;ožúÊ\﫞k7œ0€óy¯y:uùÉ _¦(© &mºÅ¶|Ï$ýÔsip n»å]÷Nvÿç/_þèkúºç½þÝoú¦~õårzñò?ÿøyDoìcÄrŠ¡Ÿüü'~è}oýâ? ïïnñ|äá»_zªù–·>ðÀÍ¥Ç^÷À¯›ypèz™?@³Þ~§~y9ÌüÔûó¿{˧½óµþˆ$íûß/ò§¹ÒõK„ñÔ>ütôÌ“Ÿøà?]€Ç>÷µ?{ðµÇžïüÇ¿zøá?ÜR»FÔ1±þ)»Î´Me¿ÚìOï××,»ýUú0íûê³×ËüòÁ/Î*ßb×ÿY›ž-Ò¿õÍ}3ÁC€ÈwS ýÓÝõŠ¿}ýëï9͇¯<öá|î"ˆ}ß[>8ãUt¸;dÀÒK S `B3^egÏ '%0™È´'Ú —ÕÔ}ç™^sé¦üC&àÂãÏz’1ï´ª«ãX¿LÈ'S YX>/ùx(èð)s1êñ5ÆÉ‡] Úëª@(k>8{öì.GˆÐ¾ûÁÀÀm{Ù“»þêg¿ú`Ë÷Þ~ûg  8üžo~ã5žÿÛóºïàá¡:rüžs?~§ü‘Ûß#vfçú¤ï|´×œÏ=e “ñLl§%’v­¾P[þªU9àïC»¤Ñ¾›{ñe†[rc›ÃÀF¼¼Îé4po Å­%¦¸-r®‘hí.“$á÷Ç ›—¹ÃÄ*Bª…=m{ý4³D´^•ˆ7"T5ßSßxü²ðâþßgžyæ™ÿùÒ‹rOþíÿ…“ÔŒÆö»{zîîi=¼ gê¥7¶÷ÜÝÓsw«Ÿ ƒP]‘¨ &“^I¥2–Ö'n™s ¡Ô›LFµe™;L¬"¤ZØÓ¶×O3+‡çд×çB]'ôü!‘É(eŠüÊ·.‘Û*ç:©œ"ØBþ?{÷EÑüÝë-—Ë¥÷Þ¤7)¢€"¢¢4Q@Š(ÅB±~(Q@¤QI  „R/åBr¹^ön¿?îB²—Ü‘ó{||Ž¹Ý™wv'·3»³»íçÙÉDkBêÝZ÷¾SM#K®? ûAA(„^«1öF›?´LìhÉôº¦Ôòìd¢!õ‚î­{Ÿ©¦åÐü%AAA,…Æ‚ ‚ ‚X AA±ºÿAA¤×PØÞ¾B.ÃU’ªÛ·«åz†ëÀho^‹eîÜJ-¨ïµ–½·Ÿ§=á*‰¨¸¨Za`9…xñ)ÚºâÜI¿}¿Û=<Ü“U—Ï«âZ%R8.î¶LBu§´ øŽ€´ÕYS,? ‚ ‚ô¦³¿«>/+OI°ºÉÒË•µù×çIµõ sQ w«t ÓÙß›Q——‘§Æ¸!!žöuy2¡ ûNîu¹k´“ TRG…F7ôv¨V¡;y»RµÚö1»'Uœ}½–æèÌ»S&'ouÖ<‡Í_BAé%>OV[%× ¸²¦¦Æç3Ðë´&4{Wž¤¢ZÝÛqök>O&®QâƒNV––'ÆÃ0À0Œ!ô qãõ¯n1ÅÖÃ]Wzoãh›H¥Ó *…Z¯W*5t:ÀL«³ºþ€ ‚ ÒKh4º×¦In_“Zœ§\]°š› ýë¬xŸC£Ñ Ç-ÈÓÕ–A¨êË‹ŠÅ*Í*YPP¤PSSŽ»…Û4ÞÎÉûÕvf»yÙËË2dô öõ:œbÇaRä46S‡ë:juè_-AAÉ=¯& ¢Å?©vNöj±M^ê, (|Q™“~=«HÆõõq¤hîe§gä×±ÜÜiUùy"ënèutGo¢²ôÞa"!©,78…EGñe¥Õrh¿ÕY]@L‡VI$½ ‚ Òïlzª¨vznßÎVÕP¦é©P\µÕ œ¼±úŽ*‚Ç…Z Æ´óô Õ”×ò=â}4âÛ·ÊûÉÔ¾§'[|+_@o? Êê[YÕ÷¬oíx¡54~@LSÚ¼zAºUHHH^^^oG HטÒô¡ùlTwÁqœB£b¦œ›"3§Úxó+×–¯oD·>tŽß;, hB¿ 'Õí›%¸Ë ÷Æ‚L¹k´³ ¢±®³=ëžÁØ2˜Ì ®¦óy™…’ÄÌ UÛÕÛkuAãAA^bKå>ή²=úæË[2×ê,„ž¿„ ‚ ò@¡ríl h¡ñC?J¼ c …œÞ?ÙÝ uïÛ0‹ÕüÄÄÄTt×)ÒÿNLD÷O#= Ý? ¤î8 ô@w £24×è Môý'±*IÃp­VßË‹z£î½†´}¶Jìý!‚ ‚ Ò…½Vcì6è?‰-èud©=¯7êÞ§¡ùK‚ ‚ ‚X AA±? ‚ ÈC‡â;mμñDó˜±? HŸà:÷˜H$JZè 0èÝË"Qùw:›iĪ+"Qæ†!/ɶOÔä‡I-÷~ø,>'•7¶7Êî1v1ó¾9™šSTt3-iÛ‰vÏÑò]ÜcY×–úâ~§¸ŽY³ÿï¬Â’ÛyWw<ïÖÛáéŠýî4qõ—}°iÃ4ß®Šª3z¬%÷It—ñ®ȉï;È•ÙAaa‰ñv¦îÕ1$a€ ½éK¶GxŒ¯-`L;ïЈ˜¸øØèNœîí,Òxžããý-øE$]ÒòÕ-‡ï=(Ð…KmgA ËÞw@dl|¼qQãV¢pEÇÅÇÇF pævͦ³4$Ÿ˜ÄÄ„&±~|óqv6¢®ÈA®1hô(§­;ø£FyôèÍTšÿ¾_²ä˜pÄÛk&yöd¹Þèvð 5}ÿö#ô‘³¦®Ú!½µü]o‡ÕÕú[Š}ýÓ×µ½ºãW 7k{;œîR½{æT/JeÞ}?é¨M¡bl ¡ô’¹¯À–R]gº­-³Q$`8ûûq$ùYùJฅú:Irª;ûR,'?W[ŠB®¹¯%-_Ýr¡O ª »PAø†ºË2Ê̼œéìïͨËËÈSc\Oûº<1NwòöfÔç¤W©0¶kP˜c}NMgæ- TåY™•ªãìdHèú‚ô!"jÔH[—Q£B‰¦GÕÙ~c[ÒÕ¼âÂì”CŸ  „½sQT¸eö«3¯mŸúÈœC7nší×n¶v#×Ï(Ì¿üÓ«A4ò</ù÷À'²Z½éÞ>ñíIWóŠ o\>ºéùPPŸÚ^*J^Ú´Àã_‰ÒÞ$-ÖtBqLâÒC× Ò/‰b™)}اy¢K+P'í‰D¢¼O‡ÝçìÓi¿®Yúé§‹–~ðóþ3Õ !À°Íy"ÑÅ•OLùꯜâ[)ßOöFØËßž¹žûvÞÕ¤ís¢yÍÛóé'6œÌ,ÊOýenèÝó?‚aïþ~½ðVÚ¯ 1Ì–ïðÈâÝçÒoç_ÿç÷-op£€ó¬ßE"ÑÁ™¯'‰Dy_Œ o¯µiK­[ˆÙ¶DÂÌ~'É“T‹3ÖÌ)?ŠD¢Ã¯:‘VH[©!rD¢£s\رs¾üþû-o š ‰tÇ‘¢OÛ|ü¿¼ÒJ‘HTYQ!í{Û=û´î$<_O‰De¹—þ<³s–ÿ½Û³õl[æ~‚ºåǪ햷}òû¢²³oSéñëREÿ¬ô`ž ŘBßQ±ñq1!|S›¥ ¼DÆÆÇÇF„zÚ6·c¦Ð'426>>6Ò×®½Óå@X’²*¥­€gLÐI$*>Ÿo|­-W*‘@áÛÚÈk«ä:ƒA'¯)/oÔ4½š€&ô‹Š ÷äwÑ» tŠqinn™¬Ãþ,é’–¯n9¾P¨¬©”jõzõQ…3 Rlø<™¸F‰ :YYvš±SΤÓÅbn0èõR “eö'¬B²"ÎÎBãé;nÞ¼5xô3G…çåsô?®š`sqõÌyßßyeËwóŒÇzΰx:ë„UsÜj¤‚!%´óc"xbÁtîÕË%4ï1«^A5›g[ÌQïïZ5Áµèç7ÿ)øÂæo Ô—”T‚««+gôGž7ï→Òó¥ '-™ö÷é›zçÁK^C'/ýÖ¡ÕË>N2~\¶lÙ²Õ‡nÝßìÛ„B!@}}=ÆsöV\þî믻.5}å1iftá£9ß§æ?ãÎ36n|Z½ý£I¡>úd–Osãg©;v$ÓàõØ{¯?fê)Æ­X虓ZLqþ΂1fúRØ#ïl_ñ¸ÝõO_sÝžë¼ðPÔ\¾T Kà N ÍßRô`¶µiKm[ˆ5„t¿w2O²jZÑæ‹~_»lÙ®«Z€Ú³›–-[¶ì»i{!µÚq¤h£—|6=¼zç³cgî)”en}qÈ¢ã*ÒÕ;¹ßIëNªþï/—-[öÕ¶'”[ÿÁšÓ¶…tËÙ–o<ýѧua ×­\¹êe/ÑÞ5_gwaß±ï :øøs¥™W¯Ý(Ó:zðø~¶²¢Ì«×²E¸“Ÿ«q@uôñãÉ 3ÒÒÒókTí¿&ã xR‰T"ÑØ ØÆ$D¢³µåÆ·åË%=F'ð¦7.àÒꊆ¦óût6I£sx¬.ê>êõb‰Ê’Ëí¤KZ¾ºÅhLhµ„{¿#[«Õ2æNÊÐht‚Âq Šˆ‰‹‹èïh|ÿ›¼<+¿Öø§Eã°8ÞùkÌ–‡Àvfš=Egg¡ñ‚ôU)É._Ÿž|ÉØ¿ð‹ŠæCÃÅÇ.þµûøu …%Är´—mK«}ÊÿýW@§·sþMö×§óßùpù—8vfólË/*Z’3ßløá»µ».æ-¼]RlW×ÁLŠ5.1ÊŤ¥%ó¥KOoXøéÖ{¯Ðìä¥×¤ÚwŸM%…b¶§Œ…Ï#*sÒ¯gɸ¾>ަ7…ÉwòôŒô¡×”Ö¨{2$EEvzfVVVö¼)ËÛ×™ÙNœò`^õCþ‰y+å‚òµÙ·Ï'Kž™ À`Ðì¦íÌ™ˆƒ\Ž™~yznÐá8P0Š™<ÉæR2˜ ‡¦Õ™L¦¬ðv Ôêꨱ¥ÎpûvI;¥ãZÇõ€a˜¥?xšÎ ªS¾ž·Aÿɪ'(ú¦C°N§ÑφìÇ4 0xG>¿ô­Ç‚„,:Û@‰5Ÿ."ôz÷¦1ú:9³y#“Ò%mZñ«Û»“—~;|)¡.½ðù‚¹ß¥«®]JÕÍx2>Î9Ä9Ñ–¸zþ/8›¯A›¶DÒB:±€¼ÕY±:i5;ÙêÚ ©ÕŽ#…i%·EªùÓn¨ËSv¬Ý‘y7Ú.Ýï仨òmÐöÖrÝòcefË ölãåßGÏÞ3OŽ)tâ5UÒႆaDÓDV‚ (TžK€¯‡b0 m—ìW ` bãýÃ0©€VUƒ€\"a¸ÙÒëé¶IñBƒ);½8ÿŠø>ѾÍàʱ²ËjÙ  Ãôwn]½@sÆ ³Û–¢±¶Z€7VßQEð¸P+¡Úú hÄÕ5e…®ýñ\—‡dÀµSó×TßQ¸r8 Ò8;ºþ€ }ƒ‘½sñÒEk~«`û'Z­ áå£G=<1&&fÞºûËšF£€N§µ"O­V×tº°iuJJKÀuôè«{ö–;Ü/)­°"³¥ôz ÞÁäÝþ¬¡¾ÀÎN¨¯HKº%eˆªªîY€Ð*¤R¹FÏ÷ÎæáÅ[ž}bôŒdS¹îîM+àùÞ5júÚÓw¼[½x@}ùr:@xÜă} ëü_–4¯Vm©u ±N›ýnyžA˜–ÁÚ«f'ÿŽ: ©iÇ‘¯>øM¯¾Šöñò4ôÙµ'ÊZ/×eût÷”nû±"Ùò¬Ä%¯Ñã8wÂ’¡ÍM‡ýØg—2Ó®e&- 5“s¿B4àšF Go}yVFFffN¥¼yIh¹d{y2}YÆ•+W®\ù/¯Ž#7!•4rlìl©‰qh€ã8F£šò¢0t¶©ÕQÙv|f÷÷©¡“£mWÍ“²®ÕƒajV C«m¾7»UH8Þꇀ (v®ÎÚ²y¥Õõ]3x°*$¦ƒˆ[óŸ=a¼ŽDg§¡ëÒw0”’¿÷—D>i¼.]œ~] ÏD¦TE¿ºâiÎïË^8me¦üÄé f†zLM(ËÌ’æ¹éŠËˆç»ÙE Àó‘^àJoœ:Q™)…§ŸX¸êV¨íäDQf–ªn—h8Q¥¿ü‘\ýêÒW ¤ä¶5]FÒÒ/©D·nÉaаy^w®€Òcß-·²ž}_ö?ÿ4¼úôó~¦J±7‘C$)pi» …J£Sàæ˜c+ר$¾òƈ‚dÛG^zó•P×) Ù7¬9ƒÄŸ²ýÄ´ºƒÇR Çdµµj¨¾t©â¿>[Å_ÿUÒA­ÚR Y ¡ù’´¥,s¡¶Ùï¤y’‹ÅžO¼¹AûêÀ'šî= ­¦ÙVgòB,]]­RÏ£/Lm,Óz¤,ãÒõ Ò Ýïfv1 nè“¢ìƒýi‚ðq/¼]–²?ÙÒú˜Ñ?Vä[ž±äã—Üo}ùêîÁÛ6¾±î¥_§î8Šr¥PD†0 ·[Ô“Ô*%ÓÑžW#RRøB>¡¬Ó01ŒJ¥b…nãdË4P˜,*E£×¨Õ,¡·7ظ¸ ¨`¶eÓº¬ÌÔõ”Ë|«k ¹¯·Q_h”d¹³OV¥$¸®Î|©¸éwžíìÉIqZ^m·Nab»yr@WòÄ]Ô ·´¡ÁÏÕß RPm]°ú[M—[Z‡d5*|œ\¸ÒÕÆÅž%)h4¡Õvñ0‹CÒT¾££mJŠS¹NöyÂLœ†ÆÒw°š¦E4Ý¥9÷þÌu´µ¯®ýái¦ªêÆéÿ»ªbXþl¢¢Ãoõš5~ØâÆi«s®\½% Hòfü¼M›F× qÓ¦‹¶džÈúóƒ9Ÿ³Þé¥U±†ÚœCï­ùò:”–”8gfÞά¼®{å‰Ò’RkªHV#Àÿüdáç¦>·ò=UÙiâøAöçšW×aï¿2aþ}MúO‹Vn½I~üUúßúsÁKæ}ûyÖÁ§Ž;²fײ§bì“0aÌÌ÷ž´UZ÷ÎW—®Ï<þǨÙϾ=ÙËŽ¨ËÿcÃÛþÑä^¾,Y<ÝÕ*·Ë5¿:y["k!\Ò¶dnüÐv¿“¶:2U‡¾Ü1yËŒðG=¿X´;þùæ«i®ÕYFeqH¤ònûgƇ˿cú·®ð«§ý„¬œNîws»¸-áˆ%›Ö„€ó˜e›ÆÀÉ×&—XS©¶ºåÇŠdËSæ}2?¸áè¬mgÿ<õÍŒ?—®X;ñØüã •)I×ëBÕÏ¥÷ÃÁÅ!(ÑtMY–‘%Rãâ’Û<ÿÀH7:hd5…RЈËk„~Qq>:YUqÞmÇà!S%. D¹*« D Î抠 ì¸òº¦®£^&Óx øÆ§¸â‰ÊŸ¯•4=Ñ45…ÅL?ÿAnLL'‰›nÖ©œ¡ïè> Ë üâBœŒ§ÖƒA_›—V,J®Æéz…šhwIs«w‚þNI!Çß7<šA¨%¢‚ÊæÎv›45E%l¿ HO¡‘‹ ‹ëpÇDÇæìîÜJ-¨ï\D–‡d¨¯(øú…ÇÒ)z­¼¾¸¨Vk&ÎNÃX-ž,•˜˜˜ššÚ¹"H¯:œ˜8µd¤g…„„äååuc«®œ~ƒùãÔˆU—º*KŠÏÐgcœ)NC^}û9lë¨1[Èç^õ2ÿEg/¾ãppþÔÍéZ`…¾õÓîŠßzñWKÏvÃ~G¬ÒÔÝBú2ÒöÙ*]@yHñb^þhóX¦º:ëø²·¿Aƒ‡nQ–´ûØø¥ã¾þ÷9:zUmþ©÷7ýñp<1A? ‚ô™âÝ6tm–ÒÃó‚wm–Hkºü½¯?¾÷þ×ï†ýŽ ÒIèùK‚ ‚ ‚X AA±? ‚ ‚ b)4~@AAÄR=|ÿ´OL˜ h~1zîÕb)…ëìïç.`ÓR"º]\£¸÷¹Â|ßXouvv•†$GßÃß×™Ï ÔQqqµBo® R¤¥SXöÞ~žö<†«$¢â¢jEB”® IDATϾ¾AºDØ¢#Û¦Úß}ÕýߌXûi[°ðÐ÷Ï9F)Ý1㥟¬z¥‚ ‚ “žþ’ª<+³òžW÷м½õ9éU*ŒíæãXŸS£3·z[¡O ª »PAø†ºË2Êä‘"-éìïͨËËÈSc\Oûº1án¦7Îñ}c¹2M‰î¶á±q±ެvsh‹I§5ŠÅ Ü`Ð)ꥦévL¡Ohdl||l¤¯µÕùB¡²¦RªÕëÕwDu rÚ+Œ&ô‹Š ÷äcí”N±áódâ%n0èdeÙihð€Je ]°úz¥™‚€í0À×Á”%iéY£‚ïäÂ¥Q(L[{–T¦y@Pi4—M¦ý  ±NJ{ƒü‡óž²bñ„(/!M×(Kõ(/*vŒJôd0ý¦¬þxF:}† ‚ k¯?hkËDv¢\T5ÅUõNnÍùØz Œ  ÔUÅ2skê+J¾~á±tŠ^+¯/.ªÕo6p Itl^êέԂz¸\$ 媬*58{˜I§¤ãïÍ ÔQA¥Â\A S+48C÷– ÒÒ55E%l¿ HO¡‘‹ ‹ëÐó—FÕ©G‡¯øíÌ¢úŒß>]¾iÜ'Û>ƒ9 ²ž;²íYãßÁÞä¹Pøýó¯üRÙW@›õææ×=í©Ò‹ß~v¢dI[¾øî¿ÏPU¢´_>.B·!‚ ÈÃc±î>n511155ÕúLl|b|µ9Y"u† ÷ïpbâ”ûiÉrÿBBBòòòz; Aº:  ´#tÕó[AAyðuÉó—d%ײº"AAAú4týAAAKuÙû¤ošÜÛ! ²]ùù½‚ ‚ô(týAAAK¡ñ‚ ‚ ‚ –Bãé2œ°gŸýnß{§O¯úuÛóÓÃ9Ï1xÞ² V.Šì|N]V{ìÌ Öÿûð±nŒ4„¨ÅKþº°~ï<×6_ÑyoÍ…Ý#¼›ì¢7_áÂú=³{2Dr쉛““[0òÿ“O¯ˆi½@Ôò“;§·­UKœ/|üÓñs=úÍóþV•>`á¡ÿý÷ß‹É?Ïô¾ç ï™», ·&Îö‘®þö»_lçE>–pö»¤SëÆð›þMZ#³Õ´,NËY^MËC"çôÜwgW éÒà-g¶ 6ÍÆl¢åy"Ò_ ñ‚tNâ¸õ "ÜsÊot8ï£ÇcÄû‹´Ù)Ÿ~úû÷z¥taÜÈ÷¶,˜?ד~Í }|#ÿLf©éßœaoŒÌ%ˆž °]*©L2™ @*•?X‹5ì¥ùü³oLzbÜ‹ï(³jÕ›[§>|á‘ú ªI®úŸï?ýôç4iÓ¿IkÔ«iyHÝQz,¨Ç‚G¤» ñ‚t‘Àø H’¾>²sç¡Ï¿M;•"eØÄ_Ê|}ëÊÓ'ÞÞøŒ€>ýùmV'~oïWO?éG}eaRÒõòUmW3q#Ly¾ûó—GyQÍ/I‚íç?@qiÓÏ"ÒWÂó†Gf”þyÞ4¶áÄ>ñÖ(øûdž²£X{ŠT*©T •J€â:|ñ–ý'Ïž;¹ù¦‹V×á‹·üzòLÒ±Ÿ6NdàôÜöääsk†Q"æï;sáBÒ„‰ó¿:tþÜ©}_΋³3®Ýò,x»×4üfíKNÞ;7ÀñÙo“““““Mk‘ÆÙÉjæ0âÝ=§ÎÞ»n‚·ñØ#œ²õ쪧F¬ØùÇÙ3{ßÜxÈL’“ÿùý›u¯Æó¬ŒH·gV“<$·‘K·Ÿ-0%zŒ\úõ¯'ÏžO:ôýŠ1ž­Vç&¼{ô÷U <ë‚'-ˆtË[ZMÒfCšÈ»éïïM/¶¿¹ûŽ- Ǭ A¾éž_'Ç™Lfo…‚ ý›­-@ÙØ{{Ufò¾}é7妯œGÆ(»~¾ó1t”ØO˜°h»à·¤’Õ~Ž_òŒ°)Îðg‚%eæìæ‹7ýy²‡ÍîRTRNÄÎ:ØÌ5 ,j̳Blnž[·ñ̹Ì`?&²ŒÌ:)̈pÐ\É €ííÜ€;>úÄ'©œï›Î04dz ûæmU8xÞÐ8 0ž\7o cù•»s±Ë?z4ÐÊmÒ¶ Fâ“ëç…q®ŸXõAJ¥o»kñ4³$i†•v¼øÞå é—Üc(™ÕÃgÖâhö§¶þÝg† “É 2™@&“5vå=¾ø½Ðì /Œ{rÚÊ÷Mã"Þã‹W…Ýøð¹''ÌÙ­zîý™¡P{pÞСã7]5œ_3tèСCgﯠDÎZ™³~úøI³÷È'¬˜j]@Å»^:tÆ…âß :tèÐW~©0g'« žã¦ºŸ_õòË뮼õRՔʊŒeXøôäOŠÏxÜÃ\²¾xjèС ~¿ÏSødÛ³g«IÒ¢w‚Ò?zaüĹ߉Ç~0;›±o­ ÉùdæÄ'§­¹ì·ôÍÑÜk°"ç/‹½ôÉÿþ“[¨R~ýóÐSG2s÷ µµn›´-È#Ô“ªëg3®ý—úw.P¼ÃØí„d ûðÇ£ iÞPg<õŒ³èàžB†GhCÇ:È¢»Õ¦ùù¯B !ëäþ3¹ ¯ @ñ¥³7u:yiq•Ö¸ g``Ýås¹ .¾pöš $D`&GCÆ– we7¨UW2ʺ-Îί.Júaï•ò:Ñ¥2 žMƒfuFRR©Ê ËËÊU³›jD¾={²šd!‰/»!Ѩ«S.¤3íÀÃ?@œr:£N­mÌ=ôùGÇoßý3 ‡ÍZÿßÇ__Q´[º…´ÝòÖUÓB—Rr#ãbé¶ ñn)3 ÏAÅf³ëêêZ&Þs.³¼¼ÜÓÓ388˜N7?IAúªÔÔÔÞ,¾i–=ž¾wÿvý¤y`ƒé+×€øèΉ§1­ nîc_y4Á‡Ë¤Ò¹j¬E À(¦¾ƒN"ÑÐôz€»£”Öð”ó›OÛÎýØêØÇMý•ÝßÿµBsóv¦.vØ@o{?›pâÆ·À'_À€ã€ÇM¥Óé´¦ÿOc_°N`ýè½z ³€Áfw6O#×ÑQuyëþU7"Ú‰BƒW¿YùªñßSgöþ}ÜŠëλêNÒŒC?€ææßÜ4¦Ñh4½¾õít:Ímò§ûFã@c©E9f7<'dòšåýé¸ã9ÃÕó«7WS¯×Óh­/¤Uý¶ä5èž‘oÏÞ¨fËš—ÄqœN£ñ¦{{E—.6/ÍóþVJѶç®6·_‹ƒ'-¨¥æ-oU5-U›’RþJü Êea|pꙫú®È³%&&övÒÓp¯««+--m™xÏo›Á`(--mµ‚ ‘J•l>ßPs#·T1 ^,hqö”Ðiå: ˜ýÌ„ ‚/ßøé2'î“om3õ˜B¥€þÞk…Ák“>ûþÌßA_Y6~ؼûåOÕíÌ<â5"ÎÖD'SÐÞø¡ué:€I£5'pÒÛ¬¡ÓéToÚº#ǘ —5ðgt6Wpó¸›2ù¯K¦ÉJÊ‹ßþTf¼V0äù²óÇ6,$Ÿ÷Ô»ôz=…j*RšÆŒ8Ž—\:sOyGk;_8MùÃóÓ.Ê Â)[‡S Ñ6O³ „‚Yv½‡4öÅ¡nª¼Sû/U[´)¦Ã͵nòu’ÅÛÓ¨ª 8Ž7ï#*•Šãx«D ÇN€Éë:ÕÙÕÏÝ0o؉.ÊÍähMA]€´Ù$Š’S6LJD ¥'¯ïè7ëÿè¨åµ³i•Ú®‰²«õòY*é3ÐýÓÒEn¥JÁîÉ7&½:çÙ92ˆÒÜòÞ F¥b@g;¹9†?âÅUâœð„éqÆn=+j⣓&?1q@¨ÐšYÁ¼1Ïÿ´yâô1Þ®lÐëòz H32îÝwÚdw(¿õŸ¨ýŒ™7kÖx'…Øêj×ÅCH§Ð†ŒŒÒܺcU:ÉâíiÔÕ„Š¢bçÄQ¡¶ –Óà‘ú¢¢:Sâ'"ì™t®×Sí[ÿÄÝá¾îæ®Oÿ {ûÍÁÖN0&-¨ 6²ÄÒ”d}ü+S¢r/¦ª;ÈÓûÙµV¼»yñV×Ĉ HwAãé"ÊK'WŸ%²øÜ?zÞ•OÞÿ·ˆ¼»ª»øó™Ôjç©«'Mâ¤.yýD²Ácäc³ ‹Ÿ7?Êµææ¶uÿæYSº>ÿÆß .¿üôÚU…ʲ·¯>sÕPœY"ž£#µ&5¯ØüêågÏîû»Š3bÁÜA‚’ô/?øç€æÒ©µ?æÞñŠŸ7{  $cËûr‡,[öô¼šðô²ec†Yófmê©Ußg+"Æ~øÑ3“<å™IY9V]ðœ?ìüñît~Ô#óçéúx„gCöŸWÉëÚ§Õ'mßg˜¼õàî•i‡SLcFYÒ–/ªG~ñûŸg}ùóúµ"sçm«Ní8Êý·3¿o}™r`ù¦š§¶}6ÅÄ'¾ß S¶ص"äú‘‹¦<ÃINNþv²ÐwîÞ»ZÕ…_‹7î?²ë’¡ŽíÅ*vÒçüz Óúí|ûÌî4¯7wÿóĮׄ'ÖîÈ4÷P]ò…¿ý‡1ø€ù¿&''Ÿ(EZ#ÒD‹·g·T“4$iÒ–ÏKâ?:púøoºýõáŽë„)±0â½='Ïùz’jçW'[?4ÙÛ>KŽY¶0κ7ËÔH› ib~JŠpHBéÅËN””ܬhl(Ì/ï£Wi‚±Xhœ”ª­ýýù‘_ÔÁ-&r¤ýöüàá!ãÔpdcòƒÞ«~HªÙ#¸£Öÿ±2J’{ü‹µýtð€ )týyõËëHÿôP]@‡ºþ€ m¡ûAA±? ‚ ‚ b)4~@AAÄRhü€ ‚ ‚ ˆ¥ºhü@ẅ 4 lÐÀ g6Ö5y"HÀ°±½FN:¶m¨K»‹pB‡­Ûùîé3kmyÄϪÌCŸüõüGçϯ»ðã¯{¾p|iÇŠ…ƒ¬¶OÃÌ‚ H/b¹„ÅÅ:tÕ0yÞQ ‰‰îì.Êé 6>1án¤Ï0j¯…ð}c¹2;S.ß+ÄÕº·Èé¢ñWh¯­¸q3'¯ŽææØÑËN¤`øÙ¸ ¨·£èôGfŒáŸÿaꄯ¬½VfÕª¹§ŸµvÔâ+ ÝZŸâöȪE‚ÞŽA‰¦¾¬¸XÔˆwQvòÒôÿþûïfu»oEDú“.n!­ÐXfç{ÿ]4ü••gË©Lžƒ€­—ëìüãÕ%¡;½¶HÌñò°i,Ì.—Àúøy9ðèMcÕíâ*nvIéVtï„u_Œ‹ºúsoÒU0—aãWÌ u±g«.ÝM|-1a.tP–eÔ+šzü4[@'F£à-¦¬Ì¸%æøÄøê Elo;ÞX~« FIÐ^>N<hd5%…åæÇ d¥#}Æúù90t’ò‚‚%a¦…˜:Ï6 Ðj TCUËÄ–=êÔE×èö‘Ñý\Øò’‚ª¦WÔó˜šâR ×Ë«(ƒPÀ :úøóä…éiWoT\Üyf—DîDóˆý`ó„x•Æf3Øl» †ã½Šùæ ÷ìOþ7qâkŽÔê›ßñ¼±þ‹‰O·G=dÍKî >´mäÈ_^7\ø`õÈ‘«G¾–\ €E<¶<®üã—>ž2ÿù¸IÓB¬+üöîÿ¹eW‘ôð[«GŽ\=²¿(4–©UP1 ûM~iÓ|›Þ Aþ„éìãNTß¼~-#¯\ʰåQd%×RSSsî½VÀtörÑ•g^»š–U©R‹nÜÁÙNNÔª›×®åÞay»ÛaÀ÷ð³•e^½–-Âü\yV–Žô5,GWvCAVV‘”cÚŤ-„êèãÇ“f¤¥¥çרˆæD²uOéšëTƒmcAz±äžÑ­LÒhÐ ôÊF‰Nï Çè›ÃÕJÊäz}}]c€—rò%¤û¾÷Ť!öÐGN?52ÿxzñ•ÆÞ ¬3<]ëò·å(q€ÒÛ Zc¢‡KÀüòÔ¨ÿ9_´rº»*%dk™'_^„)•8H ²Ê& pèÉÐûžðñ¾Œãßý7=pÚËŸÉxó—ª=¿ƒ H†a4j¥¤º˜ô‡×Wkô¦ó¦ÇcC­Tµå5 o”l™ ´$ó&¦×$2•/Ñ¥#½H#.«lP¨ê¥„'“ !]ŒÍáêÊä8 R6]H"ëQ·7‡Âq tÓŠ»&ô{Æ ÅËËËÁÁFëx\‘ÚâuŒ…Bx èIÙÍ sWú1 c:‡DØ€BÕ«å;ŒAŒR-}EhcUZ¾|„£ `¸#ºV¬(’ôïÉ£4*MoзJ¤Ó讑ö„ë€JWWW˜=Üp<žYõÔ8_ªÇxNp­{cíó¤5×Ó ¸À†…Ûs@-¾žÕ€‚€ùÎI‹Ã¦¦¸Œåí;ÐiPKëE¥¥u*s3³52%Ï/"ÊK¯×HKnß=EÜý`ì-Qy.¾NŠÁ4&´w«½ÒQϪÝÛQ!¢ùC;b Ú—l™hEšéì¨)ÎiÝѱ¤1à8^___RRb0ܽLpÏ8ÁÓÓ“Åbeggk4ä# såá5¹Wj: ‚PWçfUª[¤ut»µÅBä—˜˜ØEAçô‡»hëæ¼ÈÕ§Ÿ_±!¿+2ímz½žB1ÍÁ¢4=4×ãå—Þ™ýOEGk;>9vªòÜK/æÊ ¼gþ·l€1Õ@Úæia0<(O+*NýpE*€ûˆ¿Œö×VÿöÞî²Ô­† Èãíñ¨U×H¯¨)¾YSŒÑض®þ~NÒœ-YF 'Û†ì«ù­Ïÿ,éèí¢/ÏÈhÐt—QíNXi¿tÔ³ê÷;r#€€¦£kóQ–¬GmÕÁÇ_È ôAQŽE_+jñe‡Édxzz–––6'Þ3åÛÞÞ¾´´´ÃÁC'¨UJ_À¢P8.þÁn¼~>åé·pññµ»¾¾ª|pnÔ¯ª¯tõÈz‡Ížd–WÔ;ø&xÐè¾ÏLY?Ý“nfm*Êâ00‚n㨵w·ç1(PS_íæ?4gï>ÿ历úÒšö Á>NO÷h²­®æÈê]ߦ«:^A¤ÛÅÏljϦS\«Å¡ÅÕ„V(Fg0(XÇ‹Æ0ŒJ¥b…nãdË4Й,*ÅÌ*—ŽôµšekÇ¥ÓÙBO7éðjMZ__^.ÅUÕyׯ_¿v5£TnUñMaa¡££cËÄ{®?0 •ª[’¸¸¤„çíIÃô‰¨H‰€ô]Íï«ÔPư é;÷Xý¿¥So'¸?ÿ©—@–¾õ+ÏŸ-Ÿ% ¨ª ÷föÕIçŽ}zÿÉñõY—7¿÷ÇØu¯m„ïÞ:p}û¯¡«þ÷ö”’´Ïå>ù< ÷Û7CŒ÷Gütat‹G-iÿþñô°Õ/ì™BS¤Ÿ^ðNšE×$û8uõѵWO¦){;Aú\yx‡x±é˜NY_Z,ÖÜ}º@d¢(JÓ³«ÔâJÕ ˆx ô©¨àV%iÿN#.¯úEÅùèdUÅy·ƒ†@vŽÌ5z ‹qnjD¢'(Ë2²DjÒÒ‘¾¬…htâr‘0p@”«²ª@Ôàll*Võ¨ JQ~c€›]u~íý4FÓê֌źûî Ëç‡tÝL’¾RÒ÷YÞ'&NiZrVppw…<ìv囦¿…„„äååõn0‚t¹–”f¤Ç£ûë±P„±N×òŒÍ£°=ÂBi%×Kd÷oÇPϪ·ôö–Ç0h}Å}÷ü»êõ‡‚ ‚ ˆu ò;unÞ‘1ÆžËEEŠÞ y µ¹»ÐøAA¤CóBê IDAT—hë‹oÔ÷vbeî7‚ ‚ ‚ Ýï>¯?ôØü-4E餿éé‚ Ò%H;'ý¥ÇÒ_â|ðôÁ-ß!¡ë‚ ‚ ‚X AA±”uãªSHBBBBBBbbbbBBBBB¬Ÿm;˳Ýã}l:Ê•çeÌ3ÂmU8ˆ•h<ÏññþvMÿ¶ñ‰1íGã¾ä›]Óò%cÚy‡FÄÄÅÇF pâÜma,—°¸Ø@‡æ)s|ßXcžñ±‘|„ÌÎÖî¡á:÷˜H$JZè 0èÝË"Qùwz;(2«®ˆD™†ôv}{âæääߌüðïäÓ+bZ/µüäÎé®íæÁðÂÇ??÷×Ù£ß<ïoUéú÷ßÿ½˜üóLï{¾ðž¹ûÈ¢pkâìªÌjRøÛì~Ñ£k2ïqf·|»úHcè–ïÍûÛt½‹ï;ȵGh|ߘ–³An, ËÞw@dl|\LDˆ§-£õJtç°?[ Z‹âãbƒÝmzÿퟪ‘­_ìç¯Je¹‡‡{ô`ï²ÅöŒ õ˜{kk—°¬›Ý-¬»ÿA_›÷_-ØøÄøjs²D–¼4»còÒôÿJÁÆ'ƯK²CȰœüý\m) y«—‹«Ê³2+-zg …K2œýý8’ü¬|%p\ƒB}$9ÕZÐÔ—k R¼ÅÂʲÌ,‘£ |¸Õ×ß–Z\dÐèQN[wðGòÐ÷v0ˆeTR™d2€T*7~°kØKóùg_œt  ã05/ßÂÍ­S‡o…ð·ÿXÞµqv"¤‡„å[Þ:=ÒzW‰³wIo_ûïvëŽÓÙß—UŸ›‘§¦ðÜC‚¼éõ-LGæ²FÓã<Çb Ó)`¯K}–eÝ‚nÓ©±4:ƒÐô–4®Uôì/“i{R蟰wÉÕ’±sÓ5ó—0¦Ðw@”qPèÁ§p<"#<9 —°ÄÄÄÄÄpãð‘.ðêiÛÑ Œ&ô‹Š ÷äwðFw¤c:Eƒ¸47·L†w¼lgPø¶6òÚ*¹Î`ÐÉkÊË54]¾ˆ ô°%9±Aè$ “&ÓYÁ@Dië2jThóóœí¿±-éj^qavÊ¡ÏÐÂÞ¹(*Ü2ûÕƒ™×¶O}dΡ7Í67J§OÛ|ü¿¼ÒJ‘HTYQ!í{ Ã6ç‰DW>1å«¿rŠo¥|?Ùa/{æzþíÛyW“¶Ï‰æ4_jxú‰ '3‹òS™z÷Ô„`Ø»¿_/¼•öë‚A ‡Gï>—~«8ÿú?¿oyk„ÛôߥRH¥R©Tjü×á‹·ì?yöÜÉýˇpLKR\‡/ÞòëÉ3IÇ~Ú8} €ÓsÛ““Ï­F‰˜¿ïÌ… I_Lt&Îÿê@Òùs§ö}9/Îtq±åùÝvOcûÍÚ—œ¼wn€ã³ß&''''›Ö"“„™(n#—n=xêÜÙã¿|>+Z`\V8eëÙUOX±ó³gö¾ÿ¸³¹<Í„˜Ãˆw÷œ:wz߆§ý¨æ¶’¶±³¿üåè'ÏþsþèþÇ7ŒçšY=üí?vÏŒbíž“žÞ¿ñ™ö "­Ùî°Bl ¤8aÏüÓñsÎÙµîÕ!î àŽÝô÷÷Ï:šòš»ïØ¢p †¬:»î• kvýö¿ÉÑ£—n?ðÓœ¦Ÿ†¦½¹wÝoãoi³é‹˜BŸÐÈØ¸¸èð WÚ=‰ññ±‘¾v-s½Ö¡ØðmdµÕ Ü ×Jkê4|>·å×,Gz]]›¿lƒ¦Q®f0M§öûVÌâi5Z˜}PB¬¯-`th4ÆW3÷p :IƒœÂfÓÀLï—î2 ÞßIè7(&.."ÀÁtÕŠ¤ÙøÄ„»Û:„ÇÆÅF9s00ÛÍî±jvÉ¡›êàãÏ•d^½v£LëèÁeEfjjf¹R[“ššššjAò=üleE™W¯e‹p'?W^ûùÒÙ<&ÎᱦF7Ñ+êÅUÛóÔl÷qq±±Ñ‘aÎÜv·³eKÒht×›z´¸´º¢A²’k©©©9Õä/MÇè¶¶l•¢ÝW¯#­Ü¼ykðèg&Ž ÏË+æè~\5Áæâê™ó¾¿òÊ–ïæç3p†Å{Ôi\'¬šãV# y,Cšmô’Ϧ‡Wï|vìÌ=…²Ì­/YtÜtÊcÒÌèÂGs(¾OÍÆœglÜø´ {ûG“C'|ôÉ,Ÿ¦<„ãg©;v$ÓàõØ{¯?f:„ Æ­X虓ZLqþ΂14ÀygûŠÇí®úú›ëö\ç…‡ÚÖ³¸FÆÀ`P8¦¸\&A×hL—z¯Ff{¿¾-µêæµôb•ÀÍf°œ¨U7¯]˽Ãòv·ÃÌu³{®š]’9›ÃÕ6Ü‘ë MÃF ‡ÓfZZiIæÍJ™Î ×Hd*:ÃìrFªšÂü¢Â›ÅuhzF÷PTd§gfeeeßÈ+‘²¼}ÍNÙ´|IÓO>Õ18>>>>!!“knQŽgD||B|L°¤¤FyÿyU¥$W<º|q|zò%c7ß/*š ºø×îã×–ËÐ^:´-­ ô)þ÷_À½?¹wá¹ÿœ¯PËjJKJëTü¨çFÅ2SǾæäÇ«¾Úöí‰[<h8¶tÒ”——lþñ‡/åxy5÷N}ºìËíŸýz€éêf:ù©¾òÅìk–ï¼@wt´š€@ã ØŠÜ?>Ÿ=织êñºµiG~þ«hÈ:¹ÿL®À+(P|éìFN^Z\e:p{Ö]>—«0àâ g¯ BBÌ5dl™±pWvƒZQu%£ÌÁÁ¡Ûâ´œg` øÒ¹º:åB:30ÐÞô…:#)©TeåeåªÁê â¢ÓßïN)©­Lù;Cëâ*+¶4ŠDr ãPmÃB=›â$]½äø¶#·dõ­ë9ZW·v j]£ÎØÈP0 ÝÆÞž‡I‹SûxËŸõ—Rr#ãbé¶ ñn)3 úì+×Ô*•ªè¿ÿî¨T*:ÝxêU”ôÃÞ+åu¢Kÿd<=L™¼Ùô1lW+©“ëÐÖ×5Ò¹\º1Q×P'Ç B¯Rª[œé½nL{Ã/žƒƒA\×â˜k<'$Ætª’Ó¹£>Ö³¸FZ†Ngs¹:±ãr™tº¶iDÔÃ5¢Ðv<ƒJ…·Óû5HëÄ*=àr©Â0ÓÀ@U[^£À ƒ¢Qn`2Ûí>÷L5»äýÓ†M“(‚ `f÷2•çàëÄ¡ @cBcGãÊ1êUv®Õ˜Îpiªï(\9òI‚–/ijzqþ1ð}¢}Û{]º²Ü8G!ô uÏëøþŠÄÄÄv¾íƒOVî6Ì[)”¯Í¾}>YòÌ\ƒ`7mgÎD<àrÚ¹µi%·EªùÓn¨ËSv¬Ý‘Ùü•N§ÑφìÇ4 0xG>¿ô­Ç‚„,:Û@y÷ÏÝø+ ×€‚™ÎM¨ëêäL\†.iÓŠ_ÝÞ¼ôÛáK ué…ÏÌý.½w§Úö iÆ¡@sóonÓh4š^ßúgžN§¹Mþtßhh,µ(ÇìÑ‚2yÍò‰þt\‡ñœáj÷Åi9:ýnp§ÓZOU­úmÉkÖÕœ§^¯7¶/Ë·!Ê*^±÷àkrEMƦÍW›â$]½ù7Ë@,,¨¹FÜ}±1©:òù7^o,Ýþ¢3^‘ñ×Ï_{®TP›’RþJü Êea|pꙫíö]ZîM4›>Ã0¦sH„½(T½ZŽÁ½½ {õZ7¦#¯ƒ.Îiù³«,Ï̪bøDRK *eÍ㟾Õ³¸FZ–Îp©ŠšF†¿ ŸM}Óº=T#ŽgD¼„^#JÁ‚Þ¯¦:÷˜i`-êO´;”è¡jvÉø hêDÜóWDqÏ‘áèí¢/ÏÈhÐt—QL_ ²íì¸zY½Tó0Mqè1L_FužÈxrñžIåí¹zéF㉔v–lÇqŒFÅŒ-Â`Ð5Jm‡´’FUKU;úa!´ÁÈÞ¹xi–òBŨç@«Õ4ü±|Ì'iÆ%´u.oZœßà76½nØ峫ÆÌ2„V!Õó©w6Ï¿°râô³Ü—>ñf›Y(4t:sûÏ?ðöøƒï9‡$L\ºé£q«OØ3ó7+Op?Pôz=…jmQ(¦8Ž—\:sOyGk;_8MùÃóÓ.Ê Â)[‡S Ñ6O³š»É]ÇñæÒ©T*Ž[וe!Y¾•&.JHž3î{ۙūwvwX®ß4eþÑß: t¾wôóï­gbÆ‚ßëDÉ) ›ãC"…ƒÒ“דOWmƒF£épXÝl¸þŽ Q^;›VÙñ!¦K¡®Îͪ¼çù1´ìµü¦·º18ŽS¨MÇb•†ëš¶'fëh¯gµ9HHE•ÊçÊÆª¦ºõ©>˜å5"´‚gÇVWªäL½»=Kw§ù«ª‘éÜè]Vô~I˜ù¥[u³z¤š]rÌP«”L=F¡0B>¡lî1ê4šÀ†Ag°Yt Ã0*•Šº“-Ó@g²¨”v†Ql—Àà€€¾ÿgïÎÛ¨îÄg4£Û’,[–d˶,±c'ñ•D…’¥åh é–%4°¡-W`—£B¸n%@ÙÒråN€(´ò[ZNo._q,Ç–,_ò!Y’u£™ß²'‘d9ql'ù~þ=½™÷F3ö|ßÌ›÷²ç0±“R”ãÉT*9Ÿ$HZš“%öù&®®"MI™¡¸BŸEN—óp¬×íËPçJù$IghÕ2Ó5mì@‚L¹8^ÿ¡N|>iýç[ïìŒ?µ4îõ€¢ö¬3++Wþ|ë{ïýñŠê™t ƒ ÿ·u­Y³æÂ V¿V'L’‘äQ$¹¥ÆÖÉ}á ãåן©ùé?ÿååWmúÙJ€þÖ}îÄëËÖ<÷Åö‡®_³²@ à™qÜNXƒýÚå«Ê”Jý™Wÿü;ãúÌU1_ 0¬¹kË¥•ÉîÅò(J(‘ ÈZ²º>'¥ÓIù$ ÚòêÏ(SfŸ}ý§O÷ Ê14œ±ô´e9ŠìrþÛö›-jãYr¾0ç;gVÇÌfÇŒ7‘^•Òþ•hŠŸ™Íçñx<òà5'íÕõp¤ï9ˆÂ5·Ý´º¦@IEÇìvO `üŸwÏ×_ÅV\¾¦¦ýˆiþ¬%’&éìÓ¾Wî<0 3=m zÏæÛî|ì¦s’ý§:nBÁ_¦’¤XS¼(WJ@8Ê3%4-Ræç*¦ünóư^O¦R‹)’äËÔYgüªM*T™ûh¢æ]d¤ß.ÈÍSLœ² +›Á…é”ðû9Æç£3ÄáðÄwó¶G3ˆ~ž`IfÀ\íæ¬<`ìÖniqiu. aïpg×ä+ý±ÑþeÉ¢j óôì3„í}ÃJCÍr}Ô;h1u«U•Ck›W[[¥‰Ç@ËŒùèmo·ECþ0ÃÒ™%…ayyNü\ZdTAlÄ´Ëâì·*Š Këi2ñ9-æ‘Ɇ_Ðbè˜?4þ$‰Mšóáá.‹ÀP¼$W@D}v‹Ù€ }]¥&~Í«6€¿§±u0 â‚jcp±HÐk7÷Å`–§.¡`¼uÀo?„?»÷²©{®¸çù ÁÁ}ÿÝ»ƒü3ÒÞžiû³ÿºôþ[?güs´ë.ø·‡d þíw¿ùlÑÍ×üñÑ–í÷_tÞ_î~iã¿×e}@(ë.ûõäAóß¼ýš–%*(Öü×Ϻê§.,ÈänÞ°ù_ £oí¼qîxîÍ»ï©ík-oßóÆ×\ÞO>^uçã¾ZÁ Úv½¾Åœìfîàß^xÕmï|ò+gÓ;ܺõ¼‡Ÿý-¬¿î­žyã»÷>µmm÷oÿò¼uPù«¿<;><Î_] ]Ï\2þ‚lðó~¿êÞ‡Þú)ß¿÷÷×ÜòáÐ1î‘gÇ“Výúm?SĆ[?¸ÿ7{Sô;H"½*¥ý+ üí%ë‹oüïU Ø_{àÎ×ö¥½ú±Ž–µI~ù#œ('ƒËÔI]ùËÇ®ÍÏâyº¾üão?rŽÑñõ×ÊŸ­éÚò›”}»?ye×ýò¥¿ªE‘ÆwïÙÒÌA’Ó&i=ÝÖýýcÊ@Gß?}`ìV«´¸¢6Ÿ"ba·Í` jï³)K×hƒ6—úàcÙ9 cdEõ‹Õñh®ÚX0D…‡Ì=BâêŠ {í]–ñ¡NI…Já·w'>‡8ïÀ@ Z§p†æªò ãEÃa6Âø#ŒßÏE"“æmG¿ƒ‰ª‘ðKêˆ0`®v“ ¶ÞF#öA Vúçç{Fã<“g¢øWÿøòöìíÿ}ÑcVÜø§WÖY6”ýìítû-Û´óï× ^¾hÙ¦oŽk=²òòr“É4ßµ@ Ðß»ÿoçï¼`ãÇ~ è¢ËŸ~Böû žlžvE4Ms|õ¿ÝüÐY__»éó“¨OâÉtAáe/ªQ:ö=inËž|{´`ƒÍÊó„Љ­wÇ+œËy¿ÿb-M@,8Òñ·{·~xè”mûçgënØö׫£ ÇqÀyÛ_ÛŒ-½Ù&9ë7ÞQãnÿëã÷œL‡“ •¥ÊpužD¡öÉ·G' l? „ ÚñƵç¾qôë7o^‘»yöªƒÐ¬ùü‘«?d¾kq’órûYŸÌw%PjÌHûî‘ù®Ä¬:ùö脱 fA!„B°ý€B!„J¶B!„BéÂöB!„B(]3}ZVT¯ï‹ÏÏ0uù(ÈŠê C­ñyÐq'È**ÉÏ’ðI.ö[»úÇ’ÍëFeäô¹ˆ {íVsßØÄ°Ê”4¿|±6عÓìJQ!È,0dKD,àî·XF&/j*—è"ÝMŽxɲ¢úÅjŸâÝÑk¶:ñT˜ ’óýûí+€ IŽeÀûÑÆó»s¾ë…B'*žT[bÈ• I6ì³÷š{]Hq1M)Qò"Š‹ܶn˰ŸJ¦+.RËø\Èm³X†üÉçÏI7ç”XŽ”T• Z;ã³±§«¶(oéÒ|¡£#U,‘°ò vŽ» }]Q¤í¨ãíãÇ_:Eˆsò³Â}Íí£QjË—å)‡ÆF7 2t¥Z®oãh˜kJKõÊ–NgL˜SlÐÊI¿oÚ?-¾ºØ vw´t@¬-«(Êq· Å'ø ;{-Ö3µÔ@os‹-DÐ }UI®ÓÙíI¼M4›üߺêcXºáà #×%›Ç !„Pš„š"1¼oÏHˆ'-¨(Ï÷ì6»¹„Óô·IçòmƒAB¤-«Ô«œmÃQR©/Í v¶vùIEQEiž·©7É`¹éçœDe•fŽu훜Êù¸\µéœB-/’zÞ¿„•_°{tŠšöC¼å-’Lpl¤¿×æ ± Pê ÙRš v[½ L&fð!fyìàd=”†%†ÌØpgkŸgæs•¢iŘ(KÇb,Äbl,Ê$-™‹ùÞ!{ŸÝÑÊ$àôDý.{ÍP”+Å)Ë!eò ßH»/Êø†ûúSæŸô69ý‡ß‚á¢î1?•Ã'p çù£\óÔ¶òO7G²á÷«Ç6Üÿéð!mŒš[?¾¡ýUo ©]uã×S®`†ö¾½uË[­8s8BèrdÄt÷yA–ÖëöqùB€Kx1M¿MÙí~†ð;=aµP•)•á=žH `ÔæÈ/SŠ{ý„«§Ÿs¢¼œ’"ápû~O àø]µI¹N'rX‡Ä%©b‰„•_ {t x9åË Š‰O¬Ý´ÓìNQ|¥¡Ìͺû:;‡ó*ÏÊûµ>Ú¿wO“©Ï×Ky<•¾Xêëjܵ{_?«-É“Ž'¤¾®¦]»;†ƒSöžI-– ñ…Œã#lùÎ¥çê’å’ž{Ó¦Ê}÷¯ýÑêõ¯×Þ{YÅ\V!„æÛKÈÙ7ä‰AIe’˜ÏMv1MŸ¯¯¥c$~›ž‹ø  |ˆD¸Œ¼²b•(‰ðùü$k§ŸHq^Y×Ûi›ÌŽÓU[”[åëí÷¦~V~îѱˆ˜vpDÂŽQ/@’ˆ„*­ÈÕÙÒböˆ ó2‰¹¬gb³Ô‰ (>MA(ಸãI"±$âîõÅbNÇXI®„_T$–D]½>†BSŽSp¸«#"ŽyfòpÍ]¤»ìë b¡8Ï×ÚëKø̹û»½‹JëVpLÄk÷„—(Wrã'5Oµ¨®H¶íkîKöŒQœ¿l…’ v˜RÞG@s!Ô´cGOÀÔÒ ’åÊ/-u|ûL»Ÿÿçÿسégå hwÏe5Bh>%ŒXâ7“Ù€ÝlêörpŒS ²ìUVV¦8:Ü5à“$Çq_"“ñx\ˆ%Éd÷\É´sˆueâ`‹#u¯"€c¼jÓªB 7Ð:Ê€&e¾„•_{4+heQQ†»«Å=~:%ˆ¨ lïp‚N—/àÌ÷›‡·ŒFcŠÜ ûMˆG áaK¯°°¨*WÀ†Ÿ¦oþ³÷X°L)!SwlUÎ9ŽåHÞø=žÉ›= Ãôn¿å²Wûæ¯^!4X€'ÎRR^»'ty¢E )ŒºÒ½˜&FfjÕ‘Þ=¦CF:a"àóy1àóù‘ÈäMèÃ.å)r&»úäU¥:o[Ÿ?><“Wm¦ÝãG¤ó‚ª•ÚñÏ2£´¿¹¹?˜fåàÍ:Û vvy>ÊJQÏaÒ6Ó× B>/3[F‘¤ ;Kñùi ú™ˆ&9&a ;†‚¾L!$H±¦xQ®”€p($”gJhZ¤ÌÏULy˜'Ò”.*)Y\”=ó|( L ÍPf H xâìLq 0ÑÂiJÊ Åú¬‰S”i z­Œ&y‚Lm6=æ™n€ƒC°^·/C+å“$¡UËûú+N—ÄûÌU1_ 0¬¹kË¥•ÓÜJB¡“Ê‹8»¨P-¥ž0S.…Bp¬SŠ¢¸xD5•ÇåçäÊhO¨ÔfNçÄS#.åIs&1[CªÒyaØQ]µý½ ãöX=¬½£!ÞxH·ò oŽ_eЋæ^Ï”RFÔ ÑLß`]½fy‰¡ºžæBžAó` êóºÂòMD΋= ŒÝj•WÔæSD,ì¶™,Dí}6eéâm`°ÓæR|C3ò‡~ìw"Ð,ò˜GŠ +ëŠ)süüV IDAT.p÷vO4Ü£A_ˆ¡cþÉ'|á¡n«ÄPR­á±aïH—%ÞÁSaX^žÿ\dTAlÄ´Ë’°Ï{x¸Ë"0/ÉQŸÝb¶GaʸÕÆð÷4ÆçýT €‹E‚^»¹GñYpì=óÆwï}jÛÚîÞþåyëÀ»ãÉÇ«î|üÏW+xAÛ®×·˜g6¦9BØXb£}=™%e5ZŠ`£Á±óP’]LÓF©*7ª&?hètÆF­]â⢥µ|.ä¶uL6Iޏ”'Í™b·F-fùÒâ"Ok—S8—Wíô*"íQzxЬLJ•+´“ã/%Œ¨"B(N~0Øq-X韟ïkðLFs«¼¼Üd2Íw-B³ /(Á1—ŠB!„J¶B!„BéÂöB!„B(]Ø~@!„B¥ Û!„B¡taû!4c¤ºþâõ׬;=¦#@#„BèD7+í‡ }ѸrB½A|m•ñ¥J¡ª¬º®¾v‰^QBGOuÚ/|ºÛÔÝÝþ퇿»ö - °lÓN›­yóiÇ©DÁš—m6Û{WäÄ?æüø®'¸oëæ‹‹R®óªÍfûàêœãT'„B͇يãƒ}-ÍÁ) Ñ‘Ž½£D|™'/ªÔø TjD£í{}ÚÚEÛÁIQÀ08eB3!ýу/Ýq^dïÛ/¾çÏ©=÷ÖÛÎÿËæ¶ C¯\vZC9`²Ìm¹!„šwÇ­ÿ‹FÆQYZ©»(pAA|¥¾¢û¾÷_»¦J¦ÑˆÀÚcMXäü{~¿þtQÓ³>þQçÄãEç?ŸØ¸qãó;#Ss§ßþÜmçfî}äÚ_>øê^éÒŠŒ©ت‹îúïÅÌž'î}gxšœ!„Zðf¥ýàïomlniiiÝg²z„…EjÁÁïx™9Y!»=áQskcS‡C˜›G v˜l¾ØlЩeôÝ[¯ùÃvõùèÛ_5}õü••âñoB;¿êº»o}ñZ¥ÊCM­ÜŸüaóóOßóÒ·@èëk•ÝV+ˆ´Úïœþ“gg¬ÑhÀÓcu',¨pq¥\Ÿ>ýÛ—_ØúnËx¢¿ý“7ß|óŸffjN*S! $ ‘¿ýÃG¯ZÿtÇäW¤ô{·Ýö=QçÓ¿~Þʥ̉B¡Á¬´X&‡Ãáp(àõ‹ÅâɯY¦<èr†'> 2õ‹Kdî¾*¿²¶zq¾_¤Fh¦býÿØ|‰±ú´ŸÞüô7Þ¢óxä²Âø!‡ÃÀ01 ø>@4Ê@”a@ x­Ý.ÐVžUÉ*¯ùažº»­‰Ë¡ijbkÓˆîØzÛÛœñ–?¾ó¿Míß¾~mh⫺[Ÿ¸4šß~­•™&'B!„N³Ñ~d—çJ&>q@LùN"—ÅÆÆBñ”ÒP¦ŽX÷wy%šŒ±ÎæÞ¨F­ !4Tn±^œÏúõ¶úó:]n✑Ht¼Ńx[ÂÚcíÙg—ï~õžÓ~¸*ƒ±öô'^eÙ‰Õi*uSŸéضáüšòš³þóž¿~ÿ®›VOüKhíŸ{ æŠkW ¦É‰B¡ÁlÜþr<™J%w= O’“%ö9ü_ñ3¤´opâ#ã¶îwÅbˆ€à8–åXÀÖB3D¯ÚøÑKgtüýÿí6»”g^¬±÷¿nø~‚¬Öæf\ðƒ6¨_h°5·Øa°Û×èz^ÿð«¡+n¹¬Ön&Áº0ØßÏÂi?¼é¡±ó5ß›xÅZRñƒŸÔd-*¦KÏ[·®¶÷ë·¾r]øÜG;¶ÐÐé†ðŽŒŒß5_×ów?yúçwÿâžõ/®þƒ5cMÒœ!„:ÌÆóÖÙoõI Kë—×/-‘,摉7+ ©D ¸Éœ±r‡²*ê ÇÈ—p›¡$¢ OÝú‡Faýëyõ9ÊÎmwÿìοyg ~zßúGwŒ”ü|Óí«³:Þýõú'öp=Ö^Osswóž½Q€kO’’ï?þÔÎñ’³™~÷x¢òÌ›·nÝzõ >€úœ[·n½¬š±æ¿~èXüÓ ¿}æ©[êÜn¾bó¿özâ,/Þ÷§ºæ—wýD™:'B!„>B(N~0 “Ê]&c·ÚBòüü̘ÝjóŸ }‚0;ë;?SxÏh\“^N„fKyy¹ÉdšïZ „f^P‚#b°TÏx’L•J!"€+ã ÇI‚0ëY‡B!„ŽBªçϧ8&e'ŽS?ƒ„a"&vÖáó´áó„NJxAAŽˆÁR½?ÍÅ"áxì6¹p|$,1ñ¸žu!„Bè(ÌÖüÓ!„B¡“¶B!„BéJÕ~àgꊊ´$ð3óâ ˜ˆ‰ó’ˆB!„ˆTÑ%ÍR«3Å$P’ìø&bâ¼$¢Y$9ÿÑ/¾øâ‹/¾øò«¯â ß¶b¾+…B-QÞÒ•ÆÅ™)²Â¬¢ÅÕõ+V,¯]Rª‘ă *#·lIíòËk—•çËé¤+K kË‹™U¶ÂX¥Œ%ÔT.¯/Íž|XVTo4®\¹råŠúêÅz¥ áöN©Æ_")€†H(ÌòB"¡pŒÃDLœ‡Ä„çg 8\F–nøpÃÈu—¿Þ?ß9YàøK”ð‚²àÑ9åËòD,íéÞiv%É#ÐVVÊ&³=DHtååâ¡F“ÉÐ×–Ñ}û»GÄXSZ*jét&¸EZX[¥å†Ú­^Ba¨+Ï õ4î ü ¥”õ8ýÑxVYQ½>¼¯Å"h…¾ªÌ»»“Ìðz‚™ÁøKl,á€å€›XÀDLœ—D4”kžÚVþéæèO6œ£ó~õ؆û?>¤QsëÇ7ô¯¿ê­A µ«n¼ãºsÊÌÐÞ··ny«Õ;ßuG!tŠ"å:Èa—ˆSdÊI½ö¶ÞÞÖ]@‹Å|ï=È€ÏîŒhep& ö}¾¨\!/%Ïù‚¡¯«ÔÐèmšl?Lâ¢î1?•Ã'ØcÜÅ…(Uï±nÉòåå9ˆóÆ0ç%Í au½pÛ \ø°å;—ž«K–KzîM›*÷Ý¿öG«×¿\{ïesYE„Bè QnA–¯·ß›ún#EÑ)Î-[V·|ymU±JDް…‚B ‹h:EÈÁ¸Ý¬\ÁÉe¡1O¼0¯uOCCCÛÐá-‡8‚–ËEAàdl<@êç± Ç펅9ˆ…Æ0ç%ÍPÓŽ=ASK{H˜´Óf~i©ãÛgÚý,ø?ÿÇžM?+W@»{.«‰BЪB 7Ð:Ê€&uFH™”ÛßÖhæeè-Ò«Üí#Qw·wQiÝ Ž‰xíž0ðRm!<ææå©²x1w«–§Ê)Î_¶BÉ;L™ïÔ !Õû-(øþì:üýåš§¶•¿yÎæo’ä™ì¿´tÇO~?4èa€Êl¯]yÓ_Fæ¾þ ¾ÿ€ÐI /( )3TÇ4õø8Z³¸F2˜ôý¾¦ªFfÛyÀÉ€ oÉ2AßNËø/’Gr1–§^\/jèt&Z]ZX« 4 H–•«¢­f²¬8Ö1þþdèëŠ"m-¶P<ëäû@ò•†Êü ©y 8Û;>G:EV¡ª¸¢¢0“•!¾€‰˜8/‰hžp,GòÆÿIäøÃ0½ÛoY·nݺuëÖ^¸¡SȼDž"‰ ˆr¾@[µÒh4Öée¤j‘q™NÿŠ'Væ¨ä‰(—a˜CÖä8hi¶JF³1– iš‰šéPøœ¿Çá ¥Ñƒñ(êà+Ô:®¿ÿàhðeAa®$æñr™ùú\IÌã s˜ˆ‰ó˜ðüLábn{z9OaÃß¾õ~Ë”ê‚í{í˾Ã2E‡ÿ¾íµ×Þþhg÷7o~¸ÏÀy,_üΛ¯½öúÛï¾ß‘êyï©$;;ÛápÌw-B³ì° ʼDž"‰©±>ûÀ”žElÐ5dñlpLÀe² ؇c¡ñY¸¨ß92Oô„Ný‘±A‡² QÏðˆ/qöO1â‹@Øm‹ßèIóôá°,Uÿ%ž$S¥Rˆ ÄÊø&bâ¼$"„B Á¼Dž"‰hAIÕ‰àñùÇ„£ìÄB 1q>žŸ)`ÿ%4÷°ÿB'¥Ã.( ðyŠ$¢ù5ƒù§¹X$?b“ ˜ˆ‰ó‘ˆB- ðyŠ$¢åäU !„B!t<`û!„B!”.l? „Æ‘êú‹×_³îôüTýB!tj;ª8ÖTÖ„;vw¹ŽjX*¡¦r‰.ÒÝÔ9>𣴰¦RÂõ5§žåû°IÂa†«ŸÒHaV¡!?KÊ'˜ Ûf1ù“¼D93ôu•jb昽}·Å“duBY`(È– ˆXÀÝo±ŒÆ :ü¸ËŠê«y\,ìsôš­Îð¬îñIBuÚ[îûÅwK³¸¡ÖO^}ô‘¾\¼iç߯¼|ѲMßL¿þLäüø®'Xd»ÎÜÚ9;›ÔßôÙ7·-úàÊükwÌZN„Bͧ£i?ð Êä+2À5v4e†½–ë™5Þ×Óø=¡¯3ÍÖŽuõS„@]\Èw˜šL!B¢+/ÏÏr˜ì‰ÇíO–3Ø×’NóŒ¯.6ˆÝ-kË*ŠrÜmCññ—?îèmn±…Z¡¯*Éu:»“µIN]Ò=øÒçEö¾ýâ{þœÚso½íü÷¿|ḕ6ôÊe§5&Ëq+!„B'º£è¿D*Bwï`@®ÆxÙ‹VTjøñâ‚êÚB)­(X\]¿bEý²Š|ùøü|ú:£qeme©NΛ¦˜D«|¥aiýŠúe¥9¢Të ”úŠêúåËk—–i36“(¥¡¦¾ni¾ìÔM˜ÌI½öáòQooë®d‡™äL¼ºLžáôEY6êîë 0Ýqç¢î1?%àcgº#•ÔÕÉÀµã·~³åîúÝå—oœüNqÆÞÛu`×Û×-ád¯nÇn“¥kß·ïo½¤B¼®ÇöÕ+œû?fÛ®{«”í›ÍÖÛþͧŸ¼xeñdòÛL*ûô›^ù¬ñ€¥cï¿þüägæ’gæry$Šx`(PÈy.—d:ƒÜknÞ½§ÕÆä´ñ¶†×º§¡¡¡mhú¹¼®B•F8z ¥¹Ë#)ÌS$mðTúb©¯«q×î}ý¬¶$or}Z$P´X*<µ‚UŠ¢9Rœ[¶¬nùòÚªbUòÉX’æåU-_^__[]Y¢–$ýõ(Šæ˜Øx?'Æ3Ôï ÃtÇ årQÐ8i&iœE}]aȼhËKw^ºÊÁŒŽz'¾QœwÛ ùm 2oÕí×Cà¬{_Ú´Zk~mËcŸzªÖ=öâU1«u´Z­øìûÞíš*™F#k5aAÎ>±qãÆçwF¦&&Øf’z§ßþÜmçfî}äÚ_>øê^éÒŠ àÀ»wmܲÃÀ6½¼qãÆw½{@}éC] h}î‡vŒU¬~àá+õ$'B!„¤™GÑRE†oÌË1î1V¡@ÌåòeÈå¥ Ün/€ÇÚ¼Àeca·7Hóù3,&Ùêa{Ÿm, » éd«‹Ä’ˆÛá‹q:Æh‰d"gp¸«Ãܵßâ8Å&€”I¹¶Æ½-f¯¤H¯JúÓ%ÌéïomlniiiÝg²z„…EjAòÕ€§Z´bÅŠ+W.Ë—$¯•8ÙŠ+WÔ-Êp[‡G½s'±Ñwo½æ_ØÕ?üå£oÕôÕóWVŠÇ¿ í|üªëî¾õÅoh•* 5µ pò‡ÍÏ?}ÏKß¡¯¯Uv[­ Òj¿súOVœuž±F£OÕ° û'o¾ùæ?͇‹L‘3Êñd*•œO$-ÍÉû|þ¤¹}ê\)Ÿ$é ­Zæqº¦}ÿš ™rq4Æ G¯ÚøÑ?¿|ÿé‡ïÚxûã\¬±o¾nKœÕÚÜìÅnØ´þ¿î½Ì`kn±Ã`·5,ÖéìM~µ‡T«¡ßÚäpH*~°nݺ3‹)ÅÒóÖ­[÷ÝB"ñ6’­yî‹í]¿feÀ;2o»ÛðqÆ5›¯]õçäÉ£H(r J?¬“ûÂÆË¯?S“('B!„¦™ßÊSdJ|މÐ1æõ†ó²ø(®—‹ÒåF&Ó°½oXi¨Y®z-¦nÕ¢ªrhmóië*5ñž÷ÕÆð÷4¶†¥úÚªñá›–ó!ÐÛÔb %\Ýîè+(\R_ÆcCž¡N³ áêŒÝj•WÔæSD,ì¶™'ß͆üa† „N±X5¯#ÈrÀzÝ>._HC8‚ € ¾²°4—íÛßëÁBóN¹æ©måŸnŽþdÃ9:ïWm¸ÿÓáCÚ5·~|Cÿú«ÞR»êÆ;®;§\Á í}{ë–·ZñžBÍ;a¶ŠvX<“Ÿ ¾ÒPfÈæG]½:G‚úºJ Þ&§?Ï•¡¯+ŠvÙD…úL>3Öw s8À¥¿M±nÙR Ò¨‰o¹ÅB ÔfI).ìî6÷{¢‡u÷ttÚ|8‚N³õþƒ(· Ë×Ûï=xÒ…œ}Cž”T&‰ùüQzåeÕüáQ&·|QN¤§-Âêzá¶.¸ðaËw.=W—,—ôÜ›6Uî»íV¯%¸öÞË*沊!„«T¤Ãá›ü,Ti„£Zš»<’Â<^랆††¶¡èakŠrrxƒû÷ìiæe3Ùf ¿¹¡¡¹/jkhhhhˆ÷nâeë‹%žÎæÝ{öõFT¥:ÙDA*1ж{Ï~§H¯:QÍNûVj¸žÑÇñrÊÆ•µ¾ÍÔë壿ÖƦ‡07ì0Ù|±Y)!4BM;vôY¯©¥=‚d¹òKKß~ÖîgûçÿØ£(/WÌeB% ÍÎfíŽÀÁ„°½Ï6Š„ÝN…tŠUƒ#}Ã~†cýc>V àû6EbIÄ5ꋲlØ5:FŠÅãÛ ÚûíÁ°1'JY%´ÐÍFÿ%R–Ÿ/²èv2ÄFL #%RÊJ`ÿÑ(!È,,ÕQÃ}#²üÊZ}ØÞ} o _¤FhA|çæÿJþ-MS¹>òæÙ P­Ÿûú+N—ÄûÌU1_ 0¬¹kË¥•ø !„æŠHSRf(®ÐgM àH…*3`=ô½ž@H@ðYr6àÀ Í`›Ñp˜ÊPdði¾HH Š,)E’|…RÆã9yB1Ÿ‚V(e1ÿÌ«„YÿaªØh_OfIY–"ØhplÀ<€Xü…‡s8´¨¢.'ê°ôbû¡…ÊþÑ3o|÷Þ¾ç± IDAT§¶­íþàáí_ž·¼;ž|¼êÎÇÿ|µ‚´íz}‹ùðWñB/Ñ /ÄÐ1è`øD*T ¿½{êÿâ £¬ pI} y†:Í^€)ã/T ÀßÓØ:˜øñBúÛˆö÷(KUkˆ˜§gŸi$ÌØ­ÝÒâÒê\ÂÞáή‰ñ›(yAU] vZpä¾! '?Ɔ††y¬ B)¤~¾g4®Á3Í­òòr“É4ßµ@Ͳ…Aáe/ªQ:öÅ-Ã6“Oi‡N‡Å`³5~+B!„šcT–*ÃmwÍêhøÇc›è¤rÜú/!„B¡ã‹iß=rlÓkÝÓ2Ë›DóŸ? „B!„Ò…í„B!„Pº°ý€B!„JWªö?SWT¤Í Ÿ™_ÀDLœ—D„B!´@¤ŠÎ(i–Z)&’dÇ0ç%MïœßYm‡øòöÊã]¦`ÍË6›í½+rŽwA!„Z8RÍÿ@R ‘P˜å „4DBᇉ˜8‰ ÏÏþpݳ¯ð{WŸWN¯¾c]ë‹gžý—ݹ{û¶]£ÇµLÁš—»ÿƒo7U¯yy¶ê8áü”NÅ BG˜Áül,‰DY¸‰LÄÄyIDÓëùüù§Ÿ~úcSÀµkûÓO?oþQgp¢ ³ï{yÓêŒ/ïºìšgºË/òékŠçdB!4çRµbAÛí s /`"&ÎK":J†šZ¸?ùÃæçŸ¾ç¥oÐ××*“fŽ|óî³»!öõ¶ßý_?MS W/\\)×§Oÿöå¶¾Ûr° ¸¾|ïÝ/ÿ÷•¿îªre½d.v!„Bs.ÕÝݰ£Ûä€ÉLÄÄùHDG‰/àD£ DÁ±®NÓÃÄÍɧ2/~±íÇ ð¥ Kü³¶#!„Z0R=ªŠ+* 3y Pâ ˜ˆ‰ó’ˆŽR$…xÀщÆÀ1­Î²ìD"MQSsº>¼õì³Ï>{•±®®îšmØøC!„NN©ž?B©\udÄ0ç%Mo|ü¥r sùÚk¯µ;woß¶¯¹Ùüà†M*älÍ-ölÓšhõÁþ~NûáM¯ù^õxNKã^üGíYgV‚µWÜvøÏ×mý&˜rë!„:!¥¿€ à8nÊ&bâ¼$&B<¼l}±ÄÓÙ¼{ϾވªT'›ÈMÊä¼Áý{-AEn¶’DA3“Ö6c.—G¢ó 9Ïåò¥*ýˆm Ôú_.åÁ1W>ÐßÜÐÐ܈ µ54444ìßžÞ¯tÌ?AËrË–”«¹ASëáäqH²˜V¤Rm»÷ìwŠôyŠY˜ñ6aD1544444ì>àˆ„£^ˆMéÄÑ”Ë)·3é­<ÆÓßÞÚéTVr$¼c¯$ÀÌû/òÛplü—öX›÷± àö‹¤|ŠÅW'Âø†º»d«†í½® @Ðéáò|€°H,‰¸{}1€˜Ó1V’+¡Á‰%QW¯á‚©Ï\‚Ã]qÌãĹf„Vj¸ÖQ4)ó‘$ÉqÁ—Èd<bIr¢¡oÿ²»ÙÔ¼2~˜yªEuEr ˆ°m_sÒ.nâüe+t@\p°Ã8нBÓË¿üÅÏáOïúá–¯mzòÒÀïìlê½½2;ùº$AÒYYRbÀÒðΖñycòKKß>ÓîgÁÿù?ölúY¹ÚÝs°#!4ßÄyK«ò„S<ÖFÓˆ QÀ#K"®^_”pŽ‘:1<Öã°c>Ÿå‘ã9ˆ‚fV¯ô¶s¹|…r9awòr{È ©J?b›Añi B÷eüßþ,TþöèKªË+T¡ÎÖ‘À41e²˜6hï·c1W´kÆ $Œ¨ÇÑÊ¢¢ wW‹;À¸\¾…œ°;yr…Ð=˜º'@,`ïnsË4ú’%²¾}]ΣyNsˆÃÛF£1EÖDÉ<©¦¤(GL²,P‹'ÁqÜDµ]“=$&9Ž#&r Ôå˲X y±8lõC1—ý`¨™ºÂ(®açþü|‘ý@G€N•eY‚ b£vPj‚|÷66bj!(‘ÊPVû”Ö%øå'Ϙ½c§dúÚ¢ÄG1.Ð×Üb ÉW*+òLÍùËmsÊ|‡ÓœŸ8Eh}¯\uØûâò ï¾õÇÅ4%¤jØbÝÁ¿<ú‡‚ëoyîgj¦¿é_ûý?ë‰MS¹>òæÙ P­Ÿb !t w´ŒN½“ÊFa¢€gjÃqI~s:<Ô¾o"ç‘QиdW½$×»i¶u¹‚:y¸ùrɘcŒ›®ôC·¶ô ‹ªrlÈã´õô8‚ÜlV>¡Ô{tŒ¥sÇ$qÄ¡9R²˜¸ƒ élgZ #j ³ŠŠ¤£-cMˆËÒ)2ÀM+$n{:]ú ‚$˜©9:Š>¼ý0ÍA%³’âã?Xfñò\s›SY¨‰õ55¹b­Y\3þôˆã8˜ø) M%Þ9ŽãBCí-‡ ÊÄÁ”Õ9"Kßh0y7êicZ‚ ØñCœ,|M_•(¢:Û vvy¦<( »\Ñr…TFK=ήiº€Su¡!Wäí?Ðjú°%ÍÈê°7×XŸÇ—¡ÖJi’¤Äju&ãõE€ Gp$‘#°´@È# ‚Ìì š$x¢œÒeeÙI»J…‚¾L!$H±¦xQ®”€p($”gJhZ¤ÌÏULé­%Ò”.*)Y\”=K=¸N þÞÆ†q{¬ÖÞÑo<ˆ4%e†â }ÖÄ©àq¹Ä9¹2šÇ*µÙ„ÓqvQ¡ZJ$#HA¦\ ‡ñˆ9Á£(¡DD‚ kÉêúœ@–N'å'þG@®¹í¦Õ5J*:f·{bñÜûÌU1_ 0¬¹kË¥•Ó<ÒB¡“[€' YRŠ$ù ¥Œ $¿™–0 :ö*%ÜfØåbyjYÀåŽÍ´t‘Æ Ï‘‰h’c"â7 g¡òÑp˜ÊPdði¾HH'¸tì¥3¾¡®ÖöVµhÉ"­$éêÉbZžPÌ' JYÌï@8އ¯â삼̙†ª‰#jà« z‘ÃÜë94N º\œ\§‘ùc©(Jž¿xI±,`Ý·Ïzxãá¨Íôý‡ÐÙ*,*Y¦ãèð€½oXi¨Y®z-¦nÕ¢ªrhm´[-Cñ²z>ÁÝý{ÒiŒÝj•WÔæSD,ì¶™,Dí}6eéâm`°ÓæRë&sGCþ0ÃfwªSW4è 1tÌšì¦4jí-­ås!·­sÀ±Ñ¾žÌ’²-E°ÑàØ€y(é@Åáá.‹ÀP¼$W@D}v‹Ù…)ã/T ÀßÓŽ@\Pm,. zíæÅgn þí…÷WÝöÎ'¿r6½óÈ­[Ï{øÙßÂúëZÖþåÙŸªà¯®†®g.¹üõ—©“ºò—]›ŸÅót}ùÇß~äïŽ'¯ºóñ?_­àm»^ßbž»ÑîBhb<ŒÝÚ--.­Î¥!ìîìJ>@yÂ(èØ«”x›—‹ÒåF¬ÝÌt9õù ]ayˆ&¢gÏänkåc£ý=Ê’EÕ"æéÙgISëhv6Ÿ—lÈ„‡(yAU] vZ¼‘‘^[féâMpØ2èÌÉM^¬T_[¥‰w^fÌ{*aD="Ïʤ„P¹B 01þø].:W°t¥lP¼èàþ}®Ù½IK…_2Ø?-X韟ïkðLFs«¼¼Üd2Íw-B³l~/( /|'J´6¿•?þ¥ݜȳ…  Ê¢²,WÛÑ£}ªþrXÎÏ?B!„š7¼¬²:ƒ,ê±vuãáX`û!„B¡ñZ÷´Ì[á1GÇÎäÓÝ8 B!„B(]Ø~@!„ZˆöM?!^~€ù®ü ýÓÍ™£þA°ý€B!„J¶BsT×_¼þšu§çã X!„Ð gvÚ¤D]º¤vùŠõ5U%êñù7HaVÑâêú+–×.)ÕHHªÊªëêk—è6 SÃ9¿³Úñåí)'|žË6í´Ùš7Ÿ6åüø®'¸oëæ‹‹Žaó‚5/Ûl¶÷®È9†m „Ð|‘Õ/Ñ fe;Ks…G.Ÿ¤…µÆåÅ €Ì*[a¬šÙ*+ª7W®\¹rE}õb½rÆqBв‹W×-_Q_³¤D#Ù¬t3޽é̼\Ùtyg%ާs ùζÆÁ !Ò–UêUζá¨@]\Èw˜šL!B¢+/ÏÏr˜¼Jh´}¯O[›£èq;8 ) '‚C'¯l~°ƒ*^}Ǻ×Ï<û/»s÷Ð|×iþ ½rÙi ä€É2ß5A!t"ãÉRp{ ™\FÂÌgbô6·ØB­ÐW•ä:Ýɧù›Gu±^è4µ˜œPU²¸4×ÛØçOweáÌbo^F~yéÿgï¾Û(ïÆïtÚ²–-Y²-[ž±cÇCQá-e„Ñ„‘f(;åGXfP(«¬B)¡¡ŒRÚR( …·ƒéÆ+‰·,/yÈCÓZ7~È6’cÇv<òýü%=zîyž;Ÿïžçžçž'QÊ)‰ý½S¬Ç7'ýB>å´Û½4ˆ¼#®€P$ cä2·}`ŒfÙ»«¾¢ÉNA@„@mÌÉž“eÚZ´:ÿõêŽ;>i ŒVìÚ±cÇ»Ãk¾yçžÊ&K[Ãw>sYNô§Eü—>û·ÿ6uöÚl¶Þž›íÏ¥ðÃg›l¶¯î={ËÿÜoiùæ• È½êåϪ›;:š*÷ìÜd’Lö¬?û±OjÛ›ËßþYÎ÷O ”?¼ï¯Õm-ïÜ´J5ûXóM¯|º÷@»¥±â“ß\™'<¼ð¹÷|ek{áúkwÕVí¼èäMï5xïú´‰4T§=ø·}mÍßýáÚ, À°yÍfëjüöŸ½v]úx”ñržiÞò^u[kÍûw‰bpóïöT6YÚê¿yïñŸdðÃùË·Ú-þ}ßêcü£ „бâëV–¥kÕi«ŠKK 2âÆY ÕÆœÂ’ÒRS~–>fü:ËW&¯,,)++)È1(øÛ‡c–••¦ª&#ódúùÅee¥¦UYI*Ñd½ˆR§•çäÄÌË9͈匸G³ËýøñxB ¥@¦ˆñ{|ãGî¦*½,+Q›±ª('^—šW˜o¼[\ÈáôRBÁ⬒’1r™{°ÏbYzl``”’Ë…1ÆâüDE\F~IiIA¦&|Ž1ܵJ/œQÝ›ë²V$JI^Œ!'S#Œþ·Ÿ“Cåé®k % h:@Q|Ž”$d—–šòÒ5b 0ÜçVd& †é„ìÚ`gc— {Ð GxÆC¯o;WßþÇ'žý‡+o㳯ݖ%&µæŽ_]žßÿÚÅç\ýV›»ö¥Ÿžôó¿_ “.¸ÚÔöî‡ûÉÔóoüIÄ_ñøãë•õ;y|3çÜGž¼Î8‘†zÝug}ôA-›|úý›O¿_)×Þ}‹a¹…L<垛ΌÒ)<ã¡78?Ñúç'Ÿü«-mÓ;nΉ^xÉË’†ús·mJp)O:}µ$œÑÙ7].­üÎJ¥œ¹mó©<ù÷ó[·n}uoðˆÜÔÜuõï¿`âpÇÿ;“Â5¿±íܘ¯¸ú†W:²¯yaÇ éÒuþfÓÉâ}¿{ô¹[}G¤BóŽ”+x}ªj,>eBœxcºÌÓVSQÙÐÃê3eò¤4…»½¶²ªÞFkÓô2€pÌ4™§m_EEMó€ §'Œ7&rýª«ö5u»ŠïG§ðÅ2!Å—ÈD3¯«EL3b9#îÑ,s?Žh‡ƒU(b…Üït…h”Ý” –N‡4YOô´ÛA­” ÁW(Ä>ïÛEñYš?[ÀÑQu /b†èÝ_Yu`DlLTF©ëO¿î-P§ç“¾*-'5꘧¹zÊã´šØX•$4Ð6à@ÊeÜý5í¼˜¤+ŒGã``¸½~˜kÓ3ƒÝÍMŽ#«ÒŠLJp¼ýÛÇ^ýRæ:é²çÏ(1©¡a$BLºñ?ÿ×sš` ÓÚ9ä“]rªúÉZÃ? |òĶë\[¬Œ‰Ñ¶\ÐÄëø®y$%æâKr’““Â1G?}jëóßHzO¾Á|¦>Aþ½Ï]ÓnîÒ”õϯÑhTöÈåT€ãí—~ùê—D¹‹ý‰±“'ŒXøO øí{¿«Òm>¯ûÝ_ï½îÆŸðùá‹‹ûŸOÝxÏ—’K3.xþŒ¤$x?ûs#œVüÈÏÊËÍõ÷Çnyê?âKË®-Y«„´"“F?|ÿ½¯¾–&To;}ÍêéoëWæJ`ôý¿zã+¡ë䛤Ÿ‹¿BÍë²ûËËòHK¤AG—‡`F†œ R>xB.kí‚aX‡Û—* ÷óŠ%ÒÐh—‡æ|cþÉJAP>þ1G¿Åñ}F¾¶æ „qËúÂÒŒXΈ{4ëÜŸ€ÓÁKÔÄòG7¯ˆ¼›àv8YFÉŒ9!&Ž!øáê¶ÄPP–Éùúš›ÆrG¦pHË€c'ÏŸ½ÇîcÆœ.YĈX­žvÝ;ä設è ÒØ–ú^pÑšTsÒ~à)Œy™Ê€½ µËá …óâ€sö{ihgÿ°¯@&…A!T¥d&Q݃rC®É°w´t;é¹(BK‡@(…hÑ4…Q^Û"‚Ž›ïÆÇ+|Îîo~ÿàïk' …B`{ãâìÿ%^`S /ÛrÛéYj_0FL^o8ކa€$Æï þ¡!€f€ ¢<µ8¨œ\ý;Ûë `Ú…&D³1'sˆ†Xz²H@uékûÏ£A ©D |>5!„T ¿±‚ÆgIJ@ò¿‡žL—‘ª•, ”œ03|I>$K—(%5/AÈú]#¶ÎΡ‰ž zlÔ>Ó:-=͈匸GÇœûð:œâl}¨·>DÆ@”?G4cݵu6?uZnNbSmïbìØ>üŒ9ò.ú`ºuoŽe†ã8–e˜)ï´sÑ~ Uúø`WUÓàÁ…¡éC‹ÆqPê´,­¯ã€•Ö­Jt¶Özô¦xes(êAhY C2>щêx?¸ù™Íì³EÆ×¢Dà‚^W„çßóìùÿº÷¼Ë?—^õÇoM:<âDF3éô ‚å„IJ ]5ÿ®™~ág›{00ºû®3Ÿ¬pA:ËB¸| §qC-Çùûëz~{W IÑ1Ýûö2_·²h| LÔó¾¯ï1ÞË A‰úôÌ4­kÿ@øbÉ«TRÆ=â L1°†¦io|ÌGŽW¿"¥©œS˜Vî ŽÏÈWõCl8$ÒnJ’ t8}Yj) ¾Å·³4M“o.¨ÒK¼µû™Š… v¼]zÄ 6OuﹸSчU!X·ÓkÔ꤮/F+rÙ¼@³Ö£ ÃŽcYŽ…EýVB³–rÚÏÖfSéÙ|Ué%›7ÛG*w½ÛP[ë‚õgß²­%Gq¡ÀV[iøø}>0þhãEήÇ]û¾­î‰xå'y BeBr¦¹´Xá Ɲ¹ùÔÖ¯'_yë59ú «zê‘¶ŽÂ²¯Æ ξå–L8ë¶›þGøç¹5ÿTø3£¦!7_~ÓÕ9I­読s€4çì ŠbW¤SÊüµ7šº¾ù߯#ç^S킟˜Î85wÌgºöîõ’¿nÝøLKO 'sûãÎuºÓ g°/!4_ü¾1A¬RÔ×ï‰.Õ@´Ú<Aðx<‚#ù1Z…%…"`~¿H­’ÒlŒ.AɾWs¨ IDAT€X—Ï Œzƒt¸25Q³ë2W$à°T4 Fì÷xx†8yŸÏÃSÇʃ-ÍHåŒ^[ž^î‹çê>à€‰"íæQ’ H¡J! gK‰õ¸<Æx½ÌÕ?Ɖ4ñ*Ú=ðDéñ”j9ãµ ˆT*é Í)ô‰*øhǼԽçä¤&Û¬™ü>ÜRÞ:h·ŠÓ² ðØÛ,C4Œw†øGü+rе¡!Kv> å,ë‚mÛ/ {ÕžrãöS ý…/ß­øÇÛž=tå•ÛJØÁýïÝ¿ýùê(›7íúÝ®øÅ]ÏMÔÏCm/®ÿÑ“"ú>ýõ/¿XqÇ /?]·ë­ý`ûë[Ï/Žý€P_}ÿ¾öO½çÅ}Ó.|à‹_\ÿ„èÁ«®¸;ÏÝõå+¿|æß @„§Dl?´¿ÿÄKÉ×­ûáí¯ öïßuï/ÔN½ã™íùæÖg΄O6ïúÚ9÷‡®~”zðÚ_]/ôõ5üý×Uú øás/mÈØ´jÍŠ¿]÷ªöœçÏžöÎ „Ð<¡íV«,=Çd &à°µ±{÷€:­¨Ôr÷Yš:4+ò²¡~Ÿ½Û¦Î\Y¤ëkµÆ‡{ŠC/‘”’,桱‘N‹=4žnÈï Ðæ %"aG»Úi…%|Îïêkf¤rF7½Üb¼^<£Ý”$š“c‚>·½½Ó}|J:Sþþv«(5£ I´ÏÙÛÚ;Þ¢ÉyÅ<Öïìkµ¸‚ƒ]6UæÊ"oÀÒ7¢M`g\÷æ¸#GÙŽ‰¾Ÿ:Òl6———ëî!4¿¦~¾o6oXgrúÏ?ÿꞸ]7^ôlMD9·ýáÍ–;³~úÎtç}.ض÷ï7 ߸¨`Û·óZNÙÙÙMMM ] „Ð[67´¼Ä‹Sƒûël3_óâØVÃÄ-^]{ÞühÝ–µ¿ùò>Œo°ùÓ‡žÙ=íEcB!„æ¶Z¼BÍÚ|ÖŸŽ}ûÚÇÊ›»â „Bh1p[«ê0ûE½*B!„BhQÁþ„B!„Nhf³ùÈÀhïbÿB!„Bhº°ý€B!„š.¿„Ð2–ûó~wQ,;9ó¿>õÁFœ {å-ï½r‰²ó÷W\ù‡ÎãWD„ZBHi|zZ¢RLq¡1‡­Ã2à›å(™!{¥Þ׺·}bŒÅ¹:jb~ÆÞXiqÍIFËÊ”GIœ˜Ÿo 5ïm>Ï”";hËá–òÖ`Š)Oëlªlwp@Æf•d ºkúÇw¦íð3¨˜„4£N!æ1·ÝÚÞí MÀ!döÅ™}¡E¬ëk6¾n9j´/]tÊKçC™BhiâkSR#ûkú|„XŸ•kÔŒì8ZµíhDÚô4½‚ôz«¹úºëj{}³L|Ù‹v”øÚ=/ÿl®_v™§HÍÕyÇÂU`ž\)‡›+ä$¯¥f*â“”©çºÔ ‰.3Ó¨®k™jðCȬaû¡ŽÚ|ãÃw¬Ïeê?|þ‘ÑŸDHr/Û~÷¥É"wGùîß¿ò§o{ƒ¤þ”Ûî½éÌl%Ý_ýÎ3Oüoý"]±!„æšO9ív/ÍxG\x‘`¶í‡wÔÞiSf«%Dz=¥HÊ4j%|Š"é@ëÝ×b—‹SCm6qŠQ% Ý-­cœ*½Lã·²êDþ`»]’œãl«ïöm᥉T$%‰‡¬ý’Œð!å˜Pp¼r-IÒËÝ­~€ÇR(Åà¦1~Ï¢m«E:Cø‰ÀÝo÷Ñà±õr)ŒDï¢:ü€Ì¾ÿ€Ð †,¼îÞÕûyùº ®ËsîÝ—çD¿þçW±ïß²áÜK·ì¬Ó•æÊdgݾ-·á—üøÜMoú.yèê)¶G¡åÅÓ]×<~†KIÄšžmãïˆÝá;òѱ81¯´´¤ÄT˜›/^]Æ'ëBݵU•u½>¿­¡ÅNJ¬ÕòúTU5‹RUágï2aÀÒé&뉞v;¨•âÙ—~¡EqÛëιð¶—[VÞsÏyq@Ót×®-7nܸqã%ž{ûƒÇ¥Ø!´àH•>>ØÕÐÔÙ?2Ÿa\zv‚tâÛT Ö¨­¯¬®ÙW[ר1ä_´ƒpæAÄ£$V*B}Þj³Ù\l”“š悤‰qZR…œq:î3"À32äu .Öw§£âËâ4r>˰ŸÏ§CôÄ/<‰Z«Qˆ&sMq@ŽÝTíR$S(¤x˜ð ÄÀ Ds‰GQ"©˜aìªsK´c±II2Aä ‘²áîÛÏ-JVS!§ÝîbXèn·hŠÌ!€0mÃO\‘;‡4Bh1£(Š é£Gœ­Ç“k4 I|™6Vâñx£Ä$ ‚/A'Ü 3âQòvÕ”«²ºX{symÏø›Ñ‚ßã=ìHr®îÍý‹öÝé¨H¹.ͨ—óIžP¥ã;]û%Öed¥¥çcÇïìSY D"Ñä³Ù|è:ÕAÇq}À@ \ÀˆçgTï›Í¦s¹ËýùÛÜ[¿¤øÁ-OÞ}^†`dß_žz©sí“[“voº©î’~w±f2NÛ+—]óv¯7+¥NËKS1- ݇¿/}Ø9ŒÙl>2p²ÞuXlªöƒPœ¤¢íV›_a0¨»Õæb0 0âù9l? ãÛ-K‹ü†Bª3K´Îª¦A€'åæPÖj+N«=ÇŽs…gĄý0Õø%žT¥Ñ(ÅPuøbà‚"„BèH¬gxˆJ,,6™L&“©0[°Ù—t—Â"…žÃLÕÿ@ðŠ£!v⃸ÏÏ),òÇEhYÂþ„–%¼¡ 8îž1£þ‡©æoå˜` ¼+“0"!„Bh¡`…ç0¸þB!„B'´iñ›êý„B!„:¶B!„BÓ5ÓñK2£)OÇÿ~Nþ‘¶½­Ã'Òb‡K%3d¯ÔûZ£Mý 1Æâ\5ñ'fì•×äâÄü|ƒh¨yŠ¡*9-9N&$˜1GÅ286¾D§H—»*)ر¯u(¼ôŽ<µde<ã€cž¡®vëÈbœty^œùkë.Ðþ™?|jÿ‚• ¶íýûÍÂ7.*ØöíB@¸áŽßœýݶ oàºÖ¡Æ7è‰Ùý).4æ°uX¼ó¹ÞõRÅ“é3Òä"’ xì]í]£AJž”ž/p~‡Íbé÷2 ŒMÍ0ÄJ$ÇÜÖ¶'-K1åiM•íÈØ¬’LAwÍâ\ÿa*Ó¨˜Í8æ4Ãû¾žúÚž±ÙgŽ'‘6=M¯ ½žéücøºëj{#,NÈצèyÁà”Û âÓÓ$Žæºæ1è³rRµŽýýá-#]– ë:xÝα®Ú:›Ÿà+y ##®Èi.;-=öh3•~F¿|åwÿ±Tö/t™B-ˆˆ7h¾6%E0²¿¦ÏGˆõY¹FÍÈþЂq±éR“ˆ†ªA?O–œ“mpU¶;8RmÌTùZëÛ¼¤25'3ѽ¯Ë ­!6Ð]Û8‘>» QÝïàÉ•2p¸ ¹BNÂ\ u:³™Æœ–¹¿Ä×­,KתÓV—–dÄ Ã¡Bµ1§°¤´Ô”Ÿ¥™h¨D  ÔiE%Åùù’šýv yGí]núèq£ IIâ¡Îþ)ÿ¿H¹"Æ3Øç ±lÈ3ÐÝí c,6›W›r3“¼#·áB§— NœÁtÿzuÇŽŸ4…F+víØ±ãÝŠaˆ5ß¼sOe“¥­á»Ÿ¹,Gu{þŠKŸýÛ›:{m6[oOÍöçRøá³M6ÛW÷ž½áÅî·´|óÊ…ä^õògÕÍM•{vn2É ¶íµÙj[öcŸÔ¶7—¿ý³œïÿ•?¼ï¯Õm-ïÜ´J-wˆ;ùö7¿¨i±4Wÿç¯/Üvj5ÍØÜü»=•M–¶úoÞ{ü'|ˆH~üÈ_¾=Ðn9ðïûVO•B-(žL¿"¿¸¬¬Ô´*+I%š‹ËRÄ´O9ív/Ͳ!ïˆ+ E¿%PФœSqIÙê2Saaq–†c,ÎOTÄeä—”–fÅKP¥—e%j3VåÄËãRó ó ²%_çò9ºmC>–ãBn‡‡‹ø W«Çz]A†ñÛ†@­–C‡X–aX–aX&D‡{s<žB))büžÏM¹iUÌfsºYÏYBr¯ï@UŧLˆOcL—yÚj**zX}F¢ ¢ðÅ2!Å—Èæä_‰ñŽØ¾iN&NÌ+--)1æfÄK'þ"â„äXOWÏá‹¡†¢ø͌ǡ]ý=£p[«ÊËË÷÷G~vBð ±Ï;v‚wÍ ÏxèõmçêÛÿøÄ³ÿpåm|öµÛò¢Ä¤ÖÜñ«Ëóû_»øœ«ßjs×¾ôÓ“~þ·ñË^ÒW›ÚÞýp?™zþ?Iƒø+|½²~ç#ïqæœûÈ“×'ÒP¯»îÌ¡>¨e“O¿óéã­:åÚ»o1ì/·‰§ÜsÓ™Q:'‰“ïÙy÷Yªê§6ßúè[Õ²üœ6JšÂ5¿±íܘ¯¸ú†W:²¯yaÇ é9PºîÁßl:Y¼ïw>÷q«ï¨!„ÐÆ¹þÕUûšº]…,Â3±‹xƒöt×5†S±€¦£v>ã“u¡îڪʊº^ŸßÖÐb'%Öjy}ªª‡E)‰ªpKA& X:Òd=ÑÓnµR<Å_Hþ‘î~%“K7@  r1‰Yéq0èki§M¥%%eyjG£e$|C¡V¡ˆr¿ÓµäFãO¯b6³˜Óu ã—ĉ«Ê8n¸µbbë²ûËËòHK¤AG—‡`F†œ R>xB|mÍA ãYjà.?Þžúš>žX“–•ïhè _“¢ãzë‡iÐM½ùøÃ žfEqª"`k¨í޶¦ÄPP–Éùúš›Nô1qiE&%8Þþíc¯~)stÙóg”˜ÔÐ0!&ÝøŸÿë9M0ÐiíòÉ‹.9Uýä?­áŸ>ybÛ‹õ‰ ®-VÆÄÀèG[.hâu|×<’sñ%9ÉÉIᘣŸ>µõùo$½'ß`>SŸ ‚ÿÞ箿i7wiÊúç×h4*{„Ü)•R@K•bï7»Ÿþàµï;ÜO3­È$‡Ñß﫯¥ ÕÛN_³ºDú[A¤Àú•¹}Ç¯ÞøJè:ùæé§Î!„ AP>þ1G¿Å1¯9‘ByœV«’„Ú¢>8¦ýf¼@P2™ÃWKß`÷€— V! w)»N–Q2cNGˆ‰cþ’ïž6»4MÉŽÙÛ›:ÜI’Ç©\Îãq~–$IàÇ¥%£- mB¢KKOôÔwyN/QËcÝl¼bwef¦]1›AÌé;¼ýqñ¹Iåå ¾Þ©Þô76AÂøì‚XHã÷Ñ€µŸèÔÅ@35“9}Y:ïC ô{õ @Hn0ˆí-ÍþD¼ÈëV[Ã{ó^;ȦTnŠÖîXwmͤ@–›“ØTk(8ÿî¡ ¢ DÓ  #Ç$‚Ž›ïÆÇ+|Îîo~ÿàïk' …B`{ãâìÿ%^`S /ÛrÛéYj_0FLþÃq ÃIŒw2ù‡†<Bš‚ˆr_ íyæîwî»pË˧láüÿzú¦Ÿí¨‰˜¦@ÀP]úÚþóhÈ@*‘Fäó)šfŽžÑÒë^F-'K—(%5/AÈú]#¶ÎÎ!ßü<µæ)Œy™Ê€½ µËá MÕýpÉÒ Š’&à²v8'ùï?,‡vB4Ì`Sù A‰5iYp e˜eY‚ ˜á–Êa*ž`Y€§ŒSù[]> Ð7œ˜¯‘wy¯Ã)ÎÖ‡zëCdüBïÊL*f³9‡·ŽVÑ”MùëÁ8Žó÷7Öõú<±J%eÜ#®;b ¹Ã“¨c¥ŒkØég„qé©‚þ&[¸Ë`ü¢#V*BaÞjýø6r³¬§¶¼oË3¬}àösߺº%RšÁ``t÷]g>Y1¾‹Î!H‰˜Î²nDŸ¢¦Êè/Ñú²Bèx`¼–‚+ôé™iZ×þ9{%õ ¤Jìªj<êK‹­Q1Z_Ù|"ßàIbÕ”Ûî GûF]¡T¥ †GƒAx ‚`0@$p-*8’oRàò C£~ˆ]°ý8+fµ=>8¢^7EÌY˜¿õ§ý¾1A¬RÔ×ï‰.Õ@´Ú€ªô’Í›í#•»Þm¨­uÁú³oÙÖ’£¸Ð `«­‹4|ü>´ñ"gWˆcŽ®}ßV÷DìÙ&y BeBr¦¹´Xá Ɲ¹ùÔÖ¯'_yë59ú «zêfÒ/ß°óãK‡v}TÞ: 4 àÏüð4-5Õ.ø‰éŒSsÇ|¦kï^/ùëÖÏTE lééaá¤snܹNwZáQ3B¡"֥ųC£Þ  ÒpÐCþ¹EQÎàhH‚à $áç&zO ’¸T½Äרã¡I‘J!ñ{üàMÓ'ÈGm^žBGŒ´ŒÀØX(Q+t  IœJ26ê›xϹº¸`‰½ âZ1;¼^=ælÌ_û¶[­²ô“"˜€ÃÖ>ÆF ù½ZÀŒùO˜*äñ¦L+ÍÖ†_ôZaÖ3ØTaq@ÈçñÓ|Æë¿è°#=VejZ~ Ÿd‚žKûàÌž¬Ú,´ôU B"ä±[Úí!_S"üZhNogM}_$É…ædà˜ ÏmoïtÏÝÞ.rYlÛ>¾þƒö”·Ÿí/|ùnÅ?Þô´è¡+¯ÜVÂîïþíÏWGÙ¼i×ïþsÅ/îzîÌñï¡¶×ÿèÉ}Ÿþú—_¬¸ã†—Ÿ®Ûõ‹‹Ö~°ýõ­çÇ~ @¨‹¯¾ÿÇ _û§Þóâ>€‚iž©ýÛî3®¿øÎ “UÜPóîÇî|ì?LxóÃÓ„/ºúQêÁk|u½Ð××ð÷_Téƒ`ÄÀŸ{iCƦUkVüíºWµç<vÔŒBh!…<^")%;YÌ'Bc#û\Ì©áÝC©É6k&ã ·”·Fz!üö^ߪ‚²pÿ2Ç\¶Ö–^Ï”j `†»;UYEzŠ`C>go{¿˜ak›$=5ß$àü[k¯ÀÝÛ>˜ž’[œNq¡1GWÇÀ£yˆå2ÊëðzÝü DM f6›qàZ´¦~¾o6oX¾grúÏ?ÿꞸ]7^ôlMD9·ýáÍ–;³~úÎtGöÌÇRq‹fù¹”ÝÔÔ´Ð¥@ͱE~C!Õ™%ZgÕøØ Rœ”›CY«­'ιãD¨NNRÑv«Í¯0TŒÝjs1G t1Dzù¢uX §KEh‰éÚóæG ÜÚß|ùßÿþ÷¿ÿÜqæØ§=³_ @¡ë¢ ‹M&“Éd*ÌVlv¼!Ì=žT¥Ñ(ÅPuøÃQmó¥ûÐ’ýh1Ãþ„–%¼¡ xÅÑ;ñ9Z sL›/Z‡ÕÁæïý„B!„–<Ž µûÉG <¦Í— ¿„B!„š.l? „B!„¦ Û!„B¡éš»÷(™!{¥Þ×úý²”<)=5^.àü›ÅÒïe@¤ÉÊN–“Á!K£Õ1eQB!„–»#*Q¤(6%Í+´Ïa³´÷{q¬™'æçDCÍÕK=ȲSžÖÙTÙîà€ŒÍ*Ét×4ô°È3sd5{ö1§mNúDÚô•ùFaðàƒNª™*_G}uõ§ÏL”ˆÔ:ñpcuÇXœVI… !„:aE¬D ãÓSÃ-û*+÷µ:EC,Îw33|mŠžœ\7âAž\)B®/± i„jö¬cÎÀœœ!悔Ó62¦ÌVK&åjõØ@•+È Û† YjI× pAAuJfÛ} Ë…Mj„B-Bµ1-9NÆgξKŸ{öƒ)"U¢È¹Ìmß?F€»«¾bªí)ER¦Q+áSI‚ÄXï¾»ÄXœj³‰SŒ*íìniãTée¿•U'òÛí’ä¤g[}·g^)^0¤")I·"«0Y00L'd¯Ð;±ñ€B¡¥§1¦Ë#Q6iF¬DQ|Ž”$d—–šòÒ5S¬-&ŒOÖ…ºk«*+êz}~[C‹=œ”X«åõ¨ªj¥$ªÂÛË„K§Cš¬'zÚí VŠç ø‹‘8!9ÖÓÕãþ¾qé íp° ¥@¬û®%Õ”ŠTÍžmÌ™˜·Þ’$9Ž#R¹\Ìã8–$I€Àp{};æ!QB"Õ×Üdó,µénB!tÂK¤ALJ.82ääK¥üyʈR.ãz÷×T×µ»¥©FMÔŒhÿäÚ%“M6 |ƒÝ^šc½N+†«Œn‡“eXfÌé1,CKjÅãiãkRt\oçðtº†NO¡‰U0çÒzž±š=˘31oãéX–%‚n© â –倪R2“¨îA¹!×d Ø;Zºø"5š.³Ù<ů¸z:B¡ùD„0>» –’Çø=óUç€sö{ihgÿ°¯@&…AGä¨÷˜,­ (™a.k‡ó $&?,ÏvBd¤Ü`Û[šÓiÜyNq¶>Ô["ãç½ls(r5{v1gbÞÚt0€@ €R§ei}¬´nU¢³µÖ£7Å+{œCKªÇ-$l! „Z8ÇùûëzýóœMúl•ã¢U•Z£b´¾²tŒ+¡0oµ~ü»Ü,ë©­í‰òrž‘!¯04ê‡ØãVĹ©š=Ž'QÇJ×°ÓÏ%æ,Ìßûü®ÑÑ4}‚|Ôæå)ôqÄHËÐ~ëQ†á@ DZ,ÇžPMb„B-e~ߘ V)êë÷ƒD—j Zmžù÷º^£V'u øx1ºX‘Ëæ“$¾@@~nªVÆ Äo>7ß IDATÛUSÞþÈ×­,’ö}?kDœ«û€ –Ú» ªÙab]F–AØÛdg§Œ9sÓ~P¦•fky°Â¬f°©Ââ¶¶IÒSóMÎï°µöz€eÂícÿÈ€EN±64déÂs!„BKm·Zeé9&E0‡­}l.+QíVqZV¡â{›e(ÚXo¿½×·ª , 8&ವ¶ôzæ TËL„ƒãõsG‹9„H$šüb6›q|Z´¦~¾o6oÀ3_ÙÙÙMMM ] „Ð[ä7RY¢uV5 2¤8)7‡²V[Ý ]®åF¨NNRÑv«Í¯0TŒÝjs1ó¸hV[b«e „B¡0Ö3— l? „B!ÇÇ—Ù˜ü0?KŽ_B!„BM¶B!„BÓ…í„B!„Ðtaû¡¥GsÒm¿ÿGeSGGãw»½ù‡z>@Á¶½6[íc'-tÑBh‹1ç'ˆŽoöx2ýŠüâÒ²Òₜd•àxd¹œP2C^YYºj2€Ŧ®,,)++5­ÊÔII¥˜Ì¥éJ€ŒÍ*3çé… UÞc'NÌ_m>xODÅ$d­2•–•š ² þœd‹í„–Ù}ýÞµºþO_Ûù^Eàwݽ.n¡‹„Bh.‰t©IÄÀªŠÊ:˘2à\R“{.(‘6}eA¾Q (ŒOO ·ì«¬Ü×ê ±ãóñäJr…|IÖˆùÚ=/œ2NLR¦žëo¬©¬ªowŤÕ¼9ÈxI-„NhÅÅrÝó«;ùÄöÛ.þŸÒkÞí›üMùÃûþZÝÖRñÎM«±æ›wî©l²´5|÷á3—刀wþÎNÛ×÷æLlpÖ‹í¶Š‡ £dwòío~QÓbi®þÏ__¸íÔ2Úæ‚Ü«^þ¬º¹££©rÏÎM&Àd—Èú³û¤¶½¹üíŸåà|o¡¥¨ÓòKÊJ 2µâùËÅçè¶ ùXŽ ¹N,ŠþÔ˜R$嘊KÊV—™ ‹³4¼p?I¢".#¿¤´¤0+^B€*½,+Q›±ª('^—šW˜o-ËFIÈ;jïllìr4*#—¹íc4ˆÜ]õMöðOH¡È1~o |ìHER’x¨³ß?U$¾D"pÛ}4ˆ<ö‘ \.‹¬ç „ÐñÔÝÚÕEO¼~ß§¤ÅÐÃÓ *×Þ}‹a¹…L<垛Τ@xÆC¯o;WßþÇ'žý‡+o㳯ݖÇX­½ ×ë%kþð7äÉu:1X;­3"N¾gçÝg©ªŸÚ|ë£oUËòsbØ(›Ç_ñøãë•õ;y|3çÜGž¼Î8‘†zÝug}ôA-›|úý›OŸ‹‡!´Dh¸¥®¶Í%MIœ·nÿHw¿‹‚’É¥ŒÇŠSŸ¬ u×VUVÔõúü¶†{x*P±VËë;PUÕ8,JIT…Ë),i²žèi·ƒZ9ퟅÃxGìß¡ó¡RŸ#% YÅ¥¥¦¼tÍÄZm´ÃÁ*”±Bîwº¸(쬈’c=]=î© N‚¬T©¤€*b>.žåaû¡¥fø½»nøí—öøsn}ú¯÷}ýêu¹’ñ_ü{Ÿ»þ¦íw½ö-_£QAZ‘I ŽÏ~ûØ«;|ý; Œ%&u‡Õ b½þ'_PvÆZs‘N®N«#bF”J) ¤J±·q÷Ó×oÚÑ yóѶ\°áª;ž}ãÕç?jHNNšHcôÓ§¶>¿óWïìꦠ‰BKAÀÞmsúƒLj DSt ÌO›m6¯6¥ lM]Ñ눴rí‚’É&›¾Áî/ͱ^§‡ Ã/P¸N–a™1§#İ A.Ëþ‡ˆ å2®wMu]»[šjÔŒÿáNO¡‰U0'»°%œ1¾&EÇõvmÙ9ÎÑÓáŽÉ,.+).0ŠC£DŸ&l? ´ä0=Ÿ?v™¹ð¤‹ïØñ­;uÝ#O]þÁ?4ä i‚P Ñ¢i …nkÇ(èsÏÈåõ÷g“ÖÈù„öô)ýd#ÏÈ×54:å+‹X©õy«Ífs±QNjV˜ ’ÆûžxµV£MÖðù²8œÏ2,ÀçóéÐÑz,¦ßgDh‰áŸ²õãרü÷ÿ«lUŸz©œ~³àôQ­µµ.Xö-ÛZršlµuvèë°$EIoïþºÿÚ-×€ÕÚåZ"ß°óãK‡v}TÞ: 4 àôGܜ̢H*’3ͥŠO Æ|Íͧ¶~  8ùÊ[¯ÉÑoX ÐSßyœB-<¡ˆOøi¾2VÁŽÙç멈$.U/ñ5öxhR¤RHüžhõ[’ øIø¹ƒjÅè0¬Ûé5juR×€£‹¹l^€ð<¼œ«û€ –Ø» Þ®šò®ðG¾ne‘´ooûhø«X—‘e€ö6ÙYR®K‹“{¼¤BÇwvyç l? ´Ä„Ê_ºë·²[.Y¿i-åîmxwû£ê‚‚HQ}ÿxxÓÓ¢‡®¼r[ ;¸ÿ½û·?_ Ö.€øÚÚŽÚÞêÐ5gwZ;£äÄÔþm÷×_|ç…É*n¨y÷cw>ö&âæ¾¶_ÿò‹wÜðòÓu»~qÑÚ¶¿¾õüâØ¯uñÕ÷ÿXákÿôÑ{^Ü7_Ç!„Ž ßP39eUIõ»ú[ÛÝGßä˜0ÃݪŒ¬"=E°!Ÿ³·½?Úä@~{¯oUAYø¥3Ž ¸l­-½žy*ÖÒ L+ÍÖ†§ëXaÖ3ØTaq ´[ÅiY…Š xìm–¡#ž›Ëe”WÈçñÓ|Æ;Ùèï°JÓ2 u<6àl³ŒÌÅ&B$ú~³Ù\^^>ùU¨NNRÑv«Í¯0TŒÝjs1ˆ ñüœÂûfó†éÅDó¨`ÛÞ¿ß,|㢂mß.tQއìì즦¦….BhŽ-ò ©Î,Ñ:«šRœ”›CY«­óÕ®9aç Ï"tXlª÷xR•F£@IÔሠˆB¡#±žá!*±°Ød2™L¦ÂluÀfŸ‹á)èPXá9ÌTýO  8:b'>0ˆ ñüœÂ"\„–%ì@hY ‚ã^áY„«ƒMõþÇÇçžü€¸!„B +<‡Áù[B!„BÓ…í„B!„Ðtaû!„B!4]¸þB'麧ÿ~Ïj H’cYp¼uݯö.t¹Bh‰érW%;öµ¹ˆÀtP2CöJ½¯urÁ¯qâÄü|ƒh¨y<œ’'¥§ÆËœßa³Xú½Km€üq Ðç™R^˜{¸¥¼u$ÆXœ«£&–Òcì•WĘÁSžÖÙTÙîà€ŒÍ*Ét×4ôŽçÌÊ´Ï*&!ͨSˆyLÀm·¶w;Csùì“@-!ÞOî:åÈ¿s÷ƒ7]óvÏB!„––ÀH—%ÈºŽ¡ñ Ò¦§é¤×sd%•¯MÑó‚“ËY“jc¦Ê×Zßæ%•©9™‰î}s²jðòl®Ÿõ”§HÍÕyÇÂ_|Ýuµ½¾£Å¤€'WÊÀá&ä 9 ÑÖø^”¦†Ä$eê¹î5ÃB¢ËÌ4ªëZg¿„Ž_B¨7¼ôù¶óO½ûµÝŸö§‡ÎŠÈ¿s÷›? ¯j Ew}òÚåzRÊí/¼óÉg{>úÃã—¯ŠY¸"#„Ðqc,6›W›r3“¼cØ<äµw66v¹o{Ф$ñPgÿd V®V ôº‚ ã¶ Z-‰š(¥HÊ)0—”­.3gix1ÆâüDE\F~IiIaV¼„UzYV¢6cUQN¼<.5¯0ß [R+‰cBÁqT¬^æèéÖˆÓã )”b™"Æï‰¶Ä÷â4í3„/‘ÜÃvͲ!}$(—Kç {l? „Ɖ KDïÞ²þÂ'-?¸â¬¤h±dgݾ-·á—üøÜMoú.yèêœãYD„ZHnkUyyùþþcÂxGìß‘Ï~Šɱž®77@  r1‰Yéq0ÑÒÆ'ëBݵU•u½>¿­¡ÅN_¬ÕòúTU5‹RUá–‚L°t:¤Éz¢§Ýj¥øØvcÑ!•z1`eÇ¿‹óJKKJL…¹ñRrŠ˜´ÃÁ*”±Bîwº8XB¦†Ð +U*) „J…˜ÏŸ‹±GØ~@óïÛ³§ÓǺ›êý ŒË™9ôÝ^–¶ÿëó*ev¶òx–!„–¾&EÇõvÔ)A’$Çq„@*—‹yÇ’dÔúíŸ\;€ d²É&o°{ÀKs¬×éa…ÂpåÒíp² ËŒ9!†er‰÷?Là©´±~»}|ð’·§¾¦¶®®®¾¡Éê¥¤Æ £Å€€ÓÁShbŒÃÉÂR2ý3„sôt¸c2‹ËJŠ ŒâнßqxÄl6ÏM¡¥ªï/wü¿è¿òùTÂ…Oýy ”ÈoÛõ©B¡£!åƒØÞÒàO²,K3ÜR9 @Å,ýáxÀ=&K+(Jf˜€ËÚᜠç¾ÿ°LÚ Qr•Â7Ú5Q1fé``¼)èöê%€@Ę^‡Sœ­õÖ‡ÈøãYèÙšÉâ··ÕÚ-<’cX^üÊù\äxû¡iG‹6n;ŽåHÞø#Ég4MwíÚrõ[Ý W.„Z6ÄJ…@(Ì[­ÿ.7Ëzjk½Ax ‚`0ÚccÖ¨­¯l>§g’*äŒsòÕa\zª ¿É~™øÐ¶Ó¡1ðŒ y…¡Q?įòÎ :õ áIÔ±RÆ5ìô‡»Tø²8%é´»BÀçóéÐ1Mv¿„Ц¿Ï–XòÃ,ulúš›¯=yü«îv‹¦ÈlÓ6<ðĹü©A!·«¦|\•ÕÅÚ›Ëk{|à•hä|O¤ÖÇ##cQ6' ‚/AË»—!*AŒŒïñNÎ=âxrF! ’/ÓÆJ<o”˜aœ«û@sÿÒzw¢Ÿ!b]FVZzŽ1v¢ŠOÊuiF½œOò„*}ßéš‹™¼pþV„P4ö_ùÓÿ<ôÒ»—t|ô䮯Ön÷žžË»ï¹¿þLÉóÙ*Þ~¢}&’F¡%!ÆXœ« ?4)4'ƒ·³¦~F (ÓJ³µá™›V˜5À 6UX‘"2ÃÖ6Izj¾IÀù¶ÖÞ¨U>¿½×·ª ,<åÇ\¶Ö–^Ï Š´Ô2©Ä7669z‡é±*SÓòKø$ôŒXÚƒQb–Îåõ ù<~šÏxý;èï°JÓ2 u<6àl³Ì~òV D"Ñä³ÙŒã—Т5ýóó}³yžÉèøÊÎÎnjjZèR „æØ"¿¡êÌ­³ªi ÅI¹9”µÚê^èr-7Bur’ж[m~…Á bìV›‹™—ÀEë°:Ž_B!„Z’XÏð•XXl2™L&Sa¶:`³ãBss'Ui4J1”Dþ0OKŽ_B!„Zš‚#–†‘….Äòç³5Ö r4 l_c£éù \*°ý€B!„PT_fcòÃü.8~ !„B!4]Ø~@!„BM¶B3FÆ—\ºé†'p$B!t¢Á»?BKæ¤ÛžxøªÿÉŒåúë?{ëé§~ÿUß*O‘š«óŽ@LR¦žë>P3 $ºÌL£º®u€'WÊÀá&ä 9 þ,öŒ‰´éizéõµÁißgýº6Ž_Bh©É(.–Ãèž_ÝùË'¶ßvñÿ”^ónïü¶¯ïÍ™ˆrÖ‹í¶Š‡ A{ÕËŸU7wt4UîÙ¹É$(ض×f«}lýÙ}RÛÞ\þöÏr¢>F ?~ä/ßh·ø÷}«Çà ›÷Øl¶®ÆoÿñÙk×¥OF;ùö7¿¨i±4Wÿç¯/ÜvjÂ!—2gË=¶–?\?·G!„–)!ŸrÚí^šeCÞW@xÐb¿‡ãëV–¥kÕi«ŠKK 2â„@Õ©+‹JÊJ‹ ²“äá³#J’ ÌæƒD Ë5›Ífs~BôŒ–Ž ÇQ±z™£§ßÀ—Hîa»fÙÇ>”Ë¥àñ„J1€Lã÷ø¸ä3òŽÚ;»ÜG›ö5Ú¾ÏÎ!7yš¦…Bᤊš?Ý­mP]ôÄë÷]qJZ =<ìÆjí½^/Yóð‡¼!O®Ó‰ÁÚi¿âñÇ×+ëw>òøgι¿óWïìêT‘3JY™+ÑìøÕ¿潺ñ@oãgþóŸÿÝ~ÈJ¥”PR¥ØÛ¸ûéë7íhžü‰”v÷ݧ‰[wÜÿªui]œBh!‘B¹ÖžSXhätLY­g]Cv´Çåe±Dö„X60:ì$%A´Àe‹§ÒÆúíö1à=î˜Ìâ²’â£8ôýŸ€ÓÁShbŒÃ9ï—,¬¨û>+‡´Aº»» Ê+ø|þÜ$М2›ÍSüZ^^~ÜJ² ˜žÏ»ì‹Œ'­»òŽû6¯{ä©êÿ;·¶cNÉ=xýýÙEçtÆCG‡Xeáe[n;=K-â‹cÆb" Žã€aX ‰(ãù| €¦§ñx#´ç™»ßI¸ïÂ-/Ÿ²…ówþëé›~¶£&|-.¾ëùb€šGÿX¿¤–ÖD¡…ÄSó2•{ÿ@k—ÚfÝ6ÐߨA„/óÀqIÑ—+B®RøF»&kË~{[­ÝÂ#9†åůLO„{Nq¶>Ô["—íÛhû>‡´X–íìììì윋”BóƒJHOi·z¬ß¼û¨oÅO>¾1))>ê´‚~ÍEå[H¼ú§§ÄÐå=µ¿}öŠüÝ{ÞåŸK¯úãÇ·&‘Å€P(!`Yv¼|jêþNºùÝ;×íº?>{õy[žydí·ŸûÖÕ» ñ/÷_pÓi×n^ýúöÿ.©y-Bh¡*}|°«ªið¼p̓ÉfCÄ@8€eÖ˜*䌳²×†/‹S’N»+|>ŸX<#C^ahÔ± TÒ9Ç“¨c¥ŒkØé7;£íû¬àûÓ-1üS¶~üï¯>Üñä[ïyî‘Kuàüö›ýÐ×a H’’ìûv]EÆÇCµƒ&y BeBr¦ùœb…'c¾ææSu 8ùÊ[¯¹~ÛOWôÔ78"çÔ×ÓÂòœÛßöÔ‹?+”朽qãÆSÓ)eþÚ7þO ò ;¿ÜõøÍV'K¦܃ƒWmOÛ«Û_¨ %]õà&ã2»=!„Ð<¡(Š ½žç÷ •±2Š$Jµœ F TŒ2FÀˆEüåq¡ÄÈø¯wò;)×¥õr>ɪôq|§kò'ÎÕ} ¹i½;=%±.#+-=Ç;Qžﳀó·"´Ä„Ê_ºë·²[.Y¿i-åîmxwû£êè´vÄ×ÖvÔöV‡®9»ÓÚ ¾¶_ÿò‹wÜðòÓu»~qÑÚ¶¿¾õüâØ¯àÿ³wÞqT×Â?3Û´EÛ¤ÝÕJ«nɲeYÍ›Pž6JH0%˜$4Ã÷ „€1-ÔÂÄG€I!¦„Š)/$Tƒ-Û’lk-Y]Z•UÙªmS¾?$˲=»3ÒΪùüþZÝ9çžsÏŽ½ç̽s/ƪË~þ]]°õ½_Þöû=1, ½ùÛÇ×-Ù°|ÍÒ^ùŒùÌGÏ0®¾iËÝå`Y»yËZxwã+Ÿ\ÿÏ·O»êÂMççØ¡o?°éÿÐph/¶íO÷ýõ'oløé]罸áÍ‘¤AdÁCi*±›&ÿ?Ä@0”«£]SXT‘)ƒ°o å 7f#=ÜÓi\²´"ƒ ½{ƒ ª˜Ð¨UÁ±±Ã/Ý…ûÛ;ÔK*2$LØ7x°íØ L‰…6£/¨)1o²Ônzб£Í Ñ ?DÉè@èÐèùÇ>ˆ”8[‚!ÈÂä5»}Ýñò.ÄôYqç7ï_§øË+îür®]YT”””8޹öA‘ÁÆ›ru8Cºìlíêpzé¤4Î[ìvûÔ·Lqý‚ ‚ ‚ÄD¢6˜Lz%R•qüC’ 8ÿ€,Bðq2ûàü‚,JðB"—KY*e} “Ó8o9jþß@AA˜°t$<žÝO~HNãB×/!‚ ‚ "¬AA Ö‚ ‚ ‚E¤÷µuiAºH"ÐÝÜ6ã4Û8(³ÊKeí»:|3t@ªÉ.9Álù¦ut¢!5³ /C§”ÐaŸ«£µÛRm),ÈÒ+¥ltÌíloÄ;þ˜>É”´Ü‚ì4œ ‚ng[k€P¤å/ÉNSËI–û:öxâ÷rLŸÓ“®Ž 1PŸýðû·­‚$Y†ß;›ÏþŸoæÚ/Aù&weY†"Ô]_ß+Ò¡c\ÙEj^UY†ôÐ Ñ´«ig›7~/Ç%œ‰YÌdï¨$J“[¹Ììqìlu³@¦WÉ»wïí[8‡_Hµ¶Â|‹VΆÜζ¶þß+ʬòò씡¢ä"Õ©& ålp +lå…éŠçlF?Å\X`Õ‘ÿT£©¶"+Û½÷p˜PeåZFh™97W>²ow_PZ‹ËòL#û¢ÂûTX såCŽ=Ž¡¶•”d§ 9\”Êœî®oŽBеdE–±ßã´yÎ>…K WGxÞ½å”w |ÓÛ›¯½ü…ž¹vAdÁàïÜýu'¤æUˆ×'gvÁîÑJ”E gè8“½XI”D«×€ÛGhuZBs3Š™AóŠ Á–ƃRŸ_Z”åÛÓ÷\i™9×*‰Lÿ Dª¼{Æëb–e˜ñj95¯*?zЩÌÍ3È)OwsËÀ c^ANºFÆ„=}ím}> T¶å6%@™=ƺö48§ñF£®NçȘ¾Ä¨:Ô&S©ä¾~W¿k$bÕªaÄ«I=.W€b#Þ°%%€»~àê“LÕj|®}cøºwŒ·ÒT”‘Ñ44ÍÐQ*æŒWŸÓ®Ž 3Á¸îñ—K>| zÞ¦µ6ßçlúŇGÔ+oy÷úž W½Ø¤õ”n¿vm‰žêßõÒ–_lœé´!‚ Â]L©ÎV”gVɤR’ Gˆ±Þ=Í.Gf(¬5…:c–l°Õ¥Ê±¥z6vûY~óîÐq&{1’(¿?ªÓ+Á'Õ¥†ü «VÓcuÞ 0ìÊ.6ªºc1¥IͦêèW-)‡oÿVUFq¾IeÄâþ IDATMÚ“ÅÒl–4ï¯kSØ–•e[FX‰)¯PãoÚÝ —-ÉòíîôõÔoïI`ýq€\?¥ Gµ^/qS„B¯SÊ)ø»LHUJ9à.bô)•ÊXR•YœmÕÉÙàHwk›+ÈB¸¯¹5§¸²f ´¿«©e$fýÀÕç4$…«#È I©¨NÙ|ý÷Ÿ´ÿâ—ŸnûðoÜSšÓo¼³lïÝÔ¢ú¯;ž¾÷²=<Þ4ËŽ"‚,¸³ Pf-«ÉdYš zû:b¯¸VXr2¢Ý»ëFeVIn´­Ù5¾Žå˜ 4ŠðžNwåRëОVWi±^ÙírθCÇ™ìÅH¢(·›ÐëåCmÈãQèfÙÿD*䉰©YÅæHwg$"×Èb~™ÊÌœ4ן¬X,ûâ¼?M* é’áæ}ƒŠB›öPsp°{ @±LÀãg 9(Uêˆ{ÈOòÈÔj™(öu÷´ûR‹ªj««Vä)£‡g«H…Öœ]XZQ‘'è˜ÞL¤VÃöîÛ½«¡Õ§ÎÏ3É@–žŸ§mÞÛØ¸·#˜^˜¥YPÇ"ÈTB{¶më 2>GCS±¤²‹Š†¾ú¸)ÀP®O>ªÓ—”`M‹ 2s8³‹@Oãîú†††Æ½ŽoJn¾%æÿÉThòìBªÑ(µ›ƒøÜ†fè1;J34A.ô”…3t0d/ìqKt¦4íöÄ{#vþA’$˲„\­Õ*%,ËdìŒ^fÊÍ`{;‡ã½Ÿ;]Ž˜ I2'''==]*埗˜z ÃJ ¹KÍ CJˆ¡îÃå{øÃø=J„ÂR²"RB‡ü|·®ÝnçµÎIÈu°ÞÕ&!Yš‘XNÈÔHtyËŠôaWÿ@K—;îÂëìP,Pžþáà }útCp°ÅdÂ}ÃYå&m—ß3ÍŽ&V”Ž7xï D}ÿ¸éÿž*“I3Ïhë ¤)!ç>ù¬9† ²øàÊ.Ü  O¤{áþá€U¥ˆñþcØ7¦)X±2‡¦ÃÞŽvÏ”~'?,ô:!œ¡›^²p{”%Öhoc”´ÌŽÓâÀ0 AôpóÎa©…8ôöÀ±Úìl¥«ù@@ćöGÔ ÙÙÙ)))á0ÏKºG'¬!WË^—s,ˆú›z©Y`!Æý}lR( ]–iÒõ¤Çå€L&£¢i°Z"]uŽ÷›%*cššö{B±ï3Š:ReY‚$Ç}Ÿy¸˜Òçt%cƒ©3’X†%%4&ŸmPÕõÊÍ—=ß=w~!‚,8³ Eza¾¼ßá#6^ 7çéFwXhç‹gèâ${à (¢£!HKŠÉ‚ŠD@.—Ð —Ë#‘ÉÌý¨¬R©×ÉŠe«¬—µvMO}}O‚o{1Û‘––ÖÙÙÉ[<$@(8&×êSHR•Q¸4SsÈ~4–¦êSå2¹2E&BLj3 ò¬Z)Q¬é27 •JÙH„ë~Rf,).(,ÍK‹·œ‹ñyZs†ZJ’ ]FZŠ× ÆÆ¢©Æ4 „D•nP§Óç4%dvéïsfUŸ\lL+\sÝ'ªÇ»[ÛL+íÙ EÁº»¼´,I«AŽ8³‹(+ÑšL:9I29Må÷ÇÚ[‡$™\NA,ÖY†˜p†.v²Ç ëíÞ a½; àU™3µ2‰$ÅhM'FF­þ9:« tíÞ>A]‡—qØžpñGÍ?Èåò`0©!¤\šÂÒÊl)A‡ÝÎÖ±CÜéážNã’¥ííÜëœN £/¨)1K`©Ýô cG›»¿½C]°¤"C„}ƒÛFh ¤©ÄnšTnÞÞ2 úC”Œ„ظ}´v( Š+²¥lØï:Ø6D€¯·u°0·¬ªPÊFÇÜ]í‡<اpÉXê’4\ï<õ÷“î}üå‹ÚßúÍ+Ÿµ|Ûûí²;~ûúÕzIйã…[cîC€ ²ÈÐäU.Ë_´¹Âž=í#9 se#=úü‚òjIGü#m­ƒ±6Þ ¹zƒËWÔÚ€¥Ã^gKs¯?A— \¡“s'{IÔà} l•=ÜqPU˜_^)gCngKïdylV™ ˆ”””É?ìv»Àe0Â%„ÓЬY_(`@Žâ5»}™]JJJÇ\{ ˆÈÌóÒXTmöÔ9iRi++•vÌü4^$ cŽÍ@¹:œ^š§ñ0mfžI2ÚÝ=õXeáóŒ£RMñöoEAAfÆ?<”™[Qe?ªš¥üÎָLj!3B¢6˜LQ§ÓË×xB©7™dá¾#ªáó¬AA&‘‘¶½#síÄâ'èlÚ=Èõ¾6gãa¨¡–Ýn‚ŠÌ°q~ƒõ‚ ‚ ‚Ä„¥#ác)q6NŽr\Þ8¯™á–?³¶ÚžÓ®õ? ‚ ‚ 2;à–¡‚ ‚ ‚EœúAn°åç[StÆ#I¦Zóó³ 1ϳMP]4Câ¹´H2oâ‰Ì!¤¥úâ ׬?1—E"‚ È"&^BGª-EË+kjk«W.[bQ“ É­´×ê 2­¸Ö¾Ìª©&Íb1¨d‡<’¤Ê`±¤«c¦ ª‹fH<—I@æM<4éöëþøþ7û[[¿|sËúT±äÔouâ™óı½âÎoœÎú¾Hæsïzôþû¶ÞÝÜv`×^ì†Õ™$@öÆmN§³«éË?øÓ•…“Ý¥Ù¯}ê½oö·¶5íx÷¼,@^ö“'>Øu ½Ý±sÛÓ*5Ü#B™¤æUÙí«*ËŠlºx|§WºÅÒÑÈÒ4«ÆÝÓ;·•êl¥+*«ªkWÕVVTT›$©yUåYºô%åÕ5ÕņÂÚâ,ó’å+K-ÚôüeåÙš…uâò±pfªZ£ql ×¡éаsŒF™ªÕø\cÃD}];®ñê+§] p “™J%÷ »‚ÃDý®‘ˆV«Á|œúÁßÝp`â¼t©J)§¨(Pn7£ÓË•:mÈãHãT¶å55%fSy<’RsIMÍò¬˜ 7TÍx.-’€Ì›x.` z€ÇíjtÄ`4ƯÏ»å'Ò¿¿Ÿ¶|ë¦ÿ·–{æqà«/Û*kª¥šoÙË üïO¾ˆó|Áxö•k‡Þz£žÉ9õçOøÔŸuëõÙû¶·‘Y§ÜvíZ)wŸÄ‰·=}ëé†]müé/Ÿß¥)/MeFþýèæÍ›ŸùæˆÍ«§Ýû—»¾—Õ±õ7¿yÝY°î7O^W `¹ô׿þ¾¾ñéû½ÍSzÎý¿¹2O„Ø!‚Ì¾ŽºíÛ·ïëŠØgŒtkRoÍ œ£LLu…%'#Ú]_·sGCo0äÜÛìÿ¿_i6Kúö×Õ5 §äfÆ+"ÜÖéVçX‰žVõJ‡1p…NªC$¦fš”‘HD.—H¥2–Te¯¨ª©©\VhRNTN\9í€s˜œPá£Öë¥@(ô:¥L&ÆÊ»ø} mºÙ”–fPE„4ö¸%Y¦4 íîf,: ƒ^·› ˆ<$ö»Ý’PÌ´'AuÑ ‰çÒ" ȼ‰ç¢Äûþ×?ôåŵWT¯IOÓ¸8„_}5 —ÖÔœ¦«VB}ù¯Ç›‰}ï¡Í~¡ê=ñûZk¦Bßüöªkßf/Îýþ£kL&¼ÇÕ§Ô ×Pj½2ðÅÛ¿ñ§0@ éƒ­Mðªû¯®=l£`e¥Ü/<þ«g>%¶{™äuJ0úÖÍç9$í_ÉM½ð¢Òœ@‡ˆÁBYx“nBb0§…\õñ/Q¡0=QRF ƒav(ÊãgtŠñäÒçö0´žó¸£t:MÈúüp„NN’,ËrµV+‘°!†$I €ÔjØýûv·JRmK—æ™ÜMƒœ9í€ä&¬»§Ý·´¨ª–¥">—7 ¢ÌœÅ©$º¼eEú°« ¥Ëˆ.}n²ÄímŒ’–ñ–ðP»cH=IÚÝåp'O]4Câ¹´H2oâ¹(¡"Q€¢h ˆÿݳu_n^úÝÚK‰Å®cwþß¿|ñúdYhš’˜ø_'44äPLâîsÛ–[_ʼãü›Ÿ8åf6ÔùÉÃ×^ýänÎY_¹BRÀ6¾tw#H³*~xó §SdÊT€±XãA9Nˆ™nZƒ.8ÚŽ«öi V¬Ì¡é°·£Ý3ÙÎþ°Xÿ£å Ã0AÐÃÍ;‡¤‚aX`õ ö((Oÿpp…F ƒWN»0à&7!×ÁzW›„diFb9!S+†ýØë—HƒÕéÚëèì9ênÿÈPÀ;4z¸@N1––æT4<’Cnii)æûï ª‹fH<—I@æM<0n@«Õ€T§×Œº§U)…¾új7@y͹«¿• ÿ÷/!õšT*€h4ã:gŸÔ—7½²dåi—Üóþpî©wÝxNŒ¥”‘p`b¢4«ö¼³×®Ì”)κí‘KËÛ»ðŒ5—>Û<ñ!‚,Jb¦[ Öii'îk½rsžn´qç®Ý{êšÚ‡B jN‚p†ŽŠD@.ŸÈ"äry$ ¨#ßv†œ9í€s˜ãHTF³I—2™áË4é&­Œ¡@&“QQ1Þü=ÿ •JÙH„ÓëíÞï€ÉusdŠF§‹Ž¨oy$ ¹Z§“ùb¦™ ª‹fH<—I@æM<0ŸæýÉÙß÷@x»á»gÈ ÷³Ïbìc$Í_}Ñ·2 FÈ>qýzµwï{ï4¸û¿ü²j¿µñ*=´ýï¿:â[ÓøãŸ^^j]·  §qoÌB…£Oíº§ß¹xè•·¶·ŒEøC .=㼕iK ¥úò³Ö¯¯ìúâÅÏÛöìöÀº3®¿«¹N¿áÚ“[×—Ý-‘’ ÐgæÙkªtþpªýòëV·ü±³„kD3 $‚ ÈB"Nº%OÕÈü}1vÕ™€$™\N!vJV|œÀ:ïèh5S;ê HtÖtb¤y |ž@ž9CíJR3ÒR¼ÎÀø¶@Çä´ Îa(3–g«À ß8\ ©Í(HW…›z¤Îš.óÄÚ§iZÄY¿Di*±›&ÿnÞÞ9Jb"Ëënøº„ܶ<’Ô@Ó׃q:JP]4Câ¹´H2oâ¹€ñ¼sçUÁ=?^w]y´ßK·Ýµe+¸$µ×lÙ²züsù¶lùQëcõï4¸¡é«¯Ü7^bµBï?nâ±F«.ûùwuÁÖ÷~yÛï÷·!Ž>éú¾}ÚUn:?ÇÀxûMü‡†ìÕ7m¹»,k7oY ïn|åó·>þÅU¦Üó“K~·Ä×õéS¿Úòo:¨øÝ¯>^zÓ5O<ÜðÊ/.8ë»ÿ¼ù{UiÏY¸G„ 2¿HÍ«*Ë߯¢ÂžÎÝ}ñWñÕnµ*86ÿ/äê ._Qk–{-ͽþ]Z(p†Žî8¨*Ì/¯”³!·³¥7híPWdKÙ°ßu°m蘂X`«¼8‡  úC”ŒLNE…ûÛ;ÔK*2$LØ7x°-ñÍ[€H™Ø–Àn·oß¾}½(Œ96åêpzù|â‘”h3óL’Ñîîî ª‹fH<—I@æM<ÇyÍn_7£;yáBæta•…4ûŠMŸ¶ö±ØkƒVÜùÍû×)þrÁŠ;¿­O ¤¤Äáp̵‚ˆÌ<ÿA!EÕfOc •¶²RiÇ®Ž¸/À!Óg29 é²³ ôx–’ŒÆyËQ5‚€ QL&½R@åÆ#I(õ&“QsV$AuÑ ‰çÒ" ȼ‰çq‹¦ê'÷?òèƒ?;9ôÏÍÿ N¢ŸŒ>AaüÃCÒ¬ŠªÊÊÊÊÊÊŠcØécy r$“ɉTeœÌR’ѸPgþÈåR– Gy '>I‰L!%¨H$Æa ª‹gH4—K@æK<Ç™ç‹E Î? È¢P˜’œ0S²”d4Î[ŽªÄyŽËÒ‘°°AóIÒѸ—TÏh.-–€Ì—x"‚ ‚ˆËáädJ–’ŒÆ…‚8ë—AA9ÀúAAA¡«ÈTk~~–AëºÜ`ËÏ·¦ èŒG2AC|ê¢Ï¥EyOAA$©{ÿT,Yt w”{ÓL©&Íb‰Žu÷ùÎë‚%4ħ.š!ñ\Z$™7ñDxQŸýðû·­‚$Y†ß;›ÏþŸoæÚ/AùOj^U~d_ƒsÖN+Vf•—g§ ø¦ut¶L.päÖe•¹š) ãçi)i¹Ùi9AÝζÖþ£É­\fö8v¶ºY ÓŠ«‹äÝ»÷&|œÇ¬Aª-…Yz¥”޹ímX–45³ /C§”ÐaŸ«£µÛMܺ°új­÷B4æ?—PŸ£~"^þà‘LПºh†Äsi‘dÞÄá%ðî-§¼ å›ÞÞ4xíå/ô̵C‚ 72s®UÁçeÓ!:x`×ðÄV¨]~YF` –Â\ùc#D¨m%%ÙiC€D«×€ÛGhuZTn!3çæÊGöíî JkqYžidßw]j+²²Ýûw‡ UFQQž±¡%ñ#ä„Õ,D€‰¹c&CG#lœë‚%4ħ.š!ñ\Z$™7ñDfŒqÝã/—|ø@ô¼Mkm¾ÏÙô‹ލ1VÞòîõ=®z±Hë)7Ü~íÚ=Õ¿ë¥-¾Øˆ!rAÈÅéò¨»»¥e€çxèD u6›r¨£_µDOLª³å™U2©”¤Âb¬wO³K•W•=èTææä”§»¹e`Œ5ÖšBŒ1K6ØêRåØR=»ý‹î÷”¥£‡žAªlV»»%@¦j5>×¾1 |]; ûýQ^ >©.5äΑÇ3C!“z\®ÅF¼aKJ gý S©ä¾~W¿k$bÕªaÄ›¨yaï?HÍ%55˳bÞ¿*Ûòšš³€b„G2AC|ê¢Ï¥EyO$R*ªS^¾þûçÿ¦í[—žn‹%¥9ýÆ;Ëöþâ¢ïž³á¹àE÷^V:›."‚Ì1)&«r´¥¡¡Õ«ÊÍ2$ñÌ/efNš¿«ÇÇ“á+,9Ñîúº;zƒ!çÞf×xö¬4›%}ûëꚆS&ýÔ(ÂmnuŽ•èiuQ¯Lž÷s©·fÎQ¤RKª2‹WTÕÔT.+4:«r»^®ÔiCïÂ*¥üÝ ǧ¦¤*¥œ¢b-J¢ÂF­×K€PèuJ™LŒ³„ÕlØïv{C1g;è ×íö‡DžG2AC|ê¢Ï¥EyO$B{¶më 2>GCS±¤²‹Š†¾ú¸)ÀP®O>ªÓ—”ègÓGA¹%ìêê FB£#^V¡HÚv2SnÛÛ9Lñ R¡É³©F3Y»Ë<~æŸ>·‡¡zÌãŽÒ M êÄãi"1˜ÓB.רø_Z Û»o÷®†VŸ:?Ï$o{Ü)MG»=|ïgÎ?H…Öœ]XZQ‘'舵úŠu÷´ûR‹ªj««Vä)£"½ß!ðýw—Ãçzx¨Ý1$¨'É ñ©‹fH<—I@æM<1èûÇMÿ/öU™LšyþC[×P M 9÷ánX‚G°,;ù!iù7©ÍÎVºš„d|²aߘ¦`ÅÊš{;Ú=‡=üa1× 1 ´]p´ëP¶ÌëìP,Pžþáà )€€Û£,±F{£¤eÝ>]Þ²"}ØÕ?ÐÒåDãU?!×ÁzW›„diFb9!S+†yaõƒÄ[œ!jksq—-)¦Âütª¿¹s”ï¹0d‚†øÔE3$žK‹$ ó&žˆ¨° KJ&&)IrâEQ]¯Ü|ÙóÝsç‚ ÈâF©×ÉŠe«¬kíšžúúŽúrsžn´q眗?µNK{ú=“§¨#çq&‹@ü#CEt4i³ë`‚«%ÒUçÜßÞ¡.XR‘!a¾Áƒm‰oÞ DJJÊäv»}ûöíRmfžI2ÚÝ=½ ±Â˜c3P®§—Ï'É ñ©ÏÀPH—m ã mnG4ûIŠŸâç5»}çŒ I£¤¤Äáp̵‚ˆÌ<ÿA!EÕfOc •¶²RiÇ®ÜV[d„''œ ¤hÙÚÜqT pý’Ro2U1'+$jƒÉ¤W ¨Üx$4ħ>CR•1þÐævD³¤¨‹gAAŽÿð4«¢ª²²²²²²¢ÄvºÄXž‚‰ðä„3\|¹°ùÈR‚ŠDhîu#„D.—²T8Ê;%Â'™ !õbø†6·#šý€$ÇOÑ 3Ï!‹œ@E þ  0ä„3/[›3ŽªÖ:t4/ñcéHÜëÂ%4Ä£>C|C›ÛÍA@’¢.š!AAqžœp&‹/·¶~ AAAëAAA„#¬~ S­ùùY†˜ÇÌÊ ¶ü|kª€Îx$4ħ>CrCVü¡Ííˆf? IQÏ‚ ‚ ’TÖ*ƒÅ’®Žù²„T“f±T:ã‘LПú IÕéñ‡6·#šý€$E] “jmKWTÕÔT./ÊPã©©Üp‡¤šìeµµ…†£”Yå«ìíšÜJ{M¡ž ÓŠkíˬŠÙr\ ¦{‡L{âÆIÑC­õ^ˆ†b]õ9ê‡ "àÝÉ ñ©ÏÀÓ﨎7´¹Ñì$)êâB¡zãCÿK·óÙÛžÝÉxöε;‚ ó’ðHW[„ñrý;R2òmÄÀÞºÁD“SZ’íÝÙêfIc^‘!ØÒx0@êóK‹²|{ºp[Öcà ]й°Àª#þð1ò2s®U™zÆ‚D«×€ÛGhuZTn1Ý;䨱'f^ËD#‘hì]¥:‰D»NñH&hˆO}†X¾¡Ííˆf? IQÏÐñLú‰7>÷ñîæ¶»þóúc7¬Î$Ò¾uÝ·ít´lüâÕ_ÿ`‰,–ò·Øçt¾¹!@Y½áѧžz솓Ü}žüÃùå­'HÎû³Óét::äe?yâƒ]ÚÛ;·=½¡R3¥kÃwîù瞃¾úëÅÇ÷¼‚ ŸÔ¼*»JEˆ IDAT}UeY‘M'Þ”@ÐÝí 2,õ¹ý¬2EZ£ql ×¡éаsŒFULu©ÎVº¢²ªºvUmeEEU±IšWUž¥K_R^]S]QlQ`(¬-Î2/Y¾²Ô¢MÏ_VQž­YX'.sÀºh`ÔÕÙÔÔå;ºÀ#u6›r¨³J™à÷Guz%€F—ògÓ󄙯œcO aõƒÔ\RS³<+¦k*Ûòšš³€ä€G2AC|ê30¤ÊâÚÜŽhö’uñ ¿'Þöô­§v=´ñ§¿|~—¦¼4•P¬¹ï/wž“úÙ]—]óT{Éå=yMa õÖ×ïÙ¼ùÏ;#ƒmÙ¼yóæ'¿ðr÷Ùüê]›Üæ`öüeóæÍ›ïzµÀré¯ý}}ãÓ÷ÿz›§ôœûseÞ¡Žõg\{‰zçWÒܵwn\Sð‚,h|uÛ·oß×±ÏÐHw¿—BªÑªi UÈ!aS³Š MÊH$"—Ç|ïOaÉɈv××íÜÑÐ 9÷6»Ægð•f³¤o]]ÓpJn–a¼RÐ(ÂmnuŽ•èiuQ¯qsW而¸ÜÁc—1(3sÒü]=¾©O )·›ÑéåJ6äñ.¨G“Ó¸C€{ì Ú$ņýn·$sõ ôºÝtX€[<’ âSŸ!:Ä3´¹Ñì$)êâ:~‘ôJ­W¾xûá7þ(XY©…Ñ7_{õ³ÏÕ™»î·‡¡õô˜Ç¥ÓiB¶àçàØÐÅ@fÊÍ`{‡)ȘÚö¸%Y¦4 íîf,º¤;+Ó¸Cb=!¾ÿàîr¸ã\µ;„e<’ âSŸ‰!¾¡Ííˆæ ÉPÏÐq˲Ç6D·m¹õ¥Ì;οù‰SnfCŸ<|íÕOî–Ëe†‹ÿ´ï\ äP«Ô‚×ÐröÉ9ÁËè+~xó §SdÊT€1bòG‰ŽR @”¢€$pÃhAèAÇöABª4/ýÍà ÃA7ïZ&Îà°oLS°beM‡½ížÉvöð‡ÅP'ÄâèÐqN ‘Úìl¥«ù@à¨u¼·GYbö6FIËl¸+ÂïØcOa?çCnii)æké)¦ÂÒÒ\ƒ€µ <’ âSŸ!…© þÐævD³¤¨‹gè¸`ddÀ`4ªôt%ÀÐÐ0uàåMg¯,YyÚ%÷¼?œ{ê]7ž£†H$ 0úö-kÖ¬Ysнªªêš—§õøŸ«O†¦H™ìÐפ8ë¶G.-o{ìÂ3Ö\úl3GGR©¢QÑÞÜBY$HTi&­€¥‚£ÞèøÄo$rùÄÿ±r¹<9öeà‰‹æ<ÝhãÎ]»÷Ô74µ…Ô"œá 'J½N®°.[e·Û«ò´¤i©}…M @€d(à]PïNCÜ;D¢2šMº”C~̱'„°ùB®Öéd¾˜Ù™¢Ñé¢#ê[É ñ©ÏÀPX‘hs;¢ÙHRÔÅ3t\p`ûWîçÿà¾'#_k׬&ض¯¾íº§ß¹xè•·¶·ŒEøCж{—~PyÚê²±`å·~_õúæõ[¾üŠgŸÎæf?,?ùš6Zz ó­'?—HIPè3sŠì5U:8Õ~ùu«[>ÐÚ/¹ö²RÛ«ºêŽû¹#A£Q¥ç[UÁ¦?E¦tª?ÞÑÑk¦vÔè¬éÄHóX m’ dr9I„XŽÙéÅgè¸tíÞÞ5þQ–qÂJuß7­£ É`½Ýû½°ÐÞ‰y‡(3–g«À ß8\ Ä{«¨¦¯!öm9ÖÝðuOœë‚%4ħ>C= _÷ÆërnG4I†ºx†Ž ýòšGT÷®_}éEÔ@ÃË·ßñÄ>Ôõÿ|û´«.Üt~Ž:ðö›ø ðñ½—ýRzÏ÷<ó}E°oïû¿{kçtö— 9ûêÃß\ÿ¬å¾ .ºýçÁ®gv<ùÑ{¿ûÕÇKoºæ‰‡^ùÅg½q÷Ÿ7¯*í¯¯=øxΕgŸ|ã}gEú÷½rû]5$' ‚ ³Dj^UYÆø* {:w7öÅš=ÜÝiXR¼Ò*%˜hÐÓÛÚz¸ã ª0¿¼RΆÜΖޘ OC®Þàòµ6`é°×ÙÒÜëOÌ¥…wè@_PSbθÔnzб£ÿé±ÀVyżC¢Aˆ’ÑäNE)))“ØíöíÛ·sHI´™y&Éhw÷÷ò…1Çf \N/ß{­<’ âSŸ¡.;Û@mqŠúÜŽhö’?Å34Îkvû:Î;A’FII‰Ãá˜k/™yþƒB‹ªÍž:Ç @*me¥ÒŽ]¾¹ök±‘`ZÈ©ÎÓç<ã¨AØû„Ro2U1'+$jƒÉ¤W ¨Üx$4ħ>CR•‘Ãâõ¹Ñì$)êâBAãÆ?<$ͪ¨ª¬¬¬¬¬¬(1†.·#šý€$C]DCÈ1týåòõnãÛÿø§<å›Þ¾e|BA 3çZ%¾œŽ_RÌ…Vð‡ùÇ96ž­^n¡ÕiIˆuzõ|%ØÝPß+ôTX‘ï%AõKG#,0±7ÌdøJ&hˆW}†8%§6Îíˆf? ÉPÑ"£ý¿ï»éûeiÌ@ã›ÞÿôŽØ'Ù«Ê~x÷­—Öä¤øÚ·¿ýìSÿ²7@ZO¹áök×–è©þ]/myðÅF<¨AD|HͦêèW-QÅ“êlEyf•L*%©p„ëÝÓìRåUåG:•¹y9åénnc …µ¦PcÌ’ ¶ºT9¶TÏÁÆnÿ‚þAF]Α1}‰Q¿€3ž~T§W‚OªK ù…fâ ÷Ò4:"¤ÊZ^SSbŽ]k¨l<%4Ä«>Cœ’SçvD³d¨‹hᇬ¸òöUû~uÉÙç]õ¼ÿœ[/)-jùþÏ~¼výºs.¾ù醌š2 €æôï,Ûû‹‹¾{Άç‚Ý{Y}Ad¦(3sÒü]=>ž _aÉɈv××íÜÑÐ 9÷6»Æçè•f³¤o]]ÓpJn–aül2"ÜÖéVçX‰žVõÊd!ÉЗ;H hîxRn7£ÓË•:mÈã]p¥”2kYMMuueEÙ‹:nB/ð^š‚1:äu»épl«tG@ d‚†xÕg`ˆSrjãÜŽhö’ u !Ç}ùŸ>ù1„?¼ëÌ¿fÏc—^@à›=]·•¥ÇÖ% R–š–¦!zÛ¶ÿãÁ‰sc²‹Š†¾zª)À@à“êîüQ‰šÜ³0Aã™)7ƒím¦ #¾  Óu!Õh”08¾n'8Ø= (ŸÑ)äàs{ZOyÜQ:&d êÄãĈϰÇ-É2¥Ihw7cÑÍ•s3!ÐÓ¸»B¢4ç[Ü{ûŽ]±Ó¸—¦ ú!<ÔîJH@ d‚†Ärã.É©ês;¢9HÔE4„C÷sWõþƒªäü»o9·PFE vÆÑí{ãá?ä\wóÓ?²P={þõ·ÿ}âãÎ(ÈdÒÌóÚº†iJȹOžÜ ‚wÚìl¥«ù@@Æ'öi V¬Ì¡é°·£Ý3ÙÎþpÕ ÜÄŽgÀíQ–X£½QÒ27¾Í†Š„©ñáþá€U¥à¬¦s/ GPý 0¤ÓýÍ£1Þ[M1æ§SqJ&hˆW}†ÆŒ’SÕçvD³dø)¢!„óÙ×_<öÌ/þÌÏ×=þZY<Ù±o>xÛ ÓæVþð翺íÜ=×¾>DQT×+7_ö|÷l9Œ r¼¡Ôëä ŲUÖ‰¿µvMO}}Ç }¹9O7Ú¸óþ*ƃ3ž­@€d( ˆŽ† m.œ6ŠôÂ|y¿Ã€£JD‰Ê˜¦¦½Ãž0{i:ª$ŠT.:»|%S4ñJ&hˆW}†Â\’SÕçvD³d¨‹háG"•¦¨•$(Ò–ŸSmSÙl¹ÓaŽ•$r×ÝòƒðG¯épy\./ À@wk›i=ûåîn(XwËÕ)oÜó÷}ÑY‚ È"&е{{×øGYÆ +Õ}ß´ÆØé‚$™\N!€eqy/7œñÔä°Þîý^X`ï‚DY‰ÖdÒ ½”DmNSù‡W”KгUà†o.¦s/MAõÃXOÃ×½ç®ënøº'ž€@É ñªÏÄ—äTõ¹Ñ$ ê"Bøé{ïÙ7O¹õüldÏ?ºeËY¿ùãÿÀ†k.zãšàïŸ_ Ÿúáå/ôŽ:Z¤Wþô‘ÙiïÁÏžøŸwFÀ·í±ß.»ã·¯_­—;^x°‹A¹"äê ._Qk–{-ͽþ9vjÖÐÔ”˜%°Ônzб£ÍÍÙÈÛ±°Vy1#=úü‚òjIGü#m­ƒ‡¶fý!JFBIÍ•ˆ”””É?ìvûöíÛ'ÿTslÊÕá é²³ ´«Ã饱çuã8¯Ùíë¦ÜÉ2 ”””8޹öA‘™ç?(¤±¨Úì©s Ò¤ÒVV*íØÕÛj‹Ì,§1ó£j„xÛ=IÔ“I¯$@ª2ŽÀFlœç‚ rüÀø‡‡¤YU••••••%ưÓàWC¦ ¦1GoþÈåR– G™ChlÄÆùÝ8Î<\„,JpþA%øƒ‚À¬§1ó£j„xï?°t$<>”É؈ó»AAD\09 AçO#‚ ‚ ‚Ö‚ ‚ ‚'^ý 7Øòó­©$È Yã°çyãñi©¾xÃ5ëOÌ´óⲎ ‚ È/ç’jÒ,ƒŠ©:}ü6bãÝÁHuy%9d¯£m4öùmŠuÏ·ÿïš÷Vœ÷ÌàL]¨½×›t;Ÿýù³;Ïþ7þsâ°.Í;eÝ*«qõ¦»ÏË~wcæÕoÒλñã/o]úÖ•Ù·ÍÔ…î¿„ ‹’äÿ ¤˜ ¬:2à—é®Cg§æUD÷×÷“iyÁÃ%UvÅ Šîú¶á(¤XKV†êöR\’šÜÊeV¶ßî¡/¨*1‡:wïí Ïòf i\²2+Òr 7@êóK³#Í{ºblÜ+\2Ó8ÿ¡ÂÁ`˜f¥£‘H”al<ô˜CG4Î@’ÓÐÔÆ¨ÏLrÒP²]âTç´.\Rx<ÅúŠ…û93uÁ~.JÜuÿxòw÷nøŸ1²ÊsÏÈ„ìÛœNgWÓ—~ð§+ 'ÅÒO¼ñ¹w7·ØõŸ×»auæÿ¸ÉÒ›?îq6ÿõ" Ÿä¾ýÀ>§óÍ Êê >õÔc7œlä¶Nu|úòË/¿Ó0:Uýä‡Î/o=@rÞŸN§ÓñÐÉiߺîÛv:Ú6~ñ꯰Dpò#§ó³ÛÏX÷ûíkkþâ©ó³Å ‚ ˆ˜H4Ö¥åUµµ5•Ë‹m†1f¾£QWgSS—š™¾Tg+]QYU]»ª¶²¢¢ªØ$HÍ«*ÏÒ¥/)¯®©®(¶¨0Ög™—,_YjѦç/«(ÏÖ,¨„BSQ†¡i€¡i†ŽRLlY¿?ªÓ+4ºÔaÕjZ£ql ×¡éаsŒFUâ’Ó@ЯÊZ^SSb޽ÒYeã(Éihjã Ôg&9i(Ù.qªsZ.ߺðF^?9Õãû93uá~.b}N/€Õj…‘?ºyóæg¾‰L½LœxÛÓ·žnØõÐÆŸþòù]šòÒÔ©ÿcš.¸ë¿O ê½÷<’Si}ýžÍ›ÿ¼30øÑ–Í›7o~ò /·uNš_½kóƒÛœÌž¿lÞ¼yó]¯6(ÖÜ÷—;ÏIýì®Ë®yª½äòÇž¼f²²wYåÁ—ßÜGæï¿P0£ !‚$…%/‹íß¿«n£Û+×iÄX BF\îà±ûw*³–ÕÔTWWV”-±¨c§k KNF´»¾n玆Þ`ȹ·Ù5Þ•Òl–ôí¯«kNÉÍ2ŒW E¸­Ó­Î±=­.0ê•"¸?Ç¥p_s+•UYS]]»ÌènjabIPn7£ÓË•:mÈã]P!¥ 9D"ljVq¡I‰DäryÂ’Ó²/DˆyÝn:;°tG@ $§¡©3PŸ™ä¤¡d»Ä©Îi]¸d|ëÂyýäTïçÌÔ…û¹˜aY€$I4}°µ ¾SuÿÕµ‡¯J z ¥Ö+_¼ýðš2Kj¾sëÿûŽ²å±Ÿ?ÓÁÈbKÅ@Ýk[ë¼µ÷_YíkxoëÖ‰µ9\Ö¹Õw¼ºÕe»òŽ3-ŸmÝ:±~©te¥Fß|íÕÏ>WgîºóÔ5«ªÕh—÷Á;ߘ>ïŠ*}jê "„ ’tB*—I!4æîos'ÏL §qw„Di*(η¸c­¬¡Baz¢ ¤Ç傃Ý €òøbÿÀ%Yz~žj´yïÁ0¡Ê((Ìò7vùY.I€°Ç-É2¥Ihw7cÑÍíh¦I’,ËrµV+‘°!†$c•˜Â%§ƒ ú!<ÔîJH@ $çÕ©3PŸ™äa$»Ä3d>CÂýœA£pÞ€$¨.ÜÏÅ AEÑm[n})óŽóo~â”›ÙPç'_{õ“»ÇºTÝòhÀî_þ­‘Š)9kÓ¶r¹ ÀpñŸöK\j•úТQpþåÂ’‰ð g"‚$›ð@[WJnþ²LòŽ8;;‡‚Éy¢ÅP‘ðÄz¦pÿpÀªRÄxÚöi V¬Ì¡é°·£Ý3ÙÎþ°Ðë„XpE‰Ò§‚ƒ-Þ îÎ*7i»ü.É(@ÀíQ–X£½QÒ2WØ ÃA7ïZ†‰u# —œ‚j…© ´4×{–.ÅT_@ d‚†xÕg`ˆSrjc2FÄi]¸¤pë úÉ©ßO^ÄúŠª «ÀÙ×ã:uàåMg¯,YyÚ%÷¼?œ{ê]7žs(/oúÛŸxaåW)x$Ň¡iR&›üÊ"‘(ÀèÛ·¬Y³fÍ)öªªªk^>²"d#¯×¿àŽâDäø€ ´í¯ß¹cWSW@“_`c)ŠôÂ’ÌÉÿšãrsžn´qç®Ý{êšÚ‡BÇÓ=g”’öPñÄK’Dœxà x‡FC³ç¶(P‘Èå¿­r¹<™,/%*£Ù¤›|7'Ždª$ŠTN-}÷’)šø%4Ä«>Cœ’S“1"NëÂ%…[OÐONõø~ò"ÖW¼˜ÐW]¸ñg÷={ëidt÷;ô‚ºôŒõëׯ.”èËÏZ¿~ýI¹h×=ýé+¿¾nݪ5P€opðÐÿ†þƒÏÜýX}Ôö“{6äORœÖ¥ù«×¯_ÿ½ #dŸ¸~ýúsÊõàlnöqò5lÜpýƵÙm»wyA_yÚê²²U?ÞòÚkO\Q± öËCä¸F™QgÖ*e$KE"LyÈ/.QV¢5™tr’ esšÊï5)K„L.' ‚ ޳߯Q¢ÆÆ¢©Æ4 „D•nPãÆ“õvï?п°ÞðŽŽªÌ™Z™D’b´¦##c”KŠ KóÒH>ÉDˆ·ëT1‚ˆ½pB€@É ‰åÆTNɩɧuá’­'è'çÕ¤z"¨ŸE¶«(ËöW¼cËǽTöÆm_ß]>EêÝ9WœwîÆMW»ª$ÇÀøÏs÷ßþ‡¯Ü‡÷oýkþýÿycƒá½k¿½á##‡d<þõ¢¾GN=ù‘ñ÷¸­¯ÛÚòèê)­­=ù¡}@dþ‹Gï» :+%ØõÌ•'?ø5Wm|àž+VŸ`Qûö¾ÿ»›ïx©%rò#Ž—/q=vêÉ-Ü PqÿVY”ùƒ"ÕX²mf½F)#¢c#½míƒcqv÷ˆ¾ ¦Ä|xbtìhó¨ÌùYµŒ¤#þ‘î¶ŽáX3 2ã’åÅéãó ,ö:[š{ýª¼ªüȾg´ùÕ¹¡ÆÆ>Uamúè7-áÜ•yá½ûFÒËNuÌh'ÏùÁ%™ÎV˜kNM‘²Ñ1·³½m ÀpJjr+mÁ=ŽÁñoPe[Q@;Îþ­2]važ9UΆÜζ¶þÀļ½ÔX°¬À@4ïíö±q%§ÅQ5‚ úAnÌÎ6Ю§7†E…1Çf â”LЯú …t’SÕ“1"NëÂ%“ÞaÆ÷3ÙwÈ8‹§~@X? È¢džÿ Æ¢j³§Î1HJ[Y©´cW‡o®ýZlÄOÌDlœ·Lãü‡I¤*£É¤WÆž“¨ ñJ&hˆW}†8%§6&cDœÖ…K ·ž ŸœêñýäE¬¯AA=ŒxHšUQUYYYYYYQb ;] zJaž?1±q¡ hþÈåR– GcÕE¼%4$–S.É©êɧuá’I ï0ãû™ì;dœyþ¸Y”àü‚,Jð¾ÄLÄÆyËQ5‚ ý[Y:7^’ Ë#¸$§ª'cDœÖ…K ·ž ŸœWyüLÌáý ‚ ‚ˆOb&^ãBAŒ3$AA9>ÀúAAA¡«ÈTk~~–!æ))rƒ-?ßš* 3É ñ©ÏÀÜÅaqŠz2FÄc}F~ò ^äãˆѾbAA$ ¬T‹%]óe ©&Íb1¨tÆ#™ !>õ’ªÓ9,NQOƈx¬ÏÈOÄ‹|üñ"ÚW|ÜqÂõ¯~úé§Ÿ~öùß.Ë®µò–wÿt‰u¦6ÓÎâíÛ«¥P¾éíç~d›i?{Ùsoü¬œ_Aä8@¢±.-¯ª©­©ZQšƒOÍ%5¯Ên_uˆê-hr+í5…úñ³oÓŠkíˬ êž³eæ\«$ͼ )–‰F"Q:æËÐÑH$ʸ³y$4ħ>C,§Å)êÉuNI* †¶“„€ðªÇ/¢}Å ÒzʽôîÛÞúë¯/Yž Ƴ~ïÙç’â«_xëž5¤í;7ÿïKï~ôÛ^}êÖµÙ±ÿO8<Õ@ZO¹ñ±ßýèãw_¼åÛª8Öãc;ãLãGÛê'Ï^%ÒWßñü{¿ÿ÷_ž“;î™ù›å½?úç _Y©‡XWnýüó¿_½ÄtáŸþùçŸ':• ²Ð º»CA†e£>·ŸU¦ÈbJJu¶Ò•UÕµ«j++*ªŠM€Ô¼ªò,]ú’òêšêŠb‹ŠCamq–yÉò•¥mzþ²ŠòlÍÞú1 IDAT‚:q øýQ^  Ñ¥†üG×ó­Ñ86ÐëÐthØ9F£*ž4©³Ù”Cý¢•HÂ꩹¤¦fyVL×T¶å55%f“<’ âSŸ!U—Å)êÉu>uáÖô“S=þˆxmD Íé7ÞY¶÷}÷œ Ï/º÷²R€‘÷~ÿ7ö’Ÿ•n]wã¹Ýxü ?¤žyÃí%û~sٹ߽øî¯ nþéõt ý¼´ñõg}÷âÛ_k§b[/¼ü¯Á#ß›2ïYxæò?hš¬å²Ïº ëÿîüÉO~¹kÉ ?^%Íé?»­x÷ýëÏ>÷ê']gÞwU£±íÏëO:éÒgºþqíI'tÒI—¿Ð“`0A4¡‘î~/ „T£UÓþ@4–¤Â’“í®¯Û¹£¡7rîmvÏà+ÍfIßþºº¦á”Ü,Ãx¥ Q„Û:Ýê+ÑÓê£^9+c™'(³–ÕÔTWWV”-±¨'Ò_Êíftz¹R§ y¼ êѤT!‡H„MÍ*.4)#‘ˆ\o›23'ÍßÕãoˆÂÖ/±a¿Û- Å\}B½n7àd‚†øÔg`ˆqYœ¢žŒñXçSn=A?9ÕãˆÑF´ðÈ.*úꩦO>ª»óG%zhrÛýß½û½ÿ=ô—ÿþpl…K\_üaÏP éÕ‡ïo#§·ZNq‘ëË'öz¢m}‘ØÖ»^¿õЧ>ó z&?Ÿpæéám·´¾èÜöÌß¿éèþO=sµÍàÊ.*r}ùÄ^wà‹Ov+®*Jƒ=Cœ3‚ ÈâEb.©)Ð3c®VG{ìÌ …é‰:€j4J @p°{ @P?£SŒ'—>·‡¡õô˜Ç¥ÓiBvüÌ?zw÷@H”¦‚â|‹{o@Øã–d™Ò$´»›±èæØÉé@’$˲„\­ÕJ$lˆ!ãd2SnÛÛ8LA†hö¾ÿàîr¸ã\µ;„e<’ âSŸ‰!N‹SÔ“1"ë|ê­'è'§:ψømD ™LšyþC[×P M 9÷MÈò3×x·]Û9¥i²Oš¦¥RéxŸ“Eɤ²X‚ ÈÑЃŽíƒ„Ti*(^û›‡cLA„}cš‚+sh:ìíh?ü”‡=üáø©bÁP‘ðÄt{¸8`U©¢·GYbö6FIË\:8]†!‚nÞ9 µL̅ߤ6;[éj>ñ÷VXý 1ägH†ÚÚ\aÎë)¦Âütª¿¹s”ï¹0d‚†øÔg`hÌXPNmqŠzRG¤0qY¬žŒ€ð├µ;d!CQT×+7_ö|÷Q튕—~_±¯£æÒ mŸþ½‡—$%OH•AOøGbLm³ {XòÐà š¦mä²^xå Ïþ8kJÞÇÖÝôæH«Î\íüàŠ>N£R©4JEòS"‘P«€a’ÀiA$ª4£ÔçòF€¥‚£Þh¾^ã\’rsžn´qçE9//ŠôÂ|y¿Ã9þ†ñ”‚ŠÿÈP@ AÚœy7¨Här r¹<™L‹$*cššö{B €R¯“+ËVÚjQk×ôÔ×÷$ø¶‡°_kB®ÖéR17‡"S4:Z. ¾å‘LПú I©§¨'uDÜÖ«'# ÿ¿½{ n¤Ëþ﫤–¬›­›%Ù’|{ìÏxìù¼ ¤6ª¥x  ¶(–P[•„ŠT%)¨@¸ì²á)©âÈc’»@x"E(xHþ¾ÏŒí¹h|‘eË–mݬ»Ô­¾ð Çãi©Û–d[þþ¿'»uNÿOÿÝ–ÎQŸÓ­Y]µäµ!ý,±s=^  ‘ïüúÿö @M|ïW¾±ò[¿ü/þøéð—°¿ó|óÛsƒÆ<òWÿå|ÿÛÖVû<:Lúþ¤spì§~égÿÜé2‰ÃýßâOL:¡oýÂ÷¾an}ïG¿ú½OüëÿÕ¼øÃ,}û'¶þäO³ŸÄ2{N†d†¾ù“ùÍìi;—þÒ´5º¿ñ­GÒöv¦ÕF€ÌÑñÀÃoιíC#çü #„^ÜPxÔc¡ Êè°qõz«…¯$A0,KAàU†– eu¹l,IŒÅ=È•Ëg÷*RЉ·ïúkí4@ñä„s[Š2:}CD.W=}Á䟌ŒM‡O»ø•½—˧VâE9ý~¹ãÁF£ñì—¥¥¥ååeõrŠÒzúºÖëºKv¨kíøøºzÁs[{zDštý Ñ|Yµäµ!?^ZúN‹3ù6£‚?õÿñ/þĸª%Ÿýþð_¢uÂÿÝ÷;ÿû÷~í昙_ú½8~û§¿¿\*øS¿òk¿ð­)SÙýò÷þÍ÷åaæ—ÿÛø®³mýûïþÌïïƒyîïüæo|wŠÚùãßüϦ_ÿéýŸÿ¹?<óßýá?ÿ[÷éØý³ÿèøÁÏ47ªDoÕPã·þÕÿÊŸýÍô'å³M3ýïýâw¾9é1 /ô[?üÝW…Ó#ú'¿ø““véxýûû¿óU®ÕFfì¯ýÆoüü7‚låÅ¿ý»¿ú?Žz”æ^™ššŠF£7Ý „P—ÝÐ ÁyÆÇýv#MÈZáh'vXnq…qŽ?˜jNxU$¾˜ÜÜ8(s¡'aáÍZ²ÖðÂh}}ý{:tòÕ&?ú8Ä¿~“š¹ÏÄ5îùywœ;ö;Ì ) å\"ÏÖËè| ö*šjÞE ÌE¤èëÃþ™ÝÀØ‚c!÷«ÔóÉXì¨rz‚ÐÎÈlÄ!o¼N\\5Ãxï?6~µ­z%KÃ…1‚¾ñe¹¨“D"§~ãXƒs$àÓñdQëú™FÉiU¿B º-tHm­§GÄ:{½[í<_]µäµ!M}:~è–oÿð?ýù?ýÎ?ýß}u«ìžÃñBwÒ-ÿ@! îÂJ4%¦ÀÌ4/Ýt»îÕná6ªv4»š·Á…1‚ÎùK&»ËåäZ.– Ì—ËnÒqåL£d‡´ª_!Í9ÛZO¨×Ñ»ÕÎóÕUK^Û‚zÏö¿ýðÿýÉŸáà!„nœ\Îfhÿ£'óóóóóó¦œ|2ý5¹¤p­T»…Wب¹Ï~¡sþÅhB„Ïí"(–¥‘ohœ´JvH£úÉZ‡ÖÓ#ÒLìõ'D3jÉk;Cšnù×EèNÂëÝIø‚ E·ð U»Fš]ÍÛàÂAç÷¸RƒowPŠ$´}]ÉiT¿J ­Cëéi&ö¢U]µäµ!!„BÝ¥Ú-¼ÊF­}ö ¼["B!„BH/? „B!„ôÒ7~ |á°ßÁ¶zuÂa߀Ži”ì0Võ®ê^“îHBÎUW-ymùD!„B=¥süÀ9<ž!sËÅ´eÐãqp:v¦Q²Ã@ZÕ»¨{Mº# 9W]µäµå!„º;Lþ‡_,=sÜt;úÈ@èÉÒÒ,DšOX%ƒáûž>]œ0á5“`_Z³äàäÓ¥YŸá&~Y´5poîÉbó€Ú=u•ž|0¿øtq~n*hcº\W))³½Z„FË6Ö£«t,þÐ(Ùa ­ê] Ô½&Ý‘„œ«®ZòÚò‰BÝŒ{ÔG ZOpBÕk«Ÿl/—6» J´m ^®µÙÁícu:«Ç+EAÈ&3ÁI'·W©ªd8Ž-¥k"”Ó9Ág5C®Øix}ó—h÷ÔââËó— ¶›7øˆýí48í¦^à 1ùgæÍŒ{Ì$Ð4£ÜðäÜ“ÅÅùÙ1ׇgµ‰ù¼l³³&›µ^(öÕPŠ6° Ê€rÌee[­ yA6Ûí4»ÍÄ0ݘ®óú_Îç©zË«R­˜ÏK¼ŽÌk”ì0Võ®ê^“îHBÎUW-ymùD!„îÆ5êUÖ³"xÛë¼t: h‹Å©æ‘Z*q\ÄBY¶šËR¾ Kv©ZÈ7¤!‰`úê‰ÇzUö×_@P&Wd2ìÉ¿>T ­åí›—ÛÔ@àÞ½+ÿ.Àò”ß5HIù„ì±ÝpË/ƒ$IEQÖlµR”R—I²Õ%¿¿Sº7ñä©" ¥t‘‡vK%tÓ¹þ!¿Í·yÏìD3ºö¤Q²Ã@ZÕ»¨{Mº# 9W]µäµå!„ê{¤54¥7ÞóšË]ùRÕ™{<"I|1¾S8Û®|üáNŽZ‘E›?òGÙŠã* (…ÔQET@,eks3¤D€J¾`šò5Ö¤ç&[}Y²,!e7žgh!·™Ù]Oo­¦c©H2å¹?líF|}ó—(ÇèôtÄÕrYºÑ56==êÐ1¢Ñ(Ùa ­ê] Ô½&Ý‘„œ«®ZòÚò‰BõÄioœèa¯Üd·±ßìKKKOBVÒuoi. >Ùˆu‡l'ëÏ_¼|µºön'Sï«I8½`›6øítì$Šâ'…å4O”s™J1sÒWk§@`ÙÓÎ˲‚p¶‡âœn—ÍxÖÃg,C.+#K²À0ŒØ?ßÝ¥é»þ@°f›)µìý‘F‹ÍÖÈéøOÒ(Ùa ­ê] Ô½&Ý‘„œ«®ZòÚò‰Bõ ÏóF‡Ãœ›Ïï  WKn+{/—÷š?2Þû͇_mŸ¨—$ ‚aY’¨+çzÅ_g …²º\¶L­(Rf÷ WÎTäR¡r{ÍÅã5à4“#(ÅÄÛ"ôÛZâÉIÄ7l=IV(›oˆÈm|XM—¢oü ¿û2­OËjbíËý6¯ë.Ùa ­ê] Ô½&Ý‘„œ«®ZòÚò‰BõŒÚK:&î?öÖŽc‡9÷ðM· ž>¨=˜{Eâ‹É̓ò 7ê&ɹý¸=y¸À’PÎŶSðÇÛqSdòQVørz+–ùì;x¢ÏfyIÙø7~8Ï*õ|róàlPШ•ë"#UÎ.EñG;qsdü‘—’ùRj+ÖùÍ[€0g¿,---//«”¢¬Ã!u’Hä:½ ±Á9pˆéx²¨Úz­@VïZ î5éŽ$äÖä³éÇKKßQ=“ꙩ©©h4zÓ­@uÙ-ÿ@! îÂJ4%¦ÀÌ4/Ýt»îš³ÎIÝ :¤f/¥o­ c}ë“Ýårr]¸áev¸\vSËÙ):¬Þµ@ÝkÒIÈ­É'B!ôõ!—³ÚÿèÉüüüüüü£)'ŸLwcz úÔYç„æœg½”^lìú®?ÅhB©Óy#Ų´"òC,@Vï^ ®5é®$ä¶ä³é–]„î$¼þ€Ð„(ÎuNäs½”^l¼µ.Œt~+5øî”" m÷¤¨ÃêÝ Ôµ&Ý•„Ü–|"„Bu×ÇÎɹ^J/6ö }ó—B!„BÇ!„B!ýôÈ_8ìw°ÇcpØ7Ð*¬V «w-P÷štGrkò‰B!„zJßú’sx 3ï[>‹ðRÁu•’2Û«EhtááÞõÃèj„VǨ¨Ãê] Ô½&Ý‘„Üš|"„B½Åçöb‚\ìÎà€q޲¹7/k„É79råÞ7Rï_dOïçIÙÂ3ÞJµýN¾žTSgô†Äñë•T²ŒLO‹Ï·ó Ôk«NYíÈ—«ÍJB_õ-HghÂQÛ\ߪöðô„¿ôªýs¥÷¨ºöÝ«¾ñƒ"7ä.<ôW–‚ÒzOZ:¬Þµ@ÝkR«K|íâÿÊmlg÷!„B=3z2ãe º÷*WiteŸ†.¤ÓQ¨äмÇh(I_¤qŸ%ŸØlÝ·¥m‰›chšy¨¼ÚHs¡'áÆVÒ4r°b!±±y\UcO]õ¸ìô3©í47(l­'Ê}ýyª–ºÔò‰R¦&+ —òe%hdZu›Ëå†Ín‚m¨—õõ—n «ÓY=^) @6™ N:¹½6ƒLÒ˜2ñ#nœëNx}ëh÷Ôââbr‹‹SîVí@VïZ î5©·Õõ»5íìÚŸ!„ê²R|eyyùÍQwFMåÄÚûT³ƒKs&VÏû¼Äqò¤õä_ƒgÄÛH¬®<¶vP«'_o¤›“ÛM¾]Yy—5ŽúÍkÛÍ›G|ÄþvœvSã&¨¦®žK% h‹Õ,•? óLþÙÅÅ……ùG3ãói÷WÌçe›5Ù¬õB±¯†R´APü“c.“ ,Ûne¨ixd°¼·_êÞ!ê¼þÀ—óyªÞ…›ÓJµb>/ñ-¿]ÖÔaõ®ê^“z[]¿[Óήý‰B¡þ@¬Cn×à ƒkoŸ»Ô@9܃õôj»ÉKb—NÇm±˜ ÕœÁ_K%Ž+"€X(Ë6C³sYÊdÉ.U ù†4$L_=ñXzê(÷ÔbÄ.WÓÛÑ’•ýõ—‡”É™ {ò¯øBžò»))Ÿ=¶;ŠË#IRQ‚5[­¥Ôe’l}E€qz•ƒõ¬Þ®Å×¹þ!¿Íw%ŸÙ‰f®¨Ãê] Ô½&õ¶º~·¦]û#„B}€²…f'ì|úèxs/_iœ¿Ò@X¶ÚÉ^û%½|©j‰Ì=‘$¾ß)œmW>þpÆ ªZ¦NJE—SmrE&ÇáíF¶!‹º`…?ÊV|Ð¨ä ¦)_ã`½Aznä®H–e‚ ¤ìÆó,í!ä–3»Ik0hJo¼ç˜îÅ×7‰rŒNOG\†Îã]cÓÓ£êŠ4ªë×½@½=¢~IÈ­É'B!ÔOH‡Ï#콎îå><€Ùf• …¶ËzYwÈv²þüÅËW«kïv2õ¾š„Ó!ÕÔQÜ ËÊ(bí¤ØpØ-†¡±©aó‡zçT”s™J1sÒWk§@`ÙÓÎ˲‚p6ʤ8§Ûe3~èá›ì6Öà›ýbiiéIÈJºî-Í:Ÿ¸¦ïúÁšm6¦Ôy/H£ÅfkäZ„µiTׯ{z{Dý’[“O„B¨ŸÐ4­‚êÍœØ S>l{W ‚aY’¨+Šòu=´J7öqµwûe‘4:l\½\h(”Õå²ejE‘2»¹r¦Мӥo‹ÐokAŠ''ß°õ$Y¡l¾!"·ña’›É;>ä _EÓ2Tö^.ï5_b¼÷›¯ñþ­âñ»/SÐÓ²šXûr¿õž´iTׯ{z{Dý’[“O„B¨gÎî¿ðhi*»/×;~`¤kjÉuöûÙ£‹™«U«í?ñêéƒÚƒ¹§P$¾˜ÜÜ8(wؤ~¡šºlb×1>ùØGr£V8Ø>ª@n?nG.0¤$”s±í”ðaüðq_ý5ËKÊÆ·¸±ðÃyV©ç“›gÃÌF­\©ÒÛKQ„Ñh<ûeiiiyyY¥e¹¨“D"×éc Α€CLÇ“EÕ°Z4ªë×/Gtkrmíì0PÓ—–¾£z&#Ô3SSSÑhô¦[ê²[þB:'Ü…•hJ M™i:þ"^ºévÝ5g“º-tHÍ^Šj¥Ã’·Ö…1‚¾õ„Éîr9¹Îï ”ÙárÙM-g§hÒ¨®_¿Ñ­Iȵµ³Ã@!„Ðׇ\Îfhÿ£'óóóóóó¦œ|2Ý~ÂºŠ³Î Í9Ïz)ª=–Kö }×€b 4! ‚ÔéÅ‚bYZùF‹!–F ­êúõËÝ–„\[;; ÔtË¿.Bw^@èNÂç:'ò¹^Šj¥Ã’·Ö…1‚Îïq¥߃R$¡íž4iUׯ_Žè¶$äÚÚÙa „B¡îúØ99×KQí±tX²_蛿„B¨­Øí7Ý„Bè:àø!„B!¤×uXG ö ´ KøÂa¿ƒmñ²Vuý´é×Û#º5 ¹¶vv!„BõT»iöL<˜_|útáñì¸ÇÜ,j ÏJ8ÿ¨¨Zbmõ v¡eµ[ _"¬6+ }Õ· ¡ Gms}«BÚÃÓþÒ«½7îÕ_²‰âl6éH#|›ñƒ¡ étE”*¹"ï1’ØI’@’d©!Êç*¸ÇÃÆãwoÛ=þB–‚r«{o*rCZ¿¬U]?­@úi‘Ä×.ž­—©~[rmí”E¾vñYô—„BuÑ…›òSßxdØf$ÅZ!µ¿—<©ËêõôkTNÒ»É\Õ>åäÚoTGÛ!7ÇÐ4)òQ=xµ‘æBO­¤i4ä`ÅBbcó¸ª8ÆžºêqÙégRÛin$0PØZO”ûúó´e–H[ `ÊĸñöÙ+—6» J´m ^n×[»}¬Ngõx¥(HÙd&8éäö*ÕK^B› %åÄÚûTsäFs&VÀnl‹þùÅ……§³Îü»XîÃÿ Éù'ýÊÞf²ÖöTä§Ü­†-´{jqñ¿å_[£º~Zôë°Iý’~igSQ݆¾º ‰Bèöq ùÆù)Oȯ½}±ò*š(²6‹æ\¤J.¯I:6ª2xF¼ÄêÊógkµzòõFºYËävS‡oWVÞe£~Gsd1ð±Ý¼yÄGìo§Ái7u¡ù7©U–LÃ#ƒå½ýÒ'=R“vqqaaþÑÌÙœ|óyÙfgM6k½Pì«¡m`A”ÿä˜Ë$˶Zª¿ä¥â·}•4X‡Ü®ÁA×8Þ:®3q'¯·x‚óFÆüåõ½²\`’«í¯e„¶ûjÅ|^â[~Í—óyªÞòF£º~Zôë°Iý’~igÓÿI§.ú¯ïËåŽC"„ú: ˜Llìÿf2Ÿl%šeh¨WóG±ü µìb—NÇm±˜ ÕœÌSK%Ž+"€X(Ë6C³ËXÊdÉ.U ù†4$L_=ñX7Æ5êUÖ³"x϶Uö×_@P&Wd2ìÉ¿>à yÊ襤|BöØnªÅW@’¤¢(k¶Z)J©Ë$Ùrá¨î’—Ñfü@ÙB³v>}t¼¹—¯4dÊ>䨥6‹5€?Ìúº¬{åTïÓöHØ›y{To×Iä3;ÑLë—¥ü^´Ý¿£Fuý´é×a“ú%!ýÒΦ?J$¾ þÚ½{6¦åR~„ºîÇKK7Ý„P×EñÏ2™ßÝÝ=·?ŽíGóù^Ì%ww3íg]\¾TµDæH_Œïζ+¸›ãu¤54¥7Þóçz²(ð§“£ù£lÅÇq €J¾`šò5Ö¤ç&š{U²,!e7žgh!·œÙ­»¤a(2îå YÖã³värr3žS]ÓÜzü@:|ao%š:? IP>œ’ ($ùáœTj‡[ ÛìD ô&Qi=Ðè ‰G»'ªß SŽÑI/•‰ÅÒê †4ªë§H¿›tGrËÚ)Èòïîî~ú¦BuJªÇÞÇÚdóMDÜÅ7ÇZ3/z‹u‡l'ëÏß÷Ûó‹{Æd1É ÅIDAT·±Ãì¾Óß­K–ýÕh}8ÌE“ÍuÃçT”s™Š¡qR‡Á›h핉‚,KHÀ²¬ œu‹(Î9h–ŠÙBsmN›’Ÿâ3ÇΙq' ÀY>½q >x€vëhšVáÂJV±Zm 8 $7äàªÕs«MøÔv¼îš±µ™H-6›™m5&X³Í6`h¹êúiÒ¯Ã&Ý‘„ôK;B¡«3y#!·ÕÄŠØì"ÝøÕ’ –% ‚ ¾NWZ«ì½\>µ/Êé÷Ë«ûµ†BY].K$cqråòÙˆ”bâíû£þZ; P<9áÜÃV†¢ŒNß‘Ë}XmòŽOFƦCƒ¤VÉÏð™­ènQhäwÞÅNZÞNµÝü%H×Ô’ëì÷ìÆòf®t°y2F+j~oçø“AL#Û¶= ×·ZŒXª‰µ/÷Aiõÿ&¿û2Õúe­êúiÒ¯Ã&Ý‘„ôK;B¡«k”+D`tjÄÄjn7–nÝÁÒÏYœr7¿»·ä)}Ë«nT©\OÔÌ= €"ñÅ俯Á×féŸÞ,ɹý¸=y¸À’PÎŶSÀ§Ëˆ‰>›å%eã[ÜXøá<«ÔóÉ̓³Q£V®‹ŒT9[Nв¤ ¹zøþ=3”â©¶ë£ÑxöËÒÒÒòòrgÇ£Áà 8Ät<©~“WÊ:rQ'‰DNýr Fuý´é×a“îHBú¥!„ÐB:'Ü…•hJ M™i:þ"^ºévÝ5gݘº-tHÍþL/6ÞZÆÝXƒ}”ÙárÙM-§ë˜ì.—“kyUD£º~Zôë°Iw$!ýÒN„Bè‘ËÙ íôd~~~~~þÑ”“O¦Û> ]ÉY7†æœgý™^lì×}ý X–VD¾ÑbˆE1šAR¿h¢U]?@úuؤ»’~i'B!„Ðåœucäsý™^l¼µ.Œ®û{\Eøvé‘m_Öª®ŸF ý:lÒ]IH¿´!„Bèr>vcÎõgz±±_\÷ü%„úš[R{L„þwO¿{¿´³C7{˜}ä~i'ºýnö\ÒÇ!„B!½pü€B!„Ò ïcƒB}„qø]Òq²(jÕÁ2úxÆËAÔ««Wz‚’ÉÿpšÙÑw¿H£+â•âÙ+=æŒÞ™açÕfFëà)ËðXÄg7’be?úæ°åÃ’4YG¦Ì™èåvp™„è¦ÿد¥I¬oæ—üjûäâ Û©z‚uá¬S×Y–>Ó³v"tY´50öXY¥žOÆbG•OWK0ž™‡æý±ÂÙeLþ‡ƒÆÌû¯¶OBOf¼ô‡'gIéwÏcEÒ88 ZXB¬å“±í£Š|©uá¨B]j 85á7+vâÍ»ƒê¥ÞìÕ•w_~¹ ¡'‘Î÷¥ÅÙlÒÑUk󹽘 ë9‘ɬ­ñ@e‰6r†[q™^÷±ß°‹íT=ÁzvÖu9K×üßP+¤34á¨m®oUH{xzÂ_zµwþ½†!—!»÷qðŒ{ÔG ç“UK¬]?ˆ¢h0xþj—–Bi0 †JßDóí—uŽM‡lgoÙŒ#2n¼ŽåÕú}Oȯ½y‘ÙA¯ÝBÔe \¡1KùÝËwÊ96;î/½Ü-«‡R-I…"æòûµhYæ|÷¦GOÞgªû«Ëû=™®sQ)¾²‡Ð“ð§ÛMn7µñv%fÌÎø©ÍœpøzùöL?±¹™;;¢¡Ð˜¹øn5Z%m¡ûâÊNñbˆnPOHËÌ“V}»²gŸ|ä2fÀbà_íæçïù2¯¶ÓÓ“vS¢¬ûØk b+m®F«ä`d6â;y¹W¾l“.‡´Ž„mùíµ¼­ÿF]§zz«F7xF¼ÄË•œlòO6b鿬}©»Dt„z‰6° Ê€Ò-$vµ°gãÎå"3OXÓðÈ`yïU‰™<· “vqXQ$±V<ŒÇŽ+2M3 É O}6V©åÛ±t­Ísµ>ÿäúäÂl:…B‹¥ÓCE!ô“É411‘Éd>Ióí·‘ßY}öìÙ³·GB=ùúÙ³gÏ×w‹-ïN4ËÐ VóG±x¦`âÌB>S–@r™c63-›©VÒÈqÂIº(ȲX>ÚÙJUoÅ£Rk©ÄqETäJ¡, l«b&Î,œdË YæO²’ãZ–l"¹á{ã®– º¤–™—‹™tM±\¬È§ŸÆ¥|A–d©ZÈ7$Y"È6YþüØ‹ñÕ·¥†,ñùRaÛ¤þ“¡ ÂÛò±Ýµ߸^åôV%ÖÏnªOЋéÃöNR§?:B]B’¤¢(k¶ZM”¢È$y®ón’Ó™³Ñãõ*»Ùóß,Uö×_®®­­­¿ŽÆ‹ÆÑ°ÇV‹rðæå‹µí’9jó†§úÉõÉõ‡D" ïÝ»Ç0ÝzßD!tJÅL&³»»ûùKšo¿Š,I’¢(²,IíúlüqlÏ8ž6Èõb.¹»›©)@„Á357(IIõrË®©jI‚ ”³õwÕ“ÏζeŠŒ{9H–5Àø¬]¹œÜŒçÎú^W¾Ù¹òñ‡6]íóW…$Ú~ Cã÷\|ìJÏðJíÔÌ<ôî5€árûýìØ)‹w<ìæHYÚ…«7I×Ý߇ÆïÕÄËî´¢«žÞ-Š–ª–ÈÜãIâ‹ñé uÑñ¨ûdY&BÊn<ÏÐB–?žsCCbú͇• ¤54¥7Þóç>HdQàOÇüQ¶âã8€ŠJ!uT GÙڜŠ©üÇ:çÏdÕO®OƲ,ïîîª~¶!„êî¾ýJ•ãØÛãA›l¾±‰ˆ»øæXP¥~ôní@{}‚jIEQàC·› Ƥ( @»¾;Ÿ98vÎŒ;YÎÂð郃‡åååKße}Òøsc 5ÔPhÌÉ*ÒäcAJ©ä%ÛùYBôg¾3¬kÔ+%^½:‘Æ{ÿñ¹KY—j’ÎÔ3[oÁÉ 3µ•ëâBOtµÓ[­ëÙNÖŸ¿×n^ëÔ]*zïÏdôµ$ °, ˲‚ða¢+as òéµ³y¯&»5f¿ðþn]²ì¯FëÃaö(šl.¹>3‹â§s_?yWÔs&ߊK „ê“7r[M ©ˆ‚ BóëÖz­ÊZíF€ä¼c÷†--ßþUKÖkUƒch€! Ê䞘›úðíSƒçéû˰&#ÓrÁg¶¢»Íã4ò;ïb'×:í£^«ìƒš$Y»ÓªT«ªÝÍ&)—HÅÚQôÕ‹/Vž¿ºô€Ï¢?ó!‚¢(B!™·Í 3#u:ÿ©7MRÊû±œ%²S]= Mª§·’ –% ‚hÁ©]ꮡ®)žœpîa+CQF§oˆÈåN§+‘v—£šÎ~|7­ì½\>µ/Êé÷Ë«ûµ†BY].K$cqrår@.*V·×L“¤Áæ4K•Á[Àû/!„P?Q”¶_Ÿ4Ê"0:5bbˆF5·K7@LÇã–±éù MH|>¹]•ÀšŸõ6'{Ï-OoΣZRLÇcæÈØÜKˆµü~sŸRv×9~ï‘—Š»¯£©V+Àåêáû÷ÌTPŠo¤ê—ísÝ]àÑÒȇ»*é&¦ã;–±‰Gà ð¥ãÍ­¶‹§åjòý&{Øqô>u•QÎg Qͧ~ºO'Ž‘Ç‹¡Fé0ÝqÝ›‚õ7‡|÷›ô\JÄNŽÚÖbIµª'˜êFýQUOoµèõôAíÁÜÓ(_Lnn¨ÕSWò©´S5:B=%eã[ÜXøá<«ÔóÉ̓Ӯ>iwÙ+é­SPÎíÇíáÈÆ”„r.¶€?ÞŽ›"“‚´Â—Ó[±Ë>4…0W9„BèÎ"Ц¡ÛtN,¸ +Ñ”@š3Ót¼Ç7 CèúPC÷;3/6²7r0¼þ€B]€ƒ‡¾'—³™áÑGOÍ¿¥"–“Û—œ¢ÐíEºòG›7uû`¼þ€B!„Ò ×O#„B!„ôÂñB!„BH¯ÿì¤F¼IEND®B`‚btop-1.4.5/Img/tty.png000066400000000000000000004311121506333644200145370ustar00rootroot00000000000000‰PNG  IHDR’†t sBITÛáOàtEXtSoftwaremate-screenshotÈ–ðJ IDATxœìÝw\÷ÿðwD aŠH‹ ¶ŽâƒR‹£¢XÔº«T©£¢¢ (Z+Ô£”Z•Z*®jÄEŠ ˆ(†!„$¿? ~Q#& ø{=ù#÷ÎçsŸ÷i<ï»ÏƒÃဘªNZ Ô (Ô ¨&«t9úñ;tгiª5À;f4héÁó×ï=ÌH½~6hq½ãº}ãóróãW7¾K×èè´éØå¤ô´›‚=†µc1:Œñ>òÏ­Œì÷n_<²ÁéCö;Þ€CîNUÞ®R‰` ÔõKs‰¡É9=jY¬ š {Çž¥#³C|·ž*0w\¸lƒŒ†, 8µ¶—°öMÝ]ÜÛ5½cîáŸvF?ëãþÛŽ)ÆDœÑkæÚñ²ûo?Shj7û‡o6Ǧ¨žÜªÜ]¥âÁ&Á`÷àpº6]9ÒõS}ˆ†ô—'ü»/†õû-øù̕ԙi×NLëÆ!¢W'æçÞñ7Ú÷ôiWͱb?ö'"‰ûòósÏ4l‚¬^aÃëP`n8G§]’™Ñ—ã|x\Gˆôû/ ŒH¼—•~7îè¦ñ–jÿËsd¿eGofÞ¿uü»žœæË ™´ïhXñ(õðO>¿þ²þ`‘žµ1µ±Ü»â—å;îŠ_nÞiæŸw²Ò¯ìú nÙê‹q]7¿ßôóÞ^!Ç9Ž0ùÏ}?oÙöË©ðsIOHÆ/4÷f¨†ÜªÜ]¥ÂAËù™ÛgÏ<|çFà—gKN>6û#"2è~ úfzVÚÍËÇw,Ò¾ñ#z–ÖVMFSmhSÔbÁ¸Ü¢_k^<û 1Ü{¿ç¦B~Ør"¿ãÄv»YÕ¢çøõÈ'§þº#ý`øªÛ÷Ì ƒcË–ˆØZktÙ…Ræ€6œ6#Öí_ý¹vìšó~Øåë»çYü›§Ó²éìKgS%Æý¿›?R­Yóhƒ§h¿1žÔL†ìJ$*)ûçñ¾Þ—\ýJk¦Í@;CN›÷­ßMššš’,OÐÃÿŸpwý¼<¢L©øò./ï`ÝÕW¯ÄìWºç« [n7óV¨ˆÜªÜ]¥âA"jcgÛá‰ÈÄÑsNû¢rî€á¶m=~ù~ïæ–î‚o´ía¥-mÖ }g×¥~Ô³—.ñíÞøR!ÿá#–FÝ'eg~\¾-¾MÞÀyýìMÚó¨è]¥ ‡¬ú¨@ÔN·mNÿªŽî"öG={éPÙÉÇþ‰ÕjËsøˆ¾}´vß#"*?»ùÛ-—5'ÛÎì3Â@ŸK›1O€æÁ1³Ÿ½Ô}Î¸ÞÆìÒ«?þVùú¦Òø?wGq?FŸ¨?Û¬¡®FR‰TC×€§Mµb" õúý|q¸Ï¬‡>ž¶Æ}ïŽÇŸM~ˆË[ ÕR×ÞªËiÓ SUúÃ3‰üƯîTíåí*åî?åÅD5 Ço¶[06'tGâ¬ùãÕÔØl.·-Qm®fUÜßþí½6y5­Õ:C½=‘n[= *|Æß#|Mò {¡~µS‰â%jq£ç.Ô5Ô‰Äb1Éî^[÷¿ÍÇDD2™Œˆ$ 1o8“¢TJÿ)Ou5"Þä ”±µ¤Þ–ˆ´ÚÔCjkj¤DµµµDô¦4› O€æñ¿½"Ûæ»¿N¬øX½èú_?x8VÞèq~ñù¾>ß`¹F,&&Kø÷«Sd4óQMMMÝ'Ï^‰xHU}焸̚Ø%Øï^]»Jh-þ·«di|Ѷ­NƒRÄ|ùõƒÜªÜ]¥âA¹Ä‘~+BÛ¯¿lÏàe²êGýÎÝ{K(¯%[s†Žv]òš:s5)ERþ¼~øÏGþ/ŸxÃÑö¿Þ<^¨†¨­š‘©­Ó':o]¾Õàs6›Mu†L&«_d4ž®²ȳFLTö÷Š‘?\¯žR'y-ßežÍã…½â§Sæ|¬Uräk»ï¢«èk0xéæ…½…Ñ[=~½-$¢üü|b˜´3&*¤ö&í‰çåi8¦ïs{ç_òLƒˆñâ0ØU@Ë÷®Rø¤ËÃ' u“»S•·«T"h$w¤Úû¡Ëxwí;vÙ>Ÿ­þîóàGåíÈë’gëFšéå—dϬ|ùW¢ÿväß$×/©ÔmcIj]ˆˆ¥á¬«û¨¦ê·¬Û·4qôÂ5é–4jÑB;NÈÔn·Êˆˆtº.úÚÊd¢-QîÝd>•””™þÖ·fF·Ñ5E>ÊȺu³œÆ÷1Ôæ™°×Ìã4O,wõ“û©jóhrzzzDúŸN_`Y¨L:ù{gäü1–L‹.jDºŸLZðmjøþË9DL»éK3È:û_o_%¢´ðÓ}3ëJf¼îçSMk®D”ˆ(î†ÄÑv–ïJÖu½ÏÚÿÆÍ‡*ÝH€æ"w§zEή’ŠN—7΄_N;?9ò÷•Œ2ª•U¿:iíjšúa¢žžSÝ[gž§¼¢æ·'ç×Ïþã5í«ÕkXc~öð»$©»~‰¡×{Æj]aÖ™ +wÞ&¢ãÛ~¿ã«CÌ~rßÁÛ:º)RR˜è¼÷Œl¯¯½‚œ4„Égwžº.$+y- Tš'@“c0ˆÈd„ÛÚõÂ_oþ§7aͧº{[ðÌ[; üÏ{û/çIÓ®$<ñ‰ðŸkYu­%É?ÍúŽû£»ë÷}Ĺ×f{üQ@D!KÝ:nþþ‹¯WØIŸdœÞ²Ñ÷|³þ¯ 2òwª‰òv•r÷Ÿr‚]å$I û{øìIK&|À“=¹ÿ·ïRßËo;¥A) ‡ó|aÔN©âg1þË9èW'ž]¨±ÒÇž öø5Q÷8ÀÛPíÎ »JhþŸì¬þó‘ÿûÿGMåÝ¿U®;›lÛojÖ éàü(ê?΀ÿ0ÿþ#Ô­Ó¸Ïä9s§4kÞ ¬/@ýÐ:]½ÍÇÛÏ×¹cÝòç{òós¾núØÊïiöMÄ -oùؾ¦»Ü ÜîD}ì=73óÞóÁkFšâ¸RF‡1ÞGþ¹•‘ýàÞí‹G68}ø†âÏpòÁÔüüÜüVÈøñzÏÝŸò #õÚ™@·¾<"¹-;?÷"¢a[3Ÿ¿P¾´…f¸ò3ï^ýcÓÃýý3ëÞrºOX8Ê\ 4Ò]zëÀ²à$""ªNÏ"âËëþúu¾Ü]ÇÁw¿çXfÒÑ}'*{¹Ì\¸‡™9ÀõpIoskǽ&`®èê>ÿKZŽ‹¦ÌþáÛèSß_~msÞgÞkGjËdÄhdmGøðϺýç/'Õ†ÍüÒ3¨<¹÷÷MŸúk¡~hñ̾‰¸º¦Ý÷1Ìÿ>Q]ýNDÄ0w _ÄźßÈ:dO\½zEÄ/*⋤DôD^÷¢ûr‚êÃäth7ˆK¹?¯qß|“Ì*{_]3hX?öá°ÚwõGÐ:é“ÿÜ—Ÿqnÿåünf.Sº3Ê)ñÚ^»q……D™:¦‘uv:LŸröZ¶å&ãôcá¬ÞÅêzuŸ°uŒÍÌÊÉP«¾üЛvx𨠶 õ@‹Wu/2ä ëå#§~hû¹ë\z¼ûϸZ"ê2ùÇEvm|œ¶á‡˜¨ órxDÄÒî6ÅcñeÎL:P"§»Üu>‘×ýIƒ1düì;ü¦ßê÷Eq¸Ï¬‡>ž¶Æ}ïŽÇŸM~({µ »Û¢-3Mïü´8FÖ~ƒˆÕ†g¤Ë)T¿Ú–Qv¡ãÖøm#ˆ¨üO×®DD…aëWÿ•CÝfì]:ˆˆ¨&3:$“H³×ª“› ËcVÍÞ™Ö›ƒú ùŒurT¼qØ©ð77â u¦I¹gOß‘õübÂxŸ§fîø!23îtý¤‰Óü^³†L5ÿð¢9Ýå®S˜%§{Ãú´ŒÍ 5«ŸæVH”ßÌ÷ÏKqÏ^‰xHU}焸̚Ø%Øïiè™êÕ”×öØ™¥Fßÿ}»n*ƒöœã·;-éôUhÕ+k—ÕÿMUÇíšç[ûƒçh¦DZ©ÊŠˆH!ÑÉÿZ3LÆmûm‘UþÓç|Ø þÚ¿£7~ëP?4+…ª…Á½ P§ò¸øäºåVvm¿ò¥6§=Iþö·}‡8ï/ &ƒA$‹åw—”ß½Œ/ âñxDÙÔÁõ@üZëp7‹¹§”ÝÌ÷Oÿ8 §Àô]cnoàôKƒÉ`1êÏhÿ1æ «ImªßgöÛÓˆžžõù*S—ˆˆlæ­*8é±ü—ËÕò(++#âñx’Üké_m'Ê.(x]2œKöÿôy›k¾“W_zuæÅ«GŠ|ëP?´xZ]G;õÔïbÁ&âöølêÔ^ãÇ>’ÑG}zs‰âï$I^ß»únÊcÎýf¯sg\Ów­E‚3×êo²$·ûKAùÝ“â˧;¸øø /TõqéA¢Ø˜DLž~‰(1î†ÄÑv–ïJÖu½ÏÚÿÆÍ‡DDdÔ½§ ‹ˆeýqWuJ«¡šÜ[së:I>¯%zöøÚŤB¹+½s¹ìëqSÖý(Œ×þìó6²ŒˆÈ,2•×Rc Ï%=4òÂ/ð{OréM²ì˜Ãñ¹o»Q¨Z<½¡Küêï¿dÿf¶¤èöA÷U»R%òë­,Ú1ˆL=¶:INÌj‚úÁápž/ŒÚ)ZŒ'¼+c¿~©õ^Ôª“K­eÛåæ)7øR€j…ú…ú…ùÓ-Q«¸†þuZuò iÙÊyàwã.”ü‡^U‰‰ÊvyKÿùïç@Q¨@Q¨TƠ§ãïffÞ»q>xÍHS&ÑÈmÙù¹ùù¹ùùÓo_8´vL‡ƒÿxØ Ûšùü=(@³·Á”¿º¬¾cýý™G dÃÌñÇ“gÎG/·ãª:»·`¹Ð2-Ýz˰º%†¹cûCÑVwîZÿsÒlZ·ú£|õN“ýEÅž ÿ}µ½ £>f>jeБȸ‹çÏîß8ÕZKÉa1ÿ@Et|÷{Že&Ýw¢²—ËÌ…{˜™\Ÿ= Ús‘ÿÁèY3ìÞ˜ÖûkÂëäuéb¬Ñ0R]tÿ™·ÞàýbQã›üm†í0m{¸í´˜ÕEßy§‰•cN…ýDó(w‡ä)ún¬%ŽŽ®´\ ìƒÜTKŸ·r&3ÿù3ûLõ·¬VûkfúìG ›Å濹뜞Ë/#ö i µÂ]GŸÒ™´yŠuô¶¢öÎ>Ë>8¿ÄeñI‡Ï}‚|¾¾õåî4%Fý "Ýíq)÷ç5î›o’Yeï«k ëÇ>FDÄ¿qlïÞºÎs85ÇÆÆ‚â^§:·½ùmF*DYÔŠƒoY?èqÚT]ùK$”%•¥Xv´¦;2b±Ù,“¤Rb]¾afÍÞyÛn½]¡Ò¬˜ýÝ, uîЙˆˆ4zku¿^æ’.‘ÝôËì)#Q[¯:û~NÕ3õ¹Ü¾\""õî½lnŸœZ*&Ê8q4ÆmVocJ+Rbèw°9 KTZZJD”{ø‡Ï¾ø1á…â1‘šºšJ²{OÄ‘¦¥‹AÄj¯ÝÑ’­¥Gy‘!Iý|}×îxdÕŒ][ÇîpkUÅ1- VŽú<{ž4—Ç«qfïî”pË*昩ÓGu×*Uòù3 MNGs>_@DÄårE•âºn²_Çù!J„ó-‚ŒŸ}‡ODô«­I{óF|jD”ú¿kT@y’ŠKÞº_í躦VR~£ìQ©3ˆ ¢×OæXŒõÞ0£p÷²¥q%RU§©ö8}Qàƒð2rý7Ä`fß6âéYþgöùîÃÝÞܸe%T¼gÌÚß"f‹³/n÷H!"b£Áª$"¡DÙÑ›bà-i›jV?Í!""óÙܘMD$ÌúsÛáGÔS&{±µìå¼ÖÓ“¹;ÿÎSW§šj¦m°á‡2"bµ²xÓ|Ýã»Âú¸†­( ÷]±'±BÕ™*†ÓÏÈÝ¢ì;·š†‡ò2IâKO‘HH,È ocEe%D5¡Ë§‡6ì^eS=“)“*W=áú%)ã ˆx<Q×ñ±—7 ¯ûm¸àÔÚÓ¿šø™]ï¡ßG=­¿È‰§§Ç jc` IôäÉ•¦ÞаMxæú²šj»­Aí³2Òîé?é‰ÿüuw­&õHôtÞYâ<¹«ùYÝÒNÛÄÌ 4¥[zzW/[æøÀná‹4øüO#ÔÊj_Ó]P^®ÑV»þš8Æ@ïÈ ©ÆJßjþ Þ7É ñåÓ\|ü„ªú¸ô QlLb- %¢gÙ‰ç¢Sþ×òþ•þ7Æ{ï­¹ªc?”!ËJ¸Z"2©D"yáPR"•ɨåo§â˜§µïѵæà¡ú@ýFUQ©T.Þ:ç’P(%s&CR#®‹‰Éd¼yU-C²ßýÎ~uoÙ®‡:wß—êq‘È´êîj½iÖU‡2ûL×ýàú“Ô×t%ÝL[2ÞÕæúáÌZS‡‰C*î)Vj|Ô*"[=§£ÄÓÅa«üñ¥@ïUÐ0y-«¢7Ìû©·ËЯ&Õ%…®ôÜ“òšãêŠÌ˜Ó™¯†[uðíÔ\õ*0Ýdö+Sœûìæ’ÜÔJ" ‰ˆèqô‰ÜJ#|w‹›zàæ•÷tÕ&—èË oñ¿÷äó_Û2Ôk›™çºÐ¹†,Aö•_½¼î»ô ‡ó|aÔNiÔb\Ñð®Œur ;®ê,@QZ¶¶Í3PUbbó Ô8¹ßÏ—jT  (Ô (Ô (ÌŸh¹ú7˜žÔ¸„êêwš ´úúz¯µ-ZÓ³•_’X¥êà8ÿŠBýŠBý 2}ì=73óÞóÁkFš2‰ˆÜžóvü{îtȆÉVmTc+×N^z7Ÿ/ç1Ä0süñä™óQÁËí¸ªÎï-X.´LK·ÞR÷ÄÞ&ñéÝÒÒlê^‰´êÚ¨wšì(*ö\øï«íMê‘§n>jeБȸ‹çÏîß8ÕZKÉaQ?¨ˆŽƒï~O'Kþ…}?ÏâÚ/ܳÅÙˆ3dÅ»?M=~áA±ë³¬p¼ö6JÊþ|߯î5:ï^™0?Lí'šG¹;lÌølB_6GGW]Õ‰*KŸ·r&3¿ A$£ÈÑ*ÅÊ*ÅÊ*Åvmݬö i µÂgvZqÍfñk""jïì³ìƒØu.öc&,>­=Ïçk+åÆ÷@EºÛ âRnÈ÷Í~žKƒ’Hsа~lê5|øÃûo”TU>Ž ‰ÚIÕy¶jiU¡¸¼P\^(æ8êw¸\œøˆd2b±Ù,“¤RbõØ0ËFCÕ™*…ÙßÝÈ"¬0$§ñfmy¼êìû9UÏ2äry\""õî½lnŸ I-Š'ŽÆèõîm¬Ôиÿ€Šðx\¢Ç¥¥DD¹‡¿qˆ×­Ì'];#YI±èãÙþNÅÛ‹Š mŒˆî«:Õ÷€z[»éŒë®5Dy‘!Iþ¾ÇFßU5c×ÖîW¶¸LiM÷¨bZ¬#ôýŒÐ jatü†D*+ͪ<è“ÿGŠ”¨’Ïç˜Y˜h¦ê˜›ðù"".—+ª¬×u‘%ø:^ •õ@ ãgßákhÔÖÖªuéóqqŽX]£uý0ÞRiØó¬—íJ'"¢‚èõS£9c½7Ì(ܽli\‰TÅÙ)‡=ÎC_ø ¼Œ\ŸÇîOñ”ID,¦Å$ӽ˟äRmLðž1k‹˜-ξ¸Ý#…ˆˆAŒ«’ˆ„eGû €·¦eln¨Yý4§º¦†ÅbU[1ä‘ö—l±¨FÕ©½‡i?9Wį_dµ²xÓ|Ýã»Âú¸†­( ÷]±'±B¥*ŒÓÏÈÝ¢ì;·šåk$yõ•@^0?u¦f'¢\¢šŒÐåÓCv—‘¬ÁƒÉ”I•«ž0ÿ@EÊø"GDÔÁõ@|ìå Â’b–aý=q Š‹‹T™ãûB³c_IVB})¦3ÜÓÒÿùëîZMê‘èé¼³ÄyrÿV󳺥¶‰™AhJ·ôô®^¶ÌñÝÂi´wê4W³¾…ìå³ ÊË5Új«Õ-0zGMUnþêINˆ/'3¿åKÖûÍîA¢+1‰µ²—/w?ã}­¶fö.cØ—.e¨:Ï÷€‰¦™¡0/­~©N8øýoi­ëÚü‰Õ½M»ÕEâ—Eº)ãOäPá»[üÚÞ­ð\±ÏàöúiH ’ʽV•¼®i^¨×63Ïu¡s Y‚ì+¿zH‘½®©\ ‡ó|aÔNiÔbœ‘h)ú7øçÙ¸„êêwš 4•±NŽa§ÂßÝúõõõ^ j[´¦{ ½$;±J…£kÙÚ6Ï@U‰‰Í3Pãä~?_ªP-€¢P?€¢P?€¢0 åa§ðü‡hÌ¢V>ÕZœE¡~E¡~Pƒ¾ öžŽ¿›™yïÆùà5#Mÿ=4cèt[|!Æg J³{OðÚω¶Z“lãßiÚ¢¶šD 3ÇOž9¼ÜŽ«êìÞ‚åBË´të-Ȉ¨·I|z·´4›ºWâ†ú'˜«wšì(*ö\øï«íMê‘§n>jeБȸ‹çÏîß8ÕZKÉaQ?¨ˆŽƒï~O'Kþ…}?ÏâÚ/ܳÅÙ¨Ãë÷9¾Ä¤¸HÕù½8½—èðÊø¡{ÊV—RöC]2µŸhåî°1ã³ }ÙDD]uUç©,}ÞÊ™Ìü†O‰Ë(r´J±²J±²J±][÷Ô ö i µÂgvZqÍfñk""jïì³ìƒØu.öc&,>­=Ïçk+åFý "Ýíq)7dûf?Ï¥AI¤9hX?6ñ3þ Û1Ï=àV¹ªó{?Hž•ÉÄ•ÒZ‰+¤µµÏjH&#›Íb1I*%–ñP³l4T¨R˜ýÝ, Cro֖ǫξŸSõ,ãA.—Ç%"RïÞËæöÉÔR¡HqâhŒ^ïÞÆJ û/¨Ç%z\ZJD”{ø‡xÝÊ|¢Ê´è3Dd4@ÅÙ½/Ä ßæÚÕÙÓÁxö,zvNª(2$Éß÷؈¢ã»ªfìÚÚýÊ·ƒ)­éÆUL ƒ•c„~£ŸñD-ŒŽß0He¥Y•}òÿH‘Uòù3 ÍTs>_@DÄårE•âº.²_Ç«b¡Rƒ£~hdüì;|U'ñ^bwó21ŠÎ <+fwÑwúÁ(o|aNAôú©Ñ‹±Þfî^¶4®Dªê,•Âç¡/ |^F®Ïcw‹'ŽxÊ$"Ób’i€Þå‰Or©6&xϘµ¿EÌg_Üî‘BDÄ FƒUIDB‰²£¿ýÀ[Ó267Ô¬~šSX¡ìñ4FK»§½èÆwUO$D¹O’¿±ü¤OaN«ÝÅ›æëßÖÇ-0lEQ¸ïŠ=‰ªÎU1œ~Fîeß¹Õ¼p(_#)È«ÿæäóSgjv"Ê%ªÉ]>=´awÉ,1˜L™T¹ê óT¤Œ/ âñxDD\ÄÇ^Þ0œñ¦N 5‹ž!Ëd&[ƒt†{úOzâ?Ý]«I==w–8Oîßj~V·´Ó613Mé–žÞÕË–9>°[ø"öN‚æjÖ·½|–¡!Ay¹F[mµºÆ@ïÈ ©˜ÿÐ*$'Ä—Owpññ^¨êãÒƒD±1‰µªNê}ï.*5²ùL=ól «·k×ê{TþdëœKB¡”Ì™ I¸F,&&³ÕTnÉ~÷;ûÕ+ïÞT IDAT½e»êÜ}_ªÇEÒüŒÙo"wÀߢk¦³nç$~Úkº‹’n¦-ïjsýpf­©ÃÄ!wŽ+5>ê„­žÓQâéâ°ÀUþøR ÷ª? ˆ¨¿÷¹ãÚ‘ßµ±TyrɰõWT›ikö,æûÒq«?ú~SZ&z°5ÿZ ë¦ ?Ž>‘»# bBi„ïn±jÓ|KÂsÅ>ƒÛo ëj¤!-H*÷ZUVðº¦y¡^ÛÌ<×…Î5d ²¯üêu Eöº¦r18Îó…Q;¥Q‹qE@K±Æ^чÚlŒÆ”;€Öa¬“cØ©ðw·~s[eŸÖÒe'V©pt-[Ûæ¨*1±yjœÜïçK5ªPêPêPæO¿•ÁqÞ܈ˆˆb²ªßi&ðÿ‡§=ïÕ Ü/¾uÐäpþ…ú…ú@e ú.Ø{:þnfæ½çƒ×Œ4eqºNØrêâ•KçÏìÛðeguU'ÙÊè´±?j½f‹öÿ"<­aVÜ´Zö—Y?&1Ì ŽiµÆ¬szþÞÁé~• ÜaÔžI¦öÍ£Ü6f|6¡/›ˆˆ££ÛêÊ4}ÞÊ™Ìü‚ƃìAÓj…Ïí´âšÍâ)ÖDDÔÞÙgÙ±ë\ìÇLX|Z{žÏ×VÊ Œú@EºÛ âRnÈ÷Í~žKƒ’Hsа~l2Ño{ãÌß÷ËkjÊÒþ¹^ÐÁÌTÕy¶’ÂKeÓ³£nHµ¬GV_ªª¨”< rGªcÕ…d2b±Ù,“¤RbõØ0ËFCeiÿÌþîFa…!9ÛòxÕÙ÷sªže<Èåò¸DDêÝ{ÙÜ>’Z* 2NÑëÝÛX©¡qÿ%áñ¸DKK‰ˆrã¯[™OôdÏäïë>gèZX RùªÌ±U‘äGð‰HgPƒWMGV[.j3d·^¹_Ay¡š©1åE†$ùûQt|WÕŒ][»_Ùâv0E¤ª¬ÿ¦…ÁÊ1B¿ÑÏx+ù|Ž™…‰fªŽ¹ Ÿ/ "âr¹¢ÊŠú34²_Ç«b¡Rƒ£~hdüì;Ï u“OÇŒûÜ~äàžõùë‘*ójõ8 µZ™TMÍĶWöTÌPãD¯Ÿͱë½aFáîeKãJ¤ªNS)ìqú¢Àáeäú†`mLðž1k‹˜-ξ¸Ý#…ˆˆAŒ«’ˆ„ OÖ(4úOšŒ–±¹¡fõÓœBÙ§û6Ùåžúã„g@\Úñ›»B#D²Z6ƒY)8ü©€ˆe«&««ÝÅ›æëßÖÇ-0lEQ¸ïŠ=‰ªÎU1œ~Fîeß¹Õ4<”—$¢šŒÐåÓCFd$k°Ä`2eRåª'Ô*RÆñx<¢lêàz ~­u¸›Å"ÑäIE;†/;U®êôÞ|q9‹­Ý–¨’ˆÔ´Å‚BÒîé?áá¦ùÛ*œÎJôtNv ŸÜÿ—ĨZU'«K;m3µÐ”çÕÛvëá¡!'è ç¢,Ay¹F[m5"11zGθï:7¤HññQ?¨HrB|ùt?á…ª>.=H“X«3X·¦¤ÅCS‘UÝ;o:`ŽVzPµú ý¬òÐûTžµuÎ%¡PJæL†¤F\#“ÉxóºZ†d¿ûýêÞ²]uî¾/Õã"É Ê!Jº™¶d¼«ÍõÙµ¦‡TÜ9R¬Ôø¨TD¶zNG‰§‹Ã7VùãKÞ«þ, }bh~¶óÖgÏ[û¾ÿêhfÙštòµš6‰EDDúŒ§ê£Ù›<+S6æ¶ÛÜÞ-–-É®ügqA¾”H$¬›2ü8úDˆ ¥¾»ÿß\(–êµÍÌs]è\C– ûʯ^RdoîÔê•)ŠÝ9Ïa狡Й=C_ÓÞ Ã3ÍËóå ¬¤2zN†ÜLúðäÒ/N¾û¼Þ•ÚC®©Šeõ}Ö÷¿Šç?€¢P?€¢P?€¢ZÓüs[­Wƒ³uT°ûÅ妖+bØ"#[²äþðjÕ«ÁŽ}ål¦âÞÅ:AUÔå}Á¶Êki?ÁòÕ Üo] „/íKß±¼‹Ý¼Oð«EÁ?Xxoàü( õ( õ€Êô]°÷tüÝÌÌ{7ίiÊ$"Òê1ÕïÈéËW.DžØ¾h°¢×4B=6öG­×lÑn$È0süñä™óQÁËí¸*Ȱ©X.´LK·Þ2¬± z§Éþ‡¢bÏ…ÿ¾ÚÞ¤þyêæ£V‰Œ»xþìþS­•½¨õ€Šè8øî÷t²ä_Ø÷óñ,®ýÂ=[œ ‰LWÍR;¾pÌÀÑS6<¸é›8^S”z¯:.>kÂ-74µŸhåî°1ã³ }ÙDD]õæNöméóVÎdæ4dš¶P+|öh§×lO±&"¢öÎ>Ë>ˆ]çb?fÂâÓÚó|¾¶Rn`|T¤»Ý .冬qßìç¹4(‰4 ëÇ&FvLàÓ…qÙ­„»R³ Tg«!)¼T1=;ꆤñ LF,6›Åb’TJ,ã¡;fÙh4¾oÙßÝÈ"¬0$§ñ`[¯:û~NÕ³Œ¹\—ˆH½{/›Û'CRK…"AƉ£1z½{+5tkºÿÀ{…Çã=.-%"Ê=üC¼ne>Ñ“‹{1Ô¸Ýút©¼w¦TµY¶"’ü>é zC0/2$Éß÷؈¢ã»ªfìÚÚýÊ·ƒ)¢æÍõ­0- VŽú~Æ hëû_ÅüPêPêPêPêPêPê•1è»`ïéø»™™÷nœ^3Ò´Á¡ó£™!7b|ª.»÷B;ýyéÝ|¼œÇÃÌñÇ“gÎG/·ãª:¿·`¹Ð2-ÝzË0""êmŸÞ--ͦA«®z§Éþ‡¢bÏ…ÿ¾ÚÞ¤þyêæ£V‰Œ»xþìþS­µ”ÏPßýžc™IG÷¨ìå2sáfæ×Ã%DDÄû|©K›ü"gø()ûcpyÝÓãH³íç‡õòÓÈÔ~¢y”»Cò”ˆ }·ÇFÖGGWZ.¨Qm¦JÒç­œÉÌ/hÉ(rt,yñiƒìAÓj…»Ž>¥3;hóëèm)Dí}–}p~‰Ëâ’Ÿûù|}ëËÝiJ Œó*ÒÝn—rCÖ¸oöó\”Dšƒ†õ«ûq—c;oþG‘GóUœá{@"­*—ŠË ÅGý—‹‘LF,6›Åb’TJ,ã¡;fÙh¨:S¥0û»Y„†ä4Þ¬-W}?§êYƃ\.KD¤Þ½—Íí“!©¥B‘ ãÄѽ޽•çT„Çã=.-%"Ê=üC¼ne>ÓÜué°äSnó6©6Á÷Šz[»éŒë®5Dy‘!Iþ¾ÇFßU5c×ÖîW¶¸L©:A%0- VŽú~Æ hµ0:~Ã@"••fUôÉÿ#EJTÉçsÌ,L4SuÌMø|—ËUVˆëºÈ|¯Š…J Žú ñ³ïðëÞê}þ픚à‘|š¢ÚœÞ+ö<ëÇe»Ò‰ˆ¨ zýÔhŽÅXï 3 w/[W"UqvÊaóÐ>/#×ç±»ÅGna+ŠÂ}WìI¬Pi† ãô3r·(ûέæ…CùIA^}%ÌO©Ù‰(—¨&#tùôІÝe$k°Ä`2eRåª'ÌP‘2¾€ˆÇãup={yÃp†Eß~íL]Æ\»•áÑSs¬ßµcsÌUœè{@³c_IVBý iážþ“žøÏ_w×jRDOç%Γû·šŸÕ-í´MÌ BSº¥§wõ²eŽì¾H£½S‡ ¹šõ-d/ŸehHP^®ÑV[­n1Ð;2h*æ?´ É ñåÓ\|ü„ªú¸ô QlLbmjÁ=÷Ô}®?eÏ_Ö öŠSmšïM3CaÜ¿w*Û:ç’P(%s&CR#®‹‰É|Ýñv‹“ìw¿³_Ý[¶ë¡ÎÝ÷¥z\$ÍϘý&rü-º&`Ú8ëvNâ¿î–J¢¤›iKÆ»Ú\?œYkê0qHÅ#ÅJú@Ea«çt”xº8,pc•?¾è½êÏ‚7÷屺·i÷ ºHüï²HX7eøqô‰ÜJ#|w‹_Û»5ž+öÜ~cXW# iAR¹×ª²×~•òB½¶™y® kÈd_ùÕë@ŠìuMåBý 2E±;ç9ì|ݧO/ܜټ¿$Q9>QrâÒ‡'—~q²ÙÓi2µ‡\Sëߊ«®Ì:ªP/QÖYßÙg}ÿë ˜ÿŠBýŠBýŠjMó²«^ zuNnþLž{xUNJrÉMþ-[*î]¬TeØ"£Wƒ¿¹>|5تÿÞ[uòoéb€r÷ÁPÊÿç\Ð$pþ…ú…ú@e ú.Ø{:þnfæ½çƒ×Œ4eÑÇ+¢®Þˆ«]òøTÕI¶2:mìZ¯Ù¢ÝHaæøãÉ3磂—ÛqUaS±\h™–n½eõ6‰Oï––fS÷JÜ U×F½ÓdÿCQ±çÂ_moRÿˆËР¼\£­¶ZÝc wdÐTåæ? ~P‘䄸r2sññ[¾d½ßì$º“XËk}ú¹c_CŽš†~w'ûN©)éªÎó½S·uÎâßS*ˆÉdHjÄ5b11™­¦NKö»ß¹srçÎÉ;ßóI”þ5?Ù1@T&fö›È`ÌTã°?qÖíœôìu·T%ÝLë9ÞÕFOSCÇÒiâŠ;wŠ•¿ÕZïAØê9%ž. ÜXå/z¯ú³€jŸþÐoõÚߣ 5ª‹RÏoÜt¢PÕy¶|­¦Mbч>ã©úhö&ÏJ¹Áº)ãOäPá»[üÚµ¶ÂsÅ>ƒÛo ëj¤!-H*÷ZUVðº¦y¡^ÛÌ<×…Î5d ²¯üêu Eöº¦r18Îó…Q;¥Q‹qFB æ¶Š>p#;±êfï¥a‹Œ þæúðÕ ¾u-ÐX'ǰSáïnýŠœ´ªýïLËÖ¶yªJLlž'÷ûùR€j…ú…ú…ùÓo×—Ã;50­æÕ`ÍÂÜWƒø*@óÀùPêPê•1è»`ïéø»™™÷nœ^3Ò”ID¤þáÈ•¿‹N¸|)òà¦)VªN²•kãßm}šÍººWbûˆfŽ?ž*x¹WÕé½Ë…–iéÖ[†5Tï4ÙÿPTì¹ðßWÛ›Ô?"OÝ|ÔÊ #‘qÏŸÝ¿qªµ²wüEý ":¾û=,ùöý|<‹k¿pÏgC"“I>‹ #VŒ2r¼G⇋æŒl͇¸-ƒè‚cÊ:«”uV)ëló³ˆLí'šG¹;lÌølB_6GGW]ÕI*KŸ·r&3¿ ñ {д…Zá³G;­¸f³xŠ5µwöYöAì:û1ŸÖžçóµ•r£~P‘îvƒ¸”²Æ}³ŸçÒ $Ò4¬[½Goë¤Ó'²*jjÊnïqµ[vš¯ê<ß;2±Øl‹IR)±Œ‡zì ˜eÓºÎó0û»Y„†ä4lËãUgßÏ©z–ñ —Ëã©wïesûdHj©P$È8q4F¯woc¥†Æý—T„Çã=.-%"Ê=üC¼ne>qGpkÙ§ÿ°`Ú§†âGw­ßtúQ­ª3må4†·(!q©(ë`AؼÈ$ßc#ŠŽïªš±kk÷+[ܦˆT¥˜+ÇýF?ã4¬äó9f&š©:æ&|¾€ˆˆËåŠ*+ÄuŸË|¯Š…J Žú ñ³ïð‰ˆŒ‰Áée#þv®ãú6=çoûiùç ‹N>Uuz­˜ðÂÄô8&‘†o\@û>—ÄçF¯Ÿͱë½aFáîeKãJ¤ªÎR)ìqú¢Àáeäú†`mLðž1k‹˜-ξ¸Ý#…ˆˆAŒ«’ˆ„eGÿï‰@“Ñ267Ô¬~š#%™ôÚ©Ã÷$‰xx¨[:¯êìZ1™° ¦þö¼§I©&ˆrYí†,Þ4_÷ø®°>na+ŠÂ}WìI¬Pm¢Šâô3r·(ûέ¦á¡¼Ü Õd„.ŸÚ0"#Yƒ%“)“*W=aþ€Š”ñD<ˆ¨ƒëøØË†3øŒâI$Êþ> µçN20iaÎpOÿIOü篻k5©G¢§óÎçÉý[ÍÏê–vÚ&f¡)ÝÒÓ»zÙ2Çv _¤!7(·» ¼\£­¶ZÝc wdÐTÌh’â˧;¸øø /TõqéA¢Ø˜ÄÚº‘êîäÒùúñÍžÎcÌê<[µ2™F?^Ï‚'×$6<›Î»iT^ºuÎ%¡PJæL†¤F\#“ÉxóºZ†d¿ûýêÞ²]uî¾/Õã"É Ê!Jº™¶d¼«ÍõÙµ¦‡TÜ9R¬Ôø¨TD¶zNG‰§‹Ã7VùãKÞ«þ, ¢#Þ;?ôÚtÜMORt÷Œçæ(ªólÕ„å|Ú~±ÑÒÈ!.¦xå]+ "aÝM£OäPá»[¬Ú<›O^¨×63Ïu¡s Y‚ì+¿zH‘½¹S ‡ó|aÔNiÔb\ÑÐR¬±WôŽß£qo?€Öa¬“cØ©ðw·~s[eŸÖÒe'V©pt-[Ûæ¨*1±yjœÜïçK5ªPêPêPæO´\1YÕªNà8ÿŠBýŠBý 2}ì=73óÞóÁkFš2‰Œ'ï¿•p­Ák“½ª³lå4{Lù«Ëê;ÖߟùpÄ@61Ì{´ÓŠk6‹§XQ{gŸeÄ®s±3añiíy>_[)70êén7ˆK¹!kÜ7ûy. J"ÍAÃú±¥Â²¢ââ¢ââ¢íQÎÝc÷ËQuž­š§AÕÝ¿DB‘´2©,­@«£5ÉdÄb³Y,&I¥Ä2ê±3`–†ª3U ³¿»‘EXaHNãÁ¶<^uöýœªgr¹<.‘z÷^6·O†¤– E‚ŒGcôz÷6VjhÜ @Ex<.ÑãÒR"¢ÜÃß8ÄëVæÿïSõ¾®S5NÌýG¨ªôÞ±@¤iiÇJ‹‘0Ûkw´d‹õ(/2$Éß÷؈¢ã»ªfìÚÚýÊ·ƒ)"Ugª¦…ÁÊ1B¿ÑÏx+ù|Ž™…‰fªŽ¹ Ÿ/ "âr¹¢Ê qÝç²_Ç«bå¾b¨Z?û¿a Í°±#rþžœ¡ª„Þ’ŠKÞº_í躦VR~£ìQ©3ˆ ¢×OæXŒõÞ0£p÷²¥q%RU§©ö8}Qàƒð2r}C°6&xϘµ¿EÌg_Üî‘BDÄ FƒUIDB‰²£ÿ÷Ä Éh›jV?Í)¬±>ÔÿÑÅŸ ÞÔ ÞèéÉÜç©«SM5Ó6ØðC±Ú Y¼i¾îñ]a}ÜÃV…û®Ø“X¡êLÃégänQö[MÃCy¹A"ªÉ]>=´aDF²K &S&U®zÂü)ã ˆx<Q×ñ±—7 ÿ÷·a«>}ʯ%bêÃÛc›:ñÌõe5Õ2"v[ƒÚge¤3ÜÓÒÿùëîZMê‘èé¼³ÄyrÿV󳺥¶‰™AhJ·ôô®^¶ÌñÝÂiÈ Êí.(/×h«­V·Àè4óZ…䄸òé.>~ U}\z(6&±¶î£vݺ¤—š³ã´ö=ºÖÜ!T¨ßè**•ÊÅ[ç\ ¥dÎdHjÄ5b11™Œ7¯ªeHö»ßÙ¯î-ÛõPçîûR=.‘Ü ¢¤›iKÆ»Ú\?œYkê0qHÅ#ÅJú@Ea«çt”xº8,pc•?¾è½êÏúë•Ø6ÖffˆU›ßû¡æªWé&³ï\™âÜg7—ä¦V‘°nÊðãè¹;"&”Føîþó‡굵ò˜ IDATÍÌs]è\C– ûʯ^RdoîÔƒÃá<_µSµW4´ƒ?â¼¹ÅdU¿ÓL ©Œur ;þîÖon«ìÓÀZºìÄ*Ž®ekÛ<U%&6Ï@“ûý|©F@µŠBýŠBýŠÂüi€– ³@Yª-ðþi!ÓZœE¡~E¡~Pý){â|7Åšz­º´ßµ}£M &í»uÁghý“‡µ¿ðKØ7‰÷ï‡Íÿ#Ò³ƒˆÕ~ð’=‡#â.^8»oýxKõ¦HN.·ç¼DÄž;²a²U›7¶g~43äFBŒÏ@""ãÉûo%\kðÚd¯ê”èãÑ WoÄÕ¿.y|Ú)žÒkGgèt[|áß$›æ?ü¿ =°ŸvÚ£?a^º&%ªˆKHöìk«y4RHDz¶}M®ß‘‘ÑDŸUb—M]ö@f1Õ/pÅø„y¡…ï"ÎìxO[}_Ónéîg%9íJ“6Òž÷ùR—6ùEõK%/s±¾Ò´]±ÿË´&xV÷Û¥DD”õËįöe¿}&ÿ-¥WGïðÅzÏiÔïÝ)zM—ÿçZf‡á¿;Ÿp!ò„ÿÜO¹uAý ÷†EÅ&DÛûM_½[¶²<ðȹø‹Ñ'=ìÞðs¹zß$ì É´íßµ.ð4!>«—m/&Q›Om»ÞˆO“ú'ýz&ü#µT(*K>¶7àJþ¿¿6ëŽX}òÒÙE=YM³•½†xbÿ’ªÊÇ‘!Ò¡C;5Öšc;oþG‘Gó뗥²¢ââ¢ââ¢íQÎÝc÷ËQuJï„r)½‚ŸñOØŽyî·Ê›0'Ô-J[‡å«ºÜX÷åPǯ·—8nžÛ“AÄì9×»_òÚÉ#ígzºu}ËžÖ·}& 5~ÉѬÚF×Êì9ÐêV|b╾>ª åÇÇ=µíkMD¬>¶=“¯\yFÄåqE•âº×ÿöOný ô>²2Õåv²ú€Ó$[©kd$+)}<Ûßk¬yqQ‘¡‘Q#É›».–¼cßíšW>Rïë:UãDð?‘’ù¬Cç.ÆDž9õËzç.šÍœ’œÑ+Ó¢ÏÄ>¬|ûDÂõK-Ê»ÇmO.Å\¸Á™ÓÅ€n•Üò¿€QUUCeWn>ZÝÝ€ˆˆ>ìÒµ$n{2_Lô0+ÿÕcë÷ÿ$õÊf© '¾zãÀv¿fQz\‚Ú*[3JÖïÛçQÜ>>1ˆADDm¿ØéÙ—˜Ì‚ƒs¾Üuˆ†z//èôìö妹A,GC£¶¶VͨKŸÛèˆsÄê¯m«÷ù·Sj‚gDòiÊ˵6vDÎß“3ZBJ©?»~ù;“ˆ˜Zæ_¬õ÷˜7ë¼fKéŒþ¨Z555I­¤î}mm­[ˆÚXOö^5ÞB­¶–¡mLWë>e³ÙÏ[¾AçýÛ˜pñê:b°Ø·úëþþ—€Hv'!Áøëÿcï®Ã¢xú€¯¸£KDP±P»;ÐWÅî¢ÄÁÂìþÙE)JI ‚ "ˆÄŠ´\½а‡‡¡~?Ï#77»3³7»3³;»«§ðLA¯4d+€|(vµ0p+·­ÜÊ‹P˜ìïž,²R–•—S(”oËaÞÒ3¨ì2Aãz¿•«4ܬ¶f(ÖüŽÒÈÀO¾§3[D–Ø…Y™•ó„˜w<ãçvéÐÀ¼ðYjŒÔÀùK!„B- ‡Ã¡P*o2 P(@yò†ùßœMfNŸ:{Ùùت˜\.÷{L2™TÇ:U°N5Ðj ¿Ù£ó@ýŠ›%xQAaúOª'\q ¿  €.%]yc2]YY6++§rÒƒ Çê¶Íô%(øœCi¥$YñAI©uNÎ÷[|¥:˜6I¯]Õ“Ÿ:éé·i;ÿJ@xTˆ§•Žød§ð{K5*¿ÓÒÕ- )‚[D%• ;ϯ¼·ø|>Ôõƒˆ|P4¶»œCyðˆ¾œ>P(TqIq2Ð[õ4ÒkÍjÕNMZŒ Ì´4½];Œ\³Ð@Jð*R|Sq6š÷6&¾ï þC„ò° 7ý–˜´ }W³,*,º÷Ô=”ÄÅz›Ìêý< ¨â9v‡wï:e=ö×5ÿ•¿¿æÔ…}%¥ÔFÏOõ󫚃ÔaîÎý¶6ǬÆVÞ?{ÊHg`ýuŽßÅr3ï?ã|JÅWmzôl+‚'/‰"KùlÉþ“ õ”4ºbOãÑš±ïÞ7a–#upþB!„Ps›¸/|bÅŸ‰'Œ\I+ô8°¯çÎÝËq3cZÛGð˜ÏÜfíácö%ê–½ù^£}—ŽÂ‚Å7p‡÷±)#K§ðÉPühÓˆ]¡ ̉Áøqjì1ÞÓõxE!„B¨±L66tsñhî\ DŒ°~Ö#àh!„B!$,? „B!„„…ã„B!„°pü€B!„ŽB!„BÂÂñB!„BHXMüþ…žã¶ãW~b§…>yó€"Û¾OŸÎJÒ4(+ÊN|RÈûi)Å^´Jü_$}°V1Å®:Úí[‰óŠs’^¿ùXÀ”!¢Ôë±8B!„Bÿަ\QÂó€Äâê!tõžZŒÌgE$™Žýk«g…¤” ¿BJ›ž:­‹¢^R”µö×üú,®€O˜!A© ¹8B!„BÿúŽzŽ×f~(j—zŽ×.L–ÒîÞ†Qžý."*µ„ÿË5ý A§~IK-`óò³sY’¥@’h£­Ó­­<X,•›,pqE•¢O^¹¥€Œ¤t-]™¸‚±ÅT{ é­ÌI‰ ˆËå N!„B!T›¨®?H©µ#…úÄHj6謔#p!ÕeظN|>·¼øKÒ»˜\È‹÷‹¨üRLZš^ž_´¶={Éå†û†ð%Õû k'0e1†8”–r4¨•ÆÆ–²r €„*R•9I är€8u‹#„B!ô/Õø¡8-!½ˆP›]%é‚NáçÇûû&‘€D•Rë= Gûì äo@oÕ¶½šªj鲔ןŠ@RV¶4û]^9 ¨è[w …ÌãóÉ ÙV T1~ L¡Ô‘'¿ÿ&ÃÉÍâüXEíÔ.ŽB!„пLd÷?ü¸ÞÀ'“>Õ‰Çf±Ø~KÉ(è(#ðªÔË _ëo©ÉŸ^Åå”VÜ;M&“ù|afAqy<2‰ÄaFŸD"UüýýêH$2Ç«muz1’C“ *×$ (wÐ(}žÊ®•ÇûEBUÊKKI € £´”% ¡ 4)eeî×ì/5S¯cq„B¡psñhî, Ô õ}ÿëÛ7 %:Cº­¶¦òÑMR†A&‘Ê*Šœ‚A÷—ñ©­Ú©)1(d ]^MU&?¯€&&Æ+-e׈ÊúV,¡¤"K§K©huj]×0'7+KF]SN¥JªvhKÊÊ,HuÐÐOg`oÕÊU¦.xq„B!„þeõ½þPš›Ü¦ßÀQ‹>½NÉRïXNSÒ6×Ê-ù’ñæ« ¥¹Y o”zõ2ŽAá²ò™Ñ1ŸXâ”vzÆ?îf†{¼b–¥Å'µé§?ªSQRDR¶†¦à,q2c¢dúö6ŽÁ/Îù[À”|c38U·TS¸8B!„Bÿ2ƒÁøþaì1ÞÓõ¿ñFêêuE!„Bý=jŒ~c´€B!„úG‰äùK_ßxŠb=!„B¡ ¯? „B!„„…ã„B!„°pü€B!„ŽB!„BÂÂñB!„BHX8~@!„B Ç!„B!aáø!„B!$,? „B!„„UóýÓcñš%!„B¡–Ä`0š;!„B¡?Î_B!„B Ç!„B!aáø!„B!$,? „B!„„…ã„B!„°pü€B!„ŽB!„BÂÂñB!„BHX*µæ+¨úG•ugÍ5ì-þ9.­ß»ŽB ô§T›7ŸÊVBÍå¨!¢¹þÐZ\þJ[µ 85Õór ‘¬!Q£K)gvèð@†Rñ±õdëÃv;œfu¨k™iW™éL—¥­›$‡¨e¡É¸¶oVª¥_§•5pÎHg[kW…´²ùʳˆø‰±Oέ¨ 8&½ƒ±ã=ÿ˜÷q‘ϯZhC“ÔnüŽ;Q‰)Iñ¯}ïØ·§ \§°z[¿d¦G; ¬õ…ÆFŸtfÚ©ñõ]!ªÚƶ2;´íFê *¨w’Ôµ2Udj½kæSrÖ f:³âß9c¨#P¶•ji´|¢Æ%ðXW ¡O¿Àd¦ß7Uúýté²7ÚÈ øýå+‰ââIÜJIn,”žþZ(.%·P¾uNiªu©VŒP£Êºl:(TœŸÜÜ9A-û›Ãî·Ò{ õ°M¶ëçhJsªR‡XÚ<†zÚ᩸ñ¦…[ÎäDô¶ù0” &©ë†‹'Èœ:tKnÒº ¦ëÏþO´NƸmÇ— . »pÐOÒpÝœ%{×ú¸XÄÅDÿ°?å Z3Ÿe/OoÚì¢0|³­‘Ú÷H„‘z5Z>QsiÜýˆLÓ'7üD¿(ΫQh­yìwÅy» v–P´Å(ÚVþÌG–˜ÞŠ~uf†Á’{oßÞ[Ò®>ãù2>ùý› »ŽS;ÓÅDHTÔ$ïµkŸ¬ÑÞ_žQ´Ò“™ÎL}üôÉ…Å?ê[+ƒ —}"ß'ÇEúß?º~˜êOûYËìi:3þÊ¬Ö¿Š‰þ Gõ™Ôµ–^íÇ¥´7Üs?86)!Æÿª™bóe¯Š„ÖÐ~Eg;aW Tí Tô)öÖ!»ógw] PÐî®LSËhJWRä ÇÓΖÛodÒ ¦LhES†õöæ…ÓûŸuñðŽùüü¼©×›üˆí.¯?Ä…\1íB²7žù²;Åè"3ÉŒÛ7@QõYÏ—ñÉï߆9)·ïÜvÉ«¾ a`}´bÈ]n«ž¨Ñ>ªÊ19qUÔôкÎ>àû)#ÉLKOOgÞ˜+)ü¦Ol¤þrC¶Þü~kUO1A5„¤6a×Ýà·IÉoý¶ê}_RT{ÇïE…âþ/=}ô×R QGŠ‹@> 1x@»/e*†6KU³ å Aµó’õ$éÛ®8ý±ë¢£'—wâ˜"ÈB@–ÜÑZÆ€\vækž»êDòW¿Ãææç^–WI2°:k1V>rߪ öW_IõÒ’®~ÞYiú¶•Ý9¯Žì¸›ó‹˜èoPjúQåcæ%nõ@™ivN=BÖ ÑÖ™¸;kÆ)3}Rse¯JÊ驃]xûóßÔ« ŒÞ 4•‘ÝxÅÄ1Û¶m üŒ‚^=6(fd´k×–8fŽÿ‰í;®ÊZ‡…\˜òõÔ¼iû^ H½žäÆ­ž+ù*$…Ú~ÌÖUÃ)ðþþ6ó½žL^ô%s sóm÷ÞÐGî¸h=I%éÚžCO {˜<·¾Gåâ †‹Æ|qyÍS¹uÕHJI¡*åÅ6_òžp ìÒ—/æ_rï–j  ñ¾n?zGî0yåÔŽD­6áAŒÍPýžÄr•n\1†Êó§È½9gçèY eh·×T@Àï.8KõB‘²•ã”åo/æüÃJY~¹l_ÎgûÂ2)11iÐôPGmÚ?·WÖÅ™ã]ýP}âƒ6¸±@ÈMG©?„ÜD‹µjïB“Ém‡Z®C%®!’·_b }Æþ°{"«2ð·öŽ"E´*u´¬’»Z» RÔ¯¥y‡Jxå!÷μÊnÐí£aé4µ£N_È |p/Ð÷²[Pµõt%‰cŠ&[Pź“ ï[Á¾ÂB§âª]²$ÞëÆÍ~I?M» ÊÉIP%äÄKâ\.Yz:áûWd©–#ĭϧð댉þfµµ3Ÿ=z•[ú-ÝÛ=„¡­Ýbo‹a¨^sØíeðùÙj_Ãr+&ŽF£ˣ˶’—€.F¯c­9v‹—m<ÙnµóÑyD3x*z¾¥•ʉvíä!;üÞ ÷˜|þ§À7oܸž ÐQ§¯ä{9;œ;½ýb(4tûV^~Ï{¼ßüð¹ý·Âè*ªò"ÉÒß[z¯¨$†œ€¢¢ÿŠŠÃ¹‚hÈöØcsüÌ)÷RÒRD­6áA ŸìY»ï¤ãáÔVŠrçbfÿ×˰½œ,o«njvj¨¿ô“ïÁÕËœ£*ŽâýÌ÷ˆr¸ö†#0fÕI¬´®j‡5Bb4‡Sy\g³941±ßýîñ³Ò‹ÒzœÅÌ`Ôõ5U{ãֽŲ#îÝ~î²{\¡ ê_Îf™Âr]ªå­M]ÊËë:-ûíc¨çGð,Ñ[zcîâé]¯:Å×YP‰jdžËfóØ6IÆ$bt16› U1éôÊqŸÏ.—[cñzmÏÄ/ªM tŦg^žÙí©¬¤ýÆú¥Ë)/çTì9$O®Ï³õ#54qi€o p$Jœ¥’Š/…¬`@—?B(ûzµ\ˆV@h¿NÿíÀ—"U)óÖ*æÀÿÄÊ[•]E˜RyþG&k¥Cø[VAZðùí磫¾ùýMWg#…{G3ªQ?K¿|) ÿ‰ ÑhÔªjðC{G-d}…6'%¸v…üÖÔŸÒùí¦§æ@äWÍg¥ŸZJ†ô2:ùsqöàÏße¼Ry9 ÏÕrÌވʀ‚Ü6ë~‘–YB=× 2¿S?ù|DÚ/N˜rn›Þ±Qî¦7Ùl¿ÝDë“®.t€¸ë§²ŒWX¸Jï¢mXqÌ»?ª?VÚ?‘6‡C¡TΑ¡R)öÏóþ§~Vó‹î]•_îûÏYÚ[òóEƒ7úüâ˜Ìd2¤ÒF TUTR32#Òϼ?1þµý ã³$2‰@ØÖýP»D‚2_ñ$qvåår¹dP1¬¼œ E£U‹É¼¸ÀÔÿ>/JK·Úð+&ÿ˜3MÔ@ÿ¼DyI¡fýÐ'Zœ×Ów‹Ñ\o©×\×ý8…Nü»×‘%¡*XyÑI®äq™UŒBÛRQ!~•:?¡øËÄâ\e1†‘\+;I…’E ‹‰f \í´ŠP§ãÅì_\¼éjûE#õ/ì-ÐoŽÜx<Fµj—ýå[Mf¬ÀAUÝ Æ0ã÷Ž!¢¸A¡(d’é d+KU\VI39*²¦ö5\û«¯©åñæóŸˆ  Æå¤ ’Û£ ©,^57C²Û8cÅ®¨r½&š˜ôM ºõ"oêY÷Y_&æ‡ P”“Sµ·8g{ÌÀ×fÁö%&J‘ž&0&ú›}Œ‹SkÜçÚÉÆà‰9q²›;G 1fÅøÎäN]i²}f®Z9 Öã’”‚@¦bÿ«:WD*Žyt-ˆAó…‡{Òº•+l!ËN2i[vÜó3ñ:_½âXì°…¡0q‚俊üHÓ?­^ÑŸ»z¡V»R£cò óýûbè9x¹Ã*åtøäâì]SÆ­¶yßMvš3:æsÅâ²ó×-ÒR™> ýÍÛ|QnÚ¿÷=›tñ­dÛ°áSIÁS¢Ú)XèõT‰"’)T2ÐåTÛkêëö“-.“Ö_´fXâIÿ¬Ú¿;q–XDkŒW~.—=¸­ÂB™‹Ì‚„ùÌÐ>K_U¾¨ 21‘(|ûÄ=Vž 0Fè:F–:§*õ¥¨$¤ò¾;^—G¼•JY,h?ÌdFAj9Ÿ[–Ÿ™NØ¢oº3©Ýjç3e$6R$Â’™žÎƒAã78Ll3¢weÌzíì’K,™}bår cùÀjpNE6JEBn{եά²ù„‘ÊžíX¸›º}ÑösÆtVæÛ'Ç\"XbCD•„ˆpKæKu–M+1- LP’P¾Éi[/Pcæ4§4þð8âµàõ²¯fg+«´N-?T š{HŒj—-ê5?¤ifh4YB¨åkõ³¦Ž~[¸ÖÏzMDù#ææS”™ïmýòÉjú¥™½mB„Lýïó÷Uá5zkªÔ;mð ´Rº³ræÁ¨r`h­¿rÑ$Ù¼Ëü[¿˜|Ø_eøS4ó–'SZñ¹_~>íõÛÇ|ÐB!„PóHõ¼âb¸yâq¿Y4pY9 Ov8¹6Þàý»xÜ/¢[ŽBý¢¨:6w&j(vÂUco4w.ª|!!B!„BHX¿yÿBMo²±¡›‹Gs硆jàý}‡GE„PÓ¨ÑHáõ„B!„°pü€šYYwöÒe&jxÏ ú£aMF!ô«ßøa€]“™þÓ?Ï5j£klôIg¦_÷J%gÝø¾¶sÆõʪY‡àŒtf°µvÅgµ•ž?ýšQv,)|Lù~ËNz¿KJŒ |fž|UxëÉÖ‡ív89ÌêPñyÌᔊµe|Lˆò¾´Nï—ïþmÂUÚ?šòìKQ!áÕþ9Ž`t›¶ç†‹o¨ß³Çìgtè»ÕïêŠ=œ¡½þî#Ç1ŠÍ˜ñ:´²ùʳˆø‰±Oέ¨ 8Piкs^¡qÉIñQ>WÌ†È ^góÖdzcÇ{þ1ïã"Ÿ_µцRŸ˜ŠcvyEHI¾º¸[ "TƒÒ u矾Œÿ˜òèȪ!*•¯„þ¨Ø|ÇÏï»aÕ¿H»ÍÒ» O¿Àd¦ß7UjšäÊh¥ ­ôWŸy›”ð&ø“Iw‰ŸbŒ;–À|¾Q³úâ©ãBÝŽÌîÒì§FT"ñ9×Ó™Þë5ªÂ _3ã4Ý›Æ~dþãû×ϯێo׈'꛳ÇR¿j’êuÄ>S :MÚbÒ'/àÌÿÏÚÐ~–½<½i³‹ÂðͶF‚‡"¨aZÛd»~ަDq­×†ð¢.›]­xiSéûäºÖ!TL©Qv—wL¥¼¾yöm„é ›s…oûYø³ ë²é PurF|õEs¼îñ,Ô[l=gë¾eÞÃÆÿVé@4)EúÜoù‘Ð4¶ IDATù¬Ï®›ÇûVv ÄX^š—ŠÆkŸ­2^ô‘Òiî‹›ŒüVÝûñ¤7Ù!Ö»‡íZèÛ´ùuˆÕ©ÍcH¡§žŠoZ¸åLNDo›—ƒ ߌ³;o5±èéÁÝ/Û›XÌ4;aÚokÑËtš·&“ºn¸xbLÀ©C·ä&­ÛpñhºþìÿßuMó‹ÑüÎaV³>®z4s¤ÊÅø y=“ \·xsª‹Ôxû‹VË£n]xPÒºïX ÃGç3›;Wõ‘ûâÜ)ßÊý¤8&Êrþ‰ÞÅ{ûjµŽÙ׈,žàpÑz2/âúYW¹ñ‹Mœ/Hjÿêû±NbÜŒñRÑG$hTnº\Å&+gí³ ñúßíf}•{ƒJÄjŸ‘]de«¾•“f&³iKûâÜ)ß|õq‹®:¹;®ß¢{ͺ=Gý†EYA×O;{ıòÂï8;Ÿv¾ÿº@QõYÏ—ñÉï߆BÒom7Û·ƒÙ®k7½²Ä*/_¤¾ ~úäÂâŽÕ£Å>½}ó ·D€öê"8À9ŸÎ ´7ýèówÞ9OS ¬Ÿõ¨´4¥©G\=}Ü+ÿ¹XˆðXyÙ99Ù99ÙŸ¥ÇÎêùâ½4PQ”zõØ5¡°¼M9aÌÞÖ/™éÑáçó­ 6\ö‰|ŸéÿèúaªU=‘6úʼnîîîîîî÷g è]e¾2ŸSÆ9¸G'Å…^_ªEAùT¸úŒçËøä÷o‚î:NíL ©MØu7ømRò[¿­zÕkŠnÌ'¿s?wÌn‡çB¯!CåàÓ­–ûW;y±IêÆvø±ˆÌ„c/ï=J­ ÈuÏÙùÄî=>µcGµ¦Ë|#”ˆÉd‚¬¬¬ê2fŠó$YYYddd4m‰ò_Ýsv>ºÕáaеµ;×:A=–Ú¬²~ŽÑ7»ù!!êþFF]=–¦)¦(.«ÐGî¸h=I%éÚžCO {˜<·¾ÀûûÛÌ÷z2xÑ—Ì-ÌÍ·Ý{ <ÏÑqŠÜ›svŽžZ†v{M5êÌ›¶Á`%†„úP½N"Èå¿-åôÔA‹.¼-­ý e´}ppð«Ø÷‘7êJÔþ¾ž1¾~ýJ’jݾ$ÔùøÉ»‘…ðÕï°¹…ù¹—åµ¢“h Ié6=»¶^bbW?ê¡ñ¾n?zGî0yåÔŽÄõSøJûgcÞ¿äSTõ!íÎÕçÕ{‘bzóM讲ޞšmñè3I¶S'¥‚üªÓ%´. ÷-g³üï£hÞyßR¯.d0zw0ÐTFtà*((P:Ï»ú>1èþ1óaJã‡æ­ÉmÛ¶~FA¯ƒ32Úµk+|Ì̇kúkõÑÑî½èÕø[ÿÍû°e¶•S@9ª’–ô¡ äg8\Üj2´£'7·êÓ” ü$Xµ+¹oÕû«¯¤ziIWÖΆ6úíM¯†……„……„…™$¨‘ÜQ0\4æ‹ËÃhžúÈ­«FRˆóIµó’õ$éÛ®8ý±ë¢£'—wœ¸ýøñè3ö‡Ý«Ÿfi¾nŒ¼œ,@A~pòòŠäÌÖle4}9äžË“òTe5õ:Cz+äWý[XLè1™L’“ëÚ¹P»vÕ‘“…¯¥ÍP"v9€&F««÷[³ÇBTÁ@ÁØlÕïI,WyàÆch‚÷¸&*¦(¦¹uÔé+ù×ÎHšsx¤n_¸~ïÆçv‹·ŒWþxã¦gEL13ã8ÊÇЄ¯êÒ3gj©«·H¸^^ðÍ“Oåú°|¼A.Q-_žÚ/O“Št9V뇙YÍúoæåÏ ŠI"Uü/ax øð((¼9¿›™Ÿ×xÑ×nYÍÛ&:®vI\ _ü¶m<Ÿ$¢re{ì±9þ¦m™±i?9i)âúɺÒþá¾ù^½›ªØ†-3ó„~*+##Ô¥K?yÚ·o» P”û~ù¡éJD‘j¥¢ª¡>ªk€Xf&佨û­Ýc©]Áâ ŸìY»Ï_|öSÝQ­å€pkÂbŠbü F`³ÙÀæ°€NÐÔñäúÌ1[?RSA—ø¤:Wœólï¢g"È "ÆJr¯¸\.I$â|ЉÑägŸ{7™bR )!4€Ã!¸DÛ»1êÓfô/ºêqõ'Yn»o+lÞ`{Út…KU«Ð3O¨F‰˜L&ôïß_%ÖÛ[Yk€Ž,0™•WZš¬DKþ{µ€•|óð­OÀë(p—©Õc!¨`À)/çUU3R»\ÓSã‡òr6€T*ØìнˆËåi4 €>Ñò༞¾[ŒæzK-¸æº®Ý/VÜjèæ=«û±|XÝB'^ÿÉƧbŽ~í0lÖ¥L “HUÕ@|äþ€+óU8±NG‰«+f-yyyòòòÜôpÏ÷óޤdÖuÿ])óÝËÐw/IÁÛç™öëÛ Ü^Õç_½)©Úý üò’ÂrõSèJû¼›)ÿÉ•GËå˜W^ýü›iéê†ßJ«üÄ<{föÑ‘f.µÎÅs>Þ´9¡{yßÒ× ÎÆ—·È 2Ð~ioÉÏw ÞèSò=°ÿ‚À¼¼< …d …PVVF\¢AR“Wî"X§[Õ®~õˆ&&“ $•6ÊY ª¢ Zyþ¬æ¾I³ËºëGzû.6ÞËZ4•}{±ËØKgq=$ª+|èïDUíÔîkRJqJÐm{V—©î+ÚµSH­OS^3fE—œJ¥””¾OÆæ$Ü63¼c£ÜMo²Ù~»‰Ö']]x·š¤Ñÿe?¤ªE`çóm9 ÏÕrÌÞˆŠøå¹Ð‰Ç Ñh@£Òª¯­Ùº1ù…222@••“Ȫš“ª9}z¯bÏCOº%ª$9ðàå¶³ L瘎:¸Ñ§´y3OHø1™L~û:àºáyÞ„}ƒÉ¹72*¯q5Y‰2]l·ÜO.þò)îmJ>èF¿êýþÜc©YÁ4¥Sk€¦*¦(Æ)1Ñ…0eÜj›÷Ýd§é0£c*ÎLg¾_ =/wX¥œŸ\œ_P¨d Ë©¶×Ô×í'[\&­¿hͰÄ3©Ýfé«Ê÷QµA&&…oŸ¸Çä/Ød8”ÝSþ;ÿ:Lý—iŒY1¾3¹SW€lŸ™«Vˆõ¸ôæ]*ÃHÉÎ ¤pEÃq’Pð8ü´î©£B tïÝM âÊ¡T`ÌZÞøç-š2gç~V°ôÄIüDO¯dì6ÎXG±k'*€\¯‰&&}Sƒn½iíñ&󨧼 OiÄël Âú)t¥õnœL5)îÛ‹+·³j<~¢Mž­â®'T}”‘•-ÿœCü€~æCûúW7GÎßñ­Q³ú{2û/XÕ¹" 8æÑ59¢À˜à ÂE“fmµüÔzú| ûH¼Îæ­ÉqîIëV®8°…,;ɤmyØqÏŠúYsß$Œù¾ø#Îäd³@‡D‚’œÔ\PÈø WT7ÚÐÍî‡$ ýÍÛ|â|&GEÂÔ¾£†kcõ5µœ"þÀ|¾Óûôt ¿Á±`b›½«å¨Iº1í‡/›ØÚI‹ ßÖªUŸ¿FܽýæE`áÿ gïp( •Ÿ0–“´fL×Êóp|^k~'äì…× l¦®š³ÏçrfSe¾1JTÎLÿ"%¥•ð:!?“1ºýûÊÓ/MX¢o)/½}~\ #ï2D×´ +X ADÐci¢bŠbüÀzºs©cÇüÿÙèòrbïYÛެø‚ótïúóÊÛg̲´f¥ž wö~|t·O—MËOˆ¹»kƤ‡¶çÍú)^V^ît`xŽæ99ÍK:ã“À‹ ù2ª+0\T7ÖþúM۶͸¢!?h¹í Â›ñ—Ì.m¶ÑܽrÄÚí#Ù9‰®ŽvvÞCfgÔ×ÎÝJŸEULšH³–¢§¶¦»I;NZ¹„›ýúʆ­'b¹ 6|“Ó¶^ <ÆÌi x¬ºûâ@ëÑ›œF±K¾f„Þ´Üv#§QŠN\?…®´Áø YóÜ9U»»æÇ‰ß/I€$>ñXÔÄï¼-ZûüX½½Þ­í[G.´}^ûIiÍD•QklGUd¼ö’(0è±í²C´ís[ës?'<ܵsï‹Ú÷B@s×dîÛC‹7Êíß0ßB—q|‰Õ•?`­}“8fNÅ3,ß>8ï7i›‡ÎgûGFüUb‡ž²8)½v–ñÒ‰Ô¢Œ··mvVή)?éŸU;fØýÃç§×k˜Ú¡ GInÆpcÜ\G.™¹išº<ÿK‚«ÃfÿŠs§ mô/³\ùwÖùÈk¯5zGˆ2ÿ€¤Ðo¡õYVòcû-Ç^HæóÙŽ…»©Ûm?gLge¾}rÌ%‚å˜ÖyiÑ]ÝŸSx\UŽš¤ÓÅØÆv¦´ºÂv($ ¼îa³d?lŸ?}MOvÖ»[VÛÂ9@ê;}ZÇÏ,‰‡‘võô“ §'­XÖ÷š]$·û` -“É`$$d&æ¿ç3£òøÙl%bï2áQˈ*˜– öXš¨˜$ƒñýƒë£'øˆpÔBM66l‰“gª'Â#í‹ÒÒÁÕŽÆ Š¢ÑÛúå“ÕôK3{Û„4wVyCø½±n“ìŒlÙOÄÚßW¢–«F#Õˆ¯ÅC!„B-uð cåîÿ=]í¿¯DŽfM9B!„Pó‰v êØÜ™h|œ€Í=~õàš?ËßW¢?^@!„B ¯? TEE…æÎúóäæ~mî, „B¯? „B!„„…ã„B!„°ê;~è»ÕïêBµÚÿ†¾[ý.ÍWýíÅQ½UÇšŸwó  ðó¹ql¥®´à¨2:óöÝpñ yöäþÁ•úŠoI'Éé,?úŸç o÷ö³µ$êH‰¢:tÓ©[žA¾ÏŸ\Ø5µ³Ø÷/ÚÍ:èµçÇ›wûnõ {îëãæl6R¹Áe+Ÿ °WA/£BÂ^…½º´ €Xû1[Îßó~æyÿભ€¤f¸ÿÑãgO¯š–Eº!ô'‘Ó]tè®G@ØóÇwl§AÐÞø¸âøùß ‘&Vóàß()á[.A1I2=V_}`gPgâ½-}* °WAa~Vý@²—‰ÓwÿÐç^ެÚº¾%bt›¶ç†‹o¨ß³ÇìgtQ‰j©Ö—ch¯¿ûÈqŒbå7Ój“;šÞxR÷&mدÙÔ%j|½-}ÒßnxýáÑqêšQ™'æÖ>ÁÔ…¶dÑhYA1{.ß7—w{“Ѱ‰óv¼ÖÙ±q˜$0†YÚN:ô¿qSW_aÏß¿XK`Åi=Ýn«æK;“Ñã§[¼hgn9µMÕ7™þ'íö\ ­þØûÄSS ôû™¹çãÛ…}EP̨}£ ôú­¾—›xjŠ^?Ó«éÐf¦Ýæ¶~Ö3FNZ°÷ãÇÃ%¡íèéO7LØ8qš€!#+ö‹u#„Ð_¢×ò=F_O-7Ähù0å%kÇ)À»#+ŽŸ¢Nàà/r„”ð-aÌvF»œïÜߤRù>ƺ%Ÿn ×Ï@¯ŸÞð}ámgm]L»¿z¼Á¸9öIŽ+կåhl±Vñ™¥ñб3ÌTÌ6µjx‰ê&;Äz×à°]öÞU5 QZmùI›çJ0ëÞ¤ ü5›¸Dÿ(ÑŒ$zÎuºó80ì¹Ç ‡¥CÛVtÄȪÃÌÏÜõ~áýäÎÞù½+Ïw“U‡™Ÿ¹ãìëóÈjpµÑ£ì(ëG~On¬Ó¡ˆ$C¨¦âü|viÑ·r>¯¬¸„]\/à­» ¯ÙE1ÚÛ-¹¨¼ìë[ßL]Ý®ÐwäÈ.½ú\RœêuÓ7|¸¦€ÅÅúèëÄ<ú/ö+«,ïí=çã¡L*Tœ› xtvÿb=©ÚËpòB"d•ÛÐESÔZYêݯGŒÛ­÷¥¬œðû^™ýt»Ÿ*•B!åáVÇŽ/Ön¤ôB¨e¡«ª´JžÅ*/N¿g3ÇÒMð˜ApS^#°·¥ÏÕÅÇÛß}âçwÓÁX\Xûàÿ#¦¿ÿíý3;V´ûrzËNdƒ¨Ç¢±øº·o€×c—³»fuH÷u¾U@¢ÉõÔíZŸP¿§²½=5ÛâÑg’l§NJùùõi‹… ´. ÷-g³üïce[Ù8­6Ycþæo^x-è f™o™%jÖ£5ûë ì¯3Öâñ—,/ï=jP7šßÁÏêsm_u6_2”Ö”ù$&’ç·’Édšt«VÒ¤Œ¤ ÛöAê]º~yq<¶˜Å>OÃít—‡Ø¼ö]»}:ò6Ÿ ð1™Y­}¼½Ãòo¥z+ΔNO¥Öu~²zL‰ K¯Øåµ ÑÃ<"¿€‚¢b~~>@ÁçJ+%I€PRj““ nD¿}|]JšÀº²²lÖ{' ªð˳ƒÃ÷ ïF¿Pçïþ›£Ê‚‚º¤$€ RRRùùù 3Òæà´Ž+ͺ²ø¥Í¬·s=f<ûòi½O!„П‡L&óx<>+-àÌEßK:È ¸X@Ø”VG¥RÙœ:ÎÕÖÆhó ÀÃ-~sQ#EXáç.G]1 ÕX\eÂNkÅ[ë®ÇT H ­9z¸d´ÛëÏ|vQJ`DžÅ mx t‰ƒgÏÌ>:ÒÌ¥úÍuä³FS^Ïq>Þ´9¡{yßÒ× ÎÆ×=v¨ÞjC’Ð3~:éé·i«r%`~ågðîfÎ8Ÿ"dæ[`‰D@q¢­Eg/ëíá?æ”õ¨›0GB«ï&íí©!uäÄè*ãÇêfž+ i̲Ýl¬«®@cä|.äð õÃ¥~êtzç;ÿ¯§0ÓÒTôFtUTì0rÍBƒj·°ẖ;¼{×)ë±u= ý¶‚¤y}FU¡“ÉRšã†i&}¨aw˜»s¿­Í1«±â•Œ¾s¶šÿ¯<]\uØìqJ‘ñüWþþšSöQ””R=w<ÕÏ/Q@BeQaѽ§.è¡$.®ÐÛdVßèç¿<©OWªßík&³qvÚ²˜¨¸Þ“giÊÐÅ•úM£™…A–®¿ö®Èd·œ]Îf×Ï"„Ð_«Íô7wÌèßNZŒ&­1fbÿ’71‚z(„M9a Ȩwn-F¦µ<¢/+!þK}²D¥Ñå[)‰Q(ÊïŒ )Á-WÍ.‡ðmáâùlÉþ“ õ”4ºbOãÑš±ïÞp5&ØlžÑCš dqµ!:¥§¥×§D2²²åŸsjܹ-8Ÿ5›òz–€ŸùÐþÀ§IŽ›u…è†ýV«{ÊH§bºÿÀñû¢Xnæý+Bf¾–¨ÁZm5ëàµóhTé÷ â@Kd IDATuKTßûÊNìÖµ³¹ç'ÏɈ¸¹ãz"À׸ê2³ÃkÛ·¢$úÙç’ Eœzî8ì±ZžÂʽä˜X_=N^áxêѼ¤ëV×gš~_o~JBf¡RIBú¯G‰èw¼¹¸ÍÅÖü¬çNIn~Jè±ý÷«f–æ%Ǧå+–ĦUí4™wwßaÿh¶$‹íºÅÁ¯XÏ÷íìjguë'5äŠÅÅ8:ûÞö=*Ö6×L•)¹±wívÍ€Þ–>§gV\°t Y ñG M¯3@s­kÈZ>»$7-ê¡ÝÁ¨†³ïV¿“Ód¿'”xÂhÁ•4æííÇÔm÷>\/ÏÉŒvµq|^ ¬ŠÁ~ªÏƒô£Ç=§}õt8Y¯“e!ô§Êrsº¢²ÎüÔ: NN¼ïy‹3oø=̼ÎÍ©¸'õaÈÊÊã'aSNÒ6ž÷Þ#ÁJ}uÓÒñ5ükIw?÷ñÒݰeÀý–yÉÆêrŒ }ÔFØH l¹ju9ˆcÜá}lJÅ™N§ðÉPühÓˆ]¡‹³üÏìÕ·¶½öT‰^šûl·ãƒ,ð=}pØ®Ã.óe€õõSøyÇ[Õg<ý HâEMüàm1ÐÚG`‰j5å·ÚßåùØÛëÝÚ¾uäBÛçêMÕj Ÿù?©DÂ4Î@¦=\ Àz¼~}qº%"1?žà:A¦Úü%„Z–ÉÆ†M?±MQQ¡‰SDÜܺž´Bx¤}QZ:˜ÏŸCõÓ,GEz[ú˜e›.¸’ö; ‹¶÷™6q­{1h—9!wlâþ×"Î#BèwÕh¤Dòü%„B¡ßTþÖ×kÑúÏV°9|à¯0öòö¸æÎBH ? „B¨¢÷^ðûKg=w˜ÿÜAt¹A5ªð(„B!„ÐBàõ‡D3qCJKk6aB}×µNxuOdG!„ú×àõ„B!„°pü€B!„–Hƽ-}BÂ^Uþó³êʳ/E…„Wûç8Hj†û=~öôªù`9Q¤‹P }·ú]]¨Vûïß[Õ¥ùªõ[F²—‰ÓwÿÐç^ެZñuÑ™·ï†‹oȳ'÷®ÔW$î AVk~ÞÍ3 ,ÀÏçÆ±•ºÒ…_œEuè¦S·<ƒ|Ÿ?¹°kjg±ï_´›u>ÐkÏ™ªÏ}·ú…„½ ÷õqs6©,ŠbB+½UÎîÁo>|ˆõìê¶1mñTB¡CTÏ_J>;}Þ…”jŸ]7÷¥Uü->ÀòÒŒ¸h;zºÆÓ ÞÎñœ¦wä…2²,,Ý×ùnT ‰&×S·kq|ÂW€‚¬¬2-}}92­ÍÀþåäå‰w¼'œ¬›fvÅ+øùyùÝ´ÚÑ—%(PøÅ‰ÈÉË•UžŠ"n] L€èý£ö×Yy7—pм^ßN)ñ‰ ÿ-ååå¾~ý ~k儉FûC¼R„BH4Drý!öôü×È@–Ô0²=h5-hñ•ßIŒ˜<*Íuv"dúì2ñatš¼Ã~aÖI³ÍAŸy¢H¡:‘Édšt«VÒ¤Œ¤ ÛöAê]º~yq<¶˜Å>OÃít—‡Ø¼ö]»}:ò6Ÿ ð1™YíÌôÇÛ;Ì35¿½ö/ùUbÒS<ß®Wžè±sõ¾(„žw|sp¿›?·0'Êýuˆ“pGhù1[,:ùÚ,ò΢užµÍÎ4ÖäÄ6a ð‹E$ ¤ŒxÙ虜yeéŒñrÕyÕý€å@¡ñ“nmØœ$’‚~ÇÏO‰Îí*B¡†ÉõvaVf&33“™ñ!øŽg|çξEé?dà'߀̪m†m:eßïÅ 7¹ÕgÜ\œW¨ãöE„ê‹Ïç׀̻»3u-.y{?¹sÈl¼ €F£©Î÷zpdÝÐÖÊÿgï¾ã±úþ€žl™EJS©h ¢¤"E’JéÛ"}+³øJQ”††ø•J{’BÊÞê¡dd¯ [Ƴ~)Ï#¢}Þ/xÎsιç>÷žsï¹÷ÜsWùRºý¹h²Í'¡¶ÛóvH\ijÇè&v}1ÜàBL¨«6oçg…½‘ IÏãS"ƒ¼,5Daeæ»QÊ(”2 ¥ðMÚ³ëZÃQSü â›ý)”²ó‘r{(e¥^:?»P¬‘Fê¹øF½|“õâÙUÛ¹b¸þÄš 4=¯('þêÆñ½$D~U«®dR(e”›ñ½DšµÃ;41« ?›~År¶À…-g%eä¼yíwxÙH6€^*‚È;w'Çc‡ F¶îj½Ë sÈO|v(ò²Îò·÷·õ—?^É…U«Î÷ñ]dƒL|¥Ó¿ÂA;õÍÊð²›=Înšbù°v¸îûu³ˆÙéU]ñ†i.—Û©a²Lñdl( 8xùõu¬ÞMÇÇ”ÑR÷:ÈKÉø‚WÅœ‡»{`UCÄEÎaãD?‹ÙR•S Òƒ˜ó¶Ï¯qfñ# 3Ø»‘à·QË·‚cò6¯3Ûž«9Å¿ ´ÐŠ ´Ï9ÓÆgEV»0ͬ¦døzÁpâ¡Ûû§s=t#³k¾HC«IHÍáÓ#ô¹è½­Õs_/¯×* °iâDð}>™"H¿1˜òsù‚ùçM`vžY )›¹8nPËO­H:¶×Ñ?o¬mÔ“Íd‡Cbÿš×9ÿ›lxn7¸ë®¸X ¤d溃ÚX~ZUFÈ)ûÿngµÀìãÙ·V¿;crRÂÖIgxí“=†¦qóýÈc÷N5¸ò†o IþOú¶ñD‹gt€1&·|¦5?²Zløž]'è.‡y±ßÚå<’…æ=ܶT{èˬ¢³Šùï³Úc‡oaÛÒN'ÔŽ^éy~Sý“[ßç×D·šÃÁ¥t3TÝH«—h“TfóCî%·—r¸Â¢/ i,-a¶®¶˜e)HŒ\k8SS˶óÀ¢"Hn Iúo2äŸ7÷ø§ËQ ™awn½N^i8qœ”$ÀŸØ@7Å‘¿Ç´éœ7Ì´µ]òU×jI·¶ƒ\º£¾š¶ñùæÕ®&²À.@pÔ„a|üc&Hõ6??? ?ÖøðݧO#B.:èŒÀ4f…?Š-lì±<ôæK¥C¾»ÄüB›Ö{]Zyj;ËÎÒW,~d€²¯{ä& _nú¸Æìœên_בî_if—%¿kcµýCCêíK1e¼S¨¼`øða}Yá¿}Æ„©ò§lx®uûÆš¼=«lC)ŒAúùh㲊ëÙþ}A_^Ïù‚   nôšË‰orãüN[© ÓÐôh·ÞÎ@A‹ÐÔŸeÕÞë–&÷’EŠPénemåÜsð†À1„GLnœ0rs z|ýG@ýä#ùÏÍ踤踤èˆýª]¡-Ï63ê³Ò^· ¤ÆŽ{šÙÈ ½ K˜ +À. ðŽ£•Ã~3—Ц^–Œ ‡ÂDªÏfÅF^ÊÚ[-b³"ü€Ñ²å†›¬ç¾niqåu#›ˆÈñèŸLyì0ôšÙi2íS8×Ü%óJsÙ§ÄtÜ çÖ=——ëkÞËÀÚѦ~ÑqÉÑ¡§&Ç»ùçRáqÜCÅ%¤çͨ T R®Ò_•q±eêÖ;g’cãÛ;Ü£äx¡&æ¾oLÄå 2à'*NЖà{îyÐãîœJ* ð£äø¡6Ôë÷ÿö]JŒôtÁŽ\«‚]íÏœó ~ÀÍà ى 5À5cº,`g*ÏÄÑžE¶ÏíΈ¿u6,>6Àóþ«^ÊH"€Agø† ð @"’ú“ÑF¾Ò+èØØ;ë '£±‚¿ü¤GL†¥Ÿ;ÍäãÀà¸Dø8XcÂ``äxŽ@›­‡¢ZÇèìß£Ë ¤™ÖÞÇÓ|m7›ŽÛ|öô:™^Æ@õ¨MÙ¡7o݌̧õˆ:Ê, 7'ÕK"÷íº0X‡„_ ê? ˜Ò‹Fj*Šj*Šjs÷Çöø¶â¶éæË¹@ $Vž¼ãëÇ×ßrF3 Hì ¾ êahJY¯ï*a“‘p;§®¥¹"ánHáÄIãØEʼn©ïötžëÄov.(ÀËl&ÏVa«Á× 5-›ô'œ|êÎáfÌV.Žˆî픜 í7¨­UÕÌ}kt*ûØy^ËÕTfªªê^pfêÓg£GáíÓÃVšþïùÇ^ÊØF¥×¸i¬ƒéx<@[[×Ea’à0q^|¯1qb úßý§ÖÙ2TÑ=Šœä¦;ü[.äÇVV‹#LµLKûŸ>€ô&¿4O½ŽñóíÎd@nÐ…ûÑϼ®E¶iÜ8iP\¾z!7ÀóZpÐiŸ§M¼3—Že¿´½ò{K—íºñAíནKþ̉RÐóÈ߉F£•Ü2_ëSüÕ@à‘VUÛ’Zξ Q[WÇø4x’Ng󨯆ýñe….[Ý ®lL¶7ÈX¼Jù|rXÏkÈ·ã£9gHzPÚ;&µ¡(&µÆzÖD‹nÿnÂôéõ)·Ù=úuuu$nH¢¢|•o¾úö"f[U|R®ëœñ$È„1L{ü ßgeÕ¢ùiHÄW—vY¾üQ>ÏÚÚ¨56ó§¶Çh«û ¶ƒUÒ¶6*7x<¨ÔÏwef[S}û‰>=! Úò3–¨“†—7žu=»0TÍÂÕlZsøQÛ ilR(Àˆ‹‰T‚„¸@Iy9pj¸E_Y+NË<¶Hód›˜cw\?9%b£Þáf³8}ê |vœ <ñ‡^8þs|xì´&&nöÞ;§î­Õù¨`±Ýkjjp8`q8 @kk+ð<< @$öÒ3èQØk¡¼NN|Œ‰ß·Ædš‚ ýO¯¡þòw*ÉË^ "u³¸F¯Ø»ÓÏöÚ«6–Ò†Nîfc˜ñ®s¶²½Ö–þŸð„ ÌHg¶53>ÙÙÂd2ô/zFt“ ƒC—Ö¶_7¦pû¹Œ&’äì™2e™e_‰M’šuíÌKÐJNJߥo<‰|3Ÿ>ÖÐ@!=ðPC¯ Ë)¡¦4¾ºÂgp€øX”ü$üõ d… @$b‹"oLÑn?¹* ¿¨}…ys&~lV0±YÊyßjíc–I‹^¦×ÃÒ…föoÆó-S ¤¿|Àz(`e|BÌT6ÝÈgžu]ÅÁªïÖQÀlÑ iIìʘü0Ƕ­G÷`ãù kK:òDääÅq8Ù)ã‰ÕÆ:æ›ÆusϽ­jy šÞ–|hMäúëk+#Gt4ìôÅ4€%)/+Xl÷Wñqõ쵩ŽY>Ÿï“ !ÿe:u•¢¡ý‰|‹´8¡Lî¥ÏØ£" ¿PO^hœ €ò"##…’¸ÛíÃx&j­)µp¡ 0âŠ{½VõÛBýäïÔ|ô˜œ£{°™®¹<ÑÇ%·] @mQNE½pSN«9V»TÜu<=bŸ‹ßvAzÕ«Gö®auÊŽON/mŸ[èXÊh|°{îÄö«h%á÷ËN YVrè,ëÁ1U˜D+=‹øîSÞõ Œ~Èb~ÜïØw¬~äˆÿW?à°–š«‹S.¸Üî|ˆ ?QvLa^n/Ѫ|÷¹ŠÛÙ_3Å}È|tà`àè6ÿ@`‚9dŸÒ1¹N€1æ æLjÓ‡R²¿ÓñÞžÀCßNט#RÇÅÙÖ§Žëâ÷mØç­Gj®Èx|: µ™8›UÒæ°ý›Žq8®]g?ñ6Ó×ÎÁ½—¹³jw®‡òóáY]¡Œ¬Ä„÷ó¦6Ǥôö*=ãÄÆ]ün;×ZO§–¥žùÇöFÇðDJ\¹zôø–˜§ä¶^b¾mŸë5ãþ…ÈÅÿË¿ v~ðs¦GGíÞðÈaó Â>ÃvJôw9þöŽm¸aµs´«ÅâuÖŠŒêü.Î!½Œ’ëQçì>Ö1ÿ’è|Ëcó!Øô^ìGÍÝÇæQ›ªËoÙüwó«÷®KŽO3Êjóê>î˜ï8¶¥×¡Þò£¨vî¢Kôt‚‚nadື´]b[ZT9z›ß AzúcZE¬´êÊi"Xe ŒÇüù§Þüì±6w‡ÈÏ.Â_*âÌŸyþùâ …î? ‚ ò3qO[çt|!©¥òeµÅÙ_´ó€ HÔ@Aägª÷Û:ÎïgA>Có·"‚ ‚ ÒWlï? ‘¸‚ ‚ ]Ð(|i‡î? ‚ ‚ ÒW¨ÿ€ ÒXÑé«6m6R‘DO!‚ §oê? ]y‘üÌiá—9ÜàBL¨«6oç牻Å%=K&ßøGº÷”Sl¯®—ü"°ïÉÿjÄó÷\ð OˆŠ ½âb8ÔϘ}OŽ“PÛíy;$.âÙã‹ôGz—ã—Û]aodBÒó¸Ä”ˆð /K ѯ#ò×^u%“B)£Äذ~~ôRç;Q/r Þ¼Jp_?™$·…PÊ(ŸþÈN3Ù¦˜¶ùlpüëüÜÌ”Gç¶+ t†‹,±swröz£kŸ]üŸ_¿¦™çáŸ]&Õû'| IDATA~{ßÐ *ªH%œ¾™7S¹ã(ɵàDÒyÃŽiÌöÀÀ]“„T̼‚ÂbB}½¶) ¶;Å&99±RqVûôc|tê8Een‰™JÜq1XùÍŽJ«ækšø4,±3–€t7MåòÛî}õ^ëä µdõ°'Vk ÿKgµ^™m'€[ÛÆA.ÝQ_MÛø|ójW“®ô‚£& ãã3Aêïš^ŠŸŸŸ†k|øîÓ§!tF°=~°ŒÙäü­ Ôö ©·/Å”Á×¶;N@QA¦(;·u@«€Q±=o½@àÅÓÎWŸsOžÀà•ƒ¸¸8×¼ý®n™Ä+&Æ EÅE¢k\\–ò¿òvr ©› ãtØDº3A óßø§3¤4öšjü]ÝÌßIÑÆe׳ýû‚jzX[[ >y†4Ÿà¤é† µƒÓtŽžùæ…ÿ®é\l’ TWWc¸EF4%z9{ïE=TGº[Y[y'·õˆŽ!p á“'ŒÜ\v÷4äÇਮ®(»½M{‘®[ÂÏ.‚ ¿½~÷0S”§f&’uññ-³TÚǦ4FG½RPžNàŸ¥(›Æ`ë›z§Õ47Q_ڿŰM^þÈãzbñûò˜¨LII!v饯Ž{šÙÈ ½ K˜ Û9x¹ðŽ£•Ã~3—Цþ®ùo …‰TŸÍ:‹¼”µ·ZÌî§c³_É€[÷h\Rt\J¬¯y/ƒ9F›úEÇ%G‡žšïæŸ? 5­GôQf¹9©^ú¹o×…AØ•ä;`Ö¥¿LÏßsFé—/¯#v>ÞêMœÝ3vP@ðXe‰yË"’ö‡'+ó]󯨎Š)ت8“0Ti\âãT:—ì*ǽú2 Ã# Iý-»ät½ã:g{œ@ H¬B×)(“É:X æ/ÙC~©"*cq°L³žM~icvYs§ H‚ÃiUõí'GŒ7V)’l+Ï•´y9{ “Ʉ悸Îêÿ°Va£º‘ô©%z,ž¡¢u<]Ñç±åí°ýB,ÑKÁÊïYl¿U)½ÜñÄÁ{'ß©cUzÆÙÜÓ×õd~ùpGùCD¥…9[>”V6ÐvQù­}y®û¸ëñÖ``Ab–J³‡žÚµr¬â¾'Ë•¸üC?TÅļ3P’:TþUŒc+€è’k?zé­Œj`zÊõ³\_OŽÇã©4¶§¦4­ä–ùZŸâßðH«ªmI‹N-oÏÏMÿdD­:&À§3öÓcà–™»`ÂÇä°¤²6€Ú:1Y²þéHZu$nH¢¢|•o¾ú¶f[U|R®ëœñ¤‹_Û_Ý^9w,uîÚ‹ŽW\béæ´Èn×â«ë㊋À@S“/õêÕaëרñЋËI‹<ޝ‘‹Ø£»ú ·ñµÀÿ̧½oJ¥Rÿ–=ä7ANY“Ç7{ïS÷ÀÖê|T pj¸E_Y+NË<¶HódÌÜ`ª+ßf{:& (}ÿžCÏóåqÍ´Cê>€Å`zÙij”kèe)!oÖœ(ª¨è¥`-”×ɉ¯“1ñûÖ˜LSÙv€EžAÿjmЦêêjAA çСœïß³{PAzUS[ PÃ×^Žw Þ.³9àg Aß[?£Rž%ôÊ£/³ÍšA¢P¢£Z÷m^Îÿ&Ö½}`‡ç‰ÒP9]E‘f®á’<Äò†¶Þ®àuÇ:9p‹K ÊøU4¦µ¼yÈöZ’—'¼@Eêfq Œ^±w;§ŸíµWmÒ†Nîfc˜ñ®s¶~ìßÊÿÎÚÒŸgîÔ[=6Õ¯”SÞ@K2ýrvÇ7#Wïw3͈…9;6³‹É>ù—ZÉIé»ô'‘oæÓÇ(¤êý)WÀrJ¨)¯®ðð¼ËÎ?4x701·ht€†·o[ ¢¨¨•K~xÉõÀ¸J‹ P\THÃŽÅcÄ/1bŒÒôi|­zLÎÑ=ØL×\žèã’ÛùÀcmQNE½pSNYÏ' ÿhwOØçâ·]^õꑽkX]Ç5™¥µBM™¥­½Åd›¼‡*ß}®âvö×LDq28ø¦Ø°Øî0Æ<0ÁœImúPJöw:NðZÒ_jü³r÷2)æûœÀC‡¢èÅE%¢éé…éå/¨CsÞ©ƒácwoñ8úòÞ‹ý.XéNŠÀN[o§Í×\ðÈyÏé´ ùA(q!äêÑã[bž’Ûë65Êe›ûÐkõl-[+^ß¶qp'Ó|,ìÇÜ6×|Ÿõmn ‹“Ó6—ÂLb×/Þö½*íÊν™tœ³ûØ“@t¾å±ùlz/ö#€ˆæîcó¨MÕ剷lþ»ùÕ{n_Óî¼å—ãê9kVÒª^ÞÙcïù_B¾I]ݦ‘tûÕÚ¦Ûqõ%‘ç÷ÞêíN‚ H_`88>MD¨ÍÛmü‚üZ–èé|ßÑDSì’›‘|VN±Gó“ ßË–6¶¥E•ãïÞ*"‚@ƒz%‚ ‚ ‚ }…^#ƒ Ò]fJ¸üìB ‚ ‚üÒÐýAAAú õAAé+Ô@AA¤¯PÿAAA¾Ìþv”ÉÍç ÑN*í‡L6:v÷aTâ³Ðû'w¨‰FRÇíÁ£§aW­Tùq¹ÒIaoäÕõ’=ÿÿ¶¬|ÖJ|KÊÏ+VbÕ… è¤èÈð›§·MçAa`8Æ/s½‘ùôÑEçc‰ìcöl‚€W~Í‘› Oûߦ$„aŸ'¡¶ÛóvH\ijÇèþ´ ábB]?½CZaodBÒó¸Ä”ˆð /K ѯ"‚ ñÍþJYˆùH¹= ”²R/Ÿ](仺Ü;Ün&¦Ø„³9~Ù‚ BžÒ›¯[OùÆ2#¿§AœI`±Åj.JUçÇa{7ü6jùVpLÞæufÛs5§ÍåÒa;µ3 C–)žŒ ¥/£¾î/{“ò‡û¢"ŒÒß>¯ÂcYX nøÊ÷7hÞJMé{E`26ÒèBÝC0¸‹8X:èÜbÂãDIÝ[ªrŠAú'æ¼eõBr!=ks¡§¦z q2«^Ú­iêËú=ô,š x†Ü–#«gÿÕ}\Nkàzt—ú ‡È&–ÉE–;íkid™Ï”1:vÎF?aËJ¨ˆ:ëô¶9µû r=—_)Š̲ð9´>â™Û –Y"ÈO"§©!âq‘wžÆúÏ. òýH,Ò–xr6µ÷Œ³hÁœ'ò÷´þÇÌ-[G…ž¸-ã8º=S}.íaI3šÉ ¯[¥†B1px<‡p¢s¬œMÚ¼¶¸“Y% È á’[íä°NqG}~‚ÿÿ<¯F—·`%Ô-ÍNä§Qžß8tèzztn_('Œyû¶•ëã­ÎøæÙ]q˜ýÑÏnÝrïGß¡±¶–Êßð±ÉÀ66QëjÛ€ÙŠÀФӥº`0wq0øD~ i)îî ­ð3Y÷Ä…¸Ÿ? Ì©oÈŠI­X!9 €uÿEO3V(ývPA #8¢Âhú8ˆdy²Oœª$ÿòif5 Ã×ë †³ãò[û›Ôs=t#³k¾HC«IHÍáÓ# F ù…0˜òsù‚ùçM`¢÷˜ÿÉ$µ …:¥1:?cDæ:œØ³@¤&ÖÝÖþA1ƒu 6Å&Üò½ÃÍ‘;ÕDê“<öî½W@ï{ž£7ùÞûgÀÿRŒÚs6¾R ØáÖûÍL¤U}]½Sj»/h¶pmœ»­C@ ßÕ _ÂJ¯µ˜›qêbÚ§K¨e^÷ÈM¿ÜôqÙ9ÕPzó¥Ò!ß]b~¡Më=Ž.­<µuïNt¹ÍÆmÓÅóVþ{ö¥¸â$nnm¹tG}5mãóÍ«]Md;íeÓœVª/Ðß}¯ ÛåÁQ†ññ™ õ•÷³¨•·,·ÞŒ ¼©gæÑŒ*Â@dx®²~ðÃ'##\W[Ë.&‹&ê*+['()ñcbÊ3Fñ °IÍ/ÀßÚØ@mÿÐzûRL¤»i*ÏßvïË48E™¢ì\´-‘_KfæeMýÅó&çdçýì² ßÏ­EÄÐÇ]}D©%«‡=±Zcø_ê8«õÊ8`ß‚ÒÕçºþŽÖ¶g’–gú“gÞ…òÊ+=sßÞÜ6C^y†¼ñ•RàÖ¶Ú;îùþst6œ|§ãºY¾c¨èÈÅ:xŸ :Z[ž´Ú „žÀý ÎýÁÅæ†mWׇւágá<ú'ŸíSlË Þov„L¨?`Î!³ÄÑy}åYK‹¸w¨ë‰|X,–À3t(¦5£Uq˜@åó”;îmÜÉŒšV€ègÏ96 äwPxþaAÀ›¯Û¤†B<Û"!¿ºÁèý‘¦m3•:v¯¼Ç7 þ»f(¨iÙ¤/8á¼@pbê»=§Åzñ› ð2›É3@Ì/ïÎ3 âÞÁ3”éÖ>Ož<¾{ÂRKš@ $Vž¼ãëÇ×ßrF3 H€Çãé4–ã“ê ¢†¦”µô¶p–aÈ,¹ùW_•Sr£n>iÖÕ‘T€[ÉöÚ}êĬûö+õ7ŸNf{ûX4AŒ’‡Ž+Õæ-X¨»|׬&`;œƒ íß4Z«(ª™ûÖ0èTöËÉóZ®¦2SUU÷’€ã)™o[5ùNˆoâ"? ä<­íeÂä·†²H«þÑ£¢nA]‡3:ŽÇ÷v¹¸ëÐÉd01˜®ÃoÏ“@ tŤÑh<¡ç‚z/ò«Œ­'£¨$6LüJôÚŽÏò)²WšDž3$=(í“ÚP“Zc=k"$âí/+tÙêÞ`pec²½AÆêàUÊç“ÃÐc9È ih¨ç2¤ý..κºz€YþÎ[üÀ+=ÃhßÑ=KŸo»÷ŽF£•Ü2_ëóÙÕk:ŽÃáÚÿÇb»_™æ‘VUÛ’Zξ Á²"üóžÈ¤Ó;ZL:ƒA"‘€WU„oÅ¡ºjeÕ) Ë€žÏþqËÌ]0ácrXRYÏÍMPX´ÀDY¤¤àï@PH¨–í𧺺:7€ $QQ¾Ê7_½PÆl«ŠOÊu3žùh òë _]ÚeùòcDù<ïÇF~u_´u€Ÿ©5¯,dMÏë¸x<žJëå}Ï“Á`~~ȤÑh]SG£}yxûÆ"!¿ŽÁ¸ÿé©+¯Füï¸ú÷€µ¼Ð\]œrÁåv47@Iøý²SgB–U‡:‹úŸÈàiö88ÝÉÞ7R€VžzËñz.@uV~³¥»ùˆ¡øºÜÈ“G>@CðÑcrŽîÁf¸æòD—Ü6¨>{}®‹çƒ5ù×m¯Ç¬4éÊ·¶(§¢^¸)§¬ÿ“ ¿ºô_€ƒÕùýCèµE‰§Ýü(Њ€Áoä`QI?°!¯ô!‹'+£j Àp.:M^ÔðÄZÙ. ¦ ³´V¨)³´ãäuTq÷»¬£óƒUCš)é{±™¼ª|÷¹ŠÛÙ_3Å}È|tà`àè6ÿ@`‚9dŸÒ1¹N€1æ æLjÓ‡R²¿ÓqrŸVA~©cvdê?ü¾lë€SuÑì×ܺO WðØ;ÙÌòJ˜8gké‹;¶.d&°oÁXékžÍOλk8¹=0 6øè¹ýïoä§W¼ô·sNíˆÉ3s×…'®\Í%ÏoÙ¸¤¡ÙÀ~gŽO3Êjóê>îë”Àòƒ-ÑÓ þÙ¥@bÙÒÆ¶´¨r|e~/ùjàÑ9â?çÉëðæ_:Ï)6á–U&í4!¿Ÿ/Rhö,AAßß<Éqc±óð}òDþ(èéwAAßTÝ3í¿AžénšÆƒœ%òó û‚ ‚ ‚ôÛûÚ¼?²Âz&ùÛHÏò³‹€üÒŠ’{•%‚ È÷…î? ‚ ‚ ÒW¨ÿ€ ‚ ‚ H_¡þò'™dšü<.©óÏuÁÜç؄'t-:)ÒvpŒ_æz3 "1ò飋Î+Æ0’:n= »j¥Êÿ‹÷‡èù{²ÁzsGÌßsÁ7¦Œ|vŽ[y ùc#EGŽý,°¥*§¤L`Î[V¯qfñ{ú²}‰iÏÍ!¾Òé_á úfexÙÍg7ͱ|XË2­Èr§½cb-,ó™2FÇÎÙè'l¹S QgÞ6§v,'×s©ñ•R¼À, ŸCë#ž¹½`W"ù>Äz{ÆcÔŒ6ü{éÕêºç‹Ð‹»Ô@þ|B†žþ²aûÛôlµ%ë£Žî° ­ÀJ¨[8š/œÈO£<¿qèÐõô`|óì®8Ìþèg·î ™Þ¿…‹ q?˜Sß“Z±Br$0‡ÇãpX`0':ÇÊÙ¤Ík‹;™Åé2ˆ©0?{–¶Sœþ£ãù%¤¥¸»6´TÀ dÝ`ñ{ÛþCÄÉÓd_™40Ò<ת2™ìΣˆS•ä_>0ͬ¦døzÁpâ¡ÛÛ[s=t#³k¾HC«IHÍáÓ#°*:‚ü,µÏ}½N¾¾Z&•szÁ’…çÏ•ÿì!ò{Cã—¿Ç´éœ7Ì´µ]òU×jI·¶ƒ\º£¾š¶ñùæÕ®&²À.@pÔ„a|üc&H}íýÀÒ¯?‰ˆ}pþ€Á8N€ ÏUÖÞ`ødd„ëjk¡<ôæK¥C¾»ÄüB›Ö{]Zyj;Ë΋ߓ½›ƒŸŸŸ†k|øîÓ§!tF°½‚Â/ÀßÚØ@mÿÐzûRL¤»i*ÏßvïË48E™¢ì\´-‘_RSEE=€¸¸øÏ.‚ ¿=tÿùÃHþs3z= í±ÝÜý±í¡-Ï6d¥½ná €ÔØqïcÏd62 1<,ÅÙXV2kXÞq´ªó1-ª×I3ÿ·vÅ5,`‡Hë:·]·ñF9Ågh-]¬9_mÔ‡{NþÅ~À(œCf‰£óúʳ–qïßóùãôü=Ybµ9h€áP˜H5߬s€K~«û «Å ;°ì `ܺGCí‹­¸²i…G6›e6õ‹Þ83ÿöN‹ü¯!‚|L&‹E× (Ô@þ0¥zyþ¡â¶éf +OÞYHgsE‰] ÔD=,øÚ¢©õ•ƒâ)wC²W•(çV²½è¢Zpã¾ý™¸¬÷í´qbêÿºlåóóš¾ý\MUð!Ï䆬õ߃åïɫ͑ LFJÀíœ::Ô%Ü )¼>i<ˆg•š í#›­UAÞ6h/½—eåy-7¾RŠ!Šª;\>eb¾æ"êC ¿ Óщ@Ô@þN4­ä–ùZŸâ¯´ªÚØ–´èÔò¶YŠkï·º½ãz6@û1ª«VVÒ° èö´-¯†ýñe….[Ý ®lL¶7ÈX¼Jù|rmÖíOÆê÷ìÀ-3wÁ„ÉaIeml6Gm]àÓéÎîq–ºº:7€ $QQ¾Ê7o¿V8f[U|R®ëœñ$ÈGc˜_—˜/@~EÅÏ.‚ ¿=tù;•äå OS‘"F¯Øï¾NŽÈ.@ÚÐÉýàO»\½dYK2c±Ž¢0$$§§9&óõ^>¾¶wo??Ù­;ºéßk¯‹ÅÐÛ¨mT*`±–y2€Þöù˜?,É ‰ñãYþ ¬~Ïv#Wïws°?m»€³—ÍÑ–þN1e-Ét2»I­ä¤ô)úÆ“„99§(¤?‹þê ",§„šÒøê ê< ¿þi+Lw:^°™‡¥¦= EO#2Pèþòwj>zLÎÑ=ØL×\žèã’ÛÆ. ¶(§¢^¸)§ŒÕ«š£ÎV²s¸&Lj©Ê|zÐå~%€(`8&/êŠõÄZÙ.¼¹JÂï—:²¬:äÐYÖƒcª0‰V,z?*0/ú!‹¡`?, Ëß ¦ ³´V¨)³´ãä忀лާGìsñÛ.H¯zõÈÞ5¬=c¹ IDATŽÝ’ª|÷¹ŠÛÙ_3Å}È|tà`àè6ÿ@`‚9dŸÒ1¹N€1æ æLjÓ‡R²¿ÓqrŸVA~!ÕÍJ•¹Q§ÿ±»XˆÆ/!2PŽO3Êjóê>®ïúÿ' A>ÓµO.ÑÓ þ¹…AëÞÒv‰miQíl¥gé‘A>)Jî˜ÊµŠ‚üÝR€Æ/!‚ ‚ Òw¨ÿ€ ‚ ‚ H_¡þ‚ ‚ ‚ }ÅöùéžÃsA kt;‚ôÎöŽ_P·É‚ ?ºÿ€ ‚ ‚ H_¡þ‚|+:}Õ¦ÍF*’hnc„%´‡ ‚ ¹~÷ˆÒ öxß ‹xúØç ‘l?gœb~u½d—©°7Òg­DS!,`G™Ü|ží¤ÒK ¿ü–S7BbŸ<¼é¼jBÇ Ó†L6:v÷aTâ³Ðû'w¨‰ô’'¡¶ÛóvH\ijÇè&v}1ÜàBL¨ë§yöF&$=KL‰ò²Ô઀øf ¥,Ä|$€ÜžJY©—ÎWS‘–_¤PÊüL„Û?Š,±swrý‘fÀ…-g%eä¼yíwxÙH6Ég:¥R>K^F ÙÞÞt}¹‡Ìw/jP^˜C~â³CñgL}[%:¢bäÈŠáãÂÒYÁ’ÌD‡½’–ΓßÚÕ Ho ÈÎ8§ÏßùYÞ1¹¸´´¸œòl×èÏRÞöÂiæ,.‚ ?Í_Z߇Üì:¾xëýìÒô[ûN–R±ûWkj-û÷!ϧ ¾K±ïC`±Åj.JU¯q8ÔmœUóO¬[¨ov…ºÖmã, 3Ø»‘àg¦¥²ÐÐ9_ÅeÛ,¶;ŽÈr§½c’Œ4µ–[Ç·²Ñëü¦"ꬓë•ÄîÏÕäz.UQš1¥kál‡õ ^½vrš"£çiŒø¦ä•—Mf-ÐVÕ?ÛK$ül[O‹ù¢E7 ¨ÖÙsÎrë÷G#ƒŒcág6« Ü>~òQå0Õ›÷ÖùòîÝ»w[ìÞíè_À§»g¿ÞTÒ«ËGN<¤ˆ)»šÏf½áJBO:;t¾™Fx}ÎÙù ³w\-°ÙCÞ>9¾Ûê`ðûQ ÷ÙüÃOá†îãÂþRoãäâ·Ã6.-)–-{{«ëåˆe!.ÖÖѵŸÉfŽ”\yùÝÏ)$‚ H,AW`èâ×#šÖäÿí¶ØíXúݗıS˜_?Èg)ýì?å&¦=¸™YÝÜZ—{ÿ^´à´i¢ ¤bæ›êëµM±óJ,VRÃÖûÞ“øÈgÎÛkKu- #2×á^hLÔ·£pí1%Ô­ÎÝ{ûäñÝÃk§ðÀ§À»Oâ#Âتr}*ß<»‘oîÇ `µÿN3·lzæ¥×X …÷}ž¿kj, ½˜3g `Š¢Ï]~XÒL§Ö^1$¥†²IMœª$ÿòÁÌêæÖš _¯3‰<L± OHI}pÞm£"wÏ4´š„Ô>Q1Ò@WLy¹|bóæM`vžO )› IÎ.xó*îž‹þhFRûÀ½øŒü‚ŒÈ½ŠñÚ¯X—¼Ž{|q㨮Ušhìú"«°0+5äÜ&n‰‘ ř·O8]8àJ€àDÙA¸‚|osÆ­‹ÿ;â~> øÉË÷À¬­aûiæ‡ü¤¤ÄèЀ{wÉïhuµÀ,Kyð ôU5@mM-ë³îʸë^^ÿó ΢Ô¤ÜõòúŸ—_Zë= !3ìέ‹A¹#¤ú}‹u`°œ‚ÜÐÔÂè ™b—L)K?´tᡇéùY‰×7MÀÀìãÙe”Û…ËO={÷&Îk™$€’Ùùäì‚7 ÷NhWHÉô3óó²RžY7©ÏçâyƒGŽ,æÂqÆŽ.!º3¥—QJ’ýÏíVçé5ùx‹JY´¬Ø¦ûJ…f. €•Ô:x76#'‹~Át:_{\ß¼“ktÜ¥çfEŸÕÖ¯r"'Öµƒåa‚u•aIˆƒïœ„d–´t¶¤„±³õ¬\lª!‹¥÷ƒ¯x¾0ÎP‰—#FÄs·WUfÈÒ+Eÿt¬díâS§±‰É¦rq+lñyš–_”ó"ôœÅü$v ê;6õåÒY.‹ç:(6üõˆiÃDM9¾mL>v"· ÿða^<ø6ÛH,ZE–ûRG 2ôÝð%ZQô»w¾¬ù,”Õ)‡à:¿Ïî‡{hèF? ¥ìîú¡Ã·…PʲOh°91f|ÄóÞ>ü²×ÈÁëDôó·æççoml踘ÄL8¤³õf`å7;*e8¬š¯iâÓ°ÄÎXxYÛɾr1ÒX°Ì:AÆîß'ŽRºkGFÚ®[íð|´Õ?jàÖ¶qKwÔWÓ6>ß¼ÚÕDÚíeÓœVª/Ðß}¯€ö©‚£& ãã3A M9Ñ?Xéµs3N]Lkë5ŸˆóÝÛÖ)ÿß·DúmU•°ˆ”ExÝ#7`ürÓÇ5fçT³IÎ/ÐmiH½})¦ ÒÝ4•gÈo»÷eœ€¢‚LQvnë7¯[w™™o”5õÏ›œ“¤yû}ìóÄþ·~ëÿ Çm8uv‹ ÀEûÎü£Â™~ÎÙýansGÒêHw+k+ïäÏ~!Ñ5..Kù_y;¹„ÔMÐq:l" %Wg©hŒ‚¸†ÊxF]]ã ”ùŠ·Qû¯òÙ%%F_\Zí¹fÙ‘´Þ¢ã4ãããŸg¾yá¿k:@Ó£Ýz;-BS|–U{¯[~˜ÜŸ¥³ÜCCàÂ#&7N ¹¹ý\©Á( b?:~húü ‚:æ¿ðOgHiì5í:¬ ×[¯wçÁkìÈ%ÛôGIÃñ’Ýbñük®'Âê'÷þwIÃÑÇ^wXñÍÃGîSF.?|v{¿î3Óêu '¾o¦7½/,/¤xÑ Ù~Êp ‰e>_½Õ}b¶Äp5·ÌÊ Ë$$†KH,ð(ÞåÝRÍ•'ÈiŸü¸ÙsçÔÎèœÊª\Þ+å§[gÏ3[Öû Céôeí`y˜h÷E•a õ_TPO½Q]ãG#,*bNÖ•‹ež½,½Ï898¹ê*§–¾Ïæâ[NÖU¦éYhü$õ9¼’êê<áOÈlb¶çùeå¶Îù_ú¥ÓåTŽ$Ÿ­À ½%ïÖõåÒY.»\HxZë;åâ­ZÆaþþ-@ˆÄsTbxØPnfÓûe•7ilâ±oY·´ßŒå)Gc‚—•µ••µ•õɈwÔüüb¨Jˆ/P˜1À­¬8Z##âé¬3mó®(›ÿ¾‰‡[$j¸˜ý"‹ ¹ý×Ï'1нëBom¦ë›bššÚ &ñE±\û¥iÉ1cÞF»“ßµ¼¾ëj? ÓÑU)>u)¦  âÕTB Rjì¸÷±g2Жâl,+™5#Æw2£– PX@év¸.¼ãhU1æcZšà°_›¶]]Z †½Æã ‘h4AdÜô)\¼ÔR*‘Ôy[€Gÿä³}Šm¹ÁûÍŽÙÕ±Î=„[÷h¨½"`±W6­ðÈf{´©_ôÀ˜ù·wZäÓzõP˵Æz'‘ìwcüX%¯À 5îûÆÄ‘ ÛkÌSœ>äì+Ù‰\Pã÷?7ŸRý¬íêâMÙ¡7³a®‚Óæn1k,õ²p…‰9ÕR<+WN’P’šÿXìÜ´tš(¾:ÉíDê?ü8oƒ6Ÿ²î¿^§J­ºZÈêÂû0ç-¥€ã™dhû¯º¥­Á•·FZ{[LóµÝüTÀàÀž³§‹t–ûä÷yàË=F™äšÀûÈÿv]¤]¹/D~7^|zÍ»hÀÏÀà°í×Vj¹Y¹Çs•«lQÒ—èHPìjæÕ°V=“iü<Ü0J^j¯{òŽæ®Ÿeè®1]Aèò |P{ýìAïhLbCD1Ž08ýûo5jâΧ.i hxèsÊ|Ф}hNð»—ÛžœÖ̉®*!}óeí`y˜h¯È_T™q«ÜvteA·#¨ X¨m¨;Xߌia0¸ñE€a]¹2XåÉzéý;Çini¼Ge´&·291À¦ÊÔ? {¾_]…pç1Ï5ɧ“ìb°¨\X,–À'*‡)Ê~vÑâYû’Ù& Kg¹ Â$"=¼¦µ ¾©1F˜ ÒØœD³Âu@\H±¥Þ´¼6ÊþÖŒbÙ*ôÜ—z!þU,O9ÚòÂoæp*ì}à"\½÷ŸÓY˜Ä„X3cº,„ Už‰£%<‹laŸ/#«±zySÃb~!GaQ&­ÔeÀ-ú—ý‡ÀÎÇ[½‰³{ÆJ€îGZ Ëd0¸dW9îÕ—!ÐhQHjÿ’@ Ðhg™M¹Ñщ贎MK§Ó1l{L‰•'ï,¤޳¹"ƒx<¾+æçê ¢~º¾·DïëÈ"A!•ÛL¥ƒl÷–õµµ­ ‡Ã5=±QÀ³Omíì¼5øïšñ€À3Bkß gÌæ=$U¿|×Òh­ò¶A{éÔžÑ:åy-7¾RŠ!Šª;\>eb¾æí$VywýßûæN ¾‰‹ü¸ucáÓØZýMD"@`•÷ë%4 rÀ.. ð];hoüS -ÿÕ#ÈAàäøÀOÜåßf ±*Õÿð>ï˳ê™hWüÚw†…‰!…Ò¤¸éæêËÇ]=ÖÞA% ¤UUÔ·oÕæ‚¸Î†âa­ÂFu#éR ¸|õ(BîqÏkÁo ImÇüÕÆKǾÏÍnA}W~Ïbû­JéåŽ'Þ;ùN%ËⱌÍm1½gÛÒKëÿÕÎ)ÿ‡rpŒ H¤·w°|÷¥ˆ»0L&èt:`1W~¨T*P.¯ÓÚã;è4*H$ ’º™¯n;¼êS!U¿ï[ˆ‚Ô†ËQKi@àúXBþr¸céCÝîŸûþcþîþž5ˆ/öÏ/kËÃD»/ªÌL#ÝeúÝçHÈÌ;u8²š@e2€ÙÖàÐ~¾[=úT¹Xæ9~1«¥wôúYãhÞ•íC”YW™w¡ao,Ôg`"DÔå¢üciìcvÓU¹J¯Ø”qpyh>ŒZäáäü —ÚkòÁh.º–ÎrAo":\Ÿ .õE·‹Ü}Y:Á1€èíJËVq »–ö›±<åÀˆ/u¿´cå†ñÖ+…t`>O¤®Ñž1Ct¼¨3õ鳆¯äÁ`ˆÀ0»­ê77 _öº½6ŽÕᓤ]Oâæ!P£âº>gíæ§sv®ý襷2ª!dè(וF£ápwr°\‚؆¬Ï$i4ZÉ-óµ>ÅÝétú§äØî[„GZUmlKZtjy ôÿ0ÿ—’5S&~%zmÇgùÙ‹+W\(n™¹ &|LK*k¨{÷7TxH{Û%,,òömÏÍ9CÒƒÒÞ1© E1©5Ö³&Â~–¿ÙÕÒ[LV_^³Xy ü£U¶º{Y“°ìrÕW’÷¥ð=ê{ß׈IcRÏW–Ÿfs¡òkKÿøå½µ û°!jþ«i`{ï‚e«ØíûOû“Éìøˆf÷¨([¬O98&ïö9±˜+åÐ*»È·þZÈ -?c‰ú0ixyãÙûÞ2ÆNæ8(À+Çüèù¶Òãó1¸ßpè~?ÿÐúòE–¼þÚ‰‚œ$ÞÑzËÕÒÓ߇ç‰ÒP9]E‘æ¡Ã%yˆX(ÍËUÕ™:”D"­çêH›íC5%yyÂÓT¤H¤Ñ+ö»¯“#¥´T\qî8!¡‘Û׫t«%mèä~ð€§Ý.vù!=ezêÊ+ÏWž!¯¬u„Üd5£½ó0rõ~7ûÓ¶ 8Ûc2ŸGEÑ_?Uh·¤æj-|dd.]ZÛÞbÅ$,`9%gÏ”)+-c³ VrRú}ãIœœ‚SŒ ÒŸE­G XN 5¥ñÕ”A A$b‹"où&W‰í)_Կ¼9e×õóó0™J‚в2ðkít±?|z󔎤CÆ/4Zm4GÀ?y‘‘ÑjÕ,¿Äˆ1J §ñ5¶ò(mØ®.&((@šalºÍÔt›©é¶u*bì‹„ šÖä¸çtÜ´‡ö˜šÙ­ÍµÏ_€ˆœ¼8€$;e< åÕë.¥öïܸÉÉ|á¨KIɃ̗éTmhÿŸÙ·]ZœÐ@&÷g°«=¤ýž‰ZFkMö˜-FQñ÷ŸN£S­5âÿìy\LÝÀŸ;KÓ¾ïDoI¶-‘5ÙB–ìûúZJEÉRÊ‹Hdç ?oö¥•ТŒDJJ¥}ÕÞÔÌtïï©$÷fÒf9ßÏü1sæ9ç<ç¹Ï9÷ž{66û ›ý„ÍÉ"Þ vuH _ð÷’ev †d¼-&Ÿú&¦¤'¬³[±j×b=€¬˜7ùü:º¤'¬Û±bÙ×Ó'ϛ߽ɑý6 7#CzÈX=U9%MuE$ÇÇ+3Òî±ÔÍcÝ€öÜ&ñÛѸvÞ&‡[ƒ´¨ÔII{yœРó™yå"¥…¹S$JQeÒü« 7/÷ðqyӒ߀i-=è8o˜¦‚·('§¸†ÿƾêæ7õ]ðq㹌a"Laa!É£JR›9PÂ)ß‘1&¯¼\Dî~g•…T¹S·Š})??@fÂ'dzǗQ,˜áÃøk”ù<ó©ýe@m˜¹ù¼É}¥É9XÃ.léËÊ ~\<Ðlž¹ùÜarÂ#R©¿vY_H~ôøuNBëTÕÈŠä”ædä¬ä²©E§¹' e^Ûéªf·ûÚJzIjä¹Þ÷Oß0´õ ´,ˆ¾ê¸õŸ©û=Ü`Ñ2O߃û{Û︤À,ÿ~rŸ7eϨÌ÷ ‹Î.Wßu2tvf¤‡s">û¿<ÚùÄÝù/Û\5[Z/]œš]ªP‘Ñô2`„€%Ç¥ËUÄ¥×=¼³ïß­í`ãé/ÏK‹¸hõo<PùäÔ!Ã=®^ $ýùÓ‹sÎW)_TäÞܹOÅÖîK•è…q÷÷ìõ.€~Ö§Ìø§¼#6À{7“¥—³@kƒwÄ‚[Q˜}ÇáP³V²RR?D̪í?T?Úµx/cç’g§±ØÙ±Žz½dçîa÷ÝVô«}oÙY…‰®dGmqÙÑ”ÆYºŒßµ7žÞwÛØ}Ë*÷ƒonì™5ùŽý¹­SÊÃ@eÌzû1µ¹æœ{õ¿°œV)¢)²=-ÖÿµÏjêk¼ ñÞþ½NøoD²Âü¢?wëQú(šß4${XØií]3zÃN#n^¢·³ƒÃÃJ€ÿ¶nê¶ÏbòB+=üóG¿ÃÎŽ~•ÍÈÔC*ÇnqíøœyÅz‡çwÇÜÚLvàb[c)vò}ÇmG©V™³v¯pÞµ`¡Ý üX:?|ëiîø@ è0Ä.t84U•óÆÇÊâøvZê? ÄïEŒóUçŽVø)AµÑZt¨/•ÞZ­}«£2höúi@ ñƒÆˆ¦““íh¿……T'´·;ï™4÷Ÿp*öO¨¢£ø¥áW©q¤t¬ò¿´éÚ6@ @ ‚‚úñGCS4gÅJóájh<@ P€35­Óî1cŸ§×“È G÷Ï;ÎêÎßv_¨ë¸mçnFù_tžÛ“€©™¸{ÿQÀ¥­Ò­’/ñ5º6aϢžGG<‹ {屨3@+> äwëÐZ}y@®ˆøçšš•‘••‘••òáõãËö;×5ÿŠSl]v¹8Íþë›H¬™ç³²2nÕÜÐÒŒ­ˆ¼ÞÚ“÷Âß&%½ztiǸNdäñŸ!/³j¶îã·^­Ÿíó¬Œ'ý6Ê´ÕL7Î55+#Ô¦7ÀèƒIõßÿTVÞÉÊÊðÛð€Î¶ˆ¬Œô“&͈_ßXe¦$D?ôø[O²m1-©ïrãöøÇ$¥&„_ZÖ㻽šÚÂK§g¨6}_«49rÓ¬6È=²ž6rü,ËË-Så@ÅÌa£‚Ÿµ©á8S›ç]ÿ^1N:©°Éxoâ¤z aI)tˆ(¢‰Þ?v¸ÞÀu7 OL®7pé¥ P6s°èd;Ëhò¢RF8o%†\ñ‡Røô¬£ã‘[©rFkïQÛyι°tØxcÓ£‰mœ¢Õ4vò°›Ö­øñùS·’¥Ç®;±ö¯ýß±¤ùqtÜëèùš rÚÑq¯ãÙ0Š3Û?:cº1êúCÑóÚ²u¯oÆ„íûWöheÝZ‡–Õ÷ASt{¶mööX3#LFo¾ù êž’È íÿî­5Éåܦ>MƒÞ*ý9ñ¨ûÞ ¥NQ|èËìÎj„úìõæÞíä2§èõ‰–÷Š €Î`Ðé4Àq +²9zlYï–ŸÒŽ@4…P¿}Þø\ýPRÅÎ{qË?{à m䊈?”⨛'Oºmwº“¬Þ½5Am_VFVÚ»ð€ç—iÔIajÆ{n„Ç~LŽ Ú®×0ºÖÒ+1É"ݧÊ77#qè}FV¨Í„™nß%};9C @nèº3~Ïß'ˆ¸í2·§0S{ÎAŸgqŸ23²²Ò322²<牑Gê½ÈÝÿU|JJüK¿Ó+ˆ@o›à¬¤#Ë—^‰:=køò›±±7—k4Wù_ƒÒá¹cÓ>;‹³o@dÄè¡ 2{’„ÂJ$ö„Úwðã†ZÞx•”}k³®0´Š‡üTä„]>yòÔIßx.@Ñ‹ë'Ož:yëuYíŸÒ#¶ßz•ôþÅÕµ:B@éÉúëNû=ŸüámØ gÓnLr{R˜N~ø¦ ¯>$Ç¿ ¾å¶ÑPµîѬ%ö$M“LOòµ0÷v'tFK)Ó“¨;^ùÛb6Ñ2”Å\»rÞÝ' k5Êl:Òú^[7§Opºó1>òòŠžŒú « ¸Þ<ö+óÏ•U*¯"Š»™¸åз0«œ"+¥)‡Î®ïÉá¾VûÇÉQ*Õ*ý‡Øs¬îæ`Ršš %ÅÅÒÒÒ•¢½Äíø*M ÷ORÓaÃmÎX—yµí&ÇKQâ}{Jàü?Z`OÒ4Iõ$-Q soWââ>è5<¦oÂû$ .&yËSXLBYG[ðÄÄä+FSÖw5Y2®ÀëN ÞÅhûZ#òÙIÙwÖîÙ_·w¿%Q¯þ7?iÛÿ,œL’Ùcí9שJu?±N³Ž^¡I±0®µ¦L © žºvÏÑ[w7Iß8zç˜ð€Þ\•&“Í÷¼ée·u²@vàó3-îw^ºXü²¥ÅÅwT ¢ÕÀ Ñ> C®ˆøC¡‹Ë«¨ªë¬• ïý=¯x}ä5êÚ«·(œ:àqÞåæ›àáWŽ„?õ:qûms3â“ë»ÏîØé¾Ä%ÄACw€4ûŸt:{jç¿‘€© ¼÷Á2ªÊr?¥¦°%tg’Í/ÇI£yYN›µhËa³®^ ]ºtæ‹q"nžŽÊ†š°knÏ2˜LF3•ÿÅ ŠScÞÄ|,à‘Ú( òm •=JìÛ°ÿ¸ó/òrÒ­â!¿ UÏ]—¯Ûiu>€©  Sú­'KBQè훡O.øD£·Þ 1rÿ$5CZZ€!*-Rï}hùŠS µ´Àž¤i’êIZ¢æÞ®ä„=Í0´Ú4$úi8¿GFULò–4Öy%&¼ÑFÑñ®ýçZn4Ò’fŠHT6~SðÃÊÿjˆ)©+ˆT¦ ±Hì)8¸4•=y^çÖ:ò«PUPPÀª/;Ÿo<™ 3çì»)<1QQÀ%HìIj:®¿‹õ5Õí¦–'FZUŸžZ·òd4@@{Ä7÷8‚­žh3Y=-äß³×›˜—ÑãÂsÌrÝæ[º] ªí<@qI  Üjjj@ÒÈîYÁ¡Õ»ßö4ëûÜnöÑüÙsôÑŽˆ¶¥¤¤„%&V;¬'..^\\Œ\ñ‡’íe¿xÑü™“ ޲ (¤Âq€Éd“ÁløüH‹³Wÿ;º¢¿HK2"8¥¥åÕ5Àápë2b0Àåò@ËZâè.]µu fï¼—^äÑY“¬Í×Iv›=aìÂs¾_vÁ•ÿ(*.‘‘è¼àBøÓ`G#ŒÔžÓ {¶†‡ü|íÉEÞÖcÇŽ;rØÀƒW]+$·'¹éx ×,Mt{鎙¿óAaW#ÛÍ“k‡²ççÏŸdde1Qyy€‚‚ò4Éô$/‘à¹w<,¡·ÿn¶Ül#Sˆß_þn1¿¦*ëÝóÈë·Ã‹Ajà€Ÿr®i}oð]}çòû SP¨]·Òýï‹Gú­˜¶5}äߦÜkÛ¼˜ 6Ïny9[ã‘IRJŠ“ŸWúu '&*nÓ´yÝ_ÞJÑ=Q-æÂ{(­:¸"ˆÍÆA†Õp¸.h´¦ß!-¥úMtü¦)³µžßÎ`õ1§í‘¥\䊈?‘ÊÔçß}ù-ÖcÂ4]9mM€tßIææÒ®>ÍÎÈÀaØÄMÎ%“”G÷k›f°h‹ÉH z¥þwîõ³feDJꛘR˜>a݇R3ô²bÞä°ÙÐÕÐ|VI‡¨©.N‹ •QE›FgЀ%­ÚUkè RåÕC—¬7¼D™Y3”ÿˆ/]d<ÏÁ…ý¸bм¾Pý4ä9/•MbÏq‚&‰‘Ù3ñ)™hkxÈoErô«R00fTïJö€¥ÖÓEno]pœÔž×ÈL'9ã̽Ù×½#‹€WP–—ÇwyÁì™Q¼f†é®“œg’cGaDrij|ò4Éôt §J÷W¹šBB´Ô +©ýŒùÛ(’óu|‰ÞÍ é2a‚,àaŸÒÛEçfBZß¡7H _ð÷’ž*3‡d¼-†üü|µ œ8‹ûL¨] þáüÂѧórÙ ‹aP‘—VÈ:M \›¤5Æ0ÀD&ŽxQ÷q Ù×wÍë|ë±ïEë¿"ì\JªÙl -ðv†ñ1?û~^ϹßIœÛƒ"^DŸ2“ÓÚàñ"úÒb5Ⱥ¶óhþøîù^¶ëaçú¸¹"²£¶¸tY9D@iœ¥‹ËÁÅýéPp÷°ûó<Ñ>cµŸ}Ù@Œ(¨®L}Ñ:‹ Ù»W¸øåu[hg=YîÃMÛ•®¯Þß8,2ÎÊ娱£î'N_¾°­?ißž}ßmo`zUî‹]˜5yǃšSJQfÖÚÊw,%>¶+Üû$o¼výíò Ó¬®d“ÛS`ªÈìI¾ùJ»yȯBõ£]‹÷ú”ÝyöÜá%7¼^²IýSŽÔt5o|¼ z™m9pê˜åÀ"o§eNÁüÁìYè¸ê°ß'©QóÍú›kÛÖxG§I¦'uº¿ÊÕ¬Ÿ¦Çâ÷šWLP»ÅeÿÎåý9‘W¬wxæµ½Â͇´¾&;p±í³.™÷7} }Ëõ\Ìg‰¾†jÏÜž×F/ËËeÄÞ>ô×ßÍò¾gî&µX)LXX¸þ‡·±äÔ¥MH#È”i&>^¾íœ©œœl;çˆø (,üÜÄ¿¤-íÓª*ƒ­ñ‹æ&ÿP…ëkÌEs@¸çÆ‹ÿš'oí¾àjEG+†@ ?ýlŸ?XÇò0ëgÑÊ)3»ŸÔ_>ç•ϳô†Û45ºI¡)ßøYHó»èeb1éXÐl&5켄»\¼Qç@ Ú î§0/ŠÝ5€úøYà&x®ïÙÑZ ÄÏMŒóUçÌ¿µÎ@ @ ¿?”ãÄDãöÔ ókbã„6§é‰ì@ ~odºßj Š’:r'Ȭ¬o…UÕÎß@ @ ‚ƒú@ BPPÿñ;1`{ÿ̇Fß,)ªÍ‹#ÜcÆ>O¯'‘AîŸwœÕ] Ÿu`ij¨°ÚOÍ`LÍäÀÝû.m5þaý ‘Ô¿ßÓëIÄ£·­*Çëkîrý^päcÿÛGþ©È—ĤuW¹ýç÷ôá=OÇ9=E›H“®:rˉ«~aO?8¿Ç´›PýgŸ õßg,Y÷{Àö ˆgQa‘/žúœ´4Rj“ÖIöYwéqˆÃð&iªã·žóñ yèytÍ ê:nÛ¹›ÁAþçöd€ÒG÷ÔÞCjOò4ˆ¶F}å%_«~ß—k¤õhK=£"êÃIª y;߈B7 |Ì‚úy2DO'|Ü‘ºÏ>m%NFSV” ý#u&•&ôŽâã|úöP' â½{€Ñÿ0®gÔ…ÆL ¢Ÿnä‚ÚÝz4UpIÁAû/!­…Ü4« rÖN[’Bלwðß-SƒÖÞ,€ä33çŸOý"×yìLõ€MƱsýfèyêÏaI)¼´„C’$/ãÕ|u„F?O‡éŠ++h+±Vå&|õ_"0!¯DgÕþyøñSd2»ÏÞwp³á,û ŠN³·/cÞZ6ñf¶pß5'­‰éŽ Z;|ܵÐ6AÄÀâøeo¦¹Çã¤i*ÎtØ®õÔÒÜò#¡iîrÚÚ4bÕµÈ>îÇ~Ùð‡ÄÓ]LgÈ ³ðpZüäñæÛ%8§î±[8Lè}Lî÷5L×ÉvŸ¿. ˆÞÙìðí%c¯¼¼S¢bæ°QÁg“éº F¯•îÇWŒó³¼—ïm1ñ “IdˆµÇ¬ø °'išmRN¢-!­2|d&[Ìͪ'«2ÅTí|‹è4Wï ¥ßœÓöq-ù[5_Ce%Õé£~c)½«}e.DôØB”fˆ ׃€8 ë2t¨l'•› ©‡h.%À—˜*Ño¡èŒQÝ5—Ô@üþˆêÌs°_¨×U¸ôcÄS'.…drhª†»6Lè-ÍËŠúÏÉérLÔ®Ÿ £€ååU‹V^©KAjŒíEû•·l‹®¡ÌGEN<ê¾wB) >ôeö,µNd÷‚:ƒA§ÓÇ®4j«ãRÎÉU®ÑdÕ[SÓ¥a†]§ƒ BÒªê]Ä–U'gï(xÿAF«»\ÌUŸä2 Ö÷I¶ù mz…¥†œ~}/]ì舷øê.òž7ÀÈ(åö¸¨ü O¿uÿŒÒrO KS¨ÿPÝ7wׯ}æÄÞ5è}Q£8¼¢ˆ— R&Ê,€7Íd'†ú¸]ù0ì¡vÓåÅÅ\é²JÓÊ+¸å%Å¡¾{½ñYš\†¼>±À€ `ñ&LsÕl§gíÓ©ìI–&)½‰1zðžKhHbï"AË„(¼HKúDôt"ªÿ‡‰™ RPp—ö6¡»(ÜCK+вÇi—i )maºßŽ‘ö!S2U.—÷v¸û׆õý"l—ž~ÛÛ:вÀÞó/‹M#ŠÃ\mì½ÒpÑñ‡ŸÌz>yÕÕ|ÐZï}ˆ¹cê‘7-Í_Zoå^›©Z²bR™ùôçf[{•“7ª¬v¯ß[–—}sŸãÙÅÊóH¢w[qóÆò®§^˜@¢ûÔEÓAnî‰;½vs¦Ù«•üÛÖ?GÜØí‰i„ɪ«y ±öŽ›¨ÃÔCѤk^I« €ðU«5ü_ÕÜÕ ¨ªŒ í|³({‡}ÄÊzâŠäKU¿ÙåЬw†‘Š¥ÏÜ·o¿‘\Caù–jÿSBïNtSÆÞ‡}øópà×þ%>‘ŽÃÞæˆ¤Cµ6ˆ0{•é§î÷ ñqBBK{\à–[„ËvÆò>’E\²9 ùKˆß¥™ÖKð«k'1ÛxüŠ^qqck{˜]¦#aÏÛ·´Wm ]¯×f†ãM·ÜHnШÊjôì$%­Õ³K“çÇž˜cu7“ÒÔT()®m­Ô—]~ø$Äÿ¾×™=³µE2ý=ß uº¹Yù–Åb÷ƒÓsÜÖ“w‚Q’“SÝsèPiSY°†´Œ d<9y#ºcJë Ò.Ÿð@JQ‘ÈÏ«î·üÐÎ)êy¹¹ ŠŠiJËHW——qù?Ê^^ý74bŒÕ¬»æF!iºŒÞÍÔ÷‰mu-Ëãï?M) 0犥CùêÛAAþAžFa뜟°¤¥¥yŒî‹þ¹þèÑ¿óö&]¿z{$¤·ÀœuûR(¨ìI–&˜:°¯a…‰®t,ö(ö® W )‡iÁÇ01SBŽPå%‚0]–ÁòS[bŸ? ºŽR–“[DuæLÝÞă®ð×d†Ç“‰«ÿµuÉP@exÈKm=}qÕ!CÅÃBc[ž¹ªéf³"÷¹F›w>9Óc…µW9e£ºu»vÔîY£L–É7Ù·R£Rž,zÒ¹Yºúf'ó<× ÖÕ¬»èbÝžðÀA"ÿ­36vþh°`b€òðW=†ò‹©¬7Têip ZË<Ç4ø)CQehê ,FǺ]ß1&¯2Tí|‹(}哽AרŠíÇ íñ>#€N›ôr€ÆTSÑËËM&®y¬f¹l€Òm~mH¬„º)QìÛ9bê†þ«}X†ðyië†~hG¥› ‰‡TB—ëM†S!qò¸ÍlhüñÛC£Ñ˜òòXæÇ°kŽaüÀ.ݵ ž‹+Ç¡<0à…ã¢^2WÔU»G~Ø‘Øb.@JrVƒ×«)×vmÍÖª|ü½sp…TOœ>y츑…7î|€¸S fý41õ©ö‡lf„-û/3py °æ”]Ž‹sŽ[Z„å“Ï AyÎùí¡>Á5¥yÑ÷^g‚HÝx¦GïÔã$úî^·?š Ìbñx<¦¢ö ~¢’Üt®‹E‘&ü4ħô·Ó-ûâŠYîï)¤»­½² èLâãÕM-~­ÓrdÆm³Ò|b·äa³ÛìKãÌÝßb€ èÍݰÒd¨îj×Ã['Gü}·®#$:zʘtï9‰@eO²4¹äÙÉð™ƒÉWåï¡fÐê–ŠdúaåÕ™PB¢”@~,h÷ hÏ0zOB$+j§=j^?{Áf«LŠ /¬œÈfÊñçá§zŸ¹—\ðáÕ;|MyÏ+ ~»EÓ;Hl˜žêÓk¯©š­ež4|ýýúÐÌoLIo•ff–kbF“îÓG ngQ4ª]ºkç…‰-ªy%¼B[¢É•'NYüª¨¾)l€ø×彩YP·Q0Óë‰è0=ÕëÑ8@êM‹9̆±Š(§ÜÉNÞ0—si±1Ì­ ¢¬2ß¶óm–ä‚¥ò»[JDïåxç8Ú'ò7¤—RîºßN((}[­×I€Òm~]È­$4„èÂÅ"_ŒlÑ” °°¬ú 04† 6$r@®±øO Ž}¼ºËp£¨NÆŠ €Nµõ«à’Íõ¿üñå†}cï±.[¬<–)ñÒ¢ÿ=zÔ/• L&SÕìȵ < ‹°³cYÀ`0jx¤ó“J“ƒï}35µ1âCmÎ;dxýwÛîXX|ÿÙŠ[š“];S>ëºßûyÝ52éʆWKÝr÷´þ´u®¯“õ‰çe-)ùŸ žvo—Ù}'¡v•ج3‹tëÜ ìÎæÁw™]'î<숭ÜPÍáÐéôЇֆ$f1¸ÕT“pà§Qîm5Ütm|¶×P<,$œ¹èb:&¤dhÁmé†ùç;¶!6ÌdôG/ëW©8@¦çÃå—MtÝߦ¿ðºšPR%×ýR.÷ц»áüôÁ#ô?=9•]ŸÌž¤i>ÿQ  Ñ8o±Š‰ P(|‰¡îC‹©o œ`0ŸƒC“WëõÅ"ä‡jG>xI9“ôi»šô\8+úcOû+^W”çFïw~ @Þ¨2™ÌúF•Çã1 Óú Òèß%ûêÚ•üoy!OÓWéG —¦qïE pKsÒK›Œ^kàšµê>6Û3¡Á$AZeHÛù6[µ©Ær2 eòþNv9àkgÀ°ßtº ‰•J‰n“ˆÌ 46À·N$Û›¨xC«jR‰­!8þ4ãk*Ÿca/0:j8 ö7!C­¾à’‚ƒúˆß‰²²RQ11þwQQ‘’’R€Êø;Ž«îSR}°ù΃ۦG­¹‘ÏãñÒ®lXàñÕ«£šš:½vø“FkØA—P7Ù½êuÈË̆ÍÎ×Ì1Ëu3²ôjxÃR1Þm+wõïËïø­9 idwhFŠójײÙ—=·›;ÏwŽþ™ç¿ç,Ôö@¦·É0Ö3ßW +'W\\ ¡5v”XŒÏë|‚[–ú²ÈjXoÍÏ£Ë+ˆT€‚‚b^ÕÚÄ’’–¸€ ,%%©œyßSƒàä†?KÜ7ª >vè|4Sˆ¨©©½CÔà8‹Å(.)!¾Ü6jj¾b’®´KeâøA9qïJ0õÙöÓu‘erKòòKqÒ’’ïÂ`u›µÛu¡Žd¥§«èÖ–“ûËhýâá &ªÏupÝ»ç„íø¦öû””’âäç5º©sÅO6ÑSf²ät¦ÕŠ{÷JÃ®Øø¿we@£a5.‡ËêÛc»á\ð@¯i Nü*͸îÂænߺ°¿ KDÕpÎ…W/ßÔ¨ÛYÌê#AšˆÚˆ!šéDTp°–éâþrbâjcçMd%R$Yý,¦Ÿé¢> ""²ýÌgˆyòÝ"šˆêÈ¡=>gguôb–’IEýÇŒWaÑhâZ µ>&}àÄDÅéN›×]JXDYöDµ˜èúÙXÊ}täã㾬#'³'išÍDTh°z +­«)yoAnÈdBAG›í·@²K7E!SÞ`ôvÂûÚ§‡¬àj½•3~xÞ*Ϙ &KF^AˆN§Ó4]¤jzR’Ò°ñ½¤…„• Fà%%åS%J ?;G²¿®²´‚zg9êE©!Á5CWš xÎÏ“zcã,ó¹ >{ü(+Ęª«?XW°®þÄýÑlŸ­ƒgK%­2¤í|[P -BUèt`©Ê*P’I!I~9þ H­”†…n¤l¤l¤ß„šçX@]çd)I¬¤Ñ!Ë8–tKËþ6õŸ™‘D#Bˆ ":„ŠVTW.1C¼ß\bÀ,‚þ=É–€Æ¿Õ!î{9ØÝ ’áe¾¼²ër"ÀçøÆJK× ]å%‰AGö{@™ïA]®¾ëdèìÌHçD|ö=~y´ó‰»ó?^¶¹j¶´>ÝâÔ„ìR…Š„ ªÙ.`"“ŽFOªxh¥o|úŸ¡¶öÿ P`UåÆ=Úë|;Øü¥§i·3ÜŽùÍøìçtœ|c,&©¤‚–%¥ßKúV2ä ˜ìëN®½v9Þ#ÆÎŠñÞæTON2Üãêµ@ØŸ?½8ç|5Ø÷ïÖv°ñô—ç¥E\´ú—bóVȽ¹sŸŠ­Ýÿ–*Ñ ãîïÙë] ö_ðŽØïÝL–^έ ÞnEazô‡CÑ-(J“èïzxt:¿_ëòb ”ßÝ2zO$ià¿;¼ì·žñÛ-VSœyôÀ­,Ⱦ¾ëh×ηÖËÖä¾½o·/ n*8£w/­”¤Ä/.HjÏ·di6¹iø¨ÅP“¥ý‹×uËßb̉DÕ-ZNùƒ²ùÜÃ}¢ì´¨+Öί댜*µja΃­óÜ›qïlŠÇgü‰C5•¯<ìl.¼!mTK}î×Ù½÷ö2éšì7wl_R¾ À~xÆÕÈáÀÝÙBeQGm¹Cýœ÷>ä©ìÒY‰{j×öSÌ_"­2dé‘U%Òv¾)k ‚ü<|€>ÿ+1~Á‹À_Á’nB¯¹ø()¨)‚Ük´ ªÕ ä—£¥*ýp¶`]@"ÊÎáûE:\¤’v “2' F5…Xæ,·nz'«¬ xiP£’l ˜°ð—e¼%§>¨­lÄDãVHh1˜ßþ—)ÓL|¼|;V¢å4liëyZUe Üäþ^¿6DO'¢ê-…òõ3¢åô³´Ì]úe“¢6Bh¬càôg“6Ü+Œ©±ò´»ôÑI^·m®ßÁdBÊ£¬ ]²=ðOšÊóS^Žß ™ní´4¢(©#;4YY$ªªµ(4ºI¡ñ@ ‚‰}â¿dãíG«¹<ÀKã.ìŒï`ÄÆí´}`QÜÝ};þ¨Îüœ—ñ€úhk°x»_d¢À/Ḻ‹Ú#ŸœÇN ;µGNSñÀb胎V¢ƒø /â­ŸF @ ‚B9þP?é@ ø3¡µÛÉrdû ·õK? @ AAý@ !(Íí?ô±ôxö¬î³o<êü2`’}Ö]zâ0¼I©~Öõ×÷YÍàÿÑ4–zFE4]uä–Wýž<~p~i7¡ú?:Ï>ê¿ÏX²î÷€íAÏ¢Â"_< ô9ii¤ô£ÅjH‡ú§Òèˆ >ÎcÔž˜šÉ»÷\Új Ý~êý.÷˜±ÏÓëIdУûçgK8qN IDATu¢–ê:nÛ¹›ÁAþçödÕ5"A|ú!þ%{]{ùwèÕþמLÉ·µ˜Ê ¤õªøªjSX “Ö]åöŸßÓ‡÷<çôlê(E›€ÎhÍ…Gác´ÓФ´z‰Z-Mù™gm‡´îf(_Òì½ù>¿"ü·\ýk™Æ¡Ÿuà¥Åj­ªF3ôP_yÉת_+&¯8ÿô÷‡(t³øÊÉiŠDÏøhÜÈï;½îm6˜2¡¤IÅÍU¸á|¤Ñ…ï¨ê„áQ¼w/"úÆõŒ:H×ãÛµ\R`~ ÉI;7gΙ–œõ„è:OÝc·p˜Ðû˜\„“ÏÌœ>õÛp™ÉóD³šNAq¦Ãv­§–æ– Ms—ÓÖ¦«®å@vðq‡<öˆÛÞ'ž˜¾èb:Cf˜…‡Óâ'¼¸<Ôtœæ{[L|Âäbí1+¾ö@߯öì]ÃRS€<#RH£wZƒ«}¤E>¬31l |pÂò¥Û DVj>jÆ“åü^ã_wwlú;Ý|éå,Õ™ç`¿P¯«péLj;§N\ ÉäP´Šdi’BY0ÅÑö‡·W,zêjcw÷NÞ¨ÊM=æ9+zõâSi=V]9¦zlÆîÐ2Š6YÍÈjçÚ±½èÅÛ»ïAZ­èÙmÅÍË»œzaÎWlÑÅtòbÊ _·wÛty"çõƒv§ž}†ïebÃloì¤;š9FPèÙBÊÞa±²ž¸býúU&!ÛË:\ ‹° ~à“Ö[¹×fª–¬˜”pEf>ýã¹ÙÖ^šÖ–öžYl©XúÌ}ûöÉ5#íC¦dª6\.ïíp÷¯ ëûEØ.=ýö×ï~‘AïNtSÆÞ‡}Tù„R?HßUW¼Â²MpEU¬Ò¡ZĘ=ˆÊ6>x±µ!+Qf %›A« ˆ $òß:ccç &vqck{˜]¦#aÏÛ·´PÈjôì$%­Õ³Ëo|þj‡RxÿiJ¹`ÂêË.?|âßëÌžÙÚ"ü0šú‹Ñ±nç_“½%ÿ‚´Œtuy—ÿ£ìåÕC3 æÀXýÁºkn’Æ¡Ëè ÐL}ŸØ6>íêŸBz ÌY·/…²k7¶g¦¿ç›¡N77+ßò¯Xì~pzŽÛzÒ΂„Øs¬îæ`Ršš %ÅÅ‚ÒÒÒ\†ðyië†~è0}ªµD²9üÀøƒÚrÏÅçíèÝOù¡UQ|SØñ¯ßU ³ Kwí‚§ÇâÊq( xḨ— Ä‘¤\Ûµ5[«òu0ëhâN-˜õ?ÐÄÔ§Ú²™¶ì¿L¼a.çÒbÿb˜Ûdl¬¶ŸzÐßNh´ì‹+f¹¿§î¶öVÈ* 3‰W7Y|lý;Þ?EGO“î='‘ÿ‹Ôž{Ì…5§ìr\œsÜÒ",MiB*ƒ'NŸQHa€ èÍݰÒd¨îj×Ã['Gü}·îqçëkÔrÚ“G0ƒPÐDÕþÊJÂ,Çc*jê'*ÉMç ±Xߤõ=j’ +°¢O @` NTPøz©H¨Bþ]¬š†Å_">7IrñXD]‹"Ñ |€Gï5. $ű’r²ŒT } ¢áŠ¢Û´WáÑó°÷‘xÿ¿ (Áž½lóµ>“'TûnmÒ‘i4SB^^ËüvÍ1ìËß´Š‚§IEæ}÷Ë‘Ÿ>¿"V©Éä‘7ªÄ§ë.^Óž9R“ï±ü>Š ©¤š–V^ˆkt~À»ëûìb Þy ¨gãbâчL×b(Š|õÉV‡?nÚDFL56C#œÌ#Ê©õüc} @ˆâÑ^ìÁèÄ€¸ê{Z&ùd±ÒÌÌrM ÃÃhÒ}ú¨Áí,H¹ë~;¡ ôelµ^'9€š×Ï^°ÙÃ*“"à +'²™rM¬ û…Btáb‘¯FÖ1^$º 1¬‚4þM ãAc(Á`C"Úm—ÖV€ªD-‘lûÞuk¡Î øVÚÇë@úyó&æ—g_]»’¯/“©jväÚÐEØÙ±,ª@(M¾÷eêß”i&?Z" >^¾ËrKs²kÛ¨¬ë~ïçu×(¸f­ºÍöLøR»H¯‘ODík¹·ÕpoеñÙ^Ã¥Î+éäÌEÓ1!%Cû nK7ÌÏëÓòëÞþÙ$ôÁ#ô?=9•]û“Ìž™teÃΫ¥n¹û ZÚÇ:××ÉúÄóVÿjsÞÙ Ãë¿ÛvÇÂâ ¨½‹áu5¡¤J"®û¥\î£ wÃùÿ5ºF-§±'Ÿo¿>„À!…ERµëøÚJÕN¯xhmø@bƒ[ÝôPd“¤¨}:“AôÒ'h8€@íl(‚Æ¢®K]öî˳6} 1˜‰{°º9„j+qe€Î’onеѱèý Ÿ<¡¦¼©è%ÁX•Áö¡œøÔZ%j)´~“&–Þ_–Ú¤Pö½Çºl±òX¦ÄK‹ü÷èQ¿Ô¯½¤¾Uuó¦¨Úd¯örEbHH ô¬/¦h¯9»¶›j2y}7$Ô Fv¯zò2³ š÷¼‹h⚣Ç÷¬|ð,ƒ b¼ÛVîêß—ßð[ 4õ†*wR¹² 6Žî‹^çÍfKý65ÖÄ–¸€ ,%%©œyßÓ€àä†?KÜ7ªë|“×½U{•-òÏ&é9hPé‹«ucçdö”4²;4#ÅyµkÙì‹ËžÛÍŽç;GÿÌó€ßsjë"l0Ç,×ÍÈÒëÛûh#O..)!ή©ù²råëkÔj|ñdøØ^óÑš0ˆ 4Uµ¿¶RI~]^A  óòšÜI ˜+Mh†$GZX#ñêüP ¯!°ºgl†@%ðŸJk¢°—¥DÿÉDæ%ŒW'ùé-å»mL T‘Ì¢Œ.;– §‚ÜBô VYçBmQ"Ò¤†1d☠¿ù_æ1ã8A§Óùßi´º+ãï8®ºLIõÁæ;n›µæõ\©oÒüAÕ . Ô*kà’¬·)CÏV{|9 ’äñx_J$*+C++,çRê‰ãÄ—bS¡4eÓ‚Ê“ÓÌ‚Ëp¹¹'¼u¾“ûÁ®u…«÷oémRM”¨µ©„F=t‚jœZyªÅ°ÐE£¬ÐôZT@ND¶à굿‰ñjöTÑ€% PÀ’†ªbþ+ƒÈNÇ8ïëßA ÿ•d%â#JºïVXð=ÉÐvÒ´¤$…û°XÝfív]¨#D >×Áu㿳) ¢µùkÞîövGmÆ×Î1.æŠ žl¢§ ÌdÉéL«÷î@܉©ºúƒuõëêOÜÍöÙ:˜´óÕÑÏbú™.ê£ ""ÛÏ|ö€˜Ç!ß}­NQ9´Ççì¬ö\Ðfþ©ÜGG>>®~])™=KÃ®Øø¿we@£a5.‡Ëª›5œ¯?\ Ú-°†à°ñ¯>UD3 ¼¦1x3I ")%ÅÉÏ#{VnìÉœ˜¨8ÝióºK ‹(ëÏž¨]?®Ñ5j5:“© "MTíFV"¢‚ƒµL÷—W;o"#(¨É‰#ÕŸ1¦ÈÈKXT÷`B@Ç€& ªÚP# ¢"€”g‚ņ"Ñ×Wi°®¿ä-WЮ›r^ž²½€@S!ú¬$¤š9!—4:Ö‰èÑ{ïNK¥Ú ¶¯n‹ ”&%Ìa&£>ø>l°}@NVf§!£»ËÉw›°eùþ ~L}¶½Å´A]d™Ü’¼üR ©é’ߦÙ,ÄUºÈ2iL…F«>$U£J×^d=âåÁÕ»ÿG[°e2è‹T2=)IÉÀ¤¿<‹)¦>mß'c©¦ôÌÏΑìo «,­ ÞYŽN¡#ΡK^gªž"[¾³š„2#àÆžÚ÷¤ïÖ-âÔz¶\¬(è4˜B ܃P‘ÇŠ2($L–Œ¼‚N§¿ûô'†…n¤ñ—ß„šçXÀ>¬‚ÀòßÇ,ˆö'ThX^V<Ž%ÅÒZo<º .‘˜!Þo.1`AÿždKhÝ-£Ræ{ÐEg—«ï::;3ÒÃ9‘CPœš]ªP‘Ñ‚!qDSèïzxt:¿ùsy1Êïn½'Š’ãÒ‹å*âÒkyØÁ§ÿjkÿ¿VUnÜ£½Î·s¨%!÷æÎ}*¶vÿ[ªD/Œ»¿g¯w!4جÀ;b¼w3Yz9 ´6xGl ¸…éÑwE·^i¿O[ù'£w/­”¤ÄúÁAr{²ùCái·3ÜŽùÍøìçtœ|81‹ÜJr?h¯ÀüSýH^T ˜rd&™à$`€‰L:=©>à¡•¾m À·ž Ù×wíºÓùÖzܷٚ÷íö”ÔþÑø5ƒöd’Z|ŠÜ ¤õª å+±ïß­í`ãé/ÏK‹¸hõoÓ›·ÖDc }ñ~;:K8Œe|&úŒ%…á½wÚ¥XÚUZœ®·"`Y·1©¹Ä°}V…÷¿žóͅīذù„œ3VX Y·1)sÜаj( ¤•7s$:]gìû´Ï(¾‰uZNÈÇ`ÕmU"Ò¤BÄ`Òˆw÷4œzŸïívy¤óÉ;æÉ·÷\ ž6Ÿ¯S|c¥¥ë†®òŒ’Ä #û½ÈWÿS¥ÙÇÒÿì\þZù;kj÷5"­ÉÎ>_gy1@E¤:ýÕ5çhÈU¬Ó<Û™'çG±?¿ÝoÚ¡õÃ;„W6¿¥¾÷÷¶ßq5HYþ)üä>ï*=Øϸ9¸;[¨,êÈ¢-wHŸ³îŸ¾ahëhY}Õqë?S÷{¸Á¢ežäñ©~sÜ1ôÚžz³œŸ‘ëÙRäçáôù_‰ñC^öø –ö&:7˜ D1–õ?,‡j|!ãÞÙÏø³³j*3^yØÙ\xÓ ZýfäÞÂ$æú{ <Ký·nÓ_¹ÃE^"N6VYAðÒ¾¼+ ’l ˜°ð—e¼%Ì_B ~.¦L3AÛ¿¤-íÓª*a´ÿBP$LößõpŠU`3÷kï4Û‚_EÏöAh¬càôg“6Ü+Œ©±ò´»ôÑI^w´^¿rr²í“Qaa³Þ"´+nRm7þ€@ ¢-cÒ7ìÚÎV}€n‹4Û‚_EÏv‚ûÄÉÆÛVsy€—Æ]ØßÑJ!~Pÿ@ ˆ_‹’»ëŒïþi¶¿ŠžíEÎc§:Z ÄŸÆŸ³¡@ h)hü@  —ibÛV¥ð—YÐÆ@ „  þñ4¥AsV¬4®†Ææ¤ A ÄN«õ0É>ë.=qþ%DZw•Û~OÞótœÓS05“wï? ¸´Õ@ºµòE êQYy'++ÃoÃ_:Û"²2ÒO~ÿÈjÖÌóYY·–*ð*N±uuØåâ4û¯6ÕñcL>‘••ÑðóÊa•¬â‹‹^¾OIŒ{ùàìFýúí÷¤†;…gfd…Ûö¦ÎgˆÃËFeù­Wã'ÛÈCƹ¦ò2S¢zü­'ÙJeIÝùû=½žDfÁ—ù鉾V¸Ñ!|ôn\g8zÝKã/¢ÿ6Üè>Ê–è^ߦ‹š«pÃøH+¢K]Ñ%†ìÄÇÆœðÆÔ ãxoþy”BDÿøžQAP¾ñ¦ÑÏ 7rÁ m‰n=šŠ*¸¤à´ŠCvžºçäõ[[Tòr Z;|<¼p‚麋Ü–õ¤A§±3Õ6ïMœ4C ,)ÕF'7"þ\tÆ)tcÔõ‡¢ç\X:l¼±éÑ&O×Et|:ÌÿH%JJJÈ%#lNXŒSJõt:è•­n²í´å0  ·»`?€ý½ƒÆÒü8:îuô|ÍÈ 9íè¸×ñlX1PxHÞÃC[¶îõ-И°}ÿÊVjCgÕþyøµ-S 'ÍßõZw×fC±fj˜®“í>ìÐQÆK½˜Ë—Œ•€N³·/cÞZ7qø„¹Ž‡;¯öåF!3ÙbžhV.…2ˆ@u’±êÃ/›yvÞO’Q»)ÿ“Ói>>Ü)þ:pÁŠ¡…n£…ÇDLñNíüfâAÍŒ …Ñ‚­há×@~1!OPœI(dc‘;i/úRBè<™`ߣ=±¤Áhã %Q @®X7¡:³ü'€ÔC4—J ÝN‹ødæŠ,Êè‚K N«ôŠC}ÜVm:ÝðD¤FF)·=¢ò+ÊÓü=ýðQ£´€ €Î`Ðé4Àq +²9zlYïÖ(QNè–R3¦'Q×K—Ó_wÚïùûäoÃn8›vc`jÆ{n„Ç~LŽ Ú®W+§¶Æ/+#+í]xÀƒóË4êê½ÈÝÿU|JJüK¿Ó+ˆ·w ©ï?¾]¬Ø «~zör¹¤ê_ eŸâ®v8wfÏÅÙÞ½”@´çÈeg¶º½ýÞáÓ9a—OžÉeœêϱ¾O² ÒnN ”s«Ê*9^]^Á-/)æ–rú½4v ·(:â-®ÖE¾67á!«Vkø»‘Õ¤NDO'\£¡³7úïoP{À+&Gô܈vÁGÙšZµ¢˜,Ñc>ʽƒPþ:ðn¸PGã€ßAÍx²œ¿ïëúƒf1ÅÑö7üCƒ¯˜¥Á¢u6²9wóQÄcÿÛ‡V–irpÙ´½½OÍ4qëŸÿ­ÖaMÕpëéŸ>|pýŸý$šÈHZo¥ûmÿ Ç‘‘>·|î˜&ÎýX¦?ÑñƃààkÌ4èÔQ)ßÑñ‡Ÿ™[;6¬µÞÛ{s_Qy.×ï‡>{ìëé´bd'þkHšš‘ÍÙÃß?cgÜ…FUöÚb^þ$ð®(4¤*û×J‘åÞBÊÞaŽÑ“¿ Á²Ÿ— œtìsˆÊQFo¥ËñKR‹¥¼€8¡˜ D%€PêéXuT¾Â² BQ€S5lÀ ÀÙ€Wa\~¯5ªµA @ªQ™Þ‘i'$$±¾‡|Âr‹ÙΑ—l­Ò(¼ÿ4¥ü«0)EE"?¯ºßòC;§¨çåæ*(*B¦¿ç›¡N77+ßò¯Xì~pzŽÛz×èêÖШ#.îƒþXÓÉcú&¼O֘ݶ“%žîX¼úTŠö·ã«4Ä&í<¶|¸HÌiG×{‰uÇ}rÝjµõìsNÃô”æ;;O—~{ÖÁÙ¯¤§‰Ã?KÕÛ·<RXF¯ïÏ̽æ~êUxÚ¥EÆÝL£á=ð’’rH=e:lÉùتÌ•ÔCc ‹I(ëh+žØè! m)ÉÉ©î9t¨4 €©¬?XCZF¦9sÅÒ¡|õí  ÿ O£°uÎOØñääè Œ)­3H»ü}ÿDTšú‹Ñ±nç_[þo褩n´à㘨)¡@P™IH&ѶÓ"½Au !ƒ¨Ì"¤’ia6´Ð³XyMm\•Y„T í© -Òº.&¤ÚÂn¿ Z' ù?ˆ­ŸÒÐeê‚¿‚lγê¶uùH&ˆoÝ®µ{Ö(“%GòMö­ÔÅè:JYNn=Ö™3=v{c ºˆ[ÛëÄì2i¼è {Þ¾¥½(3R5ÝlVä>w¨qóÎ'gz¬°öâ?hL5½¼ÜdâšÇj–ËF0©2¢Rþ*ÃC^jë鋨* J3­—àW×Nc¶ñø½>⓬l{½u67ú?{çÕÑÅáÿÜmô¶ ‚X**b‰‚Ä.ö[l±Å_+öÞbWb41&¨1öލ @+ì¨H‘Þ—Ý;ïЍ») ™çÇöì¹çœ™;wúíÒv@ÝùS»h©J»Vw— ï.äÐ¥ßô#/s§> Mû(õ^Z’ï’ØOª²µ$"gzU“jé@–¦êê2ú9*'1gIB&@ ª ’’ hBBI–œÖGM«!3jzö‘wãÖðN³ñn;‰É©ÇRÈ;95Ôƒ´‰{öESR(JJH:2³©´>ÀéSi ˆU•Åâk–„r[P§&‘ÈårQ5«6:Ùòl±DD{/ÖÀŒ³5ÇŒÒÚ7sÆž‡©Eb0JÄÿ«³ÿ÷mÐÕk9ý‚:¶Ítàwü¨ßåÝîAZ·j¡‰Z ­5àõû:·¿6½Ÿ{iÚÏýö_yñÁ\z©™}Žœ¾ÉíÏͧžææeÑog”­ž#zë!ìèÿÂ>¨™uúi³ûk»¾3‹¿¾~“{©ë¥%Pgò©çOoíè‡+‹§ízQZ?%€ܵúí:wƒsÍ#AHI„Ðï<¼fÁé—œª´×²ªë.81;;åÕ˨Üΰ²´[ŽÝí’o?×ú*¼—j–´Þp¾íB*ö'oUi•ÍÏQyÚÑ.[y‡¡ÝA€¨Úõ¨¦&x98THµë¸Ga<‚êåLÏÄ=†´5•f ®##_…퇾âgþWÒ'Ž}uñjb¿q ‹ýïþ|ØKžÓéÖÔЀH$äòb¬ºåõš™9ÕÉÒ@M¤® ¤ƒ£üp?åjŽÝ;¨#âÜ™{G.%¦ò˜èäœ_Uh=íÄqqÌ­¿,þs÷™ÇÉ*F9•þš¹ŽŠMä‘?xc1`ɦ•G¶Ä¶ñà”l//ó+‘ÍâÁ‡Y2èì*u±"#SsàΑ¶´$BM{ç/N¹Ü åÈý~Øçl»íÁ H91­åI‘v­n‹7­ ãçz¥6Ÿô£…ûœy‘€êeÊ 9Ê AóÖ©P8Ê Þ ó/à„0Ï×à@ C’ åp6=º%ŸZ@¤çNã( B8"‘(_(—ËEB•ù)‰Lm9ÔU@ žœ¿¼øcG|TЋ‹œú9-5&híê[yrš·j”ò4Ç{‰‚WB¼ßˉ­šÃÖVçn) úÈÊ_ͧÏv[]äý·«ëùÐlˆD¢ü=í¹¯o^Š>M»P(ÌšöУ3¾ó*˜[™ I@‚2ïå‚t oÓD\!÷ÝIrr!ŠeñsTfäÄ+ˆªQëq®äM6xH&¹7—0€Ï$Ô¤ ‰ÜMÒx ŽÄtæë’D¤<&š“¨Ì““ UO…}•¤ß þ7‰@… f?SýBfòŠ­Y|Ê­ÿûV`h¤ ¤02ªööm tœlìÿjõÄÍ)ƒ÷Œ½±`pðPïìvÞðúÏob—Â[uÆãÇñƒ¿§Í¼Ÿ~9²ã€L– $œvéüKn­*KŠC]žD"€B§$=\6o|ynï¡´FþsúçšE‡Á(oHs{{1’ý¯¿—©;­óÝ3ÂXþhCN[h9dœfìáÑm§y«œöPF¿ffÔÃok‹‡iÞ¬î¤eJlºçýsº{n„Ô·v¶—\÷¸ó€Tš˜˜X¡P$¦ Eî³DÁó‰жìä¨yÏýn,ÍN õ»•0ÛÞ^ïZµ®aj¼ÇwD®_Û› ÿ4pWhqã$¼‚’¼A/ÂW ”/Ì#¼‚¾þ{¥r´•‘‹ðÛn#Î,\K.— ¹CA!Ã&r¹<ìÀ”n¯‹rT£÷ {¿‘޳ ¿³ GyðZu;ti~ÃëzDÞPpŒŸ_ìàÖ ›Ú>ð[’»Þ9ýñ‰N@¤cÑrØâõsûÞžt$¶`29 }.%.5[iÚ Å{MŽ’öä7áJšíʼ—"#T!¦æmñt>‰L/J³,~ŽÊŠ:ª7¦‰7HEv ‰Oá k‘7‘ÉA¢d€D™‰€¿+’RD@N){…èp"{ÒôK%ã3ÑmI¹§$!ÄÚV¸©£º-•?#qïŠÒ,åÖ!¥·}|,ûj*ÕÔ2ë4´›ðÊ•çHö_?nê?SÀqD!Ë–eg¿¿yŒ²A,æB¯8zãXœ31û2èN2ôšut´nØêûõÇŽmÓT‚èˆzÝþ·zÁ/®ãmr/Õ¬ßuØÐaŽu…€^“Æ m[‹p!‰žI-ËÖ]›ë¦fi·ý“C/—<€:-šëÁ÷îC¬ÖØÖXHÚÔÏùÝ ¹´åÈ'ýøã¤œô}›€E牓~üÑÙJè6ôã¤1%Ù쬬„ä|£mÝm؈1s'w5úº"wá©52oÖ÷Mõ%ê&ßu5ºsëII„I/Bšvìb,á8-Ë®–/B^ ‹î f l¤ÍS7k÷m݈ðàÑöÞ¶v-míZÚÚu[”á>«e :Ãf‰ Öúó¸ð®µðêö]ê‰Õª·íÐL¢²±bÔ¼¹Ô¸tó÷Å* E}C#±@ |î3\yðµ‡.]·hëœ.êïeQ¾>Y­Æhþì굜F±¼hFŸæ¢ì¤·±É<Àç&³­sSC‰HӢϚ«ºëªJ{Tx¸q«VRim§ŸFµÑ*<ퟠÜ{9 ±œdÙy@™ü•žš|GÍj#*5Fú;€’Ø´fG*‘@£)5æÈÛ( ¤¦Òê¶à„&´š R¢óW]˜Ÿ¯ýö´¾‹ Þ˜ë’„ˆ\¹¦o3„6HEi–†²©˜í–\pí›sn¸Ù ©'§wXxiíR«åsö{ÊÃöÌþû1deä¬Hó>±õ×óýãϯú­œ&þÿU$’Ü9wInÿ!ëâ’Q+…‹G/þ³$#:øœë©[Ü´­½q:Yû§Q·Í]ÀÀqú†…MÕ;ÏÜÐ?¹zvëJïo¦Oضþþ‘e{žX´kVïæÒß|Þ|™Ô1ˆml¬€¸'O ¶ƒ¢üÏÅ׫Ÿéw1(gH‰ÆZÔ1WãÍ®;ÿøô_¸°ONªo?a‘}ò'n>Ånî+-!éP­Óô ³Óâ#¸,Ü_‘#çчWmn¸dÅÉï43¢îž»êJZ‰„þ^xjѬç—j*C]׋pù÷Ë6Ÿ¡ƒŒø×7w­>X;£ŽÝa|»ÎàHÄO ê ©6Šoëˆ×n$¶ -¨éà ’…8o.•ÍP+E½mvÏ®K(J/ÙcýÚÆKW«§ˆ¾bþŠ[*—.¤x¬ßÐxÉfÉú‚ŒÈ@·ÕÏe*Eœùó•Û‘ëãŠôˆ;n æì¾¯Ìd ƒOxù(›ÒÿŒ"ѯWA[#B¾ÞÍG)61Ì`0 FåB·£sÿC‹Ë¿ý­Ä‘,ø²çè©Ç/NÌ–SPðÉv/~\J›ŒÏ¦Ô?ƒñ9°ùF¥Í?0ªlþÁ`0*lþŸ<¤ªî^ ƒÁ`0 £¬Q¹~©Â:[ Fá|Ùî¸Tjð½ÿG0¦IÅÔŒ&•ãeÄqqåúR)ƒÁ`0¾$lþÁ`0 ƒÁ`Ö`0 ƒÁ`0Å…õU Û9Þþ×oûß ¸~Ûÿúm·‘5@\«óÜ]G/\»xþØÆí 3çu'Ï^ôÚ;«­Þ™Á( ¸:cößð]Þªçp³ÀßêN*4Í&Ã6>ãxÉóø–ŸÛWËêØ_»ÿÔ個çŽmœÔZJT9* 4»òý .—¥ Vñµ>ß °6m:—wÚÈ;ΧßX—:¾*Åø½³m l\¼÷Ž*É»?Bi±)ÃzÏÿVXÞ‹í¨Î9ýVù$>}üT…&LÏ+:6¹[›®CV¼h³z’= ñ„µCùCÓ{;ô¾ä®í’išª.ÿ1D9Îg6wí GQCö”+{”›"0éÑÝä¹[åÿ6ÀòpTaÁ„•äÏÆt8ßf>¯žøÐl8U»Í]Ç]u#š½hœjBZŸ õ /Pbêk¦ÚjMs·.Âb ÕQ½W´î ?Îoð/ô‡Òj’2ðÎÊ#£ª#¶iÞè¾ûÁgI™ooóŒnÞ ”B  x‚êŽs\k]7ƒñPûvÂÄ:ž¿‰ÊýÌg$ļ}óömL¬v—Á¯þu4\…&H¨ï»Ï„e(²‚ðf憀¾å7Ò{Ü_¦È²âƒ=.G·ha¥êr¥Ð«ø:õiãy¼Ó/|“Ö Ôi³Í¼yÞî÷z ùúucÚÆ•oã ‰#íâÊwq-0í K­çñámÚä¾–HsÇçÓº–J5m›«™L^Ý„‚‡ì)ÕÐ.MÖ~µØ¸xïk×mÅ‘sW®XÕÇœ Õ}ëÍCr'êüxÂ}¦-A½qGƒŽL¶¬6ì÷›A7ƒÞ“jñôó9´n`œ†WÓiή£.yß8¾¥ÞGŽ||­”£©¬ØY÷žRO»ù/Ä-–÷ö‹|×í³rÏéß´è6k·û? p&³þ8ráê…s‡a£]ˆ#½Vã·w÷¼r)0Ðý˜ûÙu}´”§H…£¢‚?¸¦o­òkE¿$—Q2«)ɳ_¹ç/ ˆDÔÀœD]Cv6d/I€ ‰J„#Ë š€n}š®ÜÚ× ­nƒpo’•‰ô;$šÒj&*µ¨¶ysÙÙ½&1 Ô f¸gýFUGOO/+5%wÜ(%5EO_‘žûï·^utZcži£¶­ïûfëO›ƒ²¾lœ ÆçÁYŒ˜Ñ!xë_weŸ|%n5b˜äø^¿ •š—w JˆH¯q «Ô'Oã¤7o²´n­Ç¢v-ëèéëåèLZâÕ&ÎçW¢ÙJ9 ƒÄ¾€a€>•j·¯€hâ?•ó÷@Öâ5•óšÊ½ŠÍ½Ü´ÞºqûˆvZMƨNç? < “ÑT?o¤ÍÔ¡[9ŸßˆF?j$€˜³$! Õ‚NIIýœL­ Ôîé,tíÜmÂ¥Ú³F·æ€Ôk¾wê·¶Ó€­Zë^õ¹G²k ­Ý íÏßîŸÔÒÖ®¥íÈ=¹$óÞ#j_™óýÐE·ëÍú¡½€V÷Yó¬n/èèÒR  %YrZg5­†ÌD¨©ZŽŽÌl*­púTZb­2ðÏúŒªÁGsz„ÑÞˆõ0ãlÍ1£´öÍœ±ça•mc0ª:=§ ‘íuõLüô+½:†Ÿ>ý¼Mí~[nÞñõXdøÏd× 9ÀîZýÀv»ÇÁ¹æ‰‘ ¤GŸyž¤fA‰¤¼qÓØ`è×§ jõ`$zBxÔiûéÁHS5Ð6EìmȲ‘ŒxÕÖÉÕŒ8CRÒ¡Gb6UÏ íh—­¼ÃP„î ŠâÄ[ =½óÌË4>óÙ‡¹3I~>líZŠ]ûV&¾~A|!—GzlýÛïåÛßËw²M¤Ì¿±zë.8!+#Ú÷Òm5K«ÜY…W'·šÌg<¾œeb*ͽþãbS(zvÍò8ÿü½ ¸Þw¯ßÌÈHO ¼—žž!‰óo¬Þ]õ|”ÊËc½½nê7h¨¯ÊQrdd*!„€N¯Q£üâJR¤Ì‘ÊàÏnÛøú]¤ŸÏjf&EùQ¼’\6ɬâ@Luåäæ2îÚ~¢;˜7ÑÉ•Ç=†´5•f ®##_" h×£ššàåàD*4yòâ0ÑË;ýÂÛ‚ì>n}UsêŠÁxÅG Jj8L]=Q÷Ø6÷?ýáîã±Êeû”/ ƒñùHšOúÑÂ}μHà“fŒ e;»×—.J3åÄ´–'EÚµº-Þ´‚ŒŸëLJY2èì*u±"#SsàΑ¶´pG…BÁ óIë =q}w“+üC”ÿ!(', TäÚüÈÉ{(ʈW U£Öã(\É›ªygS𛉔§B¡Þú^ ÿ­ wÍÀÞ*àÌÍB»N yî× …‚€H$ÊÊår‘Pô©£M@I±Q튳éÑ-ùìØÐÏòþ)"‘ÈdЖC]åêÑÁùkO?vÄG½h°èÀ©ŸÓRc‚Ö®¾•'Wž¢Ï >7çˉâ•ä²Hf•‡<‰ôE6ì'$:†ê™"2RÍITæÉÉ„•ê½gÙà ™äÞ\ÀL>[¥nú â“DPÈ`ö3Õ/‹„²þ£ª“””$ÑÔ ZZZ‰‰‰ÐqZ°±ÿ«Õ7§ Þ3öÆ‚ÁÁC=¾³ÛyëbwÇ1¥¦n«Ö5L÷øŽÈýl{³á_ƒî €-Z$ß<^˜æŸzŽš÷ÜïÆÒì”P¿[ ³í­áå«oíl/¹îqç©411±pG…Aàs[q$6…—šCR‡¼Ý÷^ÒâL„^Aó»„˳ù)ê¨Þ˜&Þ YÙ1$>…7¬EÞi¿R# ³å9M‡ˆ«~ñ›[[7•Úù,|ßšàyÊqE9Êår ·c&ärU¢¶e'%ÅFu|ßvëq~xdy‡\.;0e„Ûë¢Õè=ÃÞo¤ãì´Â=J¡ÁÈù2§ø%¹,’YõIÇG³ ùãx…èp"{Ò´¢ƒ*éÈä Q2@¢‡Ìü¹auT·¥òg$î]®@·%åž’„dkCVeå?Þ!eüȺôئ×`K‰ºQó~M‚î56$ ù…–'!®$,úKF÷9Pû€ÖìH%h4¥Æy›w°…¦o3„6Hóïuýö´¾‹ Þ˜ëH{)`óŒªD³yW~ëŸsÆËé€)x¾­÷È=áQ‡»š/úåÄT}yô½Ó V_J‘³£4ÌûxÄÖ_Ï÷?¿ê·rEb0¾B놖¯Bž^¬Ó/ÿ¾ÑaÙæS#tÿúæ®Õ_ˆ>¼jsÃ%+N~§™uïôÜUWJ>X%íÃ;Ž‚"–„ýMóæÊ“ƒ‰¤MÙÏœyH±ýÓ ƒÁ`0 £¸¨\¿ô5÷Œ £ðdF™PÈÁñŸÀ~ƒÁ`0¾0lþÁ`0 ƒÁ`Ö`0 ƒÁ`0Å…õU‰fó®ìeöéÿŸgÊm„I‰.±qñ¸~Û?÷ïÊœ–Í&Ã6>ãxÉóø–ŸÛW@Ìœ×<{ÑkזּzŸß–OóSœI—Y»ÜÏû^÷½â½ßuR í’\®ÕwcÎïx#(÷7õ^Ø*÷»šƒwùy®é®“§ÛlÞ•€ë·ýo^övß1Ó©zÙ¤Sª‚':&ï½ä»¼ÍGú\1ûo|$ÿP¨4—”g]!Ž” Å8Þqßq_+ÿ>2¤ß®åmZ|FÒUÛdøÓ{þ·e{˜â{›ÖÓÎæÜÿþ`ñ¡ÎÇ7‚‹w¡UîGqjZ¿iŸg€×Žá–ªl–¥6KJùÇID‚ïí´7yÿ›i艴Õ>ÔEûŸv£«å6Ì´õÅsÛh袽§ÆpCÂÖ”+A¶r廸kÒm°Šï¼%ïo 5P¥iA\yë†1mº‰oåôE“SR4iÝ ¼Ã:¾ýlj^hkGT‡ÚÌæ6ðói½úeãœßÊ`”!/wþWhA‰éàycEÇÆv;­ÖdÒŽ_'Ýn¿<¬Ó ¯ÿur¾«-W=åPÓÑå““dJìQ~¬\!-(!‚¿è[1B­FVÕ%…™1O_âb„OßfáS”äç5^‰P§ßO£· Ÿì• ¨9hÓñÑÜ:‘TÜËSOÎluÊOÙöùmùÛŒ[Pz¾½ïÈ=áB}ûn«F]¾´îŽÒˆJ‹Òàkö^¶à{{ñ“{1Ÿèë÷œ1T#*¦P¡Ò\R*,Ä‘M¨¥&¹¶ˆd\~ÑŽ'ÏBñü3ӝܿ“ÝM.üvK^N6néÑf l\¼]>VRr#” N5Ç‘St½w>M4%ùGú–ÐæG(·YBÊ9N®ScõþFI(xžçl-†§ ã%zj+[Hxgܦ‚¡¶ú,m|/Ô–¸ØªµºšX¦¿rU ™-&¹ý-1­?&Gæ~ób ÷2¦(MM€BZŸâ!õ /@zE_jª  FÑ$p/4¤-ÆÐÄï_!÷uÇPxp~·AL¨ÍXZm5Qú|-¬ÿÀ¨úh4º|Ñ÷­j©%¿8ñûö½¾‘2€3q˜±dJWk=yÔíW­Úw/¹ÂŸº66"oßfi¤ȳ ÛqþžEíÒÍÿþ× E!ž”@B}ÿ¸{&,CŒ €üDsC¼¦…ž‡ ºã¬cd;&lRv;ó óì‘ÃTP¬gba®UP˜’õ2$TÞP’Ÿ×Þ*ÑR³õRÒe”çRÓ²S“e%º\)6.Þ¿’x¾­÷•'¿QWžpë©®s PêªYJƒO|îç¾u·ï3ûVh«};abÏMë.©WˆPi.)ªtô1z´ÕršsÎn›µÀ³¥\hõ±÷Ù«¯R?Öå,FÌè¼õ¯»²Â…JsI©P…£OI$×§r—Þ!^S9¯©\h<òxç5•„§|¬.¨ÁeÎg Iµ¦ÆF`<ê¾â®ÎáÏ£Ö(ª«Ò&ŒPÎx&£©>€Èã„v¤¦º0HÓNVíÎ`Ù­‡Øó\p!‡Ó+­@­y õ'wï¾úEÛÝ mSÕ`Þk¨é…YÇ,¼e5k”@…͘Cclí:¯ºÅ{.hik×Òv̾¨Bl~§²Ú[¹M­î³æYÝ^:ÐÑyô–Xç5ãm €8÷ {èÈi=Œ»ô~½ÙÕ/¥lâ,4äMö­Ôò–x.{(=A¹âeÍÇò[CB¡ºÐF‹èŠUÙ4é7mP¶!];ýëe¤Û8—S9÷iÞý4öýàÜmÒ%³™cÛ‰@иzÔª­õ'¹-=M;¶­õyÉøêR „_$ù|ufñNky‡E|£v¢™BÞÉ©¡¤õHܳй”hBBI–œÖGM«!3jªD§#3›J냜>•Ö€XK…fI`óŒ*Çq"mCCmùÂÿÐ ÿ¡ù7Vï®þú(•Gª·×Í#êãQB-«ú±þ[‚³W/£ 4¼^Z2+Ú2ý®O¡/u}ôûˆÿp8M‹Þ‹6Îéï?ößHÐî·åÒâV²çK'¯ ’ÑÞˆy«ÕíµdŨ7¿Íœá«zœ¡„óS9úçή{yÁè oDõ/\>æÑ°m²‹y‰¨÷ã1ß ˆè‹ƒÿ›QêaÂ(fð=§ ‘í噈!… •æ’ʬ+!ˆŠ@^S´MñÎr ù]Ä :Z$IE·EÛ±§ Ë‚/¢Ú:$! xKžòM¦H"×o•WØ_ zvÍò˜UèŠ0¥ dÞ>çñ*x|÷a¦ZåƒÅ°©ŠÈ³Ûö¾^ûÜ¡̤@Þä^)l~§ÒÚ[饿ßX½õßœø^º­6ÎÊA± ¯o8ÕgýÎ-ŠX·Î~0„Pš8K‰¦™ÆFBYJöÖ›)ùÁ‡Š…MµSú.Aö8•—&GF¦Ö%„€N¯Q#3¼:¹íøÓd ùVpV+S)(î^¿™‘aŸx-.½[†Hª²SR¹6AõwÄ?'Ý !H(Aujý_ó÷:N©&@÷uZSažË ýÄò׋¨Úõ¨P“¤ÉÁ‰ThòäÅaØŽåÈzIÞAP›i>î?œÎÛô§¸]˜g0*J?Ö¡¢¬üÕ|úl·±ÕåaAÞ»ºž͆H$2´åPW9zFt°€P(TÈ•®OJ~ésæeQÞ³“ßD箇:|þÉÐoê‘rbZË“"íZÝoZAÆÏõŠÔp˜ºz¢î±mî-~úÃÝ%Æc•ËöŸ Ì2TðI~*SÒ´wîðâ”ËPˆÜá‡}ζÛÜ(öå%#dÇ€‘{‰¸ºÃ¢Ý[ÇLþW¹õ!м¤ù¤-ÜçÌ‹DÇ¡R¡Ò\z¨2ëÊ•°í9óá”Âl<_ƒ IªŠ œ4¯óMàò†“|H¦Íp'Ÿ»¾’ÀÙôè–|vlh¡JJ+Àþ8¾„6U‘_* ¡0¿}Q*›ùäÇ©´öVŠH$ÊI.—‹„¹eIþàÀɘ‘·¹¿)¨^6q~&iáé½Ã¡¥)šÚ\×3ü²™19*CC¦‚ôøVb­òR>*èEƒENýœ–´vu~§9ÿHyJH•^nb`MÓîsù÷{vr y¿24 #ìw’Óœ¥ˆ Í^!:œÈ‚4­ˆPËŒtdr¨™ ÑCfÞ¨£º-•?#qïrº-)÷”$$€X²²(+UºCÊøÏü@«][=±Ä¸[—o=LˆÅàE3ú´07e'½Mæ@XHˆQó6æ@RoàÒÍß7ˆ 7nÕÁJ*­íôÓ¨6Z Y¾yå²íó»hâ<1[³eOçVFj"‰´qŸN–>ÝÌØH›§nÖîÛºáHö_?nê?SÀqD!Ë–egÔ[)H&Qð€¯0!åÃÓ *Íeù™Cí¡K×-Zà:§‹zÎç¤! M;v1–pœ–eWË!/ »¼,àÔMÚ·®U> Šü£í½míZÚÚµ´µë¶6(Ã}VË»B• •æ’Ra’ƒ†àΘ6OuU/³M‚a3ˆDPk}ž¤&1¥õ­É“m\(G­ZVXÔÈÞÙñ™Ç…wï%o¢"M¿íðÔ°^×é?´Ë©Á”W€Å·Y"´ŒÍ DœÈ¨SóÌgOß•‰ÍOQZ{+%<$¤º}—†zbµêm;4“‡„Ä€Àj¤K»[ë'.ý‡1½gþl\™ÇYlx®ƒµZ]Âj¦Ú|t:Ò¨–úøÚ]©^Mì ‘ßWuÚ“P$Ñ74 ê'I•FŸêê¤üú0BKjb ZÃI‘*4sàIˆ+ ‹®¸xËJbК©D¦Ô˜#oóei:ð6Ch³4ã‡~{Z߉ŠEPoLuIBY<øØþFU"ËwÛÊ˽¢/¼u`ɾçÿø©püÌÍSj “ž_Ù²öT€õ/Ùì1Y_è¶ú¹ @¼Çoû:¬Þ~rø‹}söù “o71ôit²QÚÓˆÂÌðùã—Öóýãe$ÉŒytqåêão\þ}£Ã²Í§Fè #þõÍ]«¾‘³¥3ÌûxÄÖ_Ï÷?¿ê7åD8VMÉMZA”ð3!ŸjúV”P éJó^> O”¦= Ïk¼?ø{á©E³vž_ª©H t]w, *~Žâ“ô p:`JÞ/€å”ÓShvZ\xЉåƒJd³Ø¨H»Ý’ ®}sšŠnöBêÉé–Û¨Ò\R*,¥£÷ç/ao™w€’R¢ŽÝa¼ƒ3Hâ¼¹TÕs9ší:ƒO {H<j ¦g¹xÓ¨á=ò®JžN Þ¶G»‡g×\ø{zë¾ö«wœöòø²C>}†PQßf£™žÉy×ȉ€Ix¾­÷È=áJo„—çþ¼1yæ/cõ¬ð;‡æ¬¢ªl*EÕÍõ)Jko¥${¬_ÛxéÊãcõÑ÷OÌ_q‹Ätèüþ‘;†ßΈ°öLŸ?Ù_Z~-­<âTN³ÆÚKkæ´ò5N›"-"}èƒì}O„Ó›kõ!3‹¿’áž €?ó0Ó²±ÆÎZÈLWxßU}xkÄ™?_¹¹ž³¸K‘qÇmÁœÝ÷KRe‡˜C;©ùke$ä(áu¡H@Ì!."A…&>˜š¨tÄ#ÚéÝJÊ¿%¡¿?¼UMÒÓ¨<ìýXAØ!¢;Œ¶mGq$r7‰)‹•DMíý‰2§»ëX¿Ä`|]ôêãì~Š-«cTz”Ö´W33Ûªu¾ƒ‘‡¶óÚŽzÍö.Ãó¥*‹Íò ²Äù)âN+¼û^ï1åL*"ª3þmz®=ÖÝýÒqU)ôëUÐ:È„¯·CóÑCŠÍ?0 ƒQ¹ÐíèÜÄÿÐâ2mìV›åAe‰S ²àËž£§¿81[NAÁ'?Ú½øñ—ŠQõaóŒJ›`T ØüƒÁ`T"Øü>yH±ýÓ ƒÁ`0 £¸°þ£Ò0^æ÷¥C`0 ƒÁø¯Ãú ƒÁ`0 £¸°þƒÁ`0 ƒÁ(.¬ÿÀ`0ÿˆN£É{/ù.o“/×êãxÉóø–ŸÛçþÛák÷Ÿºpñܱ“ZKUíò#ÆÔn-5ÑÉý¨×ŸwFÙIåˆá€?½ç[¶YüÞ¦õ´³þ×oûßú÷‹ujÞå繦{Þ/ ï½£Ì*6ÎBquGï÷ÝÒÓ0G*²™uÄc©}aïýÊÔ¤MfóNùKùÆmÊ·¹f1~¯Çl›òôPèÑV®|—Mš€¨µ™Í;màæÓzõÔÁ•·nÓ¦›øVN_.ì’SÒBjP»-|Çe³œõ ã¿@ÍÞËv>6ÝømL¡ñ åSλôsèÜoÎZ?ë¬Àtð¼±¢c“»µé:dÅ‹6«'ÙsOX;”?4½·CáKîÚ.™æ ©Ü &OoQË^Tê´~ òÔ¨~£´˜ôènráÜ­2Íâ6néѦUóÉG?}ë\´ÏoË×ì ,î™ågáŽøû7«õÓÏöêg1dVW®®×ÒËÝ™aÚŸJîq~s9ÿ¿ˆz?ÞT§èKL‚s¾9+ÉÛ4$G@Ý1~œß<.à_è¥ÕrK(¤õ)Rú‚¬~…”´„˜ô¥Boíü XÿÁ`0þ $>÷sß:á¿hð‰›4oxÿÌñ—)2YÂÝí#ÚÎ<“€„úþ±ûLX†";!(àofnè[~#½wÁýeŠ,+>Øãrt‹V*=ÅŸ%Ii3˜ô§òóäM )m0•ï°wœOëZæjJÚóGÐêCxÇõ|›‘4çh@‘m>Ÿw\ÃwÞÈ·]ÌÛ´.¯©˜uï)õô¸ËÎ4›wÅm„ h4ºáðY¿ë—<ö¯×ÞT Ù¯ÓB7Oï#«»ÖPiS)6.Þ7oܹnl+­¾ Õ:,:âéçspMßZ6/ Ú”öþÕsïX êO8|ai;màj:ÍÙuôbÀ%ÏãÇ·Ôƒê8õZßvÜÝóÊ¥À@÷cîg×õÑRáHvkûoÁÿÛ zïÙÃÒvnñŒ/CGåŽXD_Gv6dá$>R•šJƒWšL%Âz㎙lYmØï7ƒn:‰T)à!KDf"2!lFõ‘ðX@‹jë79ùùšÄ$Pƒš€pdYAЭOÓÿpà%¥ø%€àZ¯yvµÌ¼³þƒÁ`üH}ì}öê«Ôdzzzrá7#9|ñâåó-r®%€ˆË;Ž¥D¤×¸…Uê“§ñ@Ò›7Y Z·ÖãQ »–uôôõU»J#ÏKHª556€š}¨ì wewÍ‹¤{s÷Ë<+ª–Ýzˆ=ϲ ¡ú—ÑüÁ{v4õ·ûÆ­å7Õš·Pÿwr÷î«_´ÑͼD6ï­ëd×ÒvÒ‘'%Ì{ 5½0kø…·¬f²+8šûÍ8÷ {èÈi=Œ»ô~½ÙÕ/€V÷Yó¬n/èèÿj_#+œ¼)'¦µ<)Ò®Õmñ¦dü\¯8>ìÌ’AgW©‹™šwŽ´-´aoЪ½‚°ÕóÏñ¢œ4¯/Aà>Yj¶=w<+ã%ÑÊ·ëy"ytøë}ë—‡³éÑ-ùìØÐB•¢¬üÕ|úl·±ÕåaAÞ»ºžÍþPáàãKhS ¹"÷…B(Ìo_(±)pàdÌÈ áÛÜßäJD"Qþår¹\$}œ¼8ù¨  8õsZjLÐÚÕ· ^ÒbÒ÷F÷hislÓ=Y9ª¤y›†$â ¹ïN’‹»Í$?x¥É,2íU kšvŸËÌû˜~ƒøß$2˜ýLõój°”ÇDs•yr2a%­(n Ñz=hän. JËý‡ÞçŠ[B ƒQéILJ¢Àû‡¦B¡´-;9jÞs¿K³SBýn%̶·†—¯¾µ³½äºÇw ¤ÒÄÄD•VIMZ߆<]I$cy«äú„WÐü) ÂW¨¸XŸÖo€À¹Ûr]$Âo»uŒ8?<2_ÀóT Èí˜q\^n§?>±b ˆt,Z[¼~nßÛ“ŽÄßæg†&fËóº)ÊlJšî/yðªõ¨Áf—ö…Sr¹·Èýšv1ƒÿRÊ‚ÍÖ/1 ÆÙ½Ûlû ýFWM½†Ýànf÷‚ž ‹î f l¤ÍS7k÷m݈ðj̛͆õ}S}‰º‰Ãw]îÜz¢Â&A­Á4ÓƒÄf"òá:RcmH‚a3ˆDPk}ž¤ª­€Ó‚D±Dê?ÈÞÙñ™Ç…wï%o¢"M¿íðÔ°^×é?´ËYÞM,/šÑ§…¹(;éml2¨Þ­Ìf‰Ð267q"£vNÍ3Ÿ=}§Ò¦Àj¤K»[ë'.ý‡1=wÍ\xHHuû. õÄjÕÛvh& QÕÉŠ$ú†Fb@ ø°Éû‰#Rsèüo¶o¿šwjãÑè©Ý¥eâ¨BP‡XN²>ÿ¸(¥ÉT™öØè7:MÛÚÖÐ3²¨)­lÇ)GŸê꤈‚ö´¾‹ Þ˜ë’„ü¯xâJ¢¿D¥Au Ñtàm†Ðfiî/Fü¦r^S9¯©œÏQ(n¯Rwðéú%ƒÁ`TIì–\pí›Ó¨Üp³RONï°,ðð×Z‹WûÉ@óàì‚5^I.ÿ¾ÑaÙæS#tÿúæ®Õ_ˆ>¼jsÃ%+N~§™uïôÜUWT<$­i¹äœåz›oÜo¨ãDwß®3ø±‡Ä«Z)ðŽ¼ˆáÛlÌýZþ¯þá^½*Ûœ¨¨·íÑîáÙu D±§·îk¿zlja//;äÓg8 þñSáø™›§Ô2&=¿²eí©OOb-Ìf£™žÉyȉ€Ix¾­÷È=á6.Þ¿ÊiöŸ˜‚'[Çì‹zyîÏ“gîñ2VÏ ¿shÎê ªÂ&1:¿äŽá·3â¬=ÓgãOö—–_KKöX¿¶ñÒ•ÇÇê)¢ïŸ˜¿â–ªqæÏWnG®ç¬ÒQ¤GÜq[0g÷ýŒOõ™1F|è‡S±øÿn:hÙO­.-¿^ZGÄ´™ëûàÞüÍÝ¿[üë•æ§ÊLθ°s³Óòu'‹Sno9ýD¥kL1‡v R Ìs†"ºÃhÛvTG"w“˜œ…M•wBu ‘E“ô4*+t¬ ôþÕÔÔÊÓ>ƒÁ`0Šæjff[V\SÚ¡5|~'rZ]ùæšÄçXå}È—ÚÎkO8^è5Û» Û³•¦¸Ó ï¾×{L9“ €ˆêŒÿc›žkuw+ÌQ™gT&ôëUÐÖˆ„¯·®ûè!Åæ ƒñµÀ¿Ft'Úv¥<(ÒÉ«}_ïõË¡Ûѹ‰ÿ¡Åe:^9lÊ‚/{ŽžzüâÄl9Ÿüh÷âÇèˆÁ`lþÁ`0¾ØüƒÁ`|°ù|òbû§ ƒÁ`0 Fqaë— ƒÁ`0ŒrK~*äõ 9Ê Àæ ƒÁ`0 FqaýƒÁ`0 ƒQ\ʦÿPSÃàpMó ‹§æ5K5k•Ø€Å4ðíÝ>7Ý6«®EFD]›o+Öë»âϧ/Ÿ=8µyTm@µv3ö\¼õäÕóG·Îý9ÕΠd6adÿóŸž_¾xä½gf;}Ðl6ᷳ׃_¼~ùì¾ï±_ú×.tEا6K¤YüËÿIJ{}]H nÖ®}_ZŒ-Å6óoDEÜ[eW,«µû¬>êsÿÙã;—öÎéP£Ò½(‰è4š¼÷’ïò6… 9“.³v¹Ÿ÷½î{Å{¿ë¤9 ¸Vç¹»Žzø\ñܳzH‰jM¢g;aë¿ç¯^8³Åw 4 ZX&ÔnoݨlÎPŽå¨ýWÏ.l/®X¯Íæ] ¸~Û?àÚÙã»æô¨«þ96jÞå繦»NYÇ Ù¼+n#L UÑ´þ~Ó>ϯÃ-KdÜzÚYÿë·ýoýûƒE)bü®m0•ï°wZÁ7iÿAˌԠv[øŽ#*hÿn¥CiÖ jÒ&³y§|‡¥|ã6òSõfÈL êàÊ[7ˆiÓM|+§ŠŽ¿ThÒºx‡u|ûÙÔܬhõ²-KeÑ ‹ŒtÛqÙÏÊ…ít §|Veò™Ts˜þë1¯EÍ2 ¾‚Þlô×1m$ww®\{8Üü»5Lo.„°Ýœí3:WÝ¿jý©h ç¹Ì´W±Ï]©MínËwÍé¡÷èÏ•ë=ãjwž¹Í¥º½ç.íÓTò`÷ÚMg¢jØ\3¥]Il_³ø—3•NÔ[ßpt95‡ˆÕÿþÞ6²vÄÁM®Þé-þ÷÷Ö!ÕKt½ÚÿŒô„_ê|Œš½—í8|lºñÛ˜¢„uúýÔ1zÛðN­»9%úat']ƃ–O5:ïÒÏ¡s¿97jý<®³ž*M5—m_lú¾k¿É{²G¬Û€S%,”Xòôyý²l3ñ!¯/lZ¶úÀ]Y…;~¾½o{Ça /NÝ2©ÉgܰÑ>¿-_³'PÕ{ÈË5Ç‘St½&tîÔyÀ¼Ó¡%ºôá–mZ5Ÿ|´L×®› §j·¹«ó¸«nD³­¡ùþ+“¾T_–¾ªJ³Î´?•Üãüærþõ~¼©˜çÛÌçÕ?¼žBZŸ õ _ÙÆ“ª  FÑ$p1wë",ÆP¢Me[–Ê¢ÿÀÑàÔäßw¦¦yÉŸÀçvn=óȧAǦ٪€Ônòço‰ˆò›ÓuÀÖKCžùïèo4èÝ׊Üùcöêßw¸,Þ-iÓ·»¡rc¹³­õƒ,jëÙ|ºPçßš5wëkÔþˆÄç~î['üïנ䢄©‰‰Ù™)é2Êg¥¦e§&%Êq“æ ïŸ9þ2E&K¸»}DÛ™gUh¢™“Ó«ãn·cÓRÃ<÷Ÿç-U •cú#ßŕﲑo1†嵄$ i‹Å|§ |›ÉTš3Í!¡¶›xóÜbËE¼UmšŒQïû[ÀÍ €›×íX7¡m^JÛLÞáîu5ÀóèŽI­rfØ5ºlº¾sˆQÎ÷–?>=­‰ Í’Ce‰í8%ïÐÁ 4Ýpø¬ßõKûWko*ª ÿãÔ´†ùú\§¾¿tà`ãâpóÖÉëÆ¶ÒÊÿÒÆÅ{ïX»n+Žœóñ9´nPnU©×jü¶ãîžW.ºs?»®TÀ™8Ìúãð…k—½OÎi«QPxäÂÕ çÿ2ÂFªçà·²=×ìÇ£~¾þ¾›û©Êï½£r‡u‹1§ñÙˆ¨9‰º†ìlÈ^’•÷rwÁ7´^ òìj”å’²ül¿ÈwýØ>+÷œþ}@‹n³v»ÿ3±q%?DGEÖ‰ÕIôudgCNâ !€”‡äÙ¯ÜóF4‘eM@·>M¯ø”ZÝáÞ$+éwH4¥Õ -ŸÅ,Kŧ,úŠŒ_ãâörú7Ìjþ­©Øþ&zmVî7}fŽ^9÷HQÝnÚÄÎ"H:.u›ßSûêÂQe5zëoêÏŽ-œõËù(€¿ç6kö¬Y >+‰÷ÐßûÙþ+8óabb"`ܤ¥…®A£ 4©Tа½#íÛtZy "c§6õ>))µ6 A½á»Ÿ=÷?æ:ËÁHÎ#íìô>ÿ;m0ÃóV€[ÿø?¿ðKPIâ,¾fñ/g”1¦ß¯˜ªø?{gUöðsß]C—ˆ(ˆ¨ˆ˜ˆ…âk¬¨k`»êšØÝ­¨?w-¬µ°D%Dp ¤Kš˜x÷÷¢¼7 *îû~øƒ¹sîyçž¹÷¾Û÷è°ö¶]Fmù×´k[ þ%\g€­ÜøË~™f#G©ý5ľ͈ë«æôæ€æ°µÛì-èiÛ²Ó”»6›VªQ{ˆ¥¾IWMK”¿6GÏU]««aA'IYŽx.«Ž.`ôî䦭Fí84›v1 ùOz¼Q|¼Qü‡ EÒ”¢¢(¡ëwµšéÔܶßnÁäÿýÙ¦\ZÙ©‹Ê¡áöí¾ì9ãׯ ñëÚí­Âgumiß}ú°ÿÍïXÃæ5Ÿ§¾ÍØ4@W g÷IN?]>Ϧ¥¢9Š( £F*:3ä.™Ñê;Ã]5:<ݨ÷’éÎåÝ4ÓAãÚ¾=wå9Ñø—iC,ÁÄÄpJ~ë¡~òSRLMMäèÔQÕ ‚›¥`¨¤5Mˆ¥%÷Î.VWÓ65\¦Ê¥mËÔ Eq7îÇ)˜~fþÚ¢©—‚‚üƒN»„ÍØxO ¥¥%a7»ùü;÷nYáÖˆM'©©¯³2Kí&îXù‹EfF†ž¾>M )ˆ€ÙDÀl”\Þ „-Ýqþ)âÞr"^ˆ[”-(E™o€o:˜¯Œ²h$¾Dxå'{'û?.å—‡ö“Wu|¶â·Þ½&xþ²tl Áƒ(kG'5ãÕÂBŸÑH~%™™™e™Á`¨çxòìô=‡ÏÞÿÄȱ•@æûxU#CBÕeÕåƒ[‚¾¡AÊûb·örr°Ÿæóå¾åÀ!*§&º¹N»k6ߣ+Œ‡Ìž»od_çÞîGÞ§xOò¼JóÖµ~žËZ<^;¼{Ÿ!s}ÞK*WØÆ®Ò­ß؃B÷MZ@ƹ öN½7D‘þËìì'œJ­[‡ÔàJA­'î´tYK¶tYõ‰Àbλ†òªYw@祪þ–­Aê†=á63Fq¼W_Ã=»Ô|½ùëÞnAÉeåB«i€¨ à1Êʨ¢¡eK°®ð­ÐÇ5>¿;ªÀèT‚-'a}(É%-zaEóR ¨³ýÓ‚œ ™Y{JÙ3ôõFsd77Íܲã?‘l]¾XÚ·Õ€ÜÐKBïóvKÇöªyáôõ'yøCèé3§O_Œ¬ú×”¨ö†å¨õÚô .l“#«! dÖë]¾ÿ>8ü›YÎÃm;}éj"*€Æ6J×<§n.mê¶zñ@ àuXxhûÉ…E“§o¾o8y¿×ïM~Ü»?¾ ‚ 8šúš(÷åÝ#óV^Î o J;*+s´••Í‚‡2á7§7Ÿx–/< {Tjn®›·H»í‘!,Íy|ÄsÖ™W5*sdñ¼Ô´ß³óŽä^°Ù´K)Ë‘¥}[-Èó?°áÐ_+F²hß¶š‘F¾ªîV%ÁÜa!€eË–w®>.$%é×/‡òíìÊç„á}Þ“ù±ÿ>‚R™dÚ+ÑKÉ·¯‡+µlI߸¤Beß™,šž’üëÇ¢çŸ& P˜;5;gA™²åMÞÞÝ:mÑÚ…‡ÂTLMµËÝâ·iÙÞ¿ÿç÷@M] x\R’§©«­1Ë“£³@337Ca Òe•ýrd\QÎÐä”E0XÏ`¶¼ØßíÞ‹6¹·lüè 7'ö_;Á–€)µm)öžì6`Ôš'-–-À§‘Tâñ$ Gߺ½…†X"æòx4ŠƒÑ« Ä»÷ -)›§ÍzÚ6˜à4ÇÊ/ ÓJ2T³cÈôCs…Å©>èê•Í­…?mëÔž ÕÉÑøþýÇ$$M=N?¸RéÏk¨vU)„ ¬ªT×ÕUGùïÂÎ­ÛæŸñ ÉF†º–-Zð-ÚµÐ24ÒKHH¦O@ü•}—^¸¨g¥Æ&|(HI)B!@ˆÐjÕJÎïFÖ6Ya7Ÿå‰Å…ñïSeë¹Ì›Ygß÷QDJ²"µ›· °]Žë¾€‹5%(r ñà4ÒAkp;`s1zý¨Úøt^ªêO>~) o#|„Î7Þ9S×и”šb«Ñd—嘆’3åiøüŽ˜/„ß~`màK ˜êVXUH ZY…óR ølêj–ë|Åcî½µ£òG¸ä–n‘J“ Õ'ªqO€D$"$ ”Õ/\.@û·CÏ‘W TUTŠ)´WgÒOÿòõáß:úZZèˆRÞ˜y>éj‡1vË9—/yÚq3¢.o^yèØõ¸‚O/&žŽ‰Ž$#­@NÏ cxã{øRÈ+Ä òì5ÌÚÚ²†º[rÞìøßI¿×PÜmVo÷±ƒ›yïx¥¨NÅŸ.—ýp ŠP)ƒ%_´¾ÉŠ×gšˆßGøî[»îÊ1@š@¯¥ÜzÊÜ{EÛR0–e*’$A—шe«ÎŠânûW~JõÙmÔµÿTæèH`¨Y÷”ËãˆÅbKÄÀ«Ôè«ütÙYªÛø<ßÌ”PY žËá˜?'«RŽD"1€‡2y‹?ë¤~þtÖ0]¾Mqæ%ãÿb‰äý¡Ñ½¼ªß[9™l6«¢Ë¤P2ËS³òuv™¨Ž/Ì]ž[øøóz ,Ý"\}å^žÌÏEÅ"€ÔÔT@F†é`ld ˜’R­ÎÏ!Z«k¯×Ö°Å‚ÿe¦ïû¼ ýõg½Àæp±T*ó–”$y<@^~>®Ü9“J¥4’ùY™,]=Õ²±==ýÌÌ š@ÅÑÂÖ=àí:"S¼ndW‹òð<”U@òÍ€g‰²NÉ•d¨ƒ_þ#80hxp!Éù¿k¶åá¡¡Y#:¶h£kÿ4tU©<ɪˆ Ò“ä·¿ôtõ²³²q—×M¹  ‡Q+·-=Í'+!¡phÇfjonúLïd«œôäCMRd8p^§Ð±Î )FÕšôèÓ\ðoÀÃä²B(•J+ª ‚µB$Iâ™™c¼«}(µCHWÕYà‹Î8&Œ€¯ ÊsI‹ò°>f¶ Q¸BŽ—~z(]ÇÅæ]àÕR”"PLI<¤%!Ñs@mª—ý@ <%€ž”Tl W{,y>f@MòRM¨ƒiiiI4†vüÅšZ[µUU€Œ.¥é½yTZm{:·láøû¶‹÷MhSÖJ{ýºP—)¦Oš9½·§PU¢÷ÔiÓ§»Ys4Û Ÿ>mBw3(R¶3~øŸKÖM›ºq† Cï'•m`ðÆNŸ6}ú´éÓ§ýÞÙômíX¼v6\zO„€Õˆ%ž“¦mù³7²"ÆÃ‹'±b°¹lùŒY[ç¸*CaLÌ»è¬$]t†z5°m{§&z\qnzzž´¢&`g- §RÁ=yÍÚø¸8ã^à ”8êMFýú÷КlU$"i³ÙM•TÚd)¡4^SÙ0++ @»ïÌ ëí÷°¬$^¥%<‰-­¾3–Mš²jœ#@jì“,ºg©é®ãý™S"üö>.ΰ“‹¥€’Í„=Þ3ÚÒÎuÇÇÅ» j£ÃS6îÙßIWÃUˆù¢¢åiÉ=3‹Š”ù7L~/ÙÐPRÿCCc¹†€$¶Ò®êªhttŸ1ÎcÙ˜‰±Oò¨…âü®¿ƒvS·-ž2}ÓÚQ&¢‡WoÑ:„ î c³›:Êéé]’3¶ ÄÂê£|òß½ÍmÓ³ ÔšöíÞôÝÛw¢ØèöƒÜ›i*):p5‹yI#‰£ƒƒ›׆¯ªfÖËÝ•ô†&Pq@\`! 4Àؤ ¢,iÊ| ü¾ Ù¥ÕH2T‹ÅVVU&€§k;ÐQ_¨kj¦Î%RC‚K'm÷úþƒbù’5ƒàé´>m÷Þ½—ÈbÄŠyƒÚ›ëpÄù™Y$ ññºNŽÅo^¾~…:w%âk4mÅæð´uõ¸,‹õEû½±ûê­+–y-êS~ÜcjR’‘ck>¿±Ëã:Ëv&%¾}«×®³9€g5lõ®ßméj0j‡¤§¦˜tèÑŒ¯kÕwîÄ®õ·ÛIŒr±I7àpAÉé¢Üd€D:»l|¤ÿ¢º½—~~(]§ \ *U°ó$zë…ÓêÑÌz£¬§Ø´'æñ@¥ 6"PfªìÕî¤ÝHÜv–u~ÏK5¡.¶ÞK æf±7k«MÐV&¥¢ë¹9ë4í©Ò;«Æ­g¯¿òÐ ž0íÙM¯«Qeï_IÀæÙ‡ Vá¹T˜x(òÀíì‚·ùuùòAeNÒî4eE§‚3/½ƒƒ6NÛ¥»fÌ EóKÓžŸõ\±+F&Œzþ±¢§,fúáG'ÃÒRÃnÅäXÙ”„Þ‰ÉÑycÅ䜕#=–v”f½º¼fõæû"€üiµiÞ€ß:’9ïníܸîVYžUPg’Â’J4ÑꛬØçì«O.³4`羸µ~Ñ™ò•”O]#ÙYrËaÞ…•‹í·í¼ûÜSðöÞ¶…gkÒ°ç®SåÌÓÔÛ^Z´:-õ’ŽÁU?õâ®ÃCöŒnÝÝlçŸ{ï¶¾åâUËQÀêIÛ•Vù}Y{2óÅ…¥+vÑ.$\ÔT´8pÍBJȺùV.o¿óT´'ŸUœ¼~í»?ïÂÊ%íwx0“/I‰<õÇœ°¯™&_猺jièâ¢MylUå9:ª"iéùìœ=¥4ñÞ]Ü´ÏÜíëœÕýDéÏÏ/^¹ç ¤ôÙN9Z[ÿ³°½89jïÄEÿÔìA QÞÐŒ‚é÷™ævZuÛkpY+f{ä/Pten5”G—_]±àà­ÕªÒ¼„¯­S íü*¯F+7^üCGšñôƲMùð”JRxwËj뵋NûëJÃ/<GÒV¸L,½ #[®ÆÖ(ñ,ñ‘tœ »‘ è)â¸â’‹„l؉^’ ‚ Ê—©¤ÞøÛ§ûR¿ÀùÙ1g×-Ø,íÞ½¤æ$©ò?|°ó ükxÙfªká3áå· §(Ÿ|ýP¼·ÏÃÉ $?ò^¶èØ!侑”Ç/~‘T^+äøí?Õcãÿ®Œ~wjÑ©Ðá ÐoÛvÛU»üfh³„)ÞßÐÕ`4¹¶çT·.zi͹àA£ Õ|ÿC#Ëöw]Ÿoö {¼Ö¯âÄŠ;Ùeà<”z¥×¨qGí¥ÚšÔP p·õúTK§%ž<]w²­ì– ܧ–„£»árÌ42."õÑØi=&3QÂQT±&_”†ÅX’ŠTÒ_ RRút¢ã,×ùŠÏ¿›3”úfOo(0©[ð'â ¬ÄVݨ¯–éûµeôûfo¦×-µ¬?ï—”tQR಼†€’@1pšâ6îðjʬ²*•¡Öp š4"ò ÕÚOÙ¾Š»«ÛŠ Ÿñhon¯uƒöŸy½Çròßû´¼úo}ü½íú±`¼ô жªÕ˜‘Kq¦9©Mq‡HîÛ·CóÅKªýËÀð] T›ëv’–žþøõ†Ÿý_ÉfV ÍÔÓy¨ôœîÕN¥4í©ßÒõÁ?cçDÏîùŸ}éÎT±²àű•_½Ið§…ñÃwé?00Ô²h\BMÿe`ø/‘¸ŸHüÞ6ü줞›ÖïÜ÷6¢ÞI¿»aÌÝ ßÛŠÆK ߃Ÿò@/†zá+÷?T‹ƒÛD%#ýŽ|?ŸIÿåè”ü€&10Tå§ßÿÀÀÀÀð3QËýŠÓ€ö?0ó ŠÂôE^ÿ¥Ù¨]÷ž®\]{w¶·Ð @»yïA}Û –±Ã/n]¬”åh```oè‘ÔÔä‹ôj«HuÄéÔäÔ²¿Cƒ~“êÕÖ£¶Ÿ¿q×ÿÒîYÝô+‘F«'íü…ëa§%X•Z7ß@6V,£ú¸ù,ÒyÙc ÙÚùkŽþPíKvÿõë!Ô2z=¢;ôPàÒu{Ê'-çÜ{öoÌ?->—1q8ÔS?òÏvž'ÆÉ¹×ô ;U[þ¾ó”xppÀÑMétÖJ5åØY–)n½tÙAöXMÚv´°£Ù§Ò_ë†u;ò·‚Âu Š›L!»o%»-Äæåy’ÐÇÍg“=¶“.ëÈÖÝ€ ÜÝ‹lÙ¸¸ÍNÒÑå»$âk¡J&%Kl·tÙNv_Š­lêæárªž¹ms¥´ð;¡…HÃÒ¡KKóôðÀ,]}mÈÈAºº|„™3h~Jÿýk:ÎóV dn&ÿI1±ÄƒsÑÃõBšRëiöN‹î¶öi:pͲß;q_ÆV½˜P{ÀßÝ¿ón°ó ôüR(-xÿÚLaTÁ×Ù©ä UUU ?¿TOW@[O»8¿ö`30üAfýÖøÞ¾Š¹8Ç^ @’rîü¹ëOr?RÀm9vŸÿ£¸øø¸¨[Oj«&Ç$† ”ò÷±ë‰B©87&ü)if® yoB}÷LùsoÌ—M¥S¦Zúïõ©þNá*’”2â«E߸öª@$Ê J353¡ÖV’‹xXØnÙÂ&à ¶™I:o%»/Æ+EÐÄ-—=7“vNôWÁr°v#”"ˆSQÒsж@|Ù€¢óRÜD66Œ›o -m°íÒe3Ù¦ 0½ÈÎnÀsÆeC¹e“T&Õ úY¿|¿Ç$Àç3m—y1P±uß~þFèû~§7LêfR6qÄù¿µƒ]–{û‡úlìkH«“;ÏÀðȨ+·z8ª}öÒï±ÂÇ?4øì¦Á>o^TÒið›wLxèúnDÛéBCÂBv Ò£ÕIi'aÜ}Áß>·ïß¾y~ó;u Õ „©Ë¢Ãî„ßõ¿´c²ƒV™Ê{ýOxX –Í”ó·WwU¯;k W¥=±DI('Tø$ˆò $Jò€Ýk½@IY´Ñµ'ï»äët7"Â÷¢ï­ƒÔÊ2ƒ‡“ë:Ÿ›ÁÁç¶·d@·!Û<­?~í¯¡í]ó=9Õ¶ÁâOá:ÀvˆJK@ð¥a¬o ÀÁ:æ(õˆÅ zÂ=QjY6 J­A@Ó ØU2)QÃê(½ÌKPF.Ö1­ƒÇËé?ä¾ ŠJ,ëmsÕÕy"QÙÅï¥Y™R]=e5=Ýâ¬,æê,†š£ÚåÞ‰•cÿ^·ëú›ò‘YžËª£K½;¹ig@A«Q;Ín%MHH###•ž«¯œ˜ÒJÃÐP>$€Î ùcÙA7_H œæLíÍ¡~…NƒÑ7ÖzzhíÆ[ùÍÝÖnž`AgÃEò½>1ň£eÛÞºèå«(Š ¼q?¾ÊL0a1f^g{Ž<Uµð8uû^ˆÿ«׌°V¦•¤|гÿý¶ðJÒlÒD/?/ÚJ2H `ƒr)¨›O—ä"0†5ã‰û‹ˆˆ[Ðh®˜¢0ééGˆ'‘ú¯˜O÷FR®$åWÑeŸ#¢‚Œ†b·DØ"âÇÚåý'HØCïG*C° …Í&Âü 4Ì&fñY Ï$Å¢ÿ4uí!΄ IDATÏõ¿ùLÎÂ*ƒ¡žãɳÓô>{ÿ#ÇV^¥ví•ÿ™Ñ¯ßÆw]Ƹš×HgìÖ^NöÓ|¾¼?×üw“Û F\e½`œ‹Fgƹ öN½7D‘þËìì'œJ•£³ªjý¨b5 U›ec‹îtÑßÄhÅ{’çÕ² Árà•SÝ\§Ý5›ïÑ•À²5Hݰ'ÜfÆ(Ž÷êk¸g—Fu™Œï…ëT‡Q©[NÂ&úP’JZ*À•‚ZOÜié²–léP>ZQˆ²%XW øVèãëšC™LJP"Æ|@„6æ·.º¾ò÷Oʺf6öŽ.=[p^|½¡™™=sc]qV–ôÇ=gŠáÇ¥Q‹–*ð×Vï#Û/<‘ZÚ·Õ‚<ÿýµòh ‹ömuâ>€²‘‘SçA\úw´74„‚ eͶ‚››fnÙ¿ñŸH¶.Ÿ¦Ú Ò ¹Wç6vîNïC»®¾077¥3‰áÇC}ÈîÈG!~+tOÎðŠ¡_²¢3`æHÑ /ÿÊmü6lÄØQ#=fo‰±˜»èW:IºqN_ãuñÊŸZ>^—?Ð<;„š j ¢‡™a% (ÉP7ìG ÁPú>ªaòXªú˜ ÂçKbuŸ¿j°H,Ó™ "1”<ƒV/_Žž| @šyb¬L¿FÎ$£ÿ´зÔïÖy"ApÔuuÕQþ»°së¶ùç”Q}Ó/^HÄ=~^¼é¤#対S²SBƒa33~è¬j§y3ëìûþ/ŠHIV`@¤vóÚtQÍ›Yg†Ý|–[*L ¹­ÔÔZ8¿ýªÑw‘x︑S9Bmì¬%JM±Õh²ËrÌ CÉ™ŸÂÙ­Á ¥È›G,HI)B!@ˆÐjÕªbkü•}—^¸¨g¥Æ&|é㇑B¡@ð6âÁG@ÈáÐícjH|é:°¤€Y n…UU”Á@\¬)A‘kˆ§‘æÒ¸¬h#øüŽ˜/„¢jôcA™LJHôî<Òö ]6“†ƒ(ûËõë3uÅÖkݹ¾ ñý‡è¸Ìü’OS ™Ùj—¾ ¾çÊÀP~䦸°ïU?Ù@"ù¼õÇåqÄb1ˆ%bàñx…oãs¡kËžÀJO·±ïûÁâã:€D$"Ë• ºº€J'ÊmFΟíÒTG‰£¬ DgÒW%“á >ýîuAáå9W8ê\Wî\‡&/ åµ›6ÝÂwÑ’€JM8qAzšl‘Sêù[/Ý›5Ȧ”¤|ZÇEG6vI¾úÏ¥e{Ãâ²Å´&æC‰*èšâ‚HÉt¤ ÌL°Ál2iH°D_þªÃä§¥F€/†ÂQY&Ø•¢K©¢cúÒAo’bÑ»þ®7<ä ¥ù¬ßk>w¡·‡$1&ð¨—×­„ϼ´³Ó'×P'Òò9"©TÊfW´/j¥³‚ ;9ŽñðÝçúJ€¥,L{Æ£‹Âáp*L’H$¶ì'–<=s%c씤}¾é•ÅëÆÎ¯?Œ´k’ƒÐ_TðùRD–¸ø !w7™ó®ùŠ3WgeÄlÙUޱ¬à`#ô“·Iá:1,@%(v13b @¢”“ ~‰Ò2°– ¤ ãê4,ò'Dìò€:(“Iƒà_‰XŠÀlÖ®‹„Ò÷X-J^ÜŒLüÒ 9i)yÊ¥é [kÅÀðŸAÁÖágMp’$8T¼Ð@$¨q8Pöâ‹%ð!Fôê¥uâ„ɸÑÝÔ%j²‡ŽJ'¯¿çŽÑ¶÷t¿­6öäµY¦ô&Õ<™ _P—]/õ¦½œUc}gaqaBhTîÂN-! „J²‰cGC£ã!cdŸí#[>+eüRþÙY§^”5,ä„`«ªú·ËoÃ3ö¸Ì¿Zí–Q•HI=#ô> ‰JIC=HÏDJñ‡¿ˆøLÚxˆ$Ý ˆ9ÀfHôF‘Sˆƒ)Åí{DÐG‡²41ã^½Ir£Ø\{&ßý©J IÌbÉ:QQîAÜåuS.GÃÂaÔÊm‹GOó¡_UEçWšÆf— YÔ¡Î $Iâ™™c¼éfÀ>“¬p‹Åª!áµÿ+ïi|Çq#ÌîžJ*oKÕµ ÃÅæ]àÕR”Bµ{W§)äPó Îë:ÖyáqC*¥ëPBO  €§%yøbv¡bèâ!- ‰žjX'\Q&³ e0°Ç’×ècùš˜x…r ¸êŸ/ûZè«C—K–”PöfpÎ˰¨øBª¯ª%-9™-×?7.Ûì5ÙN˜ð$¶´úÎX6iʪqŽ©±O² -!¡TÅÔ4ûñµ°hÂÀRâiÖ¬°;r5°˜u5Ê}@k-J‹MO˸QÓŽ}Ûi•ªwÿGwCJ“~(¤ý–ÍÖJBÙ¬k‡&ÉIÉ4’/þ7ÐÞÉÁÞÉÁÞÉuKŒÐwðà ybU‡nŽzJßvP¯¦/ž¿¦‘¤|†¦¦(+S±óf„y A@ ùI i‚„…E© Ó·šŒ5˯”ô€@Àk :bTH§_Œr’°© p¹À1¦­ ÷½L§n[àp@©h“¨H®y¥9ˆc ÚÚÀÓ!Ï$£o8Üœ_ûÝ®tVzjŠI‡ÍøºV}çNì*;ÁbÄŠyƒÚ›ëpÄù™Y$€¼}‹UuÖ5#sÁÑëêÒ®äõ«ì:ÑY•Ä·oõÚu6ç𬆭Þõ»-휤·o :õi¡ÅU2èÒ£­äíÛ,–õXÏ®QÛ¦®>IŒ™; bâ­ÎíTeàJP)åÑ?ÚXSåÓ•ô2Øž¶®—Åb±>õÿ#Pº£¬§Ø´'æñ@¥ 6"Pf*€å&b“nÀá‚’ 6ÒE¹^%Ñ[/”˜ö­m¯-”ÉÕî¤ÝHÜv®˜‘Õî†m\0—ʶØH³RÚk}}‰X¦Žƒ>mÒNô‹~¾jê?–Qê†ì+;÷ýj5©U/ëë‡ô\wõ¬ž´]i՘ߗµ'3_\Xºb×#ø`›òH<¾oB€&T:yS¶os.û¿õèíÛG¿Ûóäú Âç{Ö6›;eß¶'>k† ¸¼âð‚íøûR˜ÄðC!¸÷׎îkv]£œ‘‡7ž}à´ê¶×ದâöÈ_ èÊÜk"(¢ ƒÿÞÜq銓z¼’ŒwÖo¼”N!Eû @Êý½búWHÝ^è´4ZAIˆ„P þ€ÀJ0@ê%¤9Šìî¨>E@©· éÒÙ¤Ù(ÑåÒϪ'žB*#ÈN}(†ì">ñ“ή½ÌEÉÇQŽÜIyi zÕš´[ŽYBôj'JΡ4©Ñ¿3Ê]úw}~ckåײ®í9ÕmãË£Þ_Zs.xÐhȉ{Åž<×ÌFºìü7A»·\•³ñ—Bg«ùþ‡F–]r9|¼Ù7pìñ$;ÏÀ¿†—5¼¯…Ï„—{Ü&œJ}óп3æ0R.MztnÑÆL§“J”’…~Û¶Û®Úå7C›%L‰ðÞø†vÙzß¶-¶«×_òÐ’¦=¹¼t]@&îKM90:Z˜ótËõA;þètwíƒâú°Sa·õú”}ÓO sPÏ€"¹k|ýP¼·ÏòÅ]RAò#ïe‹ŽýGv±Ñ¸.ã"RÖc2%•jšøRq'» œ‡RO¢ôb½†ÝŽ¥L&ˆÒ K?$žCš£p—®Xú¥C_{ºqe’’RŇY®ó÷ÞÚQZÜ&*(éwäÛèüùLú/G§äÛ›ôË 7Å×/5Ü%@ Úøï ¥ë(kÚû%%]*ÕÆ òQwÛrÙùö/ ë𸴆¢³>h(vV…Ûk]àà‡ýg^/ıœü÷>-¯þ[o»~*´­¾Ñֈܷ?n‡æ‹—Tƒ?ú—á?†fO·ÖaçVÖic·¡è¬ŠˆžÝó?ûÒ©b  dÁ‹c+ã¾·Q ??Lÿ¡a‘eF¿+ÿQõAC±“Šô»ÆÜÝð½­`ø¯ñCìc``````````hÐÎ?ÔÇòt†ÿ, zÿ@ƒ6žáÛ@äò«’Úuz]ù3ÿÀÀÀÀÀÀÀÀÀÀÀ (Lÿ¡þAÊF†šßÛˆú‚Ë7äÓž@ÏÀÀÀÀÀð³Áô¾H£ÕŒwCÖv–+E÷YpØ÷VÈàÀÓ^ÓÚ«Øy†?Œ“ý-r ÞvIЉqf Ôr¶Ï•½Ë§VMGõßÔO£’døÃè°ˆÈ{¾æ»|©Iwè¡À¥¾êÀB¿óüg÷²ª¸Ë†.í„å„ÓÑár}BéJO»g`¹äW¡Þþc—vm­öõ*†ÒuU©½ÄmÔ{ñá áÁAþÇ7Žl΃߼cÂ#+ýmìEîéµDµ/Ùý×Êg#âæÈÆz_¯Ý·YLºì —âf-kmßO-ʦ:éKÇ—åHq5Ãbò ¿…•/µ¬mUm=jûùëÁwý/ížÕM_¡8Š8¤~@†Øi7ÙsÌ7:?ôg@ ;z‘}*ýµn@èãæ³ÉÛI—udën@€îîE¶l\Üf'éèò= ¯1ª¸É²ûV²ÛBl.?O*.©0ÌùK uG¯ÁûôQ*ÈËRßûc:pͲß;q_ÆfT§ÓrÈ=ÓöžË2¾óÒø^g¢.çÀûƒCGIPÜ6Í®K×ty¸fÜíòU˜iÁû×f £*_ØûæƒÇObkwšç½aܽ»[Uúθ?ãÛû£ä^°E Ñtò¾¥æ>Ó~óI’ÈM»ö€yî*©ò}Bç9(’öZñÑÅo©Sî\5jÁͬºÒZJ×QRzÉhøÚÙz¾™‘Ìn1yßþI½oÍ¿žumžë=NY$åžÞÃâ^ÑEW<Ó~ğc"ŒVcÜ~*ÎYŒ²åݸÜàùú²YK5,GõaçWa2b‰碇ë…4¥ÖÓìÝmíƒêrÈw4Þx0f÷Ë (f%’Žs±Í\\`6+ýKÜ?È ·›Ž £Q*`àÛ`xh³€òðý¡X/ Eœ@¬¸ýœ·îÓr_-©8ÌüC]¡7d÷µ[×eWuV¦“Ì{ê»gÊŸ{cª}õåå‰K "L–‹‹òóhoZ•2²j±ù•E»c„eÓ‘QWnõp¤1—ä†G½Ò40äU4ë7€ïï÷¸ì%«bë¾ýüЇwýNo˜ÔÍDþÊeç1ÃóŽ®ñIËhÓ®ÔaÊTKÿ½>ò¯r­©CM;Òï±ÂÇ?4øì¦Á™ä '×u>7ƒ‚ÎldNÈM»àéá ¾fkVŸwÿPºŽ2ÊKÜÖíZ<¹~é}¡H”ûøcºÌ¿ž@ s3233233²ÔûŒ°½äBMôdZÜ|iiƒm—.›ÉÖ€2n»‹4/_Âfµœ´±0½ÈÎnÀsÆeÄŸ¦4qË%dÏͤ]gÙý°ˆ/;t^Š›4¥xP›.2IÁ3 RDï cú)ªŸ‚Êe³òÐxÛ%AÞcŒh2-äÿBÖvYîíè³±¯!­NêÒQµ}*2ÁÁç¶·dÑê¤*\jýöD”]t –Ó/ûηG`5éBL¸ÏŒ¦ú£þŠŒ Œù4ð_nÒ¹­Ãd"L]¾p'ü®ÿ¥“´èMB !»ž(”ŠscŸ’fæº5r2õÓë V3leˆ^߯FLËqò¾K¾þAw#"|/úÞØ:H:íÝV„ló´þøµ¿†¶w]pÌ÷äTÛŸq™Q”äAI°Ûb­() €ƒuÌQê‹Aô…{¢ÔbH‚RkPдÁ‚¤ïlx ÁvˆJK@ð¥a¬o\{ÉÀôêŠÔ‹Þ…å’Ο¸[D'Yxã~<íוH?3mÑÔKAAþA§]Âfl¼'»ßÈÂãÔí{!þ7®\3š¶Ÿœfã¶L{yþ/<‹ÝÚËÉÁ~šõ,mǶM^¾)­ÖÔµ?×ÿæ³²ñ ƒ¡žãɳÓô>{ÿ#ÇVrWípºôëþÒÿN¥á3š´cæõx¶çÈãjút¡y¼¢i7ÿÅÝäö‚Ñ#—GY/ç$k4àÆöïæ:ånãã;òÓNÆÝºC¸õk!ßüZAé:Ê@*/iiiIØÍÆn>çν[GV¸5ú¬áÀu3ŠwéD¨.z 2-€±Äï$‚÷"Õ!˜OQÖ;ÐmÚ˜¯‚2ãÒPØl"ÌJƒPÀl"`6_>{cÒ2½‰ðSHýW¬Ï0Š5ÞaKˆˆk`<k—wÔLœ a¼© Áz,€Œ(·§hQ¡¢&7L>+›”ÐfZ¥ví•ÿ™Ñ¯ßÆw]ƸšËÑYµtЕ#ËCTNMtsv×l¾GWŽU WуG6Ô ;jÞŽÅðöð0{§áÿ{“yzšƒ½“ƒýØã²žùÀ1ƒýî¾"ÚjÁÄnPë·`‰uôêaÎnãwg¹mšlèLJ¾wÀ'¦q´lÛ[½|Uíè~‡Tyzý€Àbλ†òª™÷02gx}{»yŸâ=ÉójY¦§ø9X¶©ö„ÛÌÅñ^} ÷ìÒ¨Þ¬ÿ`c‹îtI@¸RPë‰;m ]Ö’-dà Pˆ²%XW øVèãëïjmMQF¥l9 ›èCI(iÕZ²&0ý†:Cpï„Ï{ PyüŸ¸ºX4¡Ý{ñÂ&÷–=aâæÄþk'ØràÅ_c† 1vÔHÙ[b,æ.úÕDކ¦S·Oå];èŸYíl¥Õô‹!aÿ†øïiý`ëåw•¾h5 o©ß­7²OApÔuuÕQþ»°së¶ùË}ùꙚǿϫ6:fŽðò¯V’Ò!t(žö”ûNE|ÈN ~„ÍÌd%®¼þ¾˜,yýè¹lRnÚãããõMLë¯1Q¨¼„)µm)öžì6`Ôš'-–-Pé˜A•¿ôLºví }ô’r •‚4òËg²ž¶ &8ÍAùäÊýMR¯¡¬t<ƒ\ VÒP7¬h‰¡ääp°zùªûäë¨PÒ$Ècåò@¶ìî P.õŸ„ÏË&%´™¶$ú¦_¼,ˆ{ü¼*Í7VÑIY:(‰¿²ïÒ«Rõ¬Ôؤ’dU W~hð {'€f'GãÐyhŠßž£¡ï3“Cî=óÀ¼™ufØÍg¹¥Â´»ÑJM­u噤>dw䣿º'gxÅT·*©ªCª<½^àvÀæbôúQµ‚))E!Z­ZU,o§H»ôñÃH¡P xñà£@ äp~æ“Ø­Á ¥”Mi#.Ö” È5ăÓHsi¬! ÿüŽ˜/„_3½ÿýàK ˜êVXUH tµâ’5é?00ÔøÝﰀ̫ÇoÔÉqϪÜz¼»zâQBJê›àÓ·…Ýì@\ž––š––šòöÁù[/­¬šÈQñæ¯?÷[8²Qµ…ýí¡Ý:wèÒeàQíU{&Tè$ìú»ܸ‘Pþ9ÍgýÞÔö ½oß¾y~ç|W ¹‘Ž??¯ÚN¯Ý´é¾Û}Rª¤qЧ]*‘µ2¥R)›-™ÇXÖÆÅ$. ”›vqA¾PGG§Ú4Ô?”^€ÉÈ«g_å—ÓÂÏߊoÙʺ"Ë¡«Ó‡{!ir¢5@ÉSTl Zø6øãS$¿K‡ÉOÿ ˜`W ”Êt~ñ T>)! GÁÞ`8 þÄë—¾,›”T[`ÓÎNŸ|¬¢uL¡“²tPR¹È TQì(tV-\r?ɱƒÁsìd)·ßWÙ¤²q8œŠ@‰DÂasä™TxyŽCÛn®ž±}v®ë#¿PC*%³ná`«þ8å2’;ÃZ™ó®ùŠ3W¯œZßöÅ–ãQåá4?Ç–¸ø *)û€H”b”¼Di U>îV‡T{b‡V÷Ä@²• ØÅÄëx X@Šk-Yþ{Š¡>É»yüJÒ³SÇ£¿²xª5éñëGÓò1!6‡‹¥RÙ;@J’<À¨ßê½cldc¿æ^fÙ>Á„-“li¢ŒßX6·‘ H²;¸öL¾u«RÓ^wyÝ”‘½»š¾ûuË‹Ë;*§ ?O]½Ú\ÇŽ†&cއDÆ„ßZd¯üËöÈ “,ʾRÄ!ôÔ0íÀf³Å’/¼OòÒÎRSSΫ¾³ô  ôR^~>øÔl—J?5К·o_ùo’¼è_ bYö («óͱ®%Ê|õIcE^Dˆ”~ê ¢\gU”Á æqÊ)ĺ?ï*e“$1‹%ëYD¹»jR`)Ê{å/©JÇWØI£3ù~hNÇŽ-Û8ÙÅG|z IâO‰¡E"‘T¤ÅbI$t³ êM{ýÒF°¸0!4*·S'¹‡tÉ5¾>1¾6XÌ%ûx‘݇«î³«RJœ×)t¬ó/5u‹ÿ‡ŸzÆ­&è4…œŠ%Iø¢{P1ñ–„Òžªa(!€§$ûÄÓ‚’Š·2tÂ|]$kÓ``¨S¤ÏŽN[yYþ`z»¯Þºb™×¢>²- ùïÞæ¶éÙLjGjMûvoúîí;€<±ªÃ7G=%o;¨WÓÏ«Yµ‰Ó.¯ÛöaÀÆyíUª7P6îÖÑ&'-µl§“›ók¿ÛÙß#‹+æ jo®Ãçgfò–d¤¥jš›S¿õ>ñâíìì\·Ä}8 ;œ :D ¦]ÍÈ\‡Cpôºº´+yýJ–Z s+}.ÁÑíÒ£­ðÕËìêÒnjj–—ž^J¥þCé%Qlô ûAîÍ4•” F¸šÅƼ,—7le«÷â•Üè5Dż -Bå;®³žß´?@v¥7yiâX‚¶6ðôGÿF*JݶÀá€R Ð&QÝ.nÿ†Í`éa¾²i$^îq›p*šÎ¼>‹‹?&Å\^»#”»ôïúüÆÖÜJªrâ^±'Ïß5³‘.;ÿMÐî-Wå­Ô* |8Ï¥‹ÊuÿŠsñèÒNm·B©eÚßß<ôïŒùÇŒ”K“[´1F6ô®ÞaÎáÛ›T„‰Ñg<7>ÆH^ÚÍ\ºkì­ÖœZ@é:Ê@*/¥_åÕh寋èH3žÞX¶) üÜ[vËMãß¾ù4àKíäýpüA¤ó8f¡Ä£(¯|Ò£àâõÂ…§‰Ê¤Òôª5i·³„èÕN”L³Ÿ&õÒEví d.J>ŽrèÖ?•¢·—¡ÕdÒB¤…ð1€H¬¾t4L(ÊfÖµ=§ºmþÞvýTh[)ºšÄ IDATÚâ&r)öÓÚŠnˆÌ}ûãvh¾xI1ë—èÐìéÖ:ìzh­Þ¢Ç{fW[pìЄ–õzPúwD»ëœS‡‡~X¿ìlbõÂÿQ”°ÝV²ÛL,öe:uB]”ÍJ§jï-¡÷nž·wÇÒy¨‡Ô=¢g÷üµ&]ºãëçÍïæÅ=½2]‹ûÞF1üü0ë—èÈ¿2£ß•Zk)}wÅsD¸]chPÛúb·ö« ¨ðCÀêQ{_ÿÜ…Ö·¬ÊZ Š™ÿ㎫5@ê¦l~'T…«øæ¼Ž7ëøáµ¥>R¤ßÝ0æî†ïmà ¦ÿÀÀÀPÿ”fľ¬^ªR’ø¢aÝ;ÄÀÀÀÀÀPhû’è/PˆZF¯”ÑõíR¶¦,ÎxU5P¨ãT503öZmLRœÿrôúÐY&10000004hßÕ@H†j¯CÿQ`ö?00000000000( Ó```øN e#CÍïmDÀåò½ŸŽ¡ÁÃô¾5jƒw<Œ{öoLxÙ?Ë¿·QßB¿óüg÷²ª8” i´šqânÈÚÎåvž2ÿ<Œ{´ÈT[Ú~þzpÄ]ÿK»guÓ§}€í,¿˜À•]XJ½¶= ÷k$ûÊtÄáPÿMý4*=èÄ8³¯O‹zû?Ž]Ú=¶µÚ׫P º´Wq ÂrÂéèðòpjRE'Œû,8ì{+äaHPài¯iíË.×°½åôÕ{áwn^Ü1­#Ÿn74$Ù¾k¥Ïz؉îÞ\ÀÍ7å^‡ü)-ú¸ù,ÒyÙc ÙÚùk¶î©ö%»ÿúõÇž×2z=¢;ôPàÒu»™ñ“Ζsn”UVÿL´ø\¦¦åè ;U[þ¾ó”xppÀÑMétÖJ5åØYvcÜf1鲃t^Š›U܇­Š›L!»o%»-Äæµ¨ ~n¨]*`5ì9æË2‹ ±Óîòp ÜÝ‹lÙ¸¸ÍNÒÑå™]7(žCê!/1û§ê Ž_ƒ÷é£T—'¤:’§èÊ|Ç+PÓ~*ˆ¦“÷-5÷™ö›O’Àtàše¿wâ¾ŒÍø\îýÁ¡£$T1±ÄƒsÑÃõBšRëiöN‹î¶öÝ}º¤²ƒS+¸Ëjס-›üt¶jZðþµ™Â(ºŒkÌGÿ¿¥N9¸suÖ¨7ëq eÚé\Ú湫¤V¯êOÊè–Cþè™¶oôŒ€\–éð—Æ÷:u9ßvÊwrÿì7S8ÍFlÚ6§û°ATçl s€WyVIx9Pû0ÍÇ`ÕXâÁ߀u±í,²ñ;âͰàPaÜ¿ŸñíýQ’zÒù|wÿλÁÎ3ÐóK¡–£/ìTr;S3`Dï3iH•Wq¤oíÊ&µÎò 쬊ÙpL„ÁaÀjŒÛOÅ9‹Q6 úC±^Š8X-pû 8o]Ý\ûõ“Aé:“ѤEs( ºÐx0fWÞb€oƒáBV ÍEŒÅsH}ä%fþ¡®Ð²ûÚ­À벿«‹:+×,>aê²èð…;áwý/í˜ì eCzN®ë|nÙ0ȼ¢Äjö\z%èæéYö ñReç1ÃóŽ®ñI*¿ò8ïM¨ïž)î©ö}ŒBþ>v=Q(çÆ„?%ÍÌuéeã^~tìР•S«ä¸²îƒg`xdÔ•ƒ[=?Ÿ-@ú=Vøø‡ŸÝ4¸!“¤ð¼Š­ûöó7BÞõ;½aR7“ŠUK‚§‡7øšMü­Y}žQJ™vZ×)u˜2ÕÒ¯ü º)£åå‰K "L–‹‹òóDÚM›ñcoû¾/•æ<ó»—Ö¾½5µÆ’\ÄÓÀÀÂv»ÈÖ€4ç €t°ÍLÒy+Ù}1¶h\)‚&n¹„ì¹™´s¢¿ –ƒµ¡ä ‰@œŠ’žƒ¶âãæ³ÉÛI祸‰ll7ß@ZÚ`Û%¤Ëf²M@`„;{‘Ý€çŒûx‘}¼d“T&Õ úY¿|¿Ç$Àç3m—y1 É´ü‘ÿ Y;Øe¹·X Ïƾ†´:)Q¼Qé4øÍ;&ÝI¸b”ÏæeŸ#¢‚Œ†b·DØ"âÇÚåý'HØCïG*C° …Í&Âü 4Ì&fËîÆ¦5I±è?M]ûsýo>“3–H›i•ÚµWþgF¿~ßuãj^#5*GUtfœ›`ïÔ{Cé¿ÌÁÞÉÁ~©T9:«Ú©ÖÏs…mìª!Ýú=(tß4¡­NÊJõ£ïöãxìœzF#<~ØåZX7vÖ†Œ(·§hQa€*ð0*•`ËIØDJò@I‹.¶ñ9Ãs÷ìëÜÛýÈûïIžWËJ´åÀ!*§&º¹N»k6ߣ+€ekºaO¸ÍŒQïÕ×pÏ.ê2ß ×ï1@iäñâèGï(1ofvóYn©0-än´RSkÙÈzµƒ×ß“%¯=¯4ÜnÕ‚«glôÿQ®j­z¦¦Åñïóª{ñטaÃFŒ5Òcö–‹¹‹~5‘}¡>dw䣿º'gxÅÈY¶Ò¨vØ«CáÇBù)7öŠøü›™ÉŽÚ«êy‚ 8꺺ê(ÿ]عuÛü?ë¼ÄÇÇ뛘rªKVíP0í:fŽðò¯ìdZVA»÷â…Mî-?zÂÄ͉ý×N°å‡7>µßêìwv±y^ :æ€PTMAô!3¬¤%9ê&ý$JÃG5¬QÞŒMõC3AørIÙØ!Ÿ? ‹Ä2YÑ CÉ3Èá`õòåèÉ×Q¡¤I'ÆÊôkÔéLR0ú@«}Kýn½‘'B›iK¢oúÅ É‚¸ÇÏK ÒÊKtÒAYŽj©³ªæÍ¬³ïû¿("%Y‘ÚÍ[Ðteé*Uüáüö«FÜ=Fâ½ãÆg…¸6vÖ¶ìî P®€,)`¨[aUU %@ÐÖ-))E!Z­ZU,o¿²ïÒ«Rõ¬ÔØ„ }ü0R(ÞF<ø(9œŸáä‡/]G·6£×>Eð1ø1_EÔPÏ!5ÈK5 ÁO]10ü@àwg¼ÃF­ëRpõøNq8iù«D"á°e%cÙ8 &1›]Qd Þ_§ZÝÙÐÑáççUÛ}qAzšlUMêù[/Ý›5H(¼<Çá G½‘ëÊëÐäÅô®~Ùh¯{Α±yœ!rŸUáy©TZá䪞OóY¿×|îBoIbLàQ/¯[ â â‚|¡ŽŽ@Õq¯ºC¡´óÚM›ná»hI @¥&­?¿Dµ“[wW=%)§oO<åf¿ïé¿dâõUÃolPæJ…%ªÃ޵§žÎ‡UÐ5Å’ûÿÙ;÷¸³>€ÿÎ3MSº7ÝUB¹$’j£ÄYÖº_ÖÒÊZ¯õî¢Ü6÷´Â.a×Z„õºå’"é"•J¬K.)º_t¿L53ÏyÿhJôÌ4Õ¤â|?óÇÌ™ßùß9Ï9ç9÷šBà¦äÀȕ֣X5PR÷ÃôÛ/”¸Õxï……j]0%×À»É;ßÏo’tÞ;”åx§Ò+.¯$ IÌ´Ù§pm¦Nq0–£V꬧ÞN6›m0m÷™±`)ò²qÄyW© žòÏ·(}_`NCqÙØÙBÑèz bëà~ 1ø >Ð,@UèÁjF, ùâ¼ÒY‰/ûzœºôcEynâömñuî k0„>Þáâ÷“®ŒIˆMÇãÌ£à½üR–„”ãš`ªF®Sí/‘>‡4#/5Ò dIñÕcþ‹Ô³Ž%4¿x KÔb±XÁû£Ërrr|A½^»½ªîGÄg¶tŸ`»QZR¬¢"n¤¹ýq×rOÿxâ)@í‹€ŠÙh¥÷ó1¿ìUd|‘›m?¸!Fø÷Öµ§ú…™h´”ÍÀw¹‘ceÒÅ-‹.[ÕÄzöú«¿JXìW¿”…¥¬¬X,E¿¨¥H÷žC‡éuÕ?1WôÛ*Îüð´3ç7NOFäØòX(½I…4Íáp@£Ÿ³-'6èÞÐärÅÇ”FUBZ[¥d£šjZOr ÑBüú•š'6~ˆ´¸±ÃJà³AŽ ОMwϤî†!ZˆëÛ÷ˆïjãüÞŒ{Ó&IôÞþÈ q•qmÎÛN Mãú:„¢êRFR¦mZg MkXŽd¤³@vjé\ß×ÒH2VªœÏæÍy˜:ìÛéF¡'Òë²¶SjA·?.¾‹ª1ðsQa­Õ å<†* 8 Uu¨Wâô&.·œçàÖ ç¢[ cÒ=b’Ô®(þL›ˆ~ã1Fu R!;Õ<4ðY-*ÅçEе‚ç¨àMS’­ ƒU‡BgGøèÈâõ%ïYe&=9Y×vŒ¹º¼‚®ÝÈA‚ädÑ;^ÕØTGžbkÙÄ{öôHÚdææß·núcí˜.²²üÑ›¥fl,æHÏzŠùJÖœ‡j+°9Üþ“F›=yü@h2nÝò©*PŠFÇôÌHϨDxÿÀB÷³/›4IYßX“M±µ‡;~Võü™(‘¥<2™î±|Ò`cM6¿$/¿”h¸FÍÐШ8'§ºÉ°ZŠôqòÇD+k+k+§í‰¼À•ÖS½bLOFJ^& 5FŸCQÊfcíÍ^&¿…A3׬üf GÑÀ~ÆXí{ñOÅZÊ+U Ji(Iµ®ˆWPžšæ@PúØÂ«Õ ^)h…€Ó4ù¨LÜþy>*LÇ†Ž /l}lhE)"Zƒ€ÍsРQ¹Äí÷Õ…ˆÝ44€£J’IRzooضÎσn¼yë’“•ÙuÈÈ^\-Ó±?7¼v9–äLÛ´ÎfÁXŽZ©³1iÉÉÚŸ}nÌà˜NÝøû7ýÅ®Áa®TY½ç¹ßñýƨ¹?O¨Ÿ¢“¹RCcƒب –6æêCåŒòbÃQ˜Ã.±>…òĽVäØ -my‹ÅzÛküD`L:FÒPä2ªvÿRø9ÞE×½¨ÇE£d”–ýÁŒ–âsˆ’=m9šŠYMI¶2ÿ@ Ș¢¬–ÕC¥A;¶÷߸õ‚‹º0ûß‹k·Ä‹FÅT†ütè†W^ZÂ)÷m÷ë†ÊŠ_=Ë.Õ®x–ѹVl@udHìrG».—ƒë˳ÙpÃç«ÚöÎθ/¡Üÿç‘›ÂÿúuØZ®ksªrŸÜܺíBÜ:°Ë~Óï—æª¯ðuÜ¡m§%¬áBoמÔ}³t90­¶Á½žîq^p"+åêßw—¬8v]_±:ýÞ™UÛÅ¥<*Lz&çºâ÷¥Ý´äJ^„íÞ~©Áò!#G{Õë{È(¨dŽ;SÒÅ0xç1¦'³÷#¿\òXyðÚF%añ«ïóY}Öówó [üg(ñ²¬öd<¼µ–ªB¨áA5ÿ5‚þP…². µÙ´½3 j(¡Ê€²®ÙdÚÁ„oPš/*¿| íê2¶ T¼¹N¥¦½Õ9ü  ‹PÆ1T(qõ0=@[þ‚Y<ôì7”QÈhR3¼·3Švã‡?¾â]ÔÀ)?`ωÛþ¼8;å¦3á“æ€¤L+…N‹ÁϬ½käbôbx±oâ¼céÍ)G :aÔÉ(Y´cgÿ ¿-Ñ`ñ2c|·½[ 2Uª¨ë¬µ_gþ9'WøpûåI»þcºùNE[Ø)5Õ(ù"X¸Ò&]@Xש´€ÜóHe¶ÙŠé<ôêˆø73.ÿêë[»¸KX™qÏwݪ£ÿ¶Î¤Î‚˜¤ÓšE²©•Àc†`A4 =%¦gÕ™;\ârHM6ª¬À‚´·cÒæ¥æ€Þßò£Óн×vÕ~×0QJyÿ4vl¥wFÚÂ$KǼ Þ+rŸ5vì>ÆMJïm‘JŸ²wF>¼I_Nr¼$¥¯ñ‘Þ!?Ðýâ…_çoŽ,ioSÄѼ”§ºNò9:!ê;×Siï¸3æ†5m=·«ªì:áaZ„vBÅyûE‡_º…´þnN§³-è,v6F~ô–¯bÇ/½\ˆÝÃõ¯}ê>ã½ï··]\®fcGZCÚmŽT·i!((h÷‘ ±¼÷’ê³°áÓ¢æþžeÇ”Wý{A¿ÎxÅ{h ÿéÄ¡)¯·®;Ö´0 ÔF9ˆº)ÓÆngÑÙt;¨yt+X}á…›AÁAWÏïw4 ©½"|üõKBGæ÷èyímC›PýÒß}z´ew¸åµiFÊó^_ß8{ïs 2¦ÄÉ8ÿOTg[ÐYìd"'Ôsn¨g{[AøÔ ýÐNTç>¿·Q•ö¤sÝ;D BkÛ`ÜÀãÆ€Vzo_“¤—”Þ{[¤Ò§ì‘f’ô[2@ tj¤ßêÐZïfC7Ùÿ@ @ ¤…ô@ ‚´þð¡QþjWlBTlBÔÝÄèÚ/!¿ • oâz<ÈͲ)­ý~ºR«óß™ÈÎÖÎe0få¡Àk±a!'}®½ÛZÕjÎö“—nEß¼z~×âa\$^’–ÁˆŸÿ8}-êVèÕÛ&›¾½¢Êpú¡È`¯qªu¿­ ‹ŽMˆŠ‰»øç GݶŠe+Ñá›×à³m4€Ò€Ù;Ï^ ¾°ûÇ:â%›‘tm…²¶üáþ”x?{Ú¤‡mvÓ£æÊâÄþ•.`º¼Q1:¾—ž&ØÞ‡îgòxàoôPÇb°lÀ}=é/v×}¼0óu°{`K7Úq'm¿›ö‘Mðdÿ4 +ØÊ\UÎÛŸÂÊâbÓ‘<åþ+†úƒ¬ïvx¼{üç»ÁÒ=Ä]&ê:=&ÿgTö¾9K®± §ývaþèSñKú/Ú>‹Þ¿lâÕLv¯é^;~²ŸêVÁ(ɨSgÊæ5f·WÌ^ñ÷œ½ó/÷ÉÑ‹Îä@vøþÍy¼ø†w¿øã«yÇÒå4l—ûz~{+ÔûÞˆtsÉXît‹]û]qˆ»ïÔ¤gÐuúöy§sÙ ÿ¹wqˆÍw˜%¥Oº6£½8 Â6ÐO †ìMhO ¾Âr÷J€ö§ëÚ¤/”¦4íXËûé‰ÛÄLAƒ• >:4/½¨”ܦÅz.ÀDE&2À–.XgÊ«nmФÿ@ È íÉ»ý–YÔÍéU„­qZRÞ ÿ”¡£ÛÆ%cúi ²Ïymù;®Lžóû®À¸Ù¢Ë_ûù’­«¿ê¯…sî_ܱî@¬Ä·‹Ú¨µÇ<†Wž_ûÍÞÄô„Ñòâb¾zYe ¦©ò ~yIq €†Y/îƒÓ)e4À£ [Ù³÷†°{L’ŒÈfõ¯ÿO ùÎý¹)ÊAƒ«g_ì›öôý›jEÑñÏÔœõ8­®šeÍ+Ê­=Ýõ\4½ÿí¿=Ò½Šøëþå4žx‰ÑéïµàN£¤ÔI€´qŸ™X·Pås™JŠ €¸¸Ï¬g ¸¥û¡—/úáQCá)÷PEcÀÌ£’_㾞¸ú¤4k«Áêa `À}=±‘ À‹-¨´®Xuýî×·.Ôto%zÓ6‰×¡ŒÝÖÿ0ºŸ6«øùͽ[½®¦ÑŒuȈ/3wUÛ§°Ù¿ûÒÿXF¯]ð×Ã~î!+Þxœì¾ü¿Ãµ‹£~_åq)fÎÞŠ_í]g[*ïÊ2Û-ÑíåOV/lª‡žF` IbêC]·®šh¦©¤¦P‘™Ïzyhºû¥žõx„Niì¾5küR„Ì™Aâ½ëž²Çèy*ëKë6áŒé™Õ½A €ÝW~d÷´Ö£ŒUTQZ,ð1Àk”[Dk¢¼—­ÕJÖ/²"ë¼oHYÝô³ÇC›ÓyP·rMï„SœçïÎwörµBɇ¦ZÙLûãEÞÉÅÖV6ÖVóŽ¥PV®†=ò˜ñÅè¾e_®g.Y¯f¾]ÕÔÍú¼—çœZ±¹üû aaÁa'£–l»Å(ÉÉ©î;l˜:ÀÖ³±î¡®¡!F’u õêò2~í²øÓG"3à÷hk«Å~Ìgi°4†êùê鋨yhˆüй³9Ž×^••qëO¿Ä ÄVï?¸wùÓg…â$¥N:ý¯±ê+½–Š<‚”§a=Eý)X5™ŠZCÅ€Á|¬ ðΠCÜ…Å‚N?‘kHý ß‹”&c.(iu}J/{' Ì?©ë˨ë˨ûñP•Å2J¡Î€Êx·µæ·Ívóµ[tÏµËÆ(sÀꯛå¹'ºÏ’Ùlßx”]7è>ÁYÎw¾³Ó¢Ðî+ç£@LöæùÿÇÆÚÊÆÚjŒÛ•79Á7þýàQýtA`2 â&Zø“šV´oæX‡/fNÉô]è~©öÝÓcâä.'¾svZj´Âe8@lfèÄ”ÞGùà™Ó³ ½`-uàš¢‚Nxw•´ãvÚÞƒ¶b/c­„*>æö@i`®È+Ë hÒ dFå­ã~) :îØÿ’èæù6îÕ;/ê꣢j^vDh‚‚Yo-1‚tâ®É?ü}¿ˆW‘sïµ–¶89©g6¬ôظd[pEóìéDh|±Ú­ç­uóç,øî×´ñ›ôgÐ1‡¶=´ò :½Ú¸8#É‚ÚSô”'ˆŠ»}n©„E£¦?œˆº¼gÀï‹­Öi[ºŒürTz@@ƒU@*“wÇÝ‹òÐúg‰O¢@œ¤ÔI bùwQu ðÓPÒq(G*]!?jøPõ ÙXE§@a TCÁSVU7#žy •Wƒ0J0îÒÔN yKlÞ=º€:÷8jó023Ë‹L̯ª)~|Ök]@ âêáýØ8¯²29æNAe%Í®ÝËó*ààå” ºêù½Ç´‘qµhŒr[cµygÌÇ[t8ä‡`c>zÞôjÈÒÌÌr„„(u £:÷Tÿ}ž•Ò¼¤øGÕ]¹b3Ã'sz"(Hî0ÌåAø9Õ JÞIEyQÑÛ©„sHimÈ#H£—g‘† íø+m; jÞÈâXÒ d~yÊ7ª ïÒ±+Í>-šÍf ¢F€-'¶}ÖÅ|ƆãçÏ_<ó÷Â&&JSÂ/ÇeT5× Nƒ’­óÈ——Žß{•™õ"üä ÞDg+ Ó.o˜6bÔ˜±§üô¿¤ ÀXœ$j·Ý•¸}>tÄÒsE´/Þ‚ä?§Œø|ˆÝÄ#ö,è)óÊ–õp›×·"²8•]üÉzÐ'÷c~Û2†+FRú¤LÉ®ë=—=Fe•ï;b!PbÇÊÞSÖ”¤ 6ŸŽsþ‡ ;ø´Œa³Ù¨ÃTñ""ây)4§ŒE;K1åä$¯eÖt\³¶_Ȇ=q¤÷ðÁ`cÓñ8ó"?ÏW•ø²¯Ç©Kþ'¶z²ýX|{ÃGŒÐ'ÞÜŸžeIHiFI¨“uøEÀ+^!”'¡œ PÑ+YyE¹Saë©ÛQi5€,vã“ý‚,)¾zÌ‘zÖ± M1KÔTb±Xõ iLQ † t¿üïÜÊ?'M /£¹3ÿèß”b»½ªîGÄg~¤]9¶< E¢¦9hôs¶åÄÝ{š\nqq±8I&JJJ8Ê*l>ptuÕržç5e®É½ûÂË¡^vØÆlßÁƒKãN×­óU1í ô ð~>æ—½ŠŒ/r³í×#˜$¥O:@´£º +§P á;ŽˆZº½8ˆÕ„¤þL¬|=üä6U7¬.¨.šTYA9_l"999¾@ L IDATR…Åïáf¼v}œMY‚¬Ð®(þL›ˆ~ã1Få…zpz—ÛFÎsp#;I0¦ç)H…ìtTóÐÀv³®%hb‹évÕžu€¡Á¬‚"èZaÁsTP·!LÍSÏPQ)€¼ ÔÈ"¯|âRAÖY¼þbV |¦''ëÚŽ1W—Wе9Hœœ/ú#?;Gu •žº¶‰!—ÀbÉ)*)RÀÑê?q¨OËÐHE^BI6™¹ù÷­›þX;¦KKâÓ(y™\4pÔ}E)›µ7{™üÍ\³ò›EûcµïÅ?'ÉDubìËÉó,´5-gOô 4¢LŒh=”¢Áˆa} ³³:lç@Ï¢¿VÒ“úë×…&ãÖ-Ÿj¡B¥h4|HÏŒô 1’Ò'@yhÁ6Èéàëh}%‘£Ö `³AÁ4hT.ñ€Ÿ.ú@!à˜ƒF */©0÷ÑEÐGz0€Ò““uíœjqØJ&“¼.zŽS uªÆ¦:ò[Ënä Þ³§â7žëL\³¢{ðÆ=‰éðCG% E.mï ?»è:cçäØ -my‹Åzg¤‰Ð éI£d”–-ÙÇ£ä̰Ao`±€c‚õô¡$Sô’=m9šŠëçn5Fà>ŽXž Šý±¾*Ê£³9ùAÆeµ¬* Ú±½ÿÆ­\Ô…Ùÿ^\»%¾n†‘wãà½ý§Ë—%ìž÷óŬ+ùÙ¯ Yñ&ñô–•¿NÜî»æ¹ü;+øï™:p1zqÝIMPüêYv©vųŒN79+5ürÉcåÁk•„ůb|¼Ïg@öYÏßÍ7lñŸ¡ÄËz°Ú3¬Bœ$#¹çÖ{é¯]÷Ï]VÁ“+›¶@ƒó—¢—ÂÓ=Î Nd€ÙҀ襘_Qžxqó®Äé!×ÏÜ,5ùEý`så­»ì7ý~i®*ð _ÇÚv:EŒd3’². µ™ØÖ £*(¸Be–Ö9Φ‡tÊ8† %N s'Ñß‚0¥AÅ ÁùKàA›<ßH½*î ÌÖ!»0À§vþRiÐŽíý<~9¦Í.}çO¯€7 ¡aBeÈO‡nxuá¥%œrßvƒ˜ì­h;ösÕnp8f9©C’qùïT_¿XWVfÜó]·êè'³Ï]k=Ȧö+3 ¢Qè)ÄèÈì¿óv¸jPò90ŸI;¨°rÏPuGÖd£Ê ,HƒúM˜igÚll7 PæQ”+‹Á¤ ðöP–Vì½¶«ö»Å7‡¤T‘z}GcÇîcÜZã‘Vê”Þ{[Щô){g䃙ô蟅µ_¾œäx)HJ_„OÆÒ°¦­çvU•ÂÇ{DV3À}=qÕn*UÒØ9¡•ÈöòB{"?zKÈW±ã—^.Äîáú×>uŸñÞ÷ÛÛ® Ót_QrÇíм÷’"ó@ ’šG·‚ç/»pó{¾ºôÉÑõIímáã‡ôÐq@Ië:îÜÇÂïÑóÚÛ‚ŒÈ õœêÙÞV>5Èþi@  -bçFæK;ÿUÄg8 •Þ[iRÍÆŽC¥öÞ´Ò¤Vzi5ÁµS{gäCeÚGÒD ð±Aæ@ ‚´þ@ @Ò „NRµXr<4bóçõ. }¾ö:yéVLØÍ+‡·Lí%/^©[-Úó¿k·o\>¹eFß.t* ˜½óìåð˜Ðà »¡#A’ Üדî®Íð‡ÒXÚþët â§ŽÖ”¿CÖ‘K÷ãß1ÉN?ì5NU†:M\¹Y¶Ðf»ÈuÇWÓŽ»h‡µ¸W¿ö¶¦ÓƒûzÒ_ì®ûxaM0Áö>t?sÇ£‡:¶¯‘ÍD ÷\DÛ{Ó#ܰ1co¤Ôó—¡S`8qÓºolåŸ>ÈmàÈä¶”{ó‡IóSY=gí8òóİνa”T°wßb÷rÃ7kŸ)Ú-ßïíòï¤}I4£d×ék\Øç]œÎe+ XüçÞÅ #6ßa–$tP Æ3¸±?^ Q(;|ÿæ<^¼Ä›À›«“ ;Œ¦a*Š Vw<ø{\¸½¡›öEÀK/*å½ ·†'™‚ *ÛÇ®¢3kg£˜ãˆeŽ/ÀÅ[P©˜ñé%¥‡Ì?B§ øEdàžEÿݛذÁ§ÏUN¸𬴦¦()2>ÛШ«8ÉAŽŽ©|ò+ÊÓ‚O^£ÌÄI¢W½œÆò‹£ÒFÆZâ$Å£†û­¡GýJ[Ú}ü¹ý¹3pðzŒh‚qqßeôÈ´ÃZÜÓ¬Ö'îëI÷èƒû¯¡¥ ëÄ÷öFã&pƒƒî×·6‘ÎH¿àÈðÓ^_u£,ÝC¢ãâýz» U®÷eérÜÅÆi‹ßÕðð3ÞÓz°š¥Ótá¹Äh¿%f:³Ä%FÇ%Š&((CÇU‡ÎÝŒ ¾°ËÕZý½€ÂÂNyN2& F*¡Ô8ÒPóŠ1î¢"VR}¨ë¾ Áa¡11ç¯xORf~š#<"v¸LÚz,àÀ”ÁN+þó}ÿO~9ª{ƒ€Z\ÙÉ®Sĺ–‚ª« òÊÆXÇ õ’Í€[@è”'…\¹Zþ®ã£?f¸ùç µž=µKŠ‹ÅHªéèàü¼jËïv­ÿÒ$/7W[GGœÎŒ[ú%V ¶zÿÁ½ËŸ>+')–®# ç0uç¤ò5æRÙ(jÕaèú2êú2ÑõÒúS°j2µ†Š ƒùX£®¯`` ©¿Qá{‘ÒdÌ%¯©æbæ4^>øê£úFã/gu½±rÎÌ_â{¯üÖ†¼GÛX[-ö+xÏg‰“»œøÎÙiq¨Ñ —áìæèL>4ÕÊfÚ/òN.¶¶²±¶ª½ÜZyÜÊ5½6Nupž¿;ßÙËÕJôˆ»Op–óïì´(´ûÊùÃÈ#f"÷ *ª@Àîª~A·?.¾‹ª1ðsQa­Õ å0Þ]ª7q¹mä<7iïâý4ÑÄÓ!íª­)1ÀÛU©ŽjØ^ƵˆJ¨¢€£PÀQ‡ªâº¿A× ž£‚7MI¶‚O¾CJ U5µšüP8æ QƒJ¥=è“£û¬Þë|VQ|ëÆ¶uvxtãÍ;‚ÊúÆšlŠ­=Üñ³ªçÏÞ@3i†ÎüìÕvVzêÚ&†\¤''ëÚŽ1W—Wе9Hœœ_+¨jlª#O±µìFâ={Úl“>hl0uÀÒÆ\}¨—Jrlކ–¶<‹Åb½Ûy#4 ä̰Ao`±€c‚õô¡¤¾?L£d”–ÝžÖµŒòbÃQ˜Ã.±>…ò²Dÿ(ÙÓ–3ñ ©˜Õ”dk óÐ9°ÙpÃç«ÚãrvÆ} åþ?<Hq¼Oâøz™n6kC˜$7Å„nߨ{óª“ÁZ‚´ècnG’h1:7Ý:°Ë~Óï—æª¯ðuÜ¡m§SÄIÆ0™‰²®ÙdÚÁ„oPš/*ª[ LDÏЖ¿`=û eBÖ¤6›þÐE(ã*¬“äN¢¾a>J;‚Š;Õš‚IQÊ“ôbnÅ“ôêz'E»ñÃ_ñ.j •rõï»KV»®¯X~ï̪m‰,ÝCL«]ÿ½žîq^pB\“BZ¼wÜìí?]¾,a÷¼Ÿ/f—íØÞãÖ .êÂì/®Ý/’TòÓ¡^]xi §Ü·Ý'¸1Õ(ù"X¸Ò&]@Xש´1’—ÿNõõ‹uaeÆ=ßu«Žþûá,íÔ äs`>“vPaäž¡2ŠÔ SŸï–{©ÌÁ6[1‡^y{$kM6ª¬À‚4 ›’l HAA¡þÇN+ö^ÛUÿ]Jîžiìøõ­ñΈô:c“ï4vjj+¥÷¶ •&uÀujZ™ië‹É—“œ/ÉÌ,ÂGciXÓÖs»ªÊ®Amü ƒûzâªÝ¢šÍBÅyûE‡_º…ð:´NK÷¹ jh"´ùÑ[B¾Š¿ôr9 v׿ö©ûŒ÷¾ßÞv}Th˜~ >nQrÇíм÷’"ó@ |¨ruf½ ;m£“ KjÝ ž¿ìÂÍïù èÒ'G×'µ·Q„Ò BÇ%­ë¸#p›ÿ%ãü;ÎÞ£çÉXå§LN¨çÜPÏö¶‚ð©AöO@ i;ÿÀ¸àž‘ÌB†³9Z齕&ÝMŽ–R’q ôIï]z“i¥wFZ¹ûBzÒ{gDú¸1µ‘R²•™–@ Â'U$éÚE™Rø¡j-dþ@ @ H é?„¶)ê멵·m…,¦Ç!C°¹m¢)c¥ŸoËfks²ÔulÍ`К0ß¹íú»tÓåô¨¹õç„⾞ô»ë>^˜&˜SIÑ YOúvô¤Ãlq’&ØÞ‡îgòxàoôPÇv‹IKPÂ=ÑöÞô7l,¹àK/)5äü%AÆZô-{”TÒ„TÊÁ)s¿jè¢`ï¾Åîå†oÖ>S´[¾ßÛåßIû’hýi›—iþwò’ 9s×}û~qmÅe±7Ï¿øã«yÇÒå4l—ûz~{+Ôûž,¢S‹Áøq7öÇ šï“2sÝ·ÖØoñ ¿t!@×ék\Øç]œÎe+ XüçÞÅ #6ß¡}ö_´}½ÙÄ«™ì^Ó½vüd?Õ#¬˜’N2jÃ×n²‹Ýôí‘CvøþÍy¼x™]k\ì1#kÑÁß6æÏ^yµ o-0œ¸iÝ7¶òOä6pdÌ6Ò;r'¹-åÞüaÒüTVÏY;Žü<1ì‡s¢kn5&,ŸÕ%«>,qƒÐδ¼lv€€>˜ñœ®sh“¾Pšò¾ûK/*%—É¡SÉpæ]¦âia«µX7eT2Kn O2 T~0£eάbŽ#–9¼o{1œô’ÒC晢`ëê³~¦Y g9:¦^ðMȯ(O >yvp0ð™ù¿—/¤”ÕÔÝÿc®„ÎC=‚¢èøgjºzåq{âÎ ñ÷øábà +¦ Ï%Fû-1Ó™} .1:.Q4`IدüËïÆíWÏþ:×Rå]Fã&pƒƒî×¶ó»ôŸµóì•ÈØÐ “ž Gt•¼rGÑaî´â#›üÒù"ô*⯣—ÓxB~QbôCÚÈXKŒO ³^Ü7SÊjª ÝÊ<¸w“qo ÒŸ¼aµ±ÿªÝ‰<€Ú鋸xÿƒÞ.Cß-@:#=ü‚#ÃO{}ÕIw±qÚâw5,ì”ç$cJbÜ+ò 4únF¯¶ÛШ«H¯ÂEß÷ÞëWw)q3îëI÷èƒû¯¡¥Ú‰.xE\Üw=r'í°÷4‰"MÜg)í°“ù ÖVx×Ñ›¶_MºË,ù>RÞ)›ð6'ŸñžÚ£vÆ2t\uèÜÍèÐà »\­ÕFxDìp™´õXÀ)ƒV üçûþrМJ@}¨ë¾ Áa¡11ç¯xORnXdÂÃÏxOëÁ8ãߧ˘ßbÎÔ®ýaöŸ€€Ÿˆ)†”‘㪿ýnÜ ½rpÝ8Qeˆ»(šgoܹâ¿ÊN4'9îïÕœ PJÊ£ç{©úR"£ÇññPSBÐhÐUˆ/¡ƒšÕ½A @­®ìdb]KHAÕUPyec¬#v&MzÉf@ú‚,ÑÿzÞX “é.öŠMš¸œ¸q+"øÊ¥ƒ›¦÷V5œŸWmùÝ®õ_šäåæjë訫« äzÍûõìÍ›·®öpî&EeÏÒ:¨ç«§/ªÊïDÜë3ÌF@oè0µÛá0$šje3íy'[[ÙX[ÕÞ«<ÎÝ£ÿƒ “GŒ›w7ËkyC•fNã僯>ª¯Ðâ>Ÿ>ýÄQÓ–íÿW¨…ÄU;l»qöOƒo68Q"ãÖŸ~‰ˆ­Þpïò§ÏÄ6Q’“SÝwØ0u €­gcÝC]CCLÒI¾×·Ûñ}Üÿ—*z<ðmcmµØ¯à=Aã/gu½±rÎÌ_â{¯üÖ¦¶ÙÝ'8ËùÎwvZÚ}åüa”ä¸ÓI×nRÎãÌ¡í(O ¹r;µü7Æl#½#<úc†›>RëÙS»¤¸¶ƒJ™Ì]>òÑžÃ÷kêû8˜éj¯öPáûQ—ÉX› ?«&SQk¨˜0˜5€þT¬–BE­¢"ÿFåB‘_ý©X-•º½ŠŠ¹ݾÅí¾™ðNÙã‰s»‡­úf–G‚éÊïF°@yÜÊ5½6Nupž¿;ßÙËÕ °úëfyî‰î³d6Ûwce×­9•€Á䟦í›9Öá‹Y‡S2}º_ªÍ–=&Nîrâ;g§Å¡F+\†³Å$ÎøFTÞ‰ˆï=´¶32L9*òˆ)†*ãÝÖš?Ü6ÛqÌ×nÑ=×.£,.îÊãÜ×™ßß<Í~ÌäŸýRD5ƒÄ¸¿C³*@i)½ò™æz¬¤·Óö´Åp`‰õ-£ÇÑiiœJi‡‘À‰vô¢ÝàÍ(·F¬$”¡7¬¥\STð¼}ìo!JÀÁ¨Z€{,Ä]u ªÔ[-ÙHÿ@r–ó¾±d¨Ž™7ÅP‚Ü“s§N>oöL—eÛM~^õuWG °uz¶4Qå øò¤0¨ß×ÕyÂìMÿš¯[9AÒ!r¦?œˆº¼gÀï‹/J"ßXÙX³Ôl‡DD&Šè3îÕûÍíà'å´ ?äzœF_ó­C‹ c«ƒ®½ý¢(Š­¢¥¥‚J^FÙ²#XâisÚ††©)ïOš¨LÞw/"ÈCëŸ%>‰âF†è˜CÛZy†‡^m\œ ‰I:±˜}¿ó{NÀÁà¼&gj3¯ì;óúMfdø=ld$JäW/§TÐUÏï=Í“HŒ{jjªNWCvSAÉÆl#½#€¼¾õÄ6ùœ÷ÿ¯ºŸÏÅך–ά9îÜàÁ1?±d\Fe• L‡b>VTPé ù PǪGPÈÆ*µŽ†Ÿ|!rW7E¥ÒÞ܆êûP ŒU?ľ’ÎÊ»e2ƒö‰LÉˈ¸u¯oÀã^½ó¢®>*ªæeG„&(˜õÖÞãñ*+“cîTVòØlùæT¥™™å!Qêõë©Sý÷]xVJó’âUtåŠ Hœñ)8Èf0@Ýv¨ÁíÛ÷iS ÌÌò"ó«jŠŸõZB‰‹{·Þ}ò£®>*æóËRS²D-K¦¸›¹œ¼Ñàã3E£™`k@É;©(/*z;•p)M¢ ÅVþ²yæTÒŠ•¢ØÔÝs ?«³ÄJ‚‚$àÃ\ÔH ©ÃÁ–0 TL±’РĽ}¤—lçÔÐ.hLøv¢P}çÌrvë]1Õ¿4'[´%ëìµ§³zõø·¦†ÅbUÜp·¿ 2UŽ_]€Óq—N?+BIôÙk©',zƒ¿Øk*’ÿœ2ïX:’×µ÷8ºgÁÒ9‡_B^Äít×!–ÔMÛÞÑ—ã„â¼›Í6˜¶ûÌX°yÙêwjS–ãJ¯¸¼ªûí·u¯ñÏn¾.º‚´Ä#>>×^ñ™4€¦&·nH»e²ög«tsZÿÛäºúúû³µÐi—7L»â©(/äU)M=8Ï ‹IºLq¡¿8ðßkŸop›yeÉé×b{N ˆ’F(ÊɉêEŒEýLãZG‰qç—–ð455>äzåj¦l#½#([ux›]Æ¥ÿ]X·7*é €óÙâLW­ÉhÐba|R€k{˜’\÷°(`ŠõÖ±Þ%F®´ Àª’Ü%ëD¼_6áÝœŒl6»ÞQ °åĦ§ô••ø²¯Ç©K?V”ç&nß_çÞ°ÈÔ†Þ,ã( Lù~è­5¬wÌÕx!€˜bÈf³Ñ`DÅ‹ˆˆº5Ž»œœ\½£Ä¸¿:·|Æõ†©UUTPÔœ °Uð‹@¤¹åd`=1U¥ G§…!•ʱÁ”yUÐ(÷ Z¿'*~Î$YP–„”ãš`ªF®Õ{>$| Y€ªÐƒÕŒX@‹ËˆÒK6Ò dE·ÉÓ y<(ž2jïÝ«ŒÛ¨õÇm\Ë=ý㉧µU<€’ü<––¶Rm¦­­“—— P\R‚ÞÖiB¡ø@¸&÷Nì /‡>xY ·# Öo ×21ü—·uMcŠj8€,ÒN-ëûú}urCœFe\›Ó ^™tqË¢‹ÀV5±ž½~Çê¯û‰Ý4\ZR¬¢Òp-±ŠÙh¥÷ó1¿ìUd|‘›m?¸^û®Wî9rLßÊ»×c3j»]ýœm9±A÷Þ€&—[\\,&éÄ#H=µnßà£ÛÞŸwð©TcKrrr|Áûuë[GIqg)++7î,µ-ŒÙFzG»Ór÷8®¸ÔpKEÏ¡Ãôºê‹˜+úmg~xÚÔóJG3@´×OY h! L¿u¬{–ˆâרԼ%ȧDã²É„@ `±Dk5X,V}#›QRºJ@oârÛÈyn­Ù?Ïlüû•@nddþôa浬Fn¨®uc*† £IuÑÔ Ê ÊùŒq …o%ëjAƸ—æ¤3œ²Ðœ °hb‹évÕZ€ÄVv²xÆT’  ®ï‹-1=S!;Õ<4ð[ß:*¡ŠŽ@GªêëdEе‚ç¨àMS’­à#ííÀë#sGØÖ}V1w ˜¯d=Áy¨¶›Ãí?i´Ù“ÇÏpBx¸Ùäor•”FÏr’ {Pó á‰Õ¤Y½Ôõl¦;=H|Ú¤”¢Áˆa} ³³jßµ¯"Â…Ã\§ zy§ê­P~vŽê@;+=umC. Ò’“µ?ûܘÀ1ºñ÷oú‹¦µÙ¶Îσn¼©÷‰L¦{,Ÿ4ØX“Í/ÉË/¥$ìçfg©+½ušŒ[·|ª… ”¢Ñð!r/ú¶ IDAT=3Òë®ï>k£·Ç:ŸUcê¶4( š¹få758Šö3Æjß‹*&é$³/nÙñz¶僻HSÖ7ÖdSlí᎟U=&Š­ª±©Ž<ÅÖ²9ˆ÷ì雦ânhhTœ“S-ÙYØm¤wTUS«ÉÏ{¯ôä‰V6ÖV6ÖV6NÛy+­§zÅø8šCyh 6ÌAƒF奕ùÀµŽ*èNx»º< 4Í ô±…+V#Ã\Ì4*›Ì¤''ëÚŽ1W—Wе9Hœ,¶±+u% Çæhhi˳X,ֻí5¾Q%YáÕC]§|öüöÚ2s1LONÖµs¨Åa+™Lòºè9NM\ܳÒÓõ‡ŽìÍåvwüÏ·Ÿ+KŽ{#šW¶‚r3ýŎ ÖÓ‡qE<ŽN c*U òr¬k9¬ceÙÓ“FÉ>(-»=ãÑ0ʈ Gaº ÄúÊ«;íBÉž¶œ‰MŬ¦$[©˜ „/ü¯_‡­õøçº6§*÷ÉÍ­Û.ä/tûÆÞ›W Ö¤Es;’D@öÙ >ÝÖo;ÿMaîÃ+ë¼®K:Öli@ôR̯(HO¼¸yW¢ÈõiÄmÍS_lÚÌkhƒ¿;nööŸ._–°{Þϳ˂vìì¿á÷ %,^fŒï¶µÃŠvã‡?¾â]ÔÀkaÒ39׿/í¦%Wò"l÷öKÌSêµTG†Ä.w´ër9Xt.^å­»ì7ý~i®*ð _ÇÚvºîÈ‘¢”'éÅÜŠ'éu-ð쳞¿›oØâ?C‰—õ `µgX0&dŠB¶lzzýÇo=BÝCL«]”½žîq^p"+åêßw—¬8v]_±:ýÞ™UÛEW*C~:të /-á”û¶ûIŠ»‘£½êõ½š4§Øl¸áóUm{ggÜ—PîÿóÈM1LÙ†1/19"@Šã}Ç×qÃÍfmcàŒ£d]@j³éá_]„2Ž¡B ué|KÛ9Àk_”ÿ9n(iï ¨ B¨òOþpOfÊ&#¥A;¶÷߸õ‚‹º0ûß‹k·Ä‹]£!u%qùïT_¿XWVfÜó]·êè¿20¾Q%©¶è›ïuý\ÆbX´c{?_N‡i³Ë_ßùÓ+ุí?1rÛþs^žXu"rÚIqg Y ´hÍ¢ÙÔ~Åc†`A4 =…’ÏùLÚA „E{†Ê÷¨[ÿ8:/5Ì©”òê÷5í0pP…À$©&~V§3{©ÌÁ6[1‡^y{$kM6ª¬À‚´·}[q’­)((ÔÿøÑiÅÞk»j¿1µ‘RÅÝäèÆŽ­ôÎH[˜4ÔÔ¶±cl²Øæ-öÞ©$½wFg¤-DzÚ7‡Höþå$çÀKARújäØl,¯çàþÛèÈùkBš?½­â¼ý¢Ã/ÝBxMËŠA~ ûÅ ¿ÎßÙÔ• K÷¹ j§jªë$Ÿ£¢¾s=•öŽ;ciXÓÖs»ªÊ®AmL HFe³¥ÉÞòUìø¥—˱{¸þµOÝg¼÷ýÖè$´˜Ö?B“p¹èú¾‚‚6ÛßjÞ{I‘ùáãEé‹í7×|VôÄßë—tÔF9ˆ:³¾Uïøšû{–ÛòÛÑ¿MYìû¸éíá?í_;(qëÊÓiM ²@e³¥Õ<º<Ù…›ßó0Ð¥OŽ®Oj¥NB‹iõã Zé?/W—»Ú ÿ%þKÆù·ÚŠê—þîÓ£-»C§ê<<ð=OJQÞëëgï}^Ô©âGèÜȦl¶0 œPϹ¡ž²ÕIh1­}BK ýÐöTç>hævÛNDUÚ“Îuï@ ­AlÿÁPWWJw“eï‘¶0i˜eÿÆŽ™e/¥ Hzïm‘JÒ{g„ÑxFB3,ñïkÜGJÒ§'#í›C¤÷N áãƒÖÅ6yi(è4ºÉù­@ AZHÿ@ ´=HQ_O­½h+ä¹z\q§ÅðÑAú‡Fù«]± Q± Qw£k¿„ü2´½jC(ÏW?½¶)«Î©Z,9±ùs‰þ,ÝCDé›¶ÊT­æl?yéVôÍ«çw-Æ;×ÛÿÇ Äõv,…Ñ;b£}çé‹þ2œ~(2Økœjƒ€ŽkÔòª þÏÑ »ç Pn¹Š€î ßÄ踟m£ú|íuòÒ­˜°›Wo™ÚK€2³òPൈ؈°“>‹×^ .ßí‹Õ‡Î…D‡‡Û6³/GbhJciû¯eqÆxC´ðí´åàún“:ZSþY;D¶›ßê_:Þ/GÒël&®ÇƒÜ,8´¶À* ˜½óìåð˜Ðà »¡#•Ÿ¶Hdé@zØf7=jîǘuÛ ÜדþbwÝÇ ×ž½Jéà¾Ëè‘;iÇ-ô€@€ ¶÷¡û™€<ø=Ô±Ín>J¸ç"ÚÞ›á†%–vléF;î¤í×bS†µç-ìŸ&dŒ¡Eß²GI.;(÷_1Ôš{Ã@g…2sÝ·ÖØoñ ¿t!€áÄMë¾±•ú W Ï)§Ì9üª¡KÿEÛgÑû—M¼šÉî5ÝkÇOöS=Ä^dF+ZÛXÀí¬Ï† ’£ßž­š¾s/¾TŒ·fSì1#kÑÁß6æÏ^yUìå¾íM~Àr§[ìÚïŠCÜ}§&=î$·¥Ü›?LšŸÊê9kÇ‘Ÿ'†ýpîMÉÿ•½oÎ’ëE,Ãi¿]˜?úTüÅýi›—iþwò’ 9s×}û~qmÅåâ…Bôâ4_|Ø@;<ãÇÜØ/Ó[ö¤ÒÙÌrÔv¶ˆ®Ó׸°Ï»8ËV°øÏ½‹Fl¾ÓÔÒíh¼ÁWX®ã^ ÐqyéE¥¼û’1šƒîR·ÿd„?ûë% ,ÀÀíƒá B¦ Á‚Êö1¶…èLÁÚÙ(æ8b™ãÁ pñ±Ãõ\€!ˆŠLd€-]°Î6”WÍ,)=dþ@) ¶®>ëgšµd eè¸êй›Ñ¡Áv¹Z«@íH›‹Ó¿«aa§<'×—XµQkýîžüÑŠ%V_‡@Ñaî´â#›üÒù"‡â‘{ýwob‹šïf½¸n¦”ÕT> º•=xpoñÂIO †é`ac‘‘TÛ}°t‰Ž‹÷?èí2ôÝÙ¤3ÒÃ/82ü´×WÝ(‘$CÊwé?kçÙ+‘±¡A'=ŽèZ¿j©òá!Ï@£ïfôê¸{ßh^Qn^^n^^n¾Ê˜éýo>—ú\å„+ÏJkjŠ’"ã³ º@yq1¿ª¬²ÓÕåüò’âùŸ™ÿ{ùBJYMMÑý?æÚ‰ï<èãÏ}èÏã€ÇøÐc|èîÚH÷YJ;xÓö«±Iw‘,g=j.ÖI;ì ?Ÿ‡ å‚»~CÿÖü ]O›vƒÚÅ1»i똫XîëI÷èƒû¯¡¥Ú‰n’å˜ãÁëéÑ;éÏ—`®ŠD“¸¢ñH‡µ¸§™x“:4Fã&pƒƒîÓïÌZæ;×@L¦åÎü#bóWŽ¿øG…øm«'V'séh\ŽÞ™ðð3ÞÓz°Äêd*\ÊãöÄœ)š èñÃÅÀVLžKŒö[b¦3û@\bt\âÛi‡:“ÎxO$¹þl`zñ×ÑËiÁYÎw¾³Ó¢Ðî+ç«+²š=úvUS7ëkܱÛ7l»qöOƒo6>+O ¹r;µ\:ï&.'nÜŠ¾réà¦é½ $'§ºï°aê[ÏÆº‡º††xß…1Ñ5C†éš û,#:®väð÷hk«Å~aü嬮7VΙùK|ï•ßÚˆ>S^wŠû|úôFM[¶ÿ_ý¡ ú tÒµ›”ó8sé"ÖžÈ;›sáx$àÑ3ÜüóZÏžÚ%ÅÅsjÅæòï/„…‡tŒZ²í@]]] ×kÞ¯goÞ¼uí°‡s7±íŽlµŒŠ ‚ê0t}u}•š ?«¥R·WQ1× Û·¸~7 ËX·¨ð ¨¼Ö¯mÖ›ï *0ÄÝXèQ,èô”´Žº¾ ¥—½ZWxµ‡ ߺLÆÚ,„{ÌÂ%'¨[¿P©(cÕº˜0²rW¢¢×lœ…5HP OAX ”ÄҌ˨¬„éPÌÇŠª=ó¤^¦€° ^GMR›O¥+ä'@ ªA!«Ô­äolR‡ÅbÂØê k—t‰Í´U WƒRytiÒýÇUÐ`;K#Œ¥ƒ‘Tÿ}ž•Ò¼¤øGÕ]H6ÒÙ¸p•D†?±²±f¨Ù5ˆˆL”´¦(3hϑȔ¼Œˆ[÷øú\_2›¤2ywܽˆ ­–ø$6µ*IŠDnä‡`c>z~¯IÁÒÌÌr„„(u ‹ú…ð qÞãñ*+“cîTVòØìò䔼“Šò¢¢·S çÒ$Ú €ä±šÅm¢îœDjÓiƒÚòŽ  ¸Ã0—5ílwó`K˜*¦XI hPâ*+½<‹4\hÇ_iÛiPó@åŸÌÔÐöhLøvbí:ªïœùCÎn½ÛœêˆÍf ¢+Œ[NT`,jaËÉÕÙÒ”ðË)²°ºMÑÔäÖi·~iN¶h‘SÖÙkOgõê I§]Þ0튧¢¼W¥4õà<+‰c‚Ï£âºíUxx^1{²Ä°êS^(Ö'rã”ÏöÛº×øg7_]AZbÈŸk¯øõ:ø¥%€’­óÈ——Üï½¢2OÞøî„³Õ¾‡¯Óq—N?+BIôÙk©',zƒÿéÃÅ”¹Òz4«J½êÒþ $L(5‚¨3©:›Û`ŠPxÖ„I¸®‘Š…@5Z (2©ÃBYŽw*½âòJ¢ÄL }úW‰:K# ‹ Bõ‰Ç “¡ZË‹¸î:Ä’º£iÛ;úrœÄëÜšT4õç[“Ê.þdíÏVéæ´þ·-Èuõu ‡ûK•Èm›ŽÇ™G)€ä³ è¬Ä—}=N]ú±¢<7qû¶ø:w1ã€_¢L^ˆr2°Š@2#€Oÿ)ÊÎÅê]!“P–„”ãš`ªF®SmRçÍT…¬F`Äš/V¶ò.ŠŠC,6kÀèG¬!‹ˆ’þ +ºMž6PÈãñ@iô”Q{ï^•°ú}‹%jÁ°X,àýQ1999¾ ¾‚P1±Ñ«ê~D|fUk oCJKŠUTT¤“Uî9rLßÊ»×c3jôÇm\Ë=ý㉧µ/B ÑÏÙ–tï hr¹Å’:'àß[מêFd¢ÑRŽ·¼›È+“.nYtت&Ö³×ïXýUÂb¿ú Ó,eeE‰ötú\wºn¯‚ÝŒi¹{W\j¸EŽ-…BÑ FHÓ ¸¤¼}ë…Ûw¿7½h!~}€JÍ“I,Ä£Ž{„ä-T8#èá&M˜T?…( %ƨ"7ÄiTƵ9™õ4ë늪‹š¤LÛ´Îwþd*-°SŒÎŒÛ‘…¿ë7k™þËÛ`h¿ŒXš¬?ëP1í ô ð~>æ—½ŠŒ/r³í×#¤7ž9‘e>p5@ñgÚDô1‚(/Ä0á¬7q¹mä<·Ž=ýÑÄÓ!íª­Õ0 €Jxo8¯~ìR!;Õ<4ðCZÙj*¡ŠŽ@Gªêß>Š k…ÏQÁ‘ƒš5¦ž¡¢Ry¨‘E^ù”:¤BÛòúÈǶu‡UÍé<@zr²®ísuy]»‘ƒÉÉ¢w¼ª±©Ž<ÅÖ²9ˆ÷ìi]u`2sóï[7ý±vLÙFBÆäfg©+I#Ú}ÖFou>«Æˆ¶Žó•¬'8ÕV`s¸ý'6{òø9( š¹få758Šö3Æjß‹*Q©ðþ…îg›¾]YßX“M±µ‡;~Võü™(‘¥<2™î±|Ò`cM6¿$/¿”h¸ÄÂÐШ8'§Õ‡Z´-zýµ’žÔÊ«þ¿½óŽ‹âøø›½½wAA+6»Xc‰-¶¨1FMŒŠ-öÞ¢¢išˆ&þLì½P¢°QDQz=z/Wv~PDÝÃC@ÀÌ÷ÃÜì›7ïÍîÎN55QnÎ[KÙ‹â » fÀ£(e«á.V ñ ¢È'/ÇM뤦 ¨ï÷´ ñöñ‡‹Wœò1P¬J{zvõÎpY9 b^±¬8¸ÄL›]çhÏÕzÓLÜ\T}ŽD6=ÏZv[«¤ø¸º¾]Hq”gø¨:ßUÎëüžøáꆕÇîlæK‹’C=÷^@æ¹Mžfw^üFSšýìÖú]> 6¥áèUWÚáÌ¢W?¢ô\BjÓiw@UïG•5n+Ll³›Tdm ­b7SÉŒË^ P|0Ýe3¶.A©ÿP/zÓ½¿‚ÐCH(Û¤C.Dé§PA»š¼ŠýG x~koa½ Ük‡OÜùËå鉗¶œ 7zhåÐÉøv0¾GòëYÅÚËÀûšs'ÅmÙ*¬'*ô=vÐmëÞ+S¸¥OÍZ~™¹ž'«ü|‡Š{¿pÙrðêLU¤<ú}ç? Ì•7“[•ôÇ“¼Î‡UOB“V¤?õZ¿údT+ÕšˆPü°J»ª´²ÏRé…©ÿCJÓèþ£!Á_(«@§yV´Ù‘Ê ì¼Ó9(ùÄëÍ[E™¨¢KR_÷¤žEjÓqÿXš2N¢ì昵€^oß²tÄŠ#wTÿÿY¿ñrª¸|åÝÀ&Fg¤%LšØŸ!ðâ}yM’?zKä’üÑa4ž‘ígv¿hcÊpIó“‘Ö}BŽ>fœûõ«7åŒõA´ÿ3"¸Ý<.oRØ=gkPã†cZ›Æå)4,?RïBa|Ûmмõ‘"ó—BK"Š8¼ì”òÊ“ÇçviãGU|0¾;ýûÄ”íëÿI}¿0Ш vï|#¨Yëµ­ª“?tOн[Ç&9ÐF-“!Í(úž·úüKÿ^¿é}íæí‹‡‡äœ¼ÓÚF>}Èü%¡-¹wȬֶ¡©T%\ñ˜âÐÚÕòÔFä¼0Ågóô#±…íÊ?Bû¦øÊâ‘MØmML/WùíïûÜnæÄ›JKdH uwÇÌ»;ZÛ Â Ò~ -OUvdà Û3•©/Ú×¹C@ 4Ò~øO“*oÝq­BLCtÆõ-±öƒ@ Ðv ë@ ‚¼ö@ @Ò~ >6Êã„= {ü0<¤ú¿z7 o¾àÏ›«Þ§µËw·ªuþïKóæ³µ]AYÌ=ó$$pk¿ê_†ÃVþ~ýN`X ¿ßÏE=ªàš ]óû¿ïS;§Úðdkc\þó?w‚ïݽýÇ– –ܺ ÆS~òÞ5Rµö·ÓZÿ°'Á¡îù]ÿe…›^ yü®Ó÷Ÿ»z×ûÒ¡¥u둪Ýâ?ïÖ:þš73ÄÁïæy {濺gu\uÇ…‡ÿwç¾ï3Û>·Q’-ÉœŸï¢5•î1 Þoì¼Ë8AÛì ;èÈå;¥‹m–Ò®ûèA[è®®2õ–?œvùìÃ7albôD{âq¿u½šw2òk² –·_¿?g›Èm'¿Ë?žö ðùe†•,„Qgcùv¾Ëw]E» m¦íû긷'=¬Þ_×öu:òÇ‚!ëØp·5´ÛÚuîÔå y¤уgbsìâIw±.îö#ÝÛí#›ß4ø¸ãBÚe/=p6màÕ«å ß› Yÿ@ 43Æv6¥Ñ1 vPveEï+ÐÜg;üH*è }Üí[Úè•V‚Â7¢š.^.î¼—d4WjŸLY&“1L«îñ.XƒòjR3ÙõžÄ Õà „,AƒLI´Yt'bLú'bÙâsqѶ×GÈ1ò¶ïMƒŒ?ÍŠBßž§Z}È0”±Ûêß/ür×ûÒ=Õ,ç_9¿ØJwú¯ÂC…×tïiõ[üËuŸû!Þ~YÔ[ó=jÕ¯»âûÌRÇOõø…jz-üÊÂûÈùºSpËŠŠÄ•¥"LW••‹ËŠ‹DÜ®Ým£n\J,‰ #~žÙ_Vã€Û­cÔ•ÿ½(VF_øåH¨€ Õó_9¶w^oåwãH C¿RÓÓo`P£I äÀßNÞHJÅ…á!ÏhSm(Š º~xá·GÂ߮ʼ“!Œ8¹¹%]òz’[^–ê}æíê*³×–)?™¨,Dc–Fo§ŽÉ/㪚յפßûå|x9â¨Û÷°.{ùªÊbünÝO*{[–!CÀ|Þiß{Þ·®Û2ÅZÔtuqnN•×6Ž1ÏÉÎÖÑÕ•!ɘŸLÐ@«Ë«@Åxj¸²€Á$¬–DÝ_M…Þ³Ù¸nˆÂh dýA=ø ©|†µd}‘”€+Iíyg©Çþ±j<¼– ½†s°FmûÃÈ’S?!¥ X‡‰‚—QÁ7¡Êù,£|–QI¹ÐIòEoXÅõ¾Ý@¯£ÞD9ô?_bÑ]“ópXöz‚‡C:/žÎñÚ| îoÖœn´ŒY—} V à˜ª•Vçó ¸è*ª?XWŠò$X[´,Q~ûÚ‡›<Œª$Øb>6Ò…Ê"PP—-Ìè{Ó í¡ù`;Ìú :lÖDãÆF6íd|;º°J˜x÷‰‚•µ¶ A:üÀ„¯G Ë¡OS´udÉÕtvÓÊ ›ïôn+‡º¶š£—Lýéé]4AcèšUï­Ÿ3cî—»SGmkÏ@€œºˆ½¸ž¾%ÊvýÊÑZ24¢š¾på±û‚Ãݿ°„aÃâZ,¿¾ü0Ðûp×{/'4›[ ¨L8ôèiàÍ Ú-ö —ý%`ʿΜ4iʬéSç-Ûn¾|õgF <žD"áèZ÷p0WKÄ\O†$c~2RB5àƒ( !¬  •*F÷$ª" _«ÖVc7Q~ŸC!ýº›ðmÞ˜Àb qÎÜ' Ce4p°Jítôô¨´¤iP$ÆŠ²ç¨Ë2IÎèm»ÑënÞ‰kH„¢(ŽŠ¶¶ *N>»mŸwÝü…Ê'·o& é’˜ˆç•PoÐL²È¸uôthJ^FPÀSlbRïåj‚Îwí4ídwßûE-Éõóy¤ac«!+*s¡ŠSÎí¿jðͱC3%^n½1Ÿ£)v6+l9ƒîÿæ£ôœ×áì® —‡2G,ÉÈ(C!@ˆR·³«›Ÿtåè¥W%´0æqt•¡‘€4"ì‘PXQú ¿¢BÈápe«m70fÛ;L»Lƒä_PõÙžÜ^ØTŒbßš]Š ?´ú`-!äËSm£p€%ÌKÌç-JV™,Ë÷¦Ñ„¶ƒÆèÙckÆ×mfÌéunûÃÆGGZÛÃ*‘H8l™e’íç›ÖNèÈ‘HŠ„½OqIbÀÄFÒîàu_ôµùõÕk3^×Xø}Ý%\õxšLdœñýò´»ãÑgÉ€éGWÿyU,…âsw’NÛYÕL:1T÷¾–][Õï8®¾¾V*–mAü/gJC\=— 'Ï]2ãkC”^þ®çŽŠÙˆ?nC Öø0v‚2fˆK²2k&9 ÎÝy9­SG€(‘ˆÅb•ûz¸ø¨Lb‹«D2$‹˜òó!SêÅPÉmc\ò)LM) Sl0Y@ëÓ,×>Þ˜~ý%kŽÝ[]á¨:SìzÑ¥LÑ1 ™“¢dš$_ô6å0jDÉ­yÉ ežß~Ätù*¯yz’Ôp¿žžw’ß|”3ÿùzA#uÊ¢®“J¥lv]ý¢I:먳“ÃáN>tv¸XŠÂÌh™3eª’g_Éžµ0íèõ¬úâÍc燠5‰v°Eéþ(ê:*ys*¢f\E5¸šƒ„'ØløûêÒò²ìð=;׆c\óâ`#ô‰vËÊ:Iò E]Üe>O”U‰-Gጓ”à­ç¥4ña‘7%b·É d!š¨E®A`ÂZÖ7Š#Ó÷¦@ÚBsa6ar7©PX=­ƒ?dâà#o7°Œúm$ ‹USb±XImï2McŠªW‹ÑóíÌŠ_ÆM(¥µ¦þ|Íþ}ŠUÌûìTø8ãCW¶q:öî£odp*pfÍoÇG¶Lþ2‹¥ÒšÏ”¦y<@Qq1®_•JeÍ (..æ)«pÄÀÓÓSËŠÍ‘!Ze?‹ÛåÚ™ -0‡IÅjˆ+?òzD.—&=.\Õ· ø2I2fÈÒŒ9ë´þYzú%@uÅ@qnK[‡P::º99Ù#7¿+Éæ0ä'#4ª”Ò:(1‰ªh}È*DKqʯT’ì\D, eÝŽ s€ÍèL§;dPý-Åuõ{DÉŽÕž¼5âþ~“ŒÞú°{œ~gÆëeµ4ëÊ×eFEÌåm /GÕ¼çôûÖŒ²è¼ìùWïèü@ÓØl±¤¶6ÓL:ëH$©/™é•"$c¡Êë>ç3Þ³¤>³§˜Ü=V[ 4·rÃŦýáÕ:”Á´zWÓ _ó:ôÇ~ß7h–ëªOx„Y&ŒY§zö¸è!ªÂ ÎF¥´¶Ê*- P\N›×áa&ü7$Af=Ô¾v¸ª€J x •^§{?SÏrÒæƒ_ØËœƒÃ\¨²¬gy x¼ï«ÍQ3—¿žÂØìvÊ"p%¨Šqë ¬¦ŠŠe½éÕ°9< m.‹Åb½ÑÓô_€1ëhlø961ÀÒÁZP‘Š‚–QÕë—.€ô!ò©«@Ó(Þ¥f~|ë›F¹Ï°ñ`ÌãR7l@¡œÚIn|Úa*vš„kÚÎ øÞÈøÐF(¹¹oýæí—æ©K3£.¯Ûö¸¶WLè{ì ÛÖ½W¦pKŸšµü²àÖoç]ÖÝô[‘þ϶•»Çîñ: ³æEMó>>µzñëåEwtlÍΰEɯ2KtÊ_¥·¯¹MæÙ‰®nXyìÎf¾´(9ÔsïEdžÛäi¶qçÅo4¥ÙÏn­ßå#³—}aã.ƒuëÿš«ÇÊqkËökùààá÷ëäêúƵ%ðò°{õ’J«%×B–`qy~Zøå­Â[Æ¡Š{¿pÙrðêLU¤<ú}ç?‰Î›|=ÇWW÷?eW–ÚÊ]ðÛî>ë6üå£Ã«Ì~ñïö—²@xwÏfë­«ÏxkKRCN­:CË’dÌOf* @$„*q {¨Ä‚KHm:í⨠òý¨2 Á°š@»ÎiJõB…²§¤žFJSè¾Ã*‡<*)õµÎC.Dé§PAƒ³¤áèUWÚáÌ¢W?¢ôF“½•Qì?jÀó[{ ëå^;|zàÎ_.OO¼´ålÀ¸Póн`ÅÁ%fÚìâ8ÿC{®6°ð—A§Ý †‚…ñEH¼}üáâ§| «Òžž]½3ËÒɈ¬—ë]JoîÛo¿éàÍÅ,aF¨×Î8™ES¡ŠŒ¦­û,ã—O„ÏöÜwà›¾w·>(o ;åp±“çëÇ7ë€LA%ÊXƒôÇ“¼Î‡UOî’V¤?õZ¿údTÓLj/0gŠ¿ v hs%–B¾•šÕ †vKöE¤2;oÇtJ>ñzóVQ&ª(Ç’Ôû š RPx½)ËÒ+ŽÜ9PýÿgýÆË©âRð•w›‘–0ib†À‹÷å5Iþè-‘KòGIeèeýaúšwÛ ñ­û„4}Ì8÷ëWoÊ‹ð„ñ ©_ÒÖq¿²²¿Â§¼E¡yQqßsÙÕwÌ*¿¦Ÿ­Ñît¶íÅÎwáÙæ7>lÔ’e€8 ~;ªî9joDkÛõI¡aù‘–FÆ·ÝÍ[)2þ@ BûBm°{×à³›µ²Û^t¶íÅNDÑ÷¼ç,»ôïWb  tÉ‹“cZÛ(§i?о(¾²x¤¼#³ŸšÎ– ½ØÉDÖÝ3ïîhm+ÿ5ÚÄ*0@ Ð.9þ ÿ¤óvüÓýÛ51i ëä_æAh:mp¥D4‰@ „¶U(ë¨Ñf§Õwf2þ@ @ ä…´@ ‚¼¼¯ýÀÑèÌ­—~õFNZ]G°äKÝv[wÃf®)šxÿÒ/ÎÕi.Ó­Rµ[üçÝÀ­ý^‡¨;.<ü¿;÷}oœÙö¹R³r͆®ùý‚_H€¿÷©Smx”á°•¿_¿èïwÆsQ•fö Ûî¢Í5›Yéí‰ÇýÖõb€ƒ‡ßŸ³M>BBm[g#pZëï5Ó°µR%°üž<¿?ð2r écçCuáØf=ôPíß.¬ æØÅ“îb \ÜíGº·Ûǵ¼‰ðqÇ…´Ë^zà*lÚð‹/¿$ Ø{k™UÃR ´ø¦ŽÎƒÜl…õ74SêÐÕŠJñ¹éYª×ÝZ÷j¹zŽz¹‘‘-tü*ð_£êá¯Ë¿_¾íZZkBhÝò˹‹Ë r²ë*¸xlëŸðãÃ',>%ž¹wž Õô@ƒÉ[—éÜñ˜à2tÂê‡fKçU‹ ß Î<:cHבs¯r¾œ3D­5ò€ð†£FúÞ~Üàáwm6¡f|ÇhÝo­Xôþ@Â[4K†ã1ûÍÕ »(ßï(ßï(ßµ¨æ ­Î%h°ZÜÚæEw"ÖÉD¡©Çÿ‚ù\¬*ûèù%Ø<¾’’"ç= \®*ÎN{ñ ,¦@\/•e½ŠO+—bº*?·óùõF”̺uå§>~‘ÿŸ/ „qX÷P¹Ãê ÔŽ¾ãFdBLèéù6lIràÙsgoD½u&ªVŸÅÇî<|™riÿTn—YG½ŸÆ$%Å<¾óÛ|§ê‰‘ÉÈ-çD'$Fû¯íý±Ý$43EqA×/üöHxI½@'7·¤K^OrËËR½ÏÜ¡]]­šÈíÚÝ6êÆ¥ÄR‘¨0âç™ýWÜ(€²¢"qei…ÓUeåâ²â"™‡þb›´Egl¿–vÛMwë_sÀ+ÒÂ6ËèAûi×u¸cmÇÒėЮûéA?`…7÷Ò.k°y‡æÏÇO “‘£µ¼oFÔ4‹tm8ïpvï$‹êêeì¶ú÷ ÿ†Üõ¾t`AOu€÷Í·ýÔµ_'ö±òäõ¿¾²geè²ò·ó¾÷}oŸÛ=ÓA¥„Ô{/8z麷ÿÝÐÐë¯ßÚ;N¹zôcžóˆmçoœÝ;Ù‚%;!YƿҰÃŽM­4µúæÚµïº(ÙOÛîVPØÝ›gvÌhÄ­vÓÄmõñó¾üïÞ:¶~¤)%Ë÷7Ïù>¸çweuÿš!·†}Ó(¦Ô›Hés{„ŠK| #Ít;Ú%²r‰Õ [ê£ØûUÖÀPëŒ+ÚYGÖs€4?TU OQ&ƺ2GÒä—l ´$Å‚ôìÒ·Úå™/“ó%@q5´ÔÄÅŵŸJͲ»5ýâQBi‹ž—M |ÒhºÏšwõr$mê¶ök7!<·M'Ö6Høk×>%vÓ_f 7cçÎñêÏŽoÝy§ØÆ}ëî¹æÀµñÈ—ý#ÛvðF\{<‰PŸ²¿[÷“ÊÞSÓÕŹ9U_Ø8Æ<';[GW·Éêêêv§Y»Ïýûï½;lp7cdý½bkÙW—üý½ýϸ/Þy¯ÁÊÈ’S?!¥ X‡`0«ÆSÁk©Ðk`8k ƒIX-‘ ^MGeÒš¸“°Zu5zÌfc2ÎÑV#Fq½oG×ÍÜ0;³ƒÿê/¦mxb¹òËP¹r­õ“Í“\ÝçÊußµÀ°ìõ;‡t^<ãµùÜß @y¤ÇûÈMŽœuL8m×\[™ NønráÑ©Ã]‡Nû#1Ãk¾ÇÕêÇÒbì¥Ó_ºXt×dżY É2þ*>¶îí¬ `Ø«rpP4èMô˜CÿóõèÁ“—ýeÐÛN@eÔªu¶ÏvNwöÙªŽë– S–å»òHõ¶['» ›°ü|bM§Aß߀1õ¦Rr³å d¢™nGû„9—˜OÀE×PÑ›uX‹•´ÛÚem7j¾¯¥(O‚µÕAËåÇ~ ƒ› >ð0ª’`‹ùØH*‹@A½É’áCÖOsÌz7rh7…ø˜‚šÖ‚ªuOkV꫌Êf°‰@øÏRxkïʃÇ÷þó€g`¨Á,dáè¤EÞ¿ì8þëÆ¡€Ì{8iBáÕã&ÍZþ£×ñƒW_˜š€™m%(ôùu¯×û/D}LG O"‘pt­{8˜«Š%b.×ä@HÁ©‹Økûèé[¢lׯ­C׬êxoýœs¿Ü:jë\{NCv¥ß@¥ Mƒ"1VTP1‚Ü' Ce4p°Ju 1ä>±$Ù ¬êV1‚¼§ ÁPùÊXµY*hŸ(v£‡Wݼ÷: ãæáA‰9é÷žŠ µÀ´“uNðíèÂ*afàÝ' VÖÚÒˆ°GBaEE|èƒüŠ !‡Ã0ídwßûE-Éõóy¤ac«!+¡’ŒŒ2„„(u;»ºùÔIWŽ^zUB cGWiÉJH–ñïRðÌɹ@½ooÃû÷#h (Š£¢­­‚Š‚ÏnÛç]`be•x=<·RTôüÜ®õ×)Y¾›YwÎ ¾]$—&% jú@™|·šwæÁÝÀzž5d¤Þº4Ïíø”àö¦bû´~ŠßOï¢BöPO. þ8Ú¸zGVù1 Õk !_æ˜j›„,)`¨Xb>h P²Êdy%Ù<>ŸÏçóyl ¸ |>ŸÏWâÈèÉü¡+qÊÃë)GÙ¨[oGtÿIF”¼ ËÐëf×!=4©Œ,ô!ü‡3νµaŒ@*•…dLQäò¸b±Ä1ðx< »M]±ÌÍJS£¨P86€D"sFaóOhªD"‹Uîëáâ  2‰-®59¦]ýçU±ŠCÎÝI:mg W"ûºJ¸êñ4™È8ãûåiwÇ£ÏÊa!„SlÀµ£ÓX  0ÅzXbƒÉZŸ`‰ ¸Á†ÊÊaÔˆ’[ó’ëI%5Ã8R©! 8N] D"á°eæ'‡Ã1œ|èìp °…™Ñuó“ßNˆ„'ØløûêÒò²ìð=;׆W`€i\z£Œg  (ñ«Þ]QˆvëÐÛ¥™ç·1]¾Êkžž$5Üï„§çd1p8œº¢®<.0°Ö£w}g³Ùu úž|áûÏ}êçVea1@!Sê­KsÜŽO ¶…3NRB€ú›ùˆ ¡æN ¬t¬¢PPƒø‹°È›±ÛUõU 4 P%Š\ƒÀ„´¬QNIÊtæŸ7·9×LÞ³Zz3n)`ÁÅ9þõej%7²ýÀQ5Ôg¤T-.ËΫ²ÓÕ€Œ,\šø4F»N¯ŠÉ&ƒ< c Àf³ŽŽö»×Ùl6Ô¶‰ÄÊN=I o”Çö÷ÖŒæ«<ë¯kK€¦i‡ïÖÈáqŸŹ9,m~õ‡PGG7''»ÉEÅÅàõ—T*•°9\,•ÖJišÇkÜ6{ˆ–âº1¢€–ÂôëÀšu€h)Nù•JÊùÐ<ùÏÀî5bpú KI$«¦‘Åb5П ‘HRÿ^2Ó+å} éý¾oÐ,×Uåj9ƒÎj”;fSñÐ',½¶+8;((wJÛnÚŽÏ‚6ÕlÍRsyÛÂËÀQ5ï9}ã¾5ãŸ,:Ÿ[ßMJISƒ*Í/3ú.•J_KR¨ßK²Òê¯5Ù©7!#šNsÜŽO ÐÒÅå´yÍo<Ì‚ƒS õWT}G1Ô8I™†DÏuûø¶6 ¨¤€§P ÀS‡ÊºE䊠çˆ%±(?ï}’õ¡ÿ˜¿ÈöæŸÓÌkG*ÂwÍö`l<@£ç/ae#‡.æˆÍ×ÓV©(¯÷ÀV¤DD—w·Ón÷ëq„%77@cø’ÛŽÿ4Ï¢þµ~3—Ι·~f/€ôgÑEÀîà:}Úô±Ý4À¤ïôéÓFwU‡ä¨ÈP¾xýü…›f÷DFåR,6û«•U©ô™ó‹~fz: ê#¾Ý¹~·ç‡Vò–Ð’à'VfwÓâ+› ™6‚íï×ä@Q䓎ã¦uRSPÔwž2Â$2ü%@qB|a·Áà x¥l5ÜÅ*!>¡q–– @Û 8P° ••Tä‚–ðTAoôëõÓeд €2Àv °ù¢0Ãéëî{Ó7ï=biññz}‡Ùªsôúr’ÄÇË¬ì¦ÆÇëtïgÊàYNÚ|ð {®Œ„Øž†¶—Åb±ê*àÍb|‡i›÷nXï¹z˜âë0A`@Uï»ÇÞP]ß@æS6|?®‡©&G\œ“[BÐ5nöwï¦ÍãðÍÇíº¼c¤š,ßii½Ykiupûfv?å†}æÔ[•f¸Ÿ©(h峌òYF\éCä³ •—Û Z‹É·) X={kHiu¬Ì‹Kç}.s?Õ† fÝnÃ{W/œƒžcL@œòðNDæ«çú޽Ü:r‘¤ª,/6*±´~ ‘ 2RÛÕ¡«A\ÎÿM2/ü}Âá]]L~üö0º¾oxݤÙ}öº‘jÂÄ[ÛÖxFð{.ܿϵúZ×û÷ÏH8u#Êgóüý ›f~±¾ó⺠Ÿ‚ðùáí~–/<º/êü–I£/oø}åØîZ?ûñèg–óí†Xߘw\gÄÁáÌöÚ Î›|=ÇW×wö?eW–ÚzwÏfë­«ÏxkKRCN­:C€°i™ç6yšmÜyñMiö³[ëwùÀ³?\ݰòØÍ|iQr¨çÞ‹²¾@2\BjÓéC.Dé§PÜ@º³éþ®â…rûáú’. ß*#;ú1¢ØÔ€ç·ö¾O®äæ¾=ö›·_š§.ÍŒº¼nÛc™s4JoîÛo¿éàÍÅ,aF¨×Î8‘Œ„ÒoOò:¶¤éO½Ö¯>Ù¨V2Œ/L|žÈÜäIDAT‘V¤Uþ"­~%Þ?HmáY{÷ÕŽļb/Xqp‰™6»8ÎÿО«ù5nvÙðÃ?þ:œ²”¿ìº–'Ë÷‚›?´óç+3N¯>4ynC¾3À˜zSÑžF;9Wÿ‹‡õÂ’t÷oÄȹ鷣=#o.‰Pü°J»ª´²ÏRé…jõF!Ú!Ù‘Ê ì¼Ó9(ù*©}µE™¨¢KR_·meI¾‹$îù‹:Ýúó³¼ýsWÜnhd )((ÔýX:bÅ‘;šê|Öo¼œ’—‚¯|ŸžIÿå茴A“ú‡·ó¼&;¬i~å„¶cI{¿²²½Ò˜@h÷=—]}ǬòkéÕÞMˆ;d›ßø°QKn”âX,øí¨ºç¨½MÑIø`š~;ïEKë#m™ŸßäÛ¢·CiØ“·Zo}¤ÈÀ0@ í µÁî]ƒÏnlùú7CB¢è{Þs–]ú÷+±ºäÅÉ1MÔIø`š|;„·$†=y¯i?mƒÈ½ w¶¶¡]P|eñÈ•/¡¬»;fÞÝѼ: LSoð!üw6ô"@ M¥¥Ö?ù×?üGE´ßÛ‹M¤uÝl×™Ü^ì$´}Z÷Y’ç5$ã@ A^Hû@ ÚHÖÉäŸ8HAÃÄ¢ƒ©¶âÐýöâ{ëÚÙ^r‰@ø í@h? %³>»7Ó¸6ÊAº úïø¸Raþ_º íçòÈ*jE™›ßVû(t9ávîfoëÐÕ„ÿ>I¤¨gëì2lôH÷Qn=L›W½ûY5rãF¾•«û˜±Žúž*òûþ1L¢Œzs3 Ã»G¿m'Û¸Ï8÷1Õ= ¡Àæ i¹ô-f'ÐXxÆí¼óôé³Þ¼ª0Üó•àîwVu:ŸŸz!¤ ‚<:€É¢;uå¼ ] ßÚ @§ïÒãÞ¡1‰ /ÃýN­ ÑH“ÈþKÐ^`iØt·ÓU¦´zX•>ˆ+nòÉ·U]þýUM×ï7Œ5iûÞâ#¤ø¡Ã'•Iïæ+°´ü}’–vu9‰Ï’ @\,óüÔ÷ÃQÖÒb¥|xüfC~ß[—·í”&„Gfpu:u1Tªb l‰Ô›H‹ÙI 4dý퉣³TþñõÑK¿=q8½ÏçÿË®»¬4|ÒåÈC—âj~kŒÚ´a¨ ÆoŽG‡Ÿ\ñgõ±‚•±‰*#¶þ¾zT©Ïíͦ¯š¼â¨Gh÷µÁ8­“´¡} `ص‡•*,µÎ½íK"³eÔµû}»Ë쾊ei/‚.zî9  AËyñÎMs\:©‹3#¯ï_»ér¼X’x6L4ç¾Ù~`Ðêóõ޳Zk£‚—~žkVý]9`÷˳3UÆžŒ(ýës›ÕA-๒ÅÀ¡6jPú*Ðÿe)€zç!.©¤ÇODœ,Õ 0ñQh\‘F—áý̹ iá iùQ¹¹eU\­Ž]íÌ´U¸¸²8+6::µTÚf‚Žýˆ¾¦Þã $)¼£r«ÝѾ‹™Ž W ^F?O/£AÛaToÓªøG¯;Ûë+Šs¢<-5sqéXý\ÁÊJüâi¡iO+xü KO^ߥ”ª¹C7k]T•æ&DE%JcÒ€T­û쬔óÔÿa¾ƒ¸<7µ”¸ºÔë¿g l ¶j˜ÆÓ=_»íÏ'Ê]mThÞàÍ^ëF«ÜÿaöW¿&YÏ9üÓÂŽ2Rb”ä¹mòZ?Ö(åÌî=—&îþ逨‹?¬Ü}G@Gz­\µråb[ÂuQnlDTdBÁ»ß7®Q'3”›UŒ´­:êQP&x•T@Te¿ŒŠŒˆJÈ“¥Û¥WgÅò”˜Ø,±š©cw+µ÷¥øa‹LJÓ£#^e pQrDTdDtz)T§nÈÉ{’P¦bîäh¡\+¯hh®Y–šQ‚øù,mM%­h`ÓQ¡RÌÑÒÓdÉﻂ©}WCNQ⋘,±ªƒ9ÿLj<#KU\÷<­ª{ÔÜhY÷´Öç¾|ñ"¹­®ÂÆ2ž¤ÛÉÁD­29ÄÿQJ™¤8îáݧ™ÕíF¹²NþÔ „ÅÈÈpFq×A7¿ÕÊÈ066ª»¨=v¢ ráªx½=v~®twóÆë…oê` ÙöàÁƒ'/bŸ^þ®‡€¦¦&ËrÆÉÐØ¸à‹ž+]t$¤ý@ ŸŠŠ´ æÅó˜Ìr(¼ˆ~›E+*2‰²ÕÕ•ØJêŠå1×|9ÿ×W`áè¤ …A—.Ý;y=Ø]z÷QGb”´ptRƒ"?þÃÛþøíV ‹Ù.œ¹U€S‚Îü}æÌÅGÙÌ*yŧ(>B@âSŸBX!)ÍJIKÍ)·ª&Î|““R€x<T¦§¤å–cqqfZjJZv©”Õ5¸ ÎLˆIH|ž”À×Ðà6˜ÏÀ±/3ÆÌmÊÂô”Ì"T䦤¥¦dT(«kp@”›‘ž››,(¤ª©Y;ò_•Ÿ—U Àf³èüôøB!à¼Ôøü DQòû.DÞ}—”'(PRRü“[צ“.«,!*©ºGÍ Åå²(6‡-)Ɉ}ô0±TVê¸47[H‹«*Ê+ª$luSn•¤Z@®¬“?u¡Eáq9@Kižš¶† HÄÛ~µpáW ¿^éP Û{Åê):€tè¬pÍã«UVî›×ŒUm”QoKG¬h²£@h4÷++¸Zžœ˜ À¥õm ø¹I é2;‹ÄÞû=ή°âç+peʽ‹üÎår4>?þ|Œ¸ÊÀWR`š(Î(ÉåqÄb1àgÿlxÖ(Ï8_ènS¨é®²R7ŒW,)›-Èõ­EÔ°ï €iÐtƒµVŠ¢hŒ¡V’b5ÐwÆÖêÒËIOô"‘æ)¿µLñƒì¤( €kÒ}¸! جZµ4M€09äVH%JÖSü¶ï˜£nje¥ëÄe!@2‡P˜Mz=õY.75;uÓ(ŒI)næ&Ã{R§³^E¦)ÚYwïc ÒŠìØ'‹˜§£IEåB©e—!#¥âŠüÄgÉEµ><ëÞ—ú?É‚LDb1P,áµù6WAwîU‘HTsÉô³I=E>_ß*ç~XXu-b¨Ì¿aµÜjÆÙ‰Õâ7Šœæ¹L773…\ q׿ø ñü=†L²¶6ˆªKó½Oòírx@ ´ ÍzTäÕÙîçÖëuî=fÅÞ­£Ö}7úÏÙÑ"1@á5¡»W ‰Šó™c‹˜$ͪDÊ€Q¯qÝTSÃÂb©T @q8,™K Ä¿gçØêO¯qÀU»²óê-~LMÓìêÑ n ½¡lno©Jع ±,¨»"Ÿ0¢(€_§.DÄÔL( ë¾ýµöIÄÍ0ë‡2´v0Sˉ|Í2ëÓÏêuzãL’÷v”¤ÆWZêšwÔJŽÎo¶YKr¤ŽKS£‚RŸ+¨jt¶·3°éd˜ú0iݧvGKˆõ¾TùžŽì¬k\êäð8B‹ èëd¡!@jFFõ«‰»–Ýùѧ¬úgþí­3â«ggvYp|­kñ•Õ+… ÿ9vïˆ.S¼2B¨º'¨°°€ÅbÅb!€ªª×Ëéäy’Éúi@ø´PýìØ)yç®…Æ‚D Pš“S ‰áOK`‚Ó`×.B§¹ã/­œ¹ÿ¡¾ë”>†Ý4À¤ïôéJ%Ñ·o¼b’|^ ‡/þ!Ö†-]Ü_áÌt»pdÆÆ–}ÿ…;¾ÖK‡”«¿ø¦1™D ×dçw0Ôr¦@r1'ûˆ¨1Öl}#u® pÔôMÍÔ+rÓòÞ­–òâ"1t´)Uå˜h‹ŠdoÊTž™”Ó¡«zÉ«¨” ‹dŠ2",-•€º¶EW ^Td$f—ŠÁHCWWU*Õ4·6beD<|%¿õrûŽB@q•”µ449š£in¥S—[)¯I\R.)Kz§=ÈÆ¬K‡¤À„rF;…|SME®:”´LÍXââ¬Ìb.C`‘XÞt9F=W¥fæ—Š€ÆâÊ*)s.Ii)(阋Ëi ´¸¼(¿PÈè$sÖÅW¨¼kg¹.CêB‹sóFÂÒE_í[C=P=ÝHväN.ØLšhSxsçÝÚ¡Qzø½ôꥣ%©îE%[/dev/null | grep "Version =" | cut -f2 -d"\"" || echo " unknown") override TIMESTAMP := $(shell date +%s 2>/dev/null || echo "0") override DATESTAMP := $(shell date '+%Y-%m-%d %H:%M:%S' || echo "5 minutes ago") ifeq ($(shell command -v gdate >/dev/null; echo $$?),0) DATE_CMD := gdate else DATE_CMD := date endif ifneq ($(QUIET),true) override QUIET := false endif OLDCXX := $(CXXFLAGS) OLDLD := $(LDFLAGS) PREFIX ?= /usr/local #? Detect PLATFORM and ARCH from uname/gcc if not set PLATFORM ?= $(shell uname -s || echo unknown) ifneq ($(filter unknown Darwin, $(PLATFORM)),) override PLATFORM := $(shell $(CXX) -dumpmachine | awk -F"-" '{ print (NF==4) ? $$3 : $$2 }') ifeq ($(PLATFORM),apple) override PLATFORM := macos endif endif ifeq ($(shell uname -v | grep ARM64 >/dev/null 2>&1; echo $$?),0) ARCH ?= arm64 else ARCH ?= $(shell $(CXX) -dumpmachine | cut -d "-" -f 1) endif override PLATFORM_LC := $(shell echo $(PLATFORM) | tr '[:upper:]' '[:lower:]') #? GPU Support ifeq ($(PLATFORM_LC)$(ARCH),linuxx86_64) ifneq ($(STATIC),true) GPU_SUPPORT := true INTEL_GPU_SUPPORT := true endif endif ifneq ($(GPU_SUPPORT),true) GPU_SUPPORT := false endif ifeq ($(GPU_SUPPORT),true) override ADDFLAGS += -DGPU_SUPPORT endif #? Compiler and Linker ifeq ($(shell $(CXX) --version | grep clang >/dev/null 2>&1; echo $$?),0) override CXX_IS_CLANG := true endif override CXX_VERSION := $(shell $(CXX) -dumpfullversion -dumpversion || echo 0) override CXX_VERSION_MAJOR := $(shell echo $(CXX_VERSION) | cut -d '.' -f 1) ifeq ($(DEBUG),true) override ADDFLAGS += -DBTOP_DEBUG endif #? Any flags added to TESTFLAGS must not contain whitespace for the testing to work override TESTFLAGS := -fexceptions -fstack-clash-protection -fcf-protection ifneq ($(PLATFORM) $(ARCH),macos arm64) override TESTFLAGS += -fstack-protector endif ifeq ($(STATIC),true) ifeq ($(CXX_IS_CLANG),true) ifeq ($(shell $(CXX) -print-target-triple | grep gnu >/dev/null; echo $$?),0) $(error $(shell printf "\033[1;91mERROR: \033[97m$(CXX) can't statically link glibc\033[0m")) endif endif ifeq ($(PLATFORM_LC),$(filter $(PLATFORM_LC),freebsd linux midnightbsd)) override ADDFLAGS += -DSTATIC_BUILD -static else ifeq ($(CXX_IS_CLANG),false) override ADDFLAGS += -static-libgcc -static-libstdc++ endif endif endif ifeq ($(STRIP),true) override ADDFLAGS += -s endif ifeq ($(VERBOSE),true) override VERBOSE := false else override VERBOSE := true endif #? Pull in platform specific source files and get thread count ifeq ($(PLATFORM_LC),linux) PLATFORM_DIR := linux THREADS := $(shell getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1) SU_GROUP := root else ifeq ($(PLATFORM_LC),$(filter $(PLATFORM_LC),freebsd midnightbsd)) PLATFORM_DIR := freebsd THREADS := $(shell getconf NPROCESSORS_ONLN 2>/dev/null || echo 1) SU_GROUP := wheel override ADDFLAGS += -lm -lkvm -ldevstat ifeq ($(STATIC),true) override ADDFLAGS += -lelf -Wl,--eh-frame-hdr endif ifeq ($(CXX_IS_CLANG),false) override ADDFLAGS += -lstdc++ -Wl,rpath=/usr/local/lib/gcc$(CXX_VERSION_MAJOR) endif export MAKE = gmake else ifeq ($(PLATFORM_LC),macos) PLATFORM_DIR := osx THREADS := $(shell sysctl -n hw.ncpu || echo 1) override ADDFLAGS += -framework IOKit -framework CoreFoundation -Wno-format-truncation SU_GROUP := wheel else ifeq ($(PLATFORM_LC),openbsd) PLATFORM_DIR := openbsd THREADS := $(shell sysctl -n hw.ncpu || echo 1) override ADDFLAGS += -lkvm -static-libstdc++ export MAKE = gmake SU_GROUP := wheel else ifeq ($(PLATFORM_LC),netbsd) PLATFORM_DIR := netbsd THREADS := $(shell sysctl -n hw.ncpu || echo 1) override ADDFLAGS += -lkvm -lprop export MAKE = gmake SU_GROUP := wheel else $(error $(shell printf "\033[1;91mERROR: \033[97mUnsupported platform ($(PLATFORM))\033[0m")) endif #? Use all CPU cores (will only be set if using Make 4.3+) MAKEFLAGS := --jobs=$(THREADS) ifeq ($(THREADS),1) override THREADS := auto endif #? LTO command line ifeq ($(BUILD_TYPE),Release) ifeq ($(CXX_IS_CLANG),true) LTO := -flto=thin else LTO := -flto=$(THREADS) endif endif GIT_COMMIT := $(shell git rev-parse --short HEAD 2> /dev/null || true) CONFIGURE_COMMAND := $(MAKE) STATIC=$(STATIC) ifeq ($(PLATFORM_LC),linux) CONFIGURE_COMMAND += GPU_SUPPORT=$(GPU_SUPPORT) RSMI_STATIC=$(RSMI_STATIC) endif #? The Directories, Source, Includes, Objects and Binary SRCDIR := src INCDIRS := include $(wildcard lib/**/include) BUILDDIR := obj TARGETDIR := bin SRCEXT := cpp DEPEXT := d OBJEXT := o #? Filter out unsupported compiler flags override GOODFLAGS := $(foreach flag,$(TESTFLAGS),$(strip $(shell echo "int main() {}" | $(CXX) -o /dev/null $(flag) -x c++ - >/dev/null 2>&1 && echo $(flag) || true))) #? Flags, Libraries and Includes override REQFLAGS := -std=c++20 WARNFLAGS := -Wall -Wextra -pedantic OPTFLAGS := -O2 $(LTO) LDCXXFLAGS := -pthread -DFMT_HEADER_ONLY -D_GLIBCXX_ASSERTIONS -D_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_DEBUG -D_FILE_OFFSET_BITS=64 $(GOODFLAGS) $(ADDFLAGS) override CXXFLAGS += $(REQFLAGS) $(LDCXXFLAGS) $(OPTFLAGS) $(WARNFLAGS) override LDFLAGS += $(LDCXXFLAGS) $(OPTFLAGS) $(WARNFLAGS) INC := $(foreach incdir,$(INCDIRS),-isystem $(incdir)) -I$(SRCDIR) -I$(BUILDDIR) SU_USER := root ifdef DEBUG override OPTFLAGS := -O0 -g endif SOURCES := $(sort $(shell find $(SRCDIR) -maxdepth 1 -type f -name *.$(SRCEXT))) SOURCES += $(sort $(shell find $(SRCDIR)/$(PLATFORM_DIR) -maxdepth 1 -type f -name *.$(SRCEXT))) OBJECTS := $(patsubst $(SRCDIR)/%,$(BUILDDIR)/%,$(SOURCES:.$(SRCEXT)=.$(OBJEXT))) ifeq ($(GPU_SUPPORT)$(INTEL_GPU_SUPPORT),truetrue) IGT_OBJECTS := $(BUILDDIR)/igt_perf.c.o $(BUILDDIR)/intel_device_info.c.o $(BUILDDIR)/intel_name_lookup_shim.c.o $(BUILDDIR)/intel_gpu_top.c.o OBJECTS += $(IGT_OBJECTS) SHOW_CC_INFO = false CC_VERSION := $(shell $(CC) -dumpfullversion -dumpversion || echo 0) else SHOW_CC_INFO = true endif #? Setup percentage progress SOURCE_COUNT := $(words $(OBJECTS)) ifeq ($(shell find $(BUILDDIR) -type f -newermt "$(DATESTAMP)" -name *.o >/dev/null 2>&1; echo $$?),0) ifneq ($(wildcard $(BUILDDIR)/.*),) SKIPPED_SOURCES := $(foreach fname,$(SOURCES),$(shell find $(BUILDDIR) -type f -newer $(fname) -name *.o | grep "$(basename $(notdir $(fname))).o" 2>/dev/null)) override SOURCE_COUNT := $(shell expr $(SOURCE_COUNT) - $(words $(SKIPPED_SOURCES))) ifeq ($(SOURCE_COUNT),0) override SOURCE_COUNT = $(words $(SOURCES)) endif endif PROGRESS = expr $$(find $(BUILDDIR) -type f -newermt "$(DATESTAMP)" -name *.o | wc -l || echo 1) '*' 90 / $(SOURCE_COUNT) | cut -c1-2 else PROGRESS = expr $$(find $(BUILDDIR) -type f -name *.o | wc -l || echo 1) '*' 90 / $(SOURCE_COUNT) | cut -c1-2 endif P := %% ifeq ($(VERBOSE),true) # Doesn't work with `&>` override SUPPRESS := > /dev/null 2> /dev/null else override SUPPRESS := endif #? Default Make .ONESHELL: all: | info rocm_smi info-quiet directories btop.1 config.h btop ifneq ($(QUIET),true) info: @printf " $(BANNER)\n" @printf "\033[1;92mPLATFORM \033[1;93m?| \033[0m$(PLATFORM)\n" @printf "\033[1;96mARCH \033[1;93m?| \033[0m$(ARCH)\n" @printf "\033[1;95mGPU_SUPPORT \033[1;94m:| \033[0m$(GPU_SUPPORT)\n" @printf "\033[1;93mCXX \033[1;93m?| \033[0m$(CXX) \033[1;93m(\033[97m$(CXX_VERSION)\033[93m)\n" @$(SHOW_CC_INFO) || printf "\033[1;93mCC \033[1;93m?| \033[0m$(CC) \033[1;93m(\033[97m$(CC_VERSION)\033[93m)\n" @printf "\033[1;94mTHREADS \033[1;94m:| \033[0m$(THREADS)\n" gcc -dumpfullversion -dumpversion @printf "\033[1;92mREQFLAGS \033[1;91m!| \033[0m$(REQFLAGS)\n" @printf "\033[1;91mWARNFLAGS \033[1;94m:| \033[0m$(WARNFLAGS)\n" @printf "\033[1;94mOPTFLAGS \033[1;94m:| \033[0m$(OPTFLAGS)\n" @printf "\033[1;93mLDCXXFLAGS \033[1;94m:| \033[0m$(LDCXXFLAGS)\n" @printf "\033[1;95mCXXFLAGS \033[1;92m+| \033[0;37m\$$(\033[92mREQFLAGS\033[37m) \$$(\033[93mLDCXXFLAGS\033[37m) \$$(\033[94mOPTFLAGS\033[37m) \$$(\033[91mWARNFLAGS\033[37m) $(OLDCXX)\n" @printf "\033[1;95mLDFLAGS \033[1;92m+| \033[0;37m\$$(\033[93mLDCXXFLAGS\033[37m) \$$(\033[94mOPTFLAGS\033[37m) \$$(\033[91mWARNFLAGS\033[37m) $(OLDLD)\n" else info: @true endif info-quiet: | info rocm_smi @printf "\n\033[1;92mBuilding btop++ \033[91m(\033[97mv$(BTOP_VERSION)\033[91m) \033[93m$(PLATFORM) \033[96m$(ARCH)\033[0m\n" help: @printf " $(BANNER)\n" @printf "\033[1;97mbtop++ makefile\033[0m\n" @printf "usage: make [argument]\n\n" @printf "arguments:\n" @printf " all Compile btop (default argument)\n" @printf " clean Remove built objects\n" @printf " distclean Remove built objects and binaries\n" @printf " install Install btop++ to \$$PREFIX ($(PREFIX))\n" @printf " setcap Set extended capabilities on binary (preferable to setuid)\n" @printf " setuid Set installed binary owner/group to \$$SU_USER/\$$SU_GROUP ($(SU_USER)/$(SU_GROUP)) and set SUID bit\n" @printf " uninstall Uninstall btop++ from \$$PREFIX\n" @printf " info Display information about Environment,compiler and linker flags\n" #? Make the Directories directories: @$(VERBOSE) || printf "mkdir -p $(TARGETDIR)\n" @mkdir -p $(TARGETDIR) @$(VERBOSE) || printf "mkdir -p $(BUILDDIR)/$(PLATFORM_DIR)\n" @mkdir -p $(BUILDDIR)/$(PLATFORM_DIR) config.h: $(BUILDDIR)/config.h $(BUILDDIR)/config.h: $(SRCDIR)/config.h.in | directories @$(QUIET) || printf "\033[1mConfiguring $(BUILDDIR)/config.h\033[0m\n" @$(VERBOSE) || printf 'sed -e "s|@GIT_COMMIT@|$(GIT_COMMIT)|" -e "s|@CONFIGURE_COMMAND@|$(CONFIGURE_COMMAND)|" -e "s|@COMPILER@|$(CXX)|" -e "s|@COMPILER_VERSION@|$(CXX_VERSION)|" $< | tee $@ > /dev/null\n' @sed -e "s|@GIT_COMMIT@|$(GIT_COMMIT)|" -e "s|@CONFIGURE_COMMAND@|$(CONFIGURE_COMMAND)|" -e "s|@COMPILER@|$(CXX)|" -e "s|@COMPILER_VERSION@|$(CXX_VERSION)|" $< | tee $@ > /dev/null #? Man page btop.1: manpage.md | directories ifeq ($(shell command -v lowdown >/dev/null; echo $$?),0) @printf "\n\033[1;92mGenerating man page $@\033[37m...\033[0m\n" lowdown -s -Tman -o $@ $< else @printf "\n\033[1;93mCommand 'lowdown' not found: skipping generating man page $@\033[0m\n" endif #? Clean only Objects clean: @printf "\033[1;91mRemoving: \033[1;97mbuilt objects...\033[0m\n" @rm -rf $(BUILDDIR) @test -e lib/rocm_smi_lib/build && cmake --build lib/rocm_smi_lib/build --target clean &> /dev/null || true #? Clean Objects and Binaries distclean: clean @printf "\033[1;91mRemoving: \033[1;97mbuilt binaries...\033[0m\n" @rm -rf $(TARGETDIR) @test -e lib/rocm_smi_lib/build && rm -rf lib/rocm_smi_lib/build || true install: @printf "\033[1;92mInstalling binary to: \033[1;97m$(DESTDIR)$(PREFIX)/bin/btop\n" @mkdir -p $(DESTDIR)$(PREFIX)/bin @cp -p $(TARGETDIR)/btop $(DESTDIR)$(PREFIX)/bin/btop @chmod 755 $(DESTDIR)$(PREFIX)/bin/btop @printf "\033[1;92mInstalling doc to: \033[1;97m$(DESTDIR)$(PREFIX)/share/btop\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/btop @cp -p README.md $(DESTDIR)$(PREFIX)/share/btop @printf "\033[1;92mInstalling themes to: \033[1;97m$(DESTDIR)$(PREFIX)/share/btop/themes\033[0m\n" @cp -pr themes $(DESTDIR)$(PREFIX)/share/btop @printf "\033[1;92mInstalling desktop entry to: \033[1;97m$(DESTDIR)$(PREFIX)/share/applications/btop.desktop\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/applications/ @cp -p btop.desktop $(DESTDIR)$(PREFIX)/share/applications/btop.desktop @printf "\033[1;92mInstalling PNG icon to: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps @cp -p Img/icon.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png @printf "\033[1;92mInstalling SVG icon to: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps @cp -p Img/icon.svg $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg ifneq ($(wildcard btop.1),) @printf "\033[1;92mInstalling man page to: \033[1;97m$(DESTDIR)$(PREFIX)/share/man/man1/btop.1\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 @cp -p btop.1 $(DESTDIR)$(PREFIX)/share/man/man1/btop.1 endif #? Set SUID bit for btop as $SU_USER in $SU_GROUP setuid: @printf "\033[1;97mFile: $(DESTDIR)$(PREFIX)/bin/btop\n" @printf "\033[1;92mSetting owner \033[1;97m$(SU_USER):$(SU_GROUP)\033[0m\n" @chown $(SU_USER):$(SU_GROUP) $(DESTDIR)$(PREFIX)/bin/btop @printf "\033[1;92mSetting SUID bit\033[0m\n" @chmod u+s $(DESTDIR)$(PREFIX)/bin/btop #? Run setcap on btop for extended capabilities setcap: @printf "\033[1;97mFile: $(DESTDIR)$(PREFIX)/bin/btop\n" @printf "\033[1;92mSetting capabilities...\033[0m\n" @setcap "cap_perfmon=+ep cap_dac_read_search=+ep" $(DESTDIR)$(PREFIX)/bin/btop # With 'rm -v' user will see what files (if any) got removed uninstall: @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/bin/btop\033[0m\n" @rm -rfv $(DESTDIR)$(PREFIX)/bin/btop @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/btop\033[0m\n" @rm -rfv $(DESTDIR)$(PREFIX)/share/btop @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/applications/btop.desktop\033[0m\n" @rm -rfv $(DESTDIR)$(PREFIX)/share/applications/btop.desktop @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png\033[0m\n" @rm -rfv $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg\033[0m\n" @rm -rfv $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/man/man1/btop.1\033[0m\n" @rm -rfv $(DESTDIR)$(PREFIX)/share/man/man1/btop.1 #? Pull in dependency info for *existing* .o files -include $(OBJECTS:.$(OBJEXT)=.$(DEPEXT)) #? Compile rocm_smi ifeq ($(GPU_SUPPORT)$(RSMI_STATIC),truetrue) ROCM_DIR ?= lib/rocm_smi_lib ROCM_BUILD_DIR := $(ROCM_DIR)/build ifeq ($(DEBUG),true) BUILD_TYPE := Debug else BUILD_TYPE := Release endif .ONESHELL: rocm_smi: @printf "\n\033[1;92mBuilding ROCm SMI static library\033[37m...\033[0m\n" @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\033[1;97mRunning CMake...\033[0m\n" CXX=$(CXX) cmake -S $(ROCM_DIR) -B $(ROCM_BUILD_DIR) -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) -DCMAKE_POLICY_DEFAULT_CMP0069=NEW -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DBUILD_SHARED_LIBS=OFF $(SUPPRESS) || { printf "\033[1;91mCMake failed, continuing build without statically linking ROCm SMI\033[37m...\033[0m\n"; exit 0; } @$(QUIET) || printf "\n\033[1;97mBuilding and linking...\033[0m\n" @cmake --build $(ROCM_BUILD_DIR) -j -t rocm_smi64 $(SUPPRESS) || { printf "\033[1;91mMake failed, continuing build without statically linking ROCm SMI\033[37m...\033[0m\n"; exit 0; } @printf "\033[1;92m100$(P)\033[10D\033[5C-> \033[1;37m$(ROCM_BUILD_DIR)/rocm_smi/librocm_smi64.a \033[1;93m(\033[1;97m$$(du -ah $(ROCM_BUILD_DIR)/rocm_smi/librocm_smi64.a | cut -f1)iB\033[1;93m)\033[0m\n" @printf "\033[1;92mROCm SMI build complete in \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$(date +%s 2>/dev/null || echo "0") - $(TIMESTAMP) 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo "unknown")\033[92m)\033[0m\n" @$(eval override LDFLAGS += $(ROCM_BUILD_DIR)/rocm_smi/librocm_smi64.a -DRSMI_STATIC) # TODO: this seems to execute every time, no matter if the compilation failed or succeeded @$(eval override CXXFLAGS += -DRSMI_STATIC) else rocm_smi: @true endif #? Link .ONESHELL: btop: $(OBJECTS) | rocm_smi directories @sleep 0.2 2>/dev/null || true @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\n\033[1;92mLinking and optimizing binary\033[37m...\033[0m\n" @$(VERBOSE) || printf "$(CXX) -o $(TARGETDIR)/btop $^ $(LDFLAGS)\n" @$(CXX) -o $(TARGETDIR)/btop $^ $(LDFLAGS) || exit 1 @printf "\033[1;92m100$(P) -> \033[1;37m$(TARGETDIR)/btop \033[100D\033[38C\033[1;93m(\033[1;97m$$(du -ah $(TARGETDIR)/btop | cut -f1)iB\033[1;93m) \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$(date +%s 2>/dev/null || echo "0") - $${TSTAMP} 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo '')\033[92m)\033[0m\n" @printf "\n\033[1;92mBuild complete in \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$(date +%s 2>/dev/null || echo "0") - $(TIMESTAMP) 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo "unknown")\033[92m)\033[0m\n" #? Compile .ONESHELL: $(BUILDDIR)/%.$(OBJEXT): $(SRCDIR)/%.$(SRCEXT) | rocm_smi directories config.h @sleep 0.3 2>/dev/null || true @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\033[1;97mCompiling $<\033[0m\n" @$(VERBOSE) || printf "$(CXX) $(CXXFLAGS) $(INC) -MMD -c -o $@ $<\n" @$(CXX) $(CXXFLAGS) $(INC) -MMD -c -o $@ $< || exit 1 @printf "\033[1;92m$$($(PROGRESS))$(P)\033[10D\033[5C-> \033[1;37m$@ \033[100D\033[38C\033[1;93m(\033[1;97m$$(du -ah $@ | cut -f1)iB\033[1;93m) \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$($(DATE_CMD) +%s 2>/dev/null || echo "0") - $${TSTAMP} 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo '')\033[92m)\033[0m\n" #? Compile intel_gpu_top C sources for Intel GPU support .ONESHELL: $(BUILDDIR)/%.c.o: $(SRCDIR)/$(PLATFORM_DIR)/intel_gpu_top/%.c | directories @sleep 0.3 2>/dev/null || true @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\033[1;97mCompiling $<\033[0m\n" @$(VERBOSE) || printf "$(CC) $(INC) -c -o $@ $<\n" @$(CC) $(INC) -w -c -o $@ $< || exit 1 @printf "\033[1;92m$$($(PROGRESS))$(P)\033[10D\033[5C-> \033[1;37m$@ \033[100D\033[38C\033[1;93m(\033[1;97m$$(du -ah $@ | cut -f1)iB\033[1;93m) \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$($(DATE_CMD) +%s 2>/dev/null || echo "0") - $${TSTAMP} 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo '')\033[92m)\033[0m\n" #? Non-File Targets .PHONY: all config.h msg help pre btop-1.4.5/README.md000066400000000000000000001411361506333644200137600ustar00rootroot00000000000000# ![btop++](Img/logo.png) Packaging status ![Linux](https://img.shields.io/badge/-Linux-grey?logo=linux) ![macOS](https://img.shields.io/badge/-OSX-black?logo=apple) ![FreeBSD](https://img.shields.io/badge/-FreeBSD-red?logo=freebsd) ![NetBSD](https://img.shields.io/badge/-NetBSD-black?logo=netbsd) ![OpenBSD](https://img.shields.io/badge/-OpenBSD-black?logo=openbsd) ![Usage](https://img.shields.io/badge/Usage-System%20resource%20monitor-yellow) ![c++20](https://img.shields.io/badge/cpp-c%2B%2B20-green) ![latest_release](https://img.shields.io/github/v/tag/aristocratos/btop?label=release) [![Donate](https://img.shields.io/badge/-Donate-yellow?logo=paypal)](https://paypal.me/aristocratos) [![Sponsor](https://img.shields.io/badge/-Sponsor-red?logo=github)](https://github.com/sponsors/aristocratos) [![Coffee](https://img.shields.io/badge/-Buy%20me%20a%20Coffee-grey?logo=Ko-fi)](https://ko-fi.com/aristocratos) [![btop](https://snapcraft.io/btop/badge.svg)](https://snapcraft.io/btop) [![Continuous Build Linux](https://github.com/aristocratos/btop/actions/workflows/continuous-build-linux.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-linux.yml) [![Continuous Build macOS](https://github.com/aristocratos/btop/actions/workflows/continuous-build-macos.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-macos.yml) [![Continuous Build FreeBSD](https://github.com/aristocratos/btop/actions/workflows/continuous-build-freebsd.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-freebsd.yml) [![Continuous Build NetBSD](https://github.com/aristocratos/btop/actions/workflows/continuous-build-netbsd.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-netbsd.yml) [![Continuous Build OpenBSD](https://github.com/aristocratos/btop/actions/workflows/continuous-build-openbsd.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-openbsd.yml) ## Index * [News](#news) * [Documents](#documents) * [Description](#description) * [Features](#features) * [Themes](#themes) * [Support and funding](#support-and-funding) * [Prerequisites](#prerequisites) (Read this if you are having issues!) * [Screenshots](#screenshots) * [Keybindings](#help-menu) * [Installation Linux/macOS](#installation) * [Compilation Linux](#compilation-linux) * [Compilation macOS](#compilation-macos-osx) * [Compilation FreeBSD](#compilation-freebsd) * [Compilation NetBSD](#compilation-netbsd) * [Compilation OpenBSD](#compilation-openbsd) * [GPU compatibility](#gpu-compatibility) * [Installing the snap](#installing-the-snap) * [Configurability](#configurability) * [License](#license) ## News ##### 22 September 2024 Btop release v1.4.0 Intel GPU support added, note that only GPU utilization, power usage and clock speed available to monitor. Thanks to [@bjia56](https://github.com/bjia56) for contributions. NetBSD support added. Thanks to [@fraggerfox](https://github.com/fraggerfox) for contributions. See [CHANGELOG.md](CHANGELOG.md) and latest [release](https://github.com/aristocratos/btop/releases/latest) for detailed list of new features, bug fixes and new themes. ##### 7 January 2024 Btop release v1.3.0 Big release with GPU support added for Linux and platform support for OpenBSD. Big thanks to [@romner-set](https://github.com/romner-set) (GPU support) and [@joske](https://github.com/joske) (OpenBSD support) for contributions. And a multitude of bugfixes and small changes, see [CHANGELOG.md](CHANGELOG.md) and latest [release](https://github.com/aristocratos/btop/releases/latest) for detailed list and attributions. See news entry below for more information regarding GPU support. ##### 25 November 2023 GPU monitoring added for Linux! Compile from git main to try it out. Use keys `5`, `6`, `7` and `0` to show/hide the gpu monitoring boxes. `5` = Gpu 1, `6` = Gpu 2, etc. Gpu stats/graphs can also be displayed in the "Cpu box" (not as verbose), see the cpu options menu for info and configuration. Note that the binaries provided on the release page (when released) and the continuous builds will not have gpu support enabled. Because the GPU support relies on loading of dynamic gpu libraries, gpu support will not work when also static linking. See [Compilation Linux](#compilation-linux) for more info on how to compile with gpu monitoring support. Many thanks to [@romner-set](https://github.com/romner-set) who wrote the vast majority of the implementation for GPU support. Big update with version bump to 1.3 coming soon. ##### 28 August 2022 [![btop4win](https://github.com/aristocratos/btop4win/raw/master/Img/logo.png)](https://github.com/aristocratos/btop4win) First release of btop4win available at https://github.com/aristocratos/btop4win
More... ##### 16 January 2022 Release v1.2.0 with FreeBSD support. No release binaries for FreeBSD provided as of yet. Again a big thanks to [@joske](https://github.com/joske) for his porting efforts! Since compatibility with Linux, macOS and FreeBSD are done, the focus going forward will be on new features like GPU monitoring. ##### 13 November 2021 Release v1.1.0 with macOS support. Binaries in [continuous-build-macos](https://github.com/aristocratos/btop/actions/workflows/continuous-build-macos.yml) are only x86 for now. macOS binaries + installer are included for both x86 and ARM64 (Apple Silicon) in the releases. Big thank you to [@joske](https://github.com/joske) who wrote the vast majority of the implementation! ##### 30 October 2021 Work on the OSX [macOS] and FreeBSD branches, both initiated and mostly worked on by [@joske](https://github.com/joske), will likely be completed in the coming weeks. The OSX [macOS] branch has some memory leaks that needs to be sorted out and both have some issues with the processes cpu usage calculation and other smaller issues that needs fixing. If you want to help out, test for bugs/fix bugs or just try out the branches: **macOS / OSX** ```bash # Install and use Homebrew or MacPorts package managers for easy dependency installation brew install coreutils make gcc@11 lowdown git clone https://github.com/aristocratos/btop.git cd btop git checkout OSX gmake ``` **FreeBSD** ```bash sudo pkg install gmake gcc11 coreutils git lowdown git clone https://github.com/aristocratos/btop.git cd btop git checkout freebsd gmake ``` Note that GNU make (`gmake`) is recommended but not required for macOS/OSX but it is required on FreeBSD. ##### 6 October 2021 macOS development have been started by [@joske](https://github.com/joske), big thanks :) See branch [OSX](https://github.com/aristocratos/btop/tree/OSX) for current progress. ##### 18 September 2021 The Linux version of btop++ is complete. Released as version 1.0.0 I will be providing statically compiled binaries for a range of architectures in every release for those having problems compiling. For compilation GCC 11 is required. Please report any bugs to the [Issues](https://github.com/aristocratos/btop/issues/new?assignees=aristocratos&labels=bug&template=bug_report.md&title=%5BBUG%5D) page. The development plan right now: * 1.1.0 macOS [OSX] support * 1.2.0 FreeBSD support * 1.3.0 Support for GPU monitoring * 1.X.0 Other platforms and features... Windows support is not in the plans as of now, but if anyone else wants to take it on, I will try to help. ##### 5 May 2021 This project is gonna take some time until it has complete feature parity with bpytop, since all system information gathering will have to be written from scratch without any external libraries. And will need some help in the form of code contributions to get complete support for BSD and macOS/OSX.
## Documents **[CHANGELOG.md](CHANGELOG.md)** **[CONTRIBUTING.md](CONTRIBUTING.md)** **[CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md)** ## Description Resource monitor that shows usage and stats for processor, memory, disks, network and processes. C++ version and continuation of [bashtop](https://github.com/aristocratos/bashtop) and [bpytop](https://github.com/aristocratos/bpytop). ## Features * Easy to use, with a game inspired menu system. * Full mouse support: all buttons with a highlighted key are clickable and mouse scrolling works in process list and menu boxes. * Fast and responsive UI with UP, DOWN key process selection. * Function for showing detailed stats for selected process. * Ability to filter processes. * Easy switching between sorting options. * Tree view of processes. * Send any signal to selected process. * UI menu for changing all config file options. * Auto scaling graph for network usage. * Shows IO activity and speeds for disks. * Battery meter * Selectable symbols for the graphs. * Custom presets * And more... ## Themes Btop++ uses the same theme files as bpytop and bashtop (some color values missing in bashtop themes). See [themes](https://github.com/aristocratos/btop/tree/main/themes) folder for available themes. Btop searches the following directories for system themes: * `../share/btop/themes` (this path is relative to the btop executable) * `/usr/local/share/btop/themes` * `/usr/share/btop/themes` The first directory that exists and isn't empty is used as the system themes directory. The user themes directory depends on which environment variables are set: * If `$XDG_CONFIG_HOME` is set, the user themes directory is `$XDG_CONFIG_HOME/btop/themes` * Otherwise, if `$HOME` is set, the user themes directory is `$HOME/.config/btop/themes` * Otherwise, the user themes directory is `~/.config/btop/themes` The `make install` command places the default themes in `[$PREFIX or /usr/local]/share/btop/themes`. User created themes should be placed in the user themes directory. Let me know if you want to contribute with new themes. ## Support and funding You can sponsor this project through GitHub. See [my sponsors page](https://github.com/sponsors/aristocratos) for options. Or donate through [PayPal](https://paypal.me/aristocratos) or [ko-fi](https://ko-fi.com/aristocratos). Any support is greatly appreciated! ## Prerequisites For the best experience run within a terminal with support for: * 24-bit truecolor ([See list of terminals with truecolor support](https://github.com/termstandard/colors)) * 256-color terminals are supported through 24-bit to 256-color conversion when setting "truecolor" to False in the options or with "-lc/--low-color" arguments. * 16 color TTY mode will be activated if a real tty device is detected. Can be forced with "-t/--tty" arguments. * Wide characters (Are sometimes problematic in web-based terminals) Also necessary is a UTF8 locale and a font that includes: * Unicode Block “Braille Patterns†U+2800 - U+28FF (Not needed in TTY mode or with graphs set to type: block or tty.) * Unicode Block “Geometric Shapes†U+25A0 - U+25FF * Unicode Block "Box Drawing" and "Block Elements" U+2500 - U+259F ### **Optional Dependencies (Needed for GPU monitoring) (Only Linux)** GPU monitoring also requires a btop binary built with GPU support (`GPU_SUPPORT=true` flag). See [GPU compatibility](#gpu-compatibility) section for more about compiling with GPU support. * **NVIDIA** If you have an NVIDIA GPU you must use an official NVIDIA driver, both the closed-source and open-source ones have been verified to work. In addition to that you must also have the nvidia-ml dynamic library installed, which should be included with the driver package of your distribution. * **AMD** If you have an AMD GPU `rocm_smi_lib` is required, which may or may not be packaged for your distribution. * **INTEL** Requires a working C compiler if compiling from source - tested with GCC12 and Clang16. Also requires the user to have permission to read from SYSFS. Can be set with `make setcap` (preferred) or `make setuid` or by running btop with `sudo` or equivalent. ### **Notice (Text rendering issues)** * If you are having problems with the characters in the graphs not looking like they do in the screenshots, it's likely a problem with your systems configured fallback font not having support for braille characters. * See [Terminess Powerline](https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/Terminus/TerminessNerdFontMono-Regular.ttf) for an example of a font that includes the braille symbols. * See comments by @sgleizes [link](https://github.com/aristocratos/bpytop/issues/100#issuecomment-684036827) and @XenHat [link](https://github.com/aristocratos/bpytop/issues/100#issuecomment-691585587) in issue #100 for possible solutions. * If text is misaligned and you use Konsole or Yakuake, turning off "Bi-Directional text rendering" is a possible fix. * Characters clipping into each other or text/border misalignments are not bugs caused by btop, but most likely a fontconfig or terminal problem where the braille characters making up the graphs aren't rendered correctly. * Look to the creators of the terminal emulator you use to fix these issues if the previously mentioned fixes don't work for you. ## Screenshots #### Main UI showing details for a selected process ![Screenshot 1](Img/normal.png) #### Main UI in TTY mode ![Screenshot 2](Img/tty.png) #### Main UI with custom options ![Screenshot 3](Img/alt.png) #### Main-menu ![Screenshot 3](Img/main-menu.png) #### Options-menu ![Screenshot 4](Img/options-menu.png) #### Help-menu ![Screenshot 5](Img/help-menu.png) ## Installation **Binaries for Linux are statically compiled with musl and work on kernel releases 2.6.39 and newer** 1. **Download btop-(VERSION)-(ARCH)-(PLATFORM).tbz from [latest release](https://github.com/aristocratos/btop/releases/latest) and unpack to a new folder** **Notice! Use x86_64 for 64-bit x86 systems, i486 and i686 are 32-bit!** 2. **Install (from created folder)** * **Run:** ```bash # use "make install PREFIX=/target/dir" to set target, default: /usr/local # only use "sudo" when installing to a NON user owned directory sudo make install ``` 3. **(Optional/Required for Intel GPU and CPU wattage) Set extended capabilities or suid bit to btop** Enables signal sending to any process without starting with `sudo` and can prevent /proc read permissions problems on some systems. Is required for Intel GPU support and CPU wattage monitoring. * **Run:** ```bash # run after make install and use same PREFIX if any was used at install sudo make setcap ``` * **or** ```bash # run after make install and use same PREFIX if any was used at install # set SU_USER and SU_GROUP to select user and group, default is root:root sudo make setuid ``` * **Uninstall** * **Run:** ```bash sudo make uninstall ``` * **Show help** ```bash make help ``` **Binary release (from native os repo)** * **openSUSE** * **Tumbleweed:** ```bash sudo zypper in btop ``` * For all other versions, see [openSUSE Software: btop](https://software.opensuse.org/package/btop) * **Fedora** ```bash sudo dnf install btop ``` * **RHEL/Rocky/AlmaLinux 8+** ```bash sudo dnf install epel-release sudo dnf install btop ``` * **FreeBSD** ```sh pkg install btop ``` * **NetBSD** ```sh pkg_add btop ``` **Binary release on Homebrew (macOS (x86_64 & ARM64) / Linux (x86_64))** * **[Homebrew](https://formulae.brew.sh/formula/btop)** ```bash brew install btop ``` ## Compilation Linux Requires at least GCC 11 or Clang 16. The Makefile also needs GNU `coreutils` and `sed` (should already be installed on any modern distribution). ### GPU compatibility Btop++ supports Nvidia and AMD GPUs and Intel IGPUs out of the box on Linux x86_64, provided you have the correct drivers and libraries. Gpu support for Nvidia or AMD will not work when static linking glibc (or musl, etc.)! For x86_64 Linux the flag `GPU_SUPPORT` is automatically set to `true`, to manually disable gpu support set the flag to false, like: `make GPU_SUPPORT=false` (or `cmake -DBTOP_GPU=false` with CMake) * **NVIDIA** You must use an official NVIDIA driver, both the closed-source and [open-source](https://github.com/NVIDIA/open-gpu-kernel-modules) ones have been verified to work. In addition to that you must also have the `nvidia-ml` dynamic library installed, which should be included with the driver package of your distribution. * **AMD** AMDGPU data is queried using the [ROCm SMI](https://github.com/rocm/rocm_smi_lib) library, which may or may not be packaged for your distribution. If your distribution doesn't provide a package, btop++ is statically linked to ROCm SMI with the `RSMI_STATIC=true` make flag. This flag expects the ROCm SMI source code in `lib/rocm_smi_lib`, and compilation will fail if it's not there. The latest tested version is 5.6.x, which can be obtained with the following command: ```bash git clone https://github.com/rocm/rocm_smi_lib.git --depth 1 -b rocm-5.6.x lib/rocm_smi_lib ```
### With Make 1. **Install dependencies (example for Ubuntu 21.04 Hirsute)** ```bash sudo apt install coreutils sed git build-essential gcc-11 g++-11 lowdown ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash make ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=` | To manually set the target architecture | | `GPU_SUPPORT=` | Enable/disable GPU support (Enabled by default on X86_64 Linux) | | `RSMI_STATIC=true` | To statically link the ROCm SMI library used for querying AMDGPU | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manually set which compiler to use | Example: `make ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. Notice! If using LDAP Authentication, usernames will show as UID number for LDAP users if compiling statically with glibc. 4. **Install** ```bash sudo make install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Optional/Required for Intel GPU support and CPU wattage) Set extended capabilities or suid bit to btop** No need for `sudo` to enable signal sending to any process and to prevent /proc read permissions problems on some systems. Also required for Intel GPU monitoring and CPU wattage monitoring. Run after make install and use same PREFIX if any was used at install. ```bash sudo make setcap ``` or Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `root` ```bash sudo make setuid ``` * **Uninstall** ```bash sudo make uninstall ``` * **Remove any object files from source dir** ```bash make clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash make distclean ``` * **Show help** ```bash make help ```
### With CMake (Community maintained) 1. **Install build dependencies** Requires Clang / GCC, CMake, Ninja, Lowdown and Git For example, with Debian Bookworm: ```bash sudo apt install cmake git g++ ninja-build lowdown ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop `````` 3. **Compile** ```bash # Configure cmake -B build -G Ninja # Build cmake --build build ``` This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_STATIC=` | Enables static linking (OFF by default) | | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DBTOP_GPU=` | Enable GPU support (ON by default) | | `-DBTOP_RSMI_STATIC=` | Build and link the ROCm SMI library statically (OFF by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | To force any other compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
## Compilation macOS OSX Requires at least GCC 12 or Clang 16. With GCC, version 12 (or better) is needed for macOS Ventura. If you get linker errors on Ventura you'll need to upgrade your command line tools (Version 14.0) is bugged. The Makefile also needs GNU coreutils and `sed`. Install and use Homebrew or MacPorts package managers for easy dependency installation
### With Make 1. **Install dependencies (example for Homebrew)** ```bash brew install coreutils make gcc@12 lowdown ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manually set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ```
### With CMake (Community maintained) 1. **Install build dependencies** Requires Clang, CMake, Ninja, Lowdown and Git ```bash brew update --quiet brew install cmake git llvm ninja lowdown ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop ``` 3. **Compile** ```bash # Configure export LLVM_PREFIX="$(brew --prefix llvm)" export CXX="$LLVM_PREFIX/bin/clang++" export CPPFLAGS="-I$LLVM_PREFIX/include" export LDFLAGS="-L$LLVM_PREFIX/lib -L$LLVM_PREFIX/lib/c++ -Wl,-rpath,$LLVM_PREFIX/lib/c++ -fuse-ld=$LLVM_PREFIX/bin/ld64.lld" cmake -B build -G Ninja # Build cmake --build build ``` _**Note:** btop uses lots of C++ 20 features, so it's necessary to be specific about the compiler and the standard library. If you get a compile with Apple-Clang or GCC, feel free to add the instructions here._ This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | To force any specific compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
## Compilation FreeBSD Requires at least GCC 11 or Clang 16. Note that GNU make (`gmake`) is required to compile on FreeBSD.
### With gmake 1. **Install dependencies** ```bash sudo pkg install gmake gcc11 coreutils git lowdown ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manually set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ```
### With CMake (Community maintained) 1. **Install build dependencies** Requires Clang / GCC, CMake, Ninja, Lowdown and Git _**Note:** LLVM's libc++ shipped with FreeBSD 13 is too old and cannot compile btop._ FreeBSD 14 and later: ```bash pkg install cmake ninja lowdown ``` FreeBSD 13: ```bash pkg install cmake gcc13 ninja lowdown ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop ``` 3. **Compile** FreeBSD 14 and later: ```bash # Configure cmake -B build -G Ninja # Build cmake --build build ``` FreeBSD 13: ```bash # Configure CXX=g++13 cmake -B build -G Ninja # Build cmake --build build ``` This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_STATIC=` | Enables static linking (OFF by default) | | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | _**Note:** Static linking does not work with GCC._ To force any other compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
## Compilation NetBSD Requires at least GCC 11. Note that GNU make (`gmake`) is required to compile on NetBSD.
### With gmake 1. **Install dependencies** ```bash pkg_add gmake gcc11 coreutils git ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake CXXFLAGS="-DNDEBUG" ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manually set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ```
### With CMake (Community maintained) 1. **Install build dependencies** Requires GCC, CMake, Ninja and Git ```bash pkg_add cmake ninja-build gcc11 coreutils git ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop ``` 3. **Compile** ```bash # Configure cmake -DCMAKE_CXX_COMPILER="/usr/pkg/gcc11/bin/g++" -B build -G Ninja # Build cmake --build build ``` This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | To force any other compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
## Compilation OpenBSD Requires at least GCC 11. Note that GNU make (`gmake`) is required to compile on OpenBSD.
### With gmake 1. **Install dependencies** ```bash pkg_add gmake gcc%11 g++%11 coreutils git lowdown ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake CXX=eg++ ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manually set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ```
### With CMake (Community maintained) 1. **Install build dependencies** Requires GCC, CMake, Ninja, Lowdown and Git _**Note:** LLVM's libc++ shipped with OpenBSD 7.4 is too old and cannot compile btop._ ```bash pkg_add cmake g++%11 git ninja lowdown ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop ``` 3. **Compile** ```bash # Configure CXX=eg++ cmake -B build -G Ninja # Build cmake --build build ``` This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | To force any other compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
## Installing the snap [![btop](https://snapcraft.io/btop/badge.svg)](https://snapcraft.io/btop) ### Note: there are now two snaps available: `btop` and `btop-desktop`. The desktop version is much larger and includes the desktop entries needed to allow for launching `btop` with a click. * **Install the snap** ```bash sudo snap install btop or sudo snap install btop-desktop ``` * **Install the latest snap from the edge channel** ``` sudo snap install btop --edge or sudo snap install btop-desktop --edge ``` * **Connect the interface** ```bash sudo snap connect btop:removable-media or sudo snap connect btop-desktop:removable-media ``` ## Configurability All options changeable from within UI. Config and log files stored in `$XDG_CONFIG_HOME/btop` or `$HOME/.config/btop` folder #### btop.conf: (auto generated if not found) ```bash #? Config file for btop v. 1.2.2 #* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. #* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" color_theme = "Default" #* If the theme set background should be shown, set to False if you want terminal background transparency. theme_background = True #* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. truecolor = True #* Set to true to force tty mode regardless if a real tty has been detected or not. #* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols. force_tty = False #* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets. #* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box. #* Use whitespace " " as separator between different presets. #* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty" presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty" #* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists. #* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift. vim_keys = False #* Rounded corners on boxes, is ignored if TTY mode is ON. rounded_corners = True #* Default symbols to use for graph creation, "braille", "block" or "tty". #* "braille" offers the highest resolution but might not be included in all fonts. #* "block" has half the resolution of braille but uses more common characters. #* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY. #* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view. graph_symbol = "braille" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_cpu = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_mem = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_net = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_proc = "default" #* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace. shown_boxes = "proc cpu mem net" #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. update_ms = 1500 #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", #* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. proc_sorting = "cpu lazy" #* Reverse sorting order, True or False. proc_reversed = False #* Show processes as a tree. proc_tree = False #* Use the cpu graph colors in the process list. proc_colors = True #* Use a darkening gradient in the process list. proc_gradient = True #* If process cpu usage should be of the core it's running on or usage of the total available cpu power. proc_per_core = True #* Show process memory as bytes instead of percent. proc_mem_bytes = True #* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate) proc_info_smaps = False #* Show proc box on left side of screen instead of right. proc_left = False #* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available. #* Select from a list of detected attributes from the options menu. cpu_graph_upper = "total" #* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available. #* Select from a list of detected attributes from the options menu. cpu_graph_lower = "total" #* Toggles if the lower CPU graph should be inverted. cpu_invert_lower = True #* Set to True to completely disable the lower CPU graph. cpu_single_graph = False #* Show cpu box at bottom of screen instead of top. cpu_bottom = False #* Shows the system uptime in the CPU box. show_uptime = True #* Shows the CPU package current power consumption in watts. Requires running `make setcap` or `make setuid` or running with sudo. show_cpu_watts = True #* Show cpu temperature. check_temp = True #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. cpu_sensor = "Auto" #* Show temperatures for cpu cores also if check_temp is True and sensors has been found. show_coretemp = True #* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core. #* Use lm-sensors or similar to see which cores are reporting temperatures on your machine. #* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries. #* Example: "4:0 5:1 6:3" cpu_core_map = "" #* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine". temp_scale = "celsius" #* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024. base_10_sizes = False #* Show CPU frequency. show_cpu_freq = True #* Draw a clock at top of screen, formatting according to strftime, empty string to disable. #* Special formatting: /host = hostname | /user = username | /uptime = system uptime clock_format = "%H:%M" #* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort. background_update = True #* Custom cpu model name, empty string to disable. custom_cpu_name = "" #* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ". #* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user". disks_filter = "exclude=/boot" #* Show graphs instead of meters for memory values. mem_graphs = True #* Show mem box below net box instead of above. mem_below_net = False #* Count ZFS ARC in cached and available memory. zfs_arc_cached = True #* If swap memory should be shown in memory box. show_swap = True #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. swap_disk = True #* If mem box should be split to also show disks info. show_disks = True #* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar. only_physical = True #* Read disks list from /etc/fstab. This also disables only_physical. use_fstab = False #* Set to true to show available disk space for privileged users. disk_free_priv = False #* Toggles if io activity % (disk busy time) should be shown in regular disk usage view. show_io_stat = True #* Toggles io mode for disks, showing big graphs for disk read/write speeds. io_mode = False #* Set to True to show combined read/write io graphs in io mode. io_graph_combined = False #* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ". #* Example: "/mnt/media:100 /:20 /boot:1". io_graph_speeds = "" #* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False. net_download = 100 net_upload = 100 #* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. net_auto = True #* Sync the auto scaling for download and upload to whichever currently has the highest scale. net_sync = False #* Starts with the Network Interface specified here. net_iface = "br0" #* Show battery stats in top right if battery is present. show_battery = True #* Which battery to use if multiple are present. "Auto" for auto detection. selected_battery = "Auto" #* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. log_level = "DEBUG" ``` #### Command line options ```text Usage: btop [OPTIONS] Options: -c, --config Path to a config file -d, --debug Start in debug mode with additional logs and metrics -f, --filter Set an initial process filter --force-utf Override automatic UTF locale detection -l, --low-color Disable true color, 256 colors only -p, --preset Start with a preset (0-9) -t, --tty Force tty mode with ANSI graph symbols and 16 colors only --no-tty Force disable tty mode -u, --update Set an initial update rate in milliseconds -h, --help Show this help message and exit -V, --version Show a version message and exit (more with --version) ``` ## LICENSE [Apache License 2.0](LICENSE) btop-1.4.5/btop.desktop000066400000000000000000000006541506333644200150370ustar00rootroot00000000000000[Desktop Entry] Type=Application Version=1.0 Name=btop++ GenericName=System Monitor GenericName[it]=Monitor di sistema Comment=Resource monitor that shows usage and stats for processor, memory, disks, network and processes Comment[it]=Monitoraggio delle risorse: mostra utilizzo e statistiche per CPU, dischi, rete e processi Icon=btop Exec=btop Terminal=true Categories=System;Monitor;ConsoleOnly; Keywords=system;process;task btop-1.4.5/cmake/000077500000000000000000000000001506333644200135535ustar00rootroot00000000000000btop-1.4.5/cmake/Finddevstat.cmake000066400000000000000000000013601506333644200170300ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find devstat, the Device Statistics Library # if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "MidnightBSD") find_path(devstat_INCLUDE_DIR NAMES devstat.h) find_library(devstat_LIBRARY NAMES devstat) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(devstat REQUIRED_VARS devstat_LIBRARY devstat_INCLUDE_DIR) if(devstat_FOUND AND NOT TARGET devstat::devstat) add_library(devstat::devstat UNKNOWN IMPORTED) set_target_properties(devstat::devstat PROPERTIES IMPORTED_LOCATION "${devstat_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${devstat_INCLUDE_DIR}" ) endif() mark_as_advanced(devstat_INCLUDE_DIR devstat_LIBRARY) endif() btop-1.4.5/cmake/Findelf.cmake000066400000000000000000000012431506333644200161240ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find libelf, the ELF Access Library # if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "MidnightBSD") find_path(elf_INCLUDE_DIR NAMES libelf.h) find_library(elf_LIBRARY NAMES elf) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(elf REQUIRED_VARS elf_LIBRARY elf_INCLUDE_DIR) if(elf_FOUND AND NOT TARGET elf::elf) add_library(elf::elf UNKNOWN IMPORTED) set_target_properties(elf::elf PROPERTIES IMPORTED_LOCATION "${elf_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${elf_INCLUDE_DIR}" ) endif() mark_as_advanced(elf_INCLUDE_DIR elf_LIBRARY) endif() btop-1.4.5/cmake/Findkvm.cmake000066400000000000000000000011331506333644200161510ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find libkvm, the Kernel Data Access Library # if(BSD) find_path(kvm_INCLUDE_DIR NAMES kvm.h) find_library(kvm_LIBRARY NAMES kvm) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(kvm REQUIRED_VARS kvm_LIBRARY kvm_INCLUDE_DIR) if(kvm_FOUND AND NOT TARGET kvm::kvm) add_library(kvm::kvm UNKNOWN IMPORTED) set_target_properties(kvm::kvm PROPERTIES IMPORTED_LOCATION "${kvm_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${kvm_INCLUDE_DIR}" ) endif() mark_as_advanced(kvm_INCLUDE_DIR kvm_LIBRARY) endif() btop-1.4.5/cmake/Findproplib.cmake000066400000000000000000000012641506333644200170300ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find proplib – property container object library # if(BSD) find_path(proplib_INCLUDE_DIR NAMES prop/proplib.h) find_library(proplib_LIBRARY NAMES libprop prop) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(proplib REQUIRED_VARS proplib_LIBRARY proplib_INCLUDE_DIR) if(proplib_FOUND AND NOT TARGET proplib::proplib) add_library(proplib::proplib UNKNOWN IMPORTED) set_target_properties(proplib::proplib PROPERTIES IMPORTED_LOCATION "${proplib_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${proplib_INCLUDE_DIR}" ) endif() mark_as_advanced(proplib_INCLUDE_DIR proplib_LIBRARY) endif() btop-1.4.5/include/000077500000000000000000000000001506333644200141165ustar00rootroot00000000000000btop-1.4.5/include/fmt/000077500000000000000000000000001506333644200147045ustar00rootroot00000000000000btop-1.4.5/include/fmt/LICENSE.rst000066400000000000000000000026271506333644200165270ustar00rootroot00000000000000Copyright (c) 2012 - present, Victor Zverovich and {fmt} contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- Optional exception to the license --- As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into a machine-executable object form of such source code, you may redistribute such embedded portions in such object form without including the above copyright and permission notices. btop-1.4.5/include/fmt/args.h000066400000000000000000000160371506333644200160200ustar00rootroot00000000000000// Formatting library for C++ - dynamic argument lists // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_ARGS_H_ #define FMT_ARGS_H_ #ifndef FMT_MODULE # include // std::reference_wrapper # include // std::unique_ptr # include #endif #include "format.h" // std_string_view FMT_BEGIN_NAMESPACE namespace detail { template struct is_reference_wrapper : std::false_type {}; template struct is_reference_wrapper> : std::true_type {}; template auto unwrap(const T& v) -> const T& { return v; } template auto unwrap(const std::reference_wrapper& v) -> const T& { return static_cast(v); } // node is defined outside dynamic_arg_list to workaround a C2504 bug in MSVC // 2022 (v17.10.0). // // Workaround for clang's -Wweak-vtables. Unlike for regular classes, for // templates it doesn't complain about inability to deduce single translation // unit for placing vtable. So node is made a fake template. template struct node { virtual ~node() = default; std::unique_ptr> next; }; class dynamic_arg_list { template struct typed_node : node<> { T value; template FMT_CONSTEXPR typed_node(const Arg& arg) : value(arg) {} template FMT_CONSTEXPR typed_node(const basic_string_view& arg) : value(arg.data(), arg.size()) {} }; std::unique_ptr> head_; public: template auto push(const Arg& arg) -> const T& { auto new_node = std::unique_ptr>(new typed_node(arg)); auto& value = new_node->value; new_node->next = std::move(head_); head_ = std::move(new_node); return value; } }; } // namespace detail /** * A dynamic list of formatting arguments with storage. * * It can be implicitly converted into `fmt::basic_format_args` for passing * into type-erased formatting functions such as `fmt::vformat`. */ FMT_EXPORT template class dynamic_format_arg_store { private: using char_type = typename Context::char_type; template struct need_copy { static constexpr detail::type mapped_type = detail::mapped_type_constant::value; enum { value = !(detail::is_reference_wrapper::value || std::is_same>::value || std::is_same>::value || (mapped_type != detail::type::cstring_type && mapped_type != detail::type::string_type && mapped_type != detail::type::custom_type)) }; }; template using stored_t = conditional_t< std::is_convertible>::value && !detail::is_reference_wrapper::value, std::basic_string, T>; // Storage of basic_format_arg must be contiguous. std::vector> data_; std::vector> named_info_; // Storage of arguments not fitting into basic_format_arg must grow // without relocation because items in data_ refer to it. detail::dynamic_arg_list dynamic_args_; friend class basic_format_args; auto data() const -> const basic_format_arg* { return named_info_.empty() ? data_.data() : data_.data() + 1; } template void emplace_arg(const T& arg) { data_.emplace_back(arg); } template void emplace_arg(const detail::named_arg& arg) { if (named_info_.empty()) data_.insert(data_.begin(), basic_format_arg(nullptr, 0)); data_.emplace_back(detail::unwrap(arg.value)); auto pop_one = [](std::vector>* data) { data->pop_back(); }; std::unique_ptr>, decltype(pop_one)> guard{&data_, pop_one}; named_info_.push_back({arg.name, static_cast(data_.size() - 2u)}); data_[0] = {named_info_.data(), named_info_.size()}; guard.release(); } public: constexpr dynamic_format_arg_store() = default; operator basic_format_args() const { return basic_format_args(data(), static_cast(data_.size()), !named_info_.empty()); } /** * Adds an argument into the dynamic store for later passing to a formatting * function. * * Note that custom types and string types (but not string views) are copied * into the store dynamically allocating memory if necessary. * * **Example**: * * fmt::dynamic_format_arg_store store; * store.push_back(42); * store.push_back("abc"); * store.push_back(1.5f); * std::string result = fmt::vformat("{} and {} and {}", store); */ template void push_back(const T& arg) { if (detail::const_check(need_copy::value)) emplace_arg(dynamic_args_.push>(arg)); else emplace_arg(detail::unwrap(arg)); } /** * Adds a reference to the argument into the dynamic store for later passing * to a formatting function. * * **Example**: * * fmt::dynamic_format_arg_store store; * char band[] = "Rolling Stones"; * store.push_back(std::cref(band)); * band[9] = 'c'; // Changing str affects the output. * std::string result = fmt::vformat("{}", store); * // result == "Rolling Scones" */ template void push_back(std::reference_wrapper arg) { static_assert( need_copy::value, "objects of built-in types and string views are always copied"); emplace_arg(arg.get()); } /** * Adds named argument into the dynamic store for later passing to a * formatting function. `std::reference_wrapper` is supported to avoid * copying of the argument. The name is always copied into the store. */ template void push_back(const detail::named_arg& arg) { const char_type* arg_name = dynamic_args_.push>(arg.name).c_str(); if (detail::const_check(need_copy::value)) { emplace_arg( fmt::arg(arg_name, dynamic_args_.push>(arg.value))); } else { emplace_arg(fmt::arg(arg_name, arg.value)); } } /// Erase all elements from the store. void clear() { data_.clear(); named_info_.clear(); dynamic_args_ = {}; } /// Reserves space to store at least `new_cap` arguments including /// `new_cap_named` named arguments. void reserve(size_t new_cap, size_t new_cap_named) { FMT_ASSERT(new_cap >= new_cap_named, "set of arguments includes set of named arguments"); data_.reserve(new_cap); named_info_.reserve(new_cap_named); } /// Returns the number of elements in the store. auto size() const noexcept -> size_t { return data_.size(); } }; FMT_END_NAMESPACE #endif // FMT_ARGS_H_ btop-1.4.5/include/fmt/base.h000066400000000000000000003141641506333644200160000ustar00rootroot00000000000000// Formatting library for C++ - the base API for char/UTF-8 // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_BASE_H_ #define FMT_BASE_H_ #if defined(FMT_IMPORT_STD) && !defined(FMT_MODULE) # define FMT_MODULE #endif #ifndef FMT_MODULE # include // CHAR_BIT # include // FILE # include // memcmp # include // std::enable_if #endif // The fmt library version in the form major * 10000 + minor * 100 + patch. #define FMT_VERSION 120000 // Detect compiler versions. #if defined(__clang__) && !defined(__ibmxl__) # define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__) #else # define FMT_CLANG_VERSION 0 #endif #if defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) # define FMT_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) #else # define FMT_GCC_VERSION 0 #endif #if defined(__ICL) # define FMT_ICC_VERSION __ICL #elif defined(__INTEL_COMPILER) # define FMT_ICC_VERSION __INTEL_COMPILER #else # define FMT_ICC_VERSION 0 #endif #if defined(_MSC_VER) # define FMT_MSC_VERSION _MSC_VER #else # define FMT_MSC_VERSION 0 #endif // Detect standard library versions. #ifdef _GLIBCXX_RELEASE # define FMT_GLIBCXX_RELEASE _GLIBCXX_RELEASE #else # define FMT_GLIBCXX_RELEASE 0 #endif #ifdef _LIBCPP_VERSION # define FMT_LIBCPP_VERSION _LIBCPP_VERSION #else # define FMT_LIBCPP_VERSION 0 #endif #ifdef _MSVC_LANG # define FMT_CPLUSPLUS _MSVC_LANG #else # define FMT_CPLUSPLUS __cplusplus #endif // Detect __has_*. #ifdef __has_feature # define FMT_HAS_FEATURE(x) __has_feature(x) #else # define FMT_HAS_FEATURE(x) 0 #endif #ifdef __has_include # define FMT_HAS_INCLUDE(x) __has_include(x) #else # define FMT_HAS_INCLUDE(x) 0 #endif #ifdef __has_builtin # define FMT_HAS_BUILTIN(x) __has_builtin(x) #else # define FMT_HAS_BUILTIN(x) 0 #endif #ifdef __has_cpp_attribute # define FMT_HAS_CPP_ATTRIBUTE(x) __has_cpp_attribute(x) #else # define FMT_HAS_CPP_ATTRIBUTE(x) 0 #endif #define FMT_HAS_CPP14_ATTRIBUTE(attribute) \ (FMT_CPLUSPLUS >= 201402L && FMT_HAS_CPP_ATTRIBUTE(attribute)) #define FMT_HAS_CPP17_ATTRIBUTE(attribute) \ (FMT_CPLUSPLUS >= 201703L && FMT_HAS_CPP_ATTRIBUTE(attribute)) // Detect C++14 relaxed constexpr. #ifdef FMT_USE_CONSTEXPR // Use the provided definition. #elif FMT_GCC_VERSION >= 702 && FMT_CPLUSPLUS >= 201402L // GCC only allows constexpr member functions in non-literal types since 7.2: // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66297. # define FMT_USE_CONSTEXPR 1 #elif FMT_ICC_VERSION # define FMT_USE_CONSTEXPR 0 // https://github.com/fmtlib/fmt/issues/1628 #elif FMT_HAS_FEATURE(cxx_relaxed_constexpr) || FMT_MSC_VERSION >= 1912 # define FMT_USE_CONSTEXPR 1 #else # define FMT_USE_CONSTEXPR 0 #endif #if FMT_USE_CONSTEXPR # define FMT_CONSTEXPR constexpr #else # define FMT_CONSTEXPR #endif // Detect consteval, C++20 constexpr extensions and std::is_constant_evaluated. #if !defined(__cpp_lib_is_constant_evaluated) # define FMT_USE_CONSTEVAL 0 #elif FMT_CPLUSPLUS < 201709L # define FMT_USE_CONSTEVAL 0 #elif FMT_GLIBCXX_RELEASE && FMT_GLIBCXX_RELEASE < 10 # define FMT_USE_CONSTEVAL 0 #elif FMT_LIBCPP_VERSION && FMT_LIBCPP_VERSION < 10000 # define FMT_USE_CONSTEVAL 0 #elif defined(__apple_build_version__) && __apple_build_version__ < 14000029L # define FMT_USE_CONSTEVAL 0 // consteval is broken in Apple clang < 14. #elif FMT_MSC_VERSION && FMT_MSC_VERSION < 1929 # define FMT_USE_CONSTEVAL 0 // consteval is broken in MSVC VS2019 < 16.10. #elif defined(__cpp_consteval) # define FMT_USE_CONSTEVAL 1 #elif FMT_GCC_VERSION >= 1002 || FMT_CLANG_VERSION >= 1101 # define FMT_USE_CONSTEVAL 1 #else # define FMT_USE_CONSTEVAL 0 #endif #if FMT_USE_CONSTEVAL # define FMT_CONSTEVAL consteval # define FMT_CONSTEXPR20 constexpr #else # define FMT_CONSTEVAL # define FMT_CONSTEXPR20 #endif // Check if exceptions are disabled. #ifdef FMT_USE_EXCEPTIONS // Use the provided definition. #elif defined(__GNUC__) && !defined(__EXCEPTIONS) # define FMT_USE_EXCEPTIONS 0 #elif defined(__clang__) && !defined(__cpp_exceptions) # define FMT_USE_EXCEPTIONS 0 #elif FMT_MSC_VERSION && !_HAS_EXCEPTIONS # define FMT_USE_EXCEPTIONS 0 #else # define FMT_USE_EXCEPTIONS 1 #endif #if FMT_USE_EXCEPTIONS # define FMT_TRY try # define FMT_CATCH(x) catch (x) #else # define FMT_TRY if (true) # define FMT_CATCH(x) if (false) #endif #ifdef FMT_NO_UNIQUE_ADDRESS // Use the provided definition. #elif FMT_CPLUSPLUS < 202002L // Not supported. #elif FMT_HAS_CPP_ATTRIBUTE(no_unique_address) # define FMT_NO_UNIQUE_ADDRESS [[no_unique_address]] // VS2019 v16.10 and later except clang-cl (https://reviews.llvm.org/D110485). #elif FMT_MSC_VERSION >= 1929 && !FMT_CLANG_VERSION # define FMT_NO_UNIQUE_ADDRESS [[msvc::no_unique_address]] #endif #ifndef FMT_NO_UNIQUE_ADDRESS # define FMT_NO_UNIQUE_ADDRESS #endif #if FMT_HAS_CPP17_ATTRIBUTE(fallthrough) # define FMT_FALLTHROUGH [[fallthrough]] #elif defined(__clang__) # define FMT_FALLTHROUGH [[clang::fallthrough]] #elif FMT_GCC_VERSION >= 700 && \ (!defined(__EDG_VERSION__) || __EDG_VERSION__ >= 520) # define FMT_FALLTHROUGH [[gnu::fallthrough]] #else # define FMT_FALLTHROUGH #endif // Disable [[noreturn]] on MSVC/NVCC because of bogus unreachable code warnings. #if FMT_HAS_CPP_ATTRIBUTE(noreturn) && !FMT_MSC_VERSION && !defined(__NVCC__) # define FMT_NORETURN [[noreturn]] #else # define FMT_NORETURN #endif #ifdef FMT_NODISCARD // Use the provided definition. #elif FMT_HAS_CPP17_ATTRIBUTE(nodiscard) # define FMT_NODISCARD [[nodiscard]] #else # define FMT_NODISCARD #endif #if FMT_GCC_VERSION || FMT_CLANG_VERSION # define FMT_VISIBILITY(value) __attribute__((visibility(value))) #else # define FMT_VISIBILITY(value) #endif // Detect pragmas. #define FMT_PRAGMA_IMPL(x) _Pragma(#x) #if FMT_GCC_VERSION >= 504 && !defined(__NVCOMPILER) // Workaround a _Pragma bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59884 // and an nvhpc warning: https://github.com/fmtlib/fmt/pull/2582. # define FMT_PRAGMA_GCC(x) FMT_PRAGMA_IMPL(GCC x) #else # define FMT_PRAGMA_GCC(x) #endif #if FMT_CLANG_VERSION # define FMT_PRAGMA_CLANG(x) FMT_PRAGMA_IMPL(clang x) #else # define FMT_PRAGMA_CLANG(x) #endif #if FMT_MSC_VERSION # define FMT_MSC_WARNING(...) __pragma(warning(__VA_ARGS__)) #else # define FMT_MSC_WARNING(...) #endif // Enable minimal optimizations for more compact code in debug mode. FMT_PRAGMA_GCC(push_options) #if !defined(__OPTIMIZE__) && !defined(__CUDACC__) && !defined(FMT_MODULE) FMT_PRAGMA_GCC(optimize("Og")) # define FMT_GCC_OPTIMIZED #endif FMT_PRAGMA_CLANG(diagnostic push) #ifdef FMT_ALWAYS_INLINE // Use the provided definition. #elif FMT_GCC_VERSION || FMT_CLANG_VERSION # define FMT_ALWAYS_INLINE inline __attribute__((always_inline)) #else # define FMT_ALWAYS_INLINE inline #endif // A version of FMT_ALWAYS_INLINE to prevent code bloat in debug mode. #if defined(NDEBUG) || defined(FMT_GCC_OPTIMIZED) # define FMT_INLINE FMT_ALWAYS_INLINE #else # define FMT_INLINE inline #endif #ifndef FMT_BEGIN_NAMESPACE # define FMT_BEGIN_NAMESPACE \ namespace fmt { \ inline namespace v12 { # define FMT_END_NAMESPACE \ } \ } #endif #ifndef FMT_EXPORT # define FMT_EXPORT # define FMT_BEGIN_EXPORT # define FMT_END_EXPORT #endif #ifdef _WIN32 # define FMT_WIN32 1 #else # define FMT_WIN32 0 #endif #if !defined(FMT_HEADER_ONLY) && FMT_WIN32 # if defined(FMT_LIB_EXPORT) # define FMT_API __declspec(dllexport) # elif defined(FMT_SHARED) # define FMT_API __declspec(dllimport) # endif #elif defined(FMT_LIB_EXPORT) || defined(FMT_SHARED) # define FMT_API FMT_VISIBILITY("default") #endif #ifndef FMT_API # define FMT_API #endif #ifndef FMT_OPTIMIZE_SIZE # define FMT_OPTIMIZE_SIZE 0 #endif // FMT_BUILTIN_TYPE=0 may result in smaller library size at the cost of higher // per-call binary size by passing built-in types through the extension API. #ifndef FMT_BUILTIN_TYPES # define FMT_BUILTIN_TYPES 1 #endif #define FMT_APPLY_VARIADIC(expr) \ using unused = int[]; \ (void)unused { 0, (expr, 0)... } FMT_BEGIN_NAMESPACE // Implementations of enable_if_t and other metafunctions for older systems. template using enable_if_t = typename std::enable_if::type; template using conditional_t = typename std::conditional::type; template using bool_constant = std::integral_constant; template using remove_reference_t = typename std::remove_reference::type; template using remove_const_t = typename std::remove_const::type; template using remove_cvref_t = typename std::remove_cv>::type; template using make_unsigned_t = typename std::make_unsigned::type; template using underlying_t = typename std::underlying_type::type; template using decay_t = typename std::decay::type; using nullptr_t = decltype(nullptr); #if (FMT_GCC_VERSION && FMT_GCC_VERSION < 500) || FMT_MSC_VERSION // A workaround for gcc 4.9 & MSVC v141 to make void_t work in a SFINAE context. template struct void_t_impl { using type = void; }; template using void_t = typename void_t_impl::type; #else template using void_t = void; #endif struct monostate { constexpr monostate() {} }; // An enable_if helper to be used in template parameters which results in much // shorter symbols: https://godbolt.org/z/sWw4vP. Extra parentheses are needed // to workaround a bug in MSVC 2019 (see #1140 and #1186). #ifdef FMT_DOC # define FMT_ENABLE_IF(...) #else # define FMT_ENABLE_IF(...) fmt::enable_if_t<(__VA_ARGS__), int> = 0 #endif template constexpr auto min_of(T a, T b) -> T { return a < b ? a : b; } template constexpr auto max_of(T a, T b) -> T { return a > b ? a : b; } FMT_NORETURN FMT_API void assert_fail(const char* file, int line, const char* message); namespace detail { // Suppresses "unused variable" warnings with the method described in // https://herbsutter.com/2009/10/18/mailbag-shutting-up-compiler-warnings/. // (void)var does not work on many Intel compilers. template FMT_CONSTEXPR void ignore_unused(const T&...) {} constexpr auto is_constant_evaluated(bool default_value = false) noexcept -> bool { // Workaround for incompatibility between clang 14 and libstdc++ consteval-based // std::is_constant_evaluated: https://github.com/fmtlib/fmt/issues/3247. #if FMT_CPLUSPLUS >= 202002L && FMT_GLIBCXX_RELEASE >= 12 && \ (FMT_CLANG_VERSION >= 1400 && FMT_CLANG_VERSION < 1500) ignore_unused(default_value); return __builtin_is_constant_evaluated(); #elif defined(__cpp_lib_is_constant_evaluated) ignore_unused(default_value); return std::is_constant_evaluated(); #else return default_value; #endif } // Suppresses "conditional expression is constant" warnings. template FMT_ALWAYS_INLINE constexpr auto const_check(T val) -> T { return val; } FMT_NORETURN FMT_API void assert_fail(const char* file, int line, const char* message); #if defined(FMT_ASSERT) // Use the provided definition. #elif defined(NDEBUG) // FMT_ASSERT is not empty to avoid -Wempty-body. # define FMT_ASSERT(condition, message) \ fmt::detail::ignore_unused((condition), (message)) #else # define FMT_ASSERT(condition, message) \ ((condition) /* void() fails with -Winvalid-constexpr on clang 4.0.1 */ \ ? (void)0 \ : ::fmt::assert_fail(__FILE__, __LINE__, (message))) #endif #ifdef FMT_USE_INT128 // Use the provided definition. #elif defined(__SIZEOF_INT128__) && !defined(__NVCC__) && \ !(FMT_CLANG_VERSION && FMT_MSC_VERSION) # define FMT_USE_INT128 1 using int128_opt = __int128_t; // An optional native 128-bit integer. using uint128_opt = __uint128_t; inline auto map(int128_opt x) -> int128_opt { return x; } inline auto map(uint128_opt x) -> uint128_opt { return x; } #else # define FMT_USE_INT128 0 #endif #if !FMT_USE_INT128 enum class int128_opt {}; enum class uint128_opt {}; // Reduce template instantiations. inline auto map(int128_opt) -> monostate { return {}; } inline auto map(uint128_opt) -> monostate { return {}; } #endif #ifndef FMT_USE_BITINT # define FMT_USE_BITINT (FMT_CLANG_VERSION >= 1500) #endif #if FMT_USE_BITINT FMT_PRAGMA_CLANG(diagnostic ignored "-Wbit-int-extension") template using bitint = _BitInt(N); template using ubitint = unsigned _BitInt(N); #else template struct bitint {}; template struct ubitint {}; #endif // FMT_USE_BITINT // Casts a nonnegative integer to unsigned. template FMT_CONSTEXPR auto to_unsigned(Int value) -> make_unsigned_t { FMT_ASSERT(std::is_unsigned::value || value >= 0, "negative value"); return static_cast>(value); } template using unsigned_char = conditional_t; // A heuristic to detect std::string and std::[experimental::]string_view. // It is mainly used to avoid dependency on <[experimental/]string_view>. template struct is_std_string_like : std::false_type {}; template struct is_std_string_like().find_first_of( typename T::value_type(), 0))>> : std::is_convertible().data()), const typename T::value_type*> {}; // Check if the literal encoding is UTF-8. enum { is_utf8_enabled = "\u00A7"[1] == '\xA7' }; enum { use_utf8 = !FMT_WIN32 || is_utf8_enabled }; #ifndef FMT_UNICODE # define FMT_UNICODE 1 #endif static_assert(!FMT_UNICODE || use_utf8, "Unicode support requires compiling with /utf-8"); template constexpr auto narrow(T*) -> char* { return nullptr; } constexpr FMT_ALWAYS_INLINE auto narrow(const char* s) -> const char* { return s; } template FMT_CONSTEXPR auto compare(const Char* s1, const Char* s2, size_t n) -> int { if (!is_constant_evaluated() && sizeof(Char) == 1) return memcmp(s1, s2, n); for (; n != 0; ++s1, ++s2, --n) { if (*s1 < *s2) return -1; if (*s1 > *s2) return 1; } return 0; } namespace adl { using namespace std; template auto invoke_back_inserter() -> decltype(back_inserter(std::declval())); } // namespace adl template struct is_back_insert_iterator : std::false_type {}; template struct is_back_insert_iterator< It, bool_constant()), It>::value>> : std::true_type {}; // Extracts a reference to the container from *insert_iterator. template inline FMT_CONSTEXPR20 auto get_container(OutputIt it) -> typename OutputIt::container_type& { struct accessor : OutputIt { FMT_CONSTEXPR20 accessor(OutputIt base) : OutputIt(base) {} using OutputIt::container; }; return *accessor(it).container; } } // namespace detail // Parsing-related public API and forward declarations. FMT_BEGIN_EXPORT /** * An implementation of `std::basic_string_view` for pre-C++17. It provides a * subset of the API. `fmt::basic_string_view` is used for format strings even * if `std::basic_string_view` is available to prevent issues when a library is * compiled with a different `-std` option than the client code (which is not * recommended). */ template class basic_string_view { private: const Char* data_; size_t size_; public: using value_type = Char; using iterator = const Char*; constexpr basic_string_view() noexcept : data_(nullptr), size_(0) {} /// Constructs a string view object from a C string and a size. constexpr basic_string_view(const Char* s, size_t count) noexcept : data_(s), size_(count) {} constexpr basic_string_view(nullptr_t) = delete; /// Constructs a string view object from a C string. #if FMT_GCC_VERSION FMT_ALWAYS_INLINE #endif FMT_CONSTEXPR20 basic_string_view(const Char* s) : data_(s) { #if FMT_HAS_BUILTIN(__builtin_strlen) || FMT_GCC_VERSION || FMT_CLANG_VERSION if (std::is_same::value && !detail::is_constant_evaluated()) { size_ = __builtin_strlen(detail::narrow(s)); // strlen is not constexpr. return; } #endif size_t len = 0; while (*s++) ++len; size_ = len; } /// Constructs a string view from a `std::basic_string` or a /// `std::basic_string_view` object. template ::value&& std::is_same< typename S::value_type, Char>::value)> FMT_CONSTEXPR basic_string_view(const S& s) noexcept : data_(s.data()), size_(s.size()) {} /// Returns a pointer to the string data. constexpr auto data() const noexcept -> const Char* { return data_; } /// Returns the string size. constexpr auto size() const noexcept -> size_t { return size_; } constexpr auto begin() const noexcept -> iterator { return data_; } constexpr auto end() const noexcept -> iterator { return data_ + size_; } constexpr auto operator[](size_t pos) const noexcept -> const Char& { return data_[pos]; } FMT_CONSTEXPR void remove_prefix(size_t n) noexcept { data_ += n; size_ -= n; } FMT_CONSTEXPR auto starts_with(basic_string_view sv) const noexcept -> bool { return size_ >= sv.size_ && detail::compare(data_, sv.data_, sv.size_) == 0; } FMT_CONSTEXPR auto starts_with(Char c) const noexcept -> bool { return size_ >= 1 && *data_ == c; } FMT_CONSTEXPR auto starts_with(const Char* s) const -> bool { return starts_with(basic_string_view(s)); } FMT_CONSTEXPR auto compare(basic_string_view other) const -> int { int result = detail::compare(data_, other.data_, min_of(size_, other.size_)); if (result != 0) return result; return size_ == other.size_ ? 0 : (size_ < other.size_ ? -1 : 1); } FMT_CONSTEXPR friend auto operator==(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) == 0; } friend auto operator!=(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) != 0; } friend auto operator<(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) < 0; } friend auto operator<=(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) <= 0; } friend auto operator>(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) > 0; } friend auto operator>=(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) >= 0; } }; using string_view = basic_string_view; template class basic_appender; using appender = basic_appender; // Checks whether T is a container with contiguous storage. template struct is_contiguous : std::false_type {}; class context; template class generic_context; template class parse_context; // Longer aliases for C++20 compatibility. template using basic_format_parse_context = parse_context; using format_parse_context = parse_context; template using basic_format_context = conditional_t::value, context, generic_context>; using format_context = context; template using buffered_context = conditional_t::value, context, generic_context, Char>>; template class basic_format_arg; template class basic_format_args; // A separate type would result in shorter symbols but break ABI compatibility // between clang and gcc on ARM (#1919). using format_args = basic_format_args; // A formatter for objects of type T. template struct formatter { // A deleted default constructor indicates a disabled formatter. formatter() = delete; }; /// Reports a format error at compile time or, via a `format_error` exception, /// at runtime. // This function is intentionally not constexpr to give a compile-time error. FMT_NORETURN FMT_API void report_error(const char* message); enum class presentation_type : unsigned char { // Common specifiers: none = 0, debug = 1, // '?' string = 2, // 's' (string, bool) // Integral, bool and character specifiers: dec = 3, // 'd' hex, // 'x' or 'X' oct, // 'o' bin, // 'b' or 'B' chr, // 'c' // String and pointer specifiers: pointer = 3, // 'p' // Floating-point specifiers: exp = 1, // 'e' or 'E' (1 since there is no FP debug presentation) fixed, // 'f' or 'F' general, // 'g' or 'G' hexfloat // 'a' or 'A' }; enum class align { none, left, right, center, numeric }; enum class sign { none, minus, plus, space }; enum class arg_id_kind { none, index, name }; // Basic format specifiers for built-in and string types. class basic_specs { private: // Data is arranged as follows: // // 0 1 2 3 // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // |type |align| w | p | s |u|#|L| f | unused | // +-----+-----+---+---+---+-+-+-+-----+---------------------------+ // // w - dynamic width info // p - dynamic precision info // s - sign // u - uppercase (e.g. 'X' for 'x') // # - alternate form ('#') // L - localized // f - fill size // // Bitfields are not used because of compiler bugs such as gcc bug 61414. enum : unsigned { type_mask = 0x00007, align_mask = 0x00038, width_mask = 0x000C0, precision_mask = 0x00300, sign_mask = 0x00C00, uppercase_mask = 0x01000, alternate_mask = 0x02000, localized_mask = 0x04000, fill_size_mask = 0x38000, align_shift = 3, width_shift = 6, precision_shift = 8, sign_shift = 10, fill_size_shift = 15, max_fill_size = 4 }; unsigned data_ = 1 << fill_size_shift; static_assert(sizeof(basic_specs::data_) * CHAR_BIT >= 18, ""); // Character (code unit) type is erased to prevent template bloat. char fill_data_[max_fill_size] = {' '}; FMT_CONSTEXPR void set_fill_size(size_t size) { data_ = (data_ & ~fill_size_mask) | (static_cast(size) << fill_size_shift); } public: constexpr auto type() const -> presentation_type { return static_cast(data_ & type_mask); } FMT_CONSTEXPR void set_type(presentation_type t) { data_ = (data_ & ~type_mask) | static_cast(t); } constexpr auto align() const -> align { return static_cast((data_ & align_mask) >> align_shift); } FMT_CONSTEXPR void set_align(fmt::align a) { data_ = (data_ & ~align_mask) | (static_cast(a) << align_shift); } constexpr auto dynamic_width() const -> arg_id_kind { return static_cast((data_ & width_mask) >> width_shift); } FMT_CONSTEXPR void set_dynamic_width(arg_id_kind w) { data_ = (data_ & ~width_mask) | (static_cast(w) << width_shift); } FMT_CONSTEXPR auto dynamic_precision() const -> arg_id_kind { return static_cast((data_ & precision_mask) >> precision_shift); } FMT_CONSTEXPR void set_dynamic_precision(arg_id_kind p) { data_ = (data_ & ~precision_mask) | (static_cast(p) << precision_shift); } constexpr auto dynamic() const -> bool { return (data_ & (width_mask | precision_mask)) != 0; } constexpr auto sign() const -> sign { return static_cast((data_ & sign_mask) >> sign_shift); } FMT_CONSTEXPR void set_sign(fmt::sign s) { data_ = (data_ & ~sign_mask) | (static_cast(s) << sign_shift); } constexpr auto upper() const -> bool { return (data_ & uppercase_mask) != 0; } FMT_CONSTEXPR void set_upper() { data_ |= uppercase_mask; } constexpr auto alt() const -> bool { return (data_ & alternate_mask) != 0; } FMT_CONSTEXPR void set_alt() { data_ |= alternate_mask; } FMT_CONSTEXPR void clear_alt() { data_ &= ~alternate_mask; } constexpr auto localized() const -> bool { return (data_ & localized_mask) != 0; } FMT_CONSTEXPR void set_localized() { data_ |= localized_mask; } constexpr auto fill_size() const -> size_t { return (data_ & fill_size_mask) >> fill_size_shift; } template ::value)> constexpr auto fill() const -> const Char* { return fill_data_; } template ::value)> constexpr auto fill() const -> const Char* { return nullptr; } template constexpr auto fill_unit() const -> Char { using uchar = unsigned char; return static_cast(static_cast(fill_data_[0]) | (static_cast(fill_data_[1]) << 8) | (static_cast(fill_data_[2]) << 16)); } FMT_CONSTEXPR void set_fill(char c) { fill_data_[0] = c; set_fill_size(1); } template FMT_CONSTEXPR void set_fill(basic_string_view s) { auto size = s.size(); set_fill_size(size); if (size == 1) { unsigned uchar = static_cast>(s[0]); fill_data_[0] = static_cast(uchar); fill_data_[1] = static_cast(uchar >> 8); fill_data_[2] = static_cast(uchar >> 16); return; } FMT_ASSERT(size <= max_fill_size, "invalid fill"); for (size_t i = 0; i < size; ++i) fill_data_[i & 3] = static_cast(s[i]); } FMT_CONSTEXPR void copy_fill_from(const basic_specs& specs) { set_fill_size(specs.fill_size()); for (size_t i = 0; i < max_fill_size; ++i) fill_data_[i] = specs.fill_data_[i]; } }; // Format specifiers for built-in and string types. struct format_specs : basic_specs { int width; int precision; constexpr format_specs() : width(0), precision(-1) {} }; /** * Parsing context consisting of a format string range being parsed and an * argument counter for automatic indexing. */ template class parse_context { private: basic_string_view fmt_; int next_arg_id_; enum { use_constexpr_cast = !FMT_GCC_VERSION || FMT_GCC_VERSION >= 1200 }; FMT_CONSTEXPR void do_check_arg_id(int arg_id); public: using char_type = Char; using iterator = const Char*; constexpr explicit parse_context(basic_string_view fmt, int next_arg_id = 0) : fmt_(fmt), next_arg_id_(next_arg_id) {} /// Returns an iterator to the beginning of the format string range being /// parsed. constexpr auto begin() const noexcept -> iterator { return fmt_.begin(); } /// Returns an iterator past the end of the format string range being parsed. constexpr auto end() const noexcept -> iterator { return fmt_.end(); } /// Advances the begin iterator to `it`. FMT_CONSTEXPR void advance_to(iterator it) { fmt_.remove_prefix(detail::to_unsigned(it - begin())); } /// Reports an error if using the manual argument indexing; otherwise returns /// the next argument index and switches to the automatic indexing. FMT_CONSTEXPR auto next_arg_id() -> int { if (next_arg_id_ < 0) { report_error("cannot switch from manual to automatic argument indexing"); return 0; } int id = next_arg_id_++; do_check_arg_id(id); return id; } /// Reports an error if using the automatic argument indexing; otherwise /// switches to the manual indexing. FMT_CONSTEXPR void check_arg_id(int id) { if (next_arg_id_ > 0) { report_error("cannot switch from automatic to manual argument indexing"); return; } next_arg_id_ = -1; do_check_arg_id(id); } FMT_CONSTEXPR void check_arg_id(basic_string_view) { next_arg_id_ = -1; } FMT_CONSTEXPR void check_dynamic_spec(int arg_id); }; #ifndef FMT_USE_LOCALE # define FMT_USE_LOCALE (FMT_OPTIMIZE_SIZE <= 1) #endif // A type-erased reference to std::locale to avoid the heavy include. class locale_ref { #if FMT_USE_LOCALE private: const void* locale_; // A type-erased pointer to std::locale. public: constexpr locale_ref() : locale_(nullptr) {} template locale_ref(const Locale& loc); inline explicit operator bool() const noexcept { return locale_ != nullptr; } #endif // FMT_USE_LOCALE public: template auto get() const -> Locale; }; FMT_END_EXPORT namespace detail { // Specifies if `T` is a code unit type. template struct is_code_unit : std::false_type {}; template <> struct is_code_unit : std::true_type {}; template <> struct is_code_unit : std::true_type {}; template <> struct is_code_unit : std::true_type {}; template <> struct is_code_unit : std::true_type {}; #ifdef __cpp_char8_t template <> struct is_code_unit : bool_constant {}; #endif // Constructs fmt::basic_string_view from types implicitly convertible // to it, deducing Char. Explicitly convertible types such as the ones returned // from FMT_STRING are intentionally excluded. template ::value)> constexpr auto to_string_view(const Char* s) -> basic_string_view { return s; } template ::value)> constexpr auto to_string_view(const T& s) -> basic_string_view { return s; } template constexpr auto to_string_view(basic_string_view s) -> basic_string_view { return s; } template struct has_to_string_view : std::false_type {}; // detail:: is intentional since to_string_view is not an extension point. template struct has_to_string_view< T, void_t()))>> : std::true_type {}; /// String's character (code unit) type. detail:: is intentional to prevent ADL. template ()))> using char_t = typename V::value_type; enum class type { none_type, // Integer types should go first, int_type, uint_type, long_long_type, ulong_long_type, int128_type, uint128_type, bool_type, char_type, last_integer_type = char_type, // followed by floating-point types. float_type, double_type, long_double_type, last_numeric_type = long_double_type, cstring_type, string_type, pointer_type, custom_type }; // Maps core type T to the corresponding type enum constant. template struct type_constant : std::integral_constant {}; #define FMT_TYPE_CONSTANT(Type, constant) \ template \ struct type_constant \ : std::integral_constant {} FMT_TYPE_CONSTANT(int, int_type); FMT_TYPE_CONSTANT(unsigned, uint_type); FMT_TYPE_CONSTANT(long long, long_long_type); FMT_TYPE_CONSTANT(unsigned long long, ulong_long_type); FMT_TYPE_CONSTANT(int128_opt, int128_type); FMT_TYPE_CONSTANT(uint128_opt, uint128_type); FMT_TYPE_CONSTANT(bool, bool_type); FMT_TYPE_CONSTANT(Char, char_type); FMT_TYPE_CONSTANT(float, float_type); FMT_TYPE_CONSTANT(double, double_type); FMT_TYPE_CONSTANT(long double, long_double_type); FMT_TYPE_CONSTANT(const Char*, cstring_type); FMT_TYPE_CONSTANT(basic_string_view, string_type); FMT_TYPE_CONSTANT(const void*, pointer_type); constexpr auto is_integral_type(type t) -> bool { return t > type::none_type && t <= type::last_integer_type; } constexpr auto is_arithmetic_type(type t) -> bool { return t > type::none_type && t <= type::last_numeric_type; } constexpr auto set(type rhs) -> int { return 1 << static_cast(rhs); } constexpr auto in(type t, int set) -> bool { return ((set >> static_cast(t)) & 1) != 0; } // Bitsets of types. enum { sint_set = set(type::int_type) | set(type::long_long_type) | set(type::int128_type), uint_set = set(type::uint_type) | set(type::ulong_long_type) | set(type::uint128_type), bool_set = set(type::bool_type), char_set = set(type::char_type), float_set = set(type::float_type) | set(type::double_type) | set(type::long_double_type), string_set = set(type::string_type), cstring_set = set(type::cstring_type), pointer_set = set(type::pointer_type) }; struct view {}; template struct is_view : std::false_type {}; template struct is_view> : std::is_base_of {}; template struct named_arg; template struct is_named_arg : std::false_type {}; template struct is_static_named_arg : std::false_type {}; template struct is_named_arg> : std::true_type {}; template struct named_arg : view { const Char* name; const T& value; named_arg(const Char* n, const T& v) : name(n), value(v) {} static_assert(!is_named_arg::value, "nested named arguments"); }; template constexpr auto count() -> int { return B ? 1 : 0; } template constexpr auto count() -> int { return (B1 ? 1 : 0) + count(); } template constexpr auto count_named_args() -> int { return count::value...>(); } template constexpr auto count_static_named_args() -> int { return count::value...>(); } template struct named_arg_info { const Char* name; int id; }; // named_args is non-const to suppress a bogus -Wmaybe-uninitialized in gcc 13. template FMT_CONSTEXPR void check_for_duplicate(named_arg_info* named_args, int named_arg_index, basic_string_view arg_name) { for (int i = 0; i < named_arg_index; ++i) { if (named_args[i].name == arg_name) report_error("duplicate named arg"); } } template ::value)> void init_named_arg(named_arg_info*, int& arg_index, int&, const T&) { ++arg_index; } template ::value)> void init_named_arg(named_arg_info* named_args, int& arg_index, int& named_arg_index, const T& arg) { check_for_duplicate(named_args, named_arg_index, arg.name); named_args[named_arg_index++] = {arg.name, arg_index++}; } template ::value)> FMT_CONSTEXPR void init_static_named_arg(named_arg_info*, int& arg_index, int&) { ++arg_index; } template ::value)> FMT_CONSTEXPR void init_static_named_arg(named_arg_info* named_args, int& arg_index, int& named_arg_index) { check_for_duplicate(named_args, named_arg_index, T::name); named_args[named_arg_index++] = {T::name, arg_index++}; } // To minimize the number of types we need to deal with, long is translated // either to int or to long long depending on its size. enum { long_short = sizeof(long) == sizeof(int) && FMT_BUILTIN_TYPES }; using long_type = conditional_t; using ulong_type = conditional_t; template using format_as_result = remove_cvref_t()))>; template using format_as_member_result = remove_cvref_t::format_as(std::declval()))>; template struct use_format_as : std::false_type {}; // format_as member is only used to avoid injection into the std namespace. template struct use_format_as_member : std::false_type {}; // Only map owning types because mapping views can be unsafe. template struct use_format_as< T, bool_constant>::value>> : std::true_type {}; template struct use_format_as_member< T, bool_constant>::value>> : std::true_type {}; template > using use_formatter = bool_constant<(std::is_class::value || std::is_enum::value || std::is_union::value || std::is_array::value) && !has_to_string_view::value && !is_named_arg::value && !use_format_as::value && !use_format_as_member::value>; template > auto has_formatter_impl(T* p, buffered_context* ctx = nullptr) -> decltype(formatter().format(*p, *ctx), std::true_type()); template auto has_formatter_impl(...) -> std::false_type; // T can be const-qualified to check if it is const-formattable. template constexpr auto has_formatter() -> bool { return decltype(has_formatter_impl(static_cast(nullptr)))::value; } // Maps formatting argument types to natively supported types or user-defined // types with formatters. Returns void on errors to be SFINAE-friendly. template struct type_mapper { static auto map(signed char) -> int; static auto map(unsigned char) -> unsigned; static auto map(short) -> int; static auto map(unsigned short) -> unsigned; static auto map(int) -> int; static auto map(unsigned) -> unsigned; static auto map(long) -> long_type; static auto map(unsigned long) -> ulong_type; static auto map(long long) -> long long; static auto map(unsigned long long) -> unsigned long long; static auto map(int128_opt) -> int128_opt; static auto map(uint128_opt) -> uint128_opt; static auto map(bool) -> bool; template static auto map(bitint) -> conditional_t; template static auto map(ubitint) -> conditional_t; template ::value)> static auto map(T) -> conditional_t< std::is_same::value || std::is_same::value, Char, void>; static auto map(float) -> float; static auto map(double) -> double; static auto map(long double) -> long double; static auto map(Char*) -> const Char*; static auto map(const Char*) -> const Char*; template , FMT_ENABLE_IF(!std::is_pointer::value)> static auto map(const T&) -> conditional_t::value, basic_string_view, void>; static auto map(void*) -> const void*; static auto map(const void*) -> const void*; static auto map(volatile void*) -> const void*; static auto map(const volatile void*) -> const void*; static auto map(nullptr_t) -> const void*; template ::value || std::is_member_pointer::value)> static auto map(const T&) -> void; template ::value)> static auto map(const T& x) -> decltype(map(format_as(x))); template ::value)> static auto map(const T& x) -> decltype(map(formatter::format_as(x))); template ::value)> static auto map(T&) -> conditional_t(), T&, void>; template ::value)> static auto map(const T& named_arg) -> decltype(map(named_arg.value)); }; // detail:: is used to workaround a bug in MSVC 2017. template using mapped_t = decltype(detail::type_mapper::map(std::declval())); // A type constant after applying type_mapper. template using mapped_type_constant = type_constant, Char>; template ::value> using stored_type_constant = std::integral_constant< type, Context::builtin_types || TYPE == type::int_type ? TYPE : type::custom_type>; // A parse context with extra data used only in compile-time checks. template class compile_parse_context : public parse_context { private: int num_args_; const type* types_; using base = parse_context; public: FMT_CONSTEXPR explicit compile_parse_context(basic_string_view fmt, int num_args, const type* types, int next_arg_id = 0) : base(fmt, next_arg_id), num_args_(num_args), types_(types) {} constexpr auto num_args() const -> int { return num_args_; } constexpr auto arg_type(int id) const -> type { return types_[id]; } FMT_CONSTEXPR auto next_arg_id() -> int { int id = base::next_arg_id(); if (id >= num_args_) report_error("argument not found"); return id; } FMT_CONSTEXPR void check_arg_id(int id) { base::check_arg_id(id); if (id >= num_args_) report_error("argument not found"); } using base::check_arg_id; FMT_CONSTEXPR void check_dynamic_spec(int arg_id) { ignore_unused(arg_id); if (arg_id < num_args_ && types_ && !is_integral_type(types_[arg_id])) report_error("width/precision is not integer"); } }; // An argument reference. template union arg_ref { FMT_CONSTEXPR arg_ref(int idx = 0) : index(idx) {} FMT_CONSTEXPR arg_ref(basic_string_view n) : name(n) {} int index; basic_string_view name; }; // Format specifiers with width and precision resolved at formatting rather // than parsing time to allow reusing the same parsed specifiers with // different sets of arguments (precompilation of format strings). template struct dynamic_format_specs : format_specs { arg_ref width_ref; arg_ref precision_ref; }; // Converts a character to ASCII. Returns '\0' on conversion failure. template ::value)> constexpr auto to_ascii(Char c) -> char { return c <= 0xff ? static_cast(c) : '\0'; } // Returns the number of code units in a code point or 1 on error. template FMT_CONSTEXPR auto code_point_length(const Char* begin) -> int { if (const_check(sizeof(Char) != 1)) return 1; auto c = static_cast(*begin); return static_cast((0x3a55000000000000ull >> (2 * (c >> 3))) & 3) + 1; } // Parses the range [begin, end) as an unsigned integer. This function assumes // that the range is non-empty and the first character is a digit. template FMT_CONSTEXPR auto parse_nonnegative_int(const Char*& begin, const Char* end, int error_value) noexcept -> int { FMT_ASSERT(begin != end && '0' <= *begin && *begin <= '9', ""); unsigned value = 0, prev = 0; auto p = begin; do { prev = value; value = value * 10 + unsigned(*p - '0'); ++p; } while (p != end && '0' <= *p && *p <= '9'); auto num_digits = p - begin; begin = p; int digits10 = static_cast(sizeof(int) * CHAR_BIT * 3 / 10); if (num_digits <= digits10) return static_cast(value); // Check for overflow. unsigned max = INT_MAX; return num_digits == digits10 + 1 && prev * 10ull + unsigned(p[-1] - '0') <= max ? static_cast(value) : error_value; } FMT_CONSTEXPR inline auto parse_align(char c) -> align { switch (c) { case '<': return align::left; case '>': return align::right; case '^': return align::center; } return align::none; } template constexpr auto is_name_start(Char c) -> bool { return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || c == '_'; } template FMT_CONSTEXPR auto parse_arg_id(const Char* begin, const Char* end, Handler&& handler) -> const Char* { Char c = *begin; if (c >= '0' && c <= '9') { int index = 0; if (c != '0') index = parse_nonnegative_int(begin, end, INT_MAX); else ++begin; if (begin == end || (*begin != '}' && *begin != ':')) report_error("invalid format string"); else handler.on_index(index); return begin; } if (FMT_OPTIMIZE_SIZE > 1 || !is_name_start(c)) { report_error("invalid format string"); return begin; } auto it = begin; do { ++it; } while (it != end && (is_name_start(*it) || ('0' <= *it && *it <= '9'))); handler.on_name({begin, to_unsigned(it - begin)}); return it; } template struct dynamic_spec_handler { parse_context& ctx; arg_ref& ref; arg_id_kind& kind; FMT_CONSTEXPR void on_index(int id) { ref = id; kind = arg_id_kind::index; ctx.check_arg_id(id); ctx.check_dynamic_spec(id); } FMT_CONSTEXPR void on_name(basic_string_view id) { ref = id; kind = arg_id_kind::name; ctx.check_arg_id(id); } }; template struct parse_dynamic_spec_result { const Char* end; arg_id_kind kind; }; // Parses integer | "{" [arg_id] "}". template FMT_CONSTEXPR auto parse_dynamic_spec(const Char* begin, const Char* end, int& value, arg_ref& ref, parse_context& ctx) -> parse_dynamic_spec_result { FMT_ASSERT(begin != end, ""); auto kind = arg_id_kind::none; if ('0' <= *begin && *begin <= '9') { int val = parse_nonnegative_int(begin, end, -1); if (val == -1) report_error("number is too big"); value = val; } else { if (*begin == '{') { ++begin; if (begin != end) { Char c = *begin; if (c == '}' || c == ':') { int id = ctx.next_arg_id(); ref = id; kind = arg_id_kind::index; ctx.check_dynamic_spec(id); } else { begin = parse_arg_id(begin, end, dynamic_spec_handler{ctx, ref, kind}); } } if (begin != end && *begin == '}') return {++begin, kind}; } report_error("invalid format string"); } return {begin, kind}; } template FMT_CONSTEXPR auto parse_width(const Char* begin, const Char* end, format_specs& specs, arg_ref& width_ref, parse_context& ctx) -> const Char* { auto result = parse_dynamic_spec(begin, end, specs.width, width_ref, ctx); specs.set_dynamic_width(result.kind); return result.end; } template FMT_CONSTEXPR auto parse_precision(const Char* begin, const Char* end, format_specs& specs, arg_ref& precision_ref, parse_context& ctx) -> const Char* { ++begin; if (begin == end) { report_error("invalid precision"); return begin; } auto result = parse_dynamic_spec(begin, end, specs.precision, precision_ref, ctx); specs.set_dynamic_precision(result.kind); return result.end; } enum class state { start, align, sign, hash, zero, width, precision, locale }; // Parses standard format specifiers. template FMT_CONSTEXPR auto parse_format_specs(const Char* begin, const Char* end, dynamic_format_specs& specs, parse_context& ctx, type arg_type) -> const Char* { auto c = '\0'; if (end - begin > 1) { auto next = to_ascii(begin[1]); c = parse_align(next) == align::none ? to_ascii(*begin) : '\0'; } else { if (begin == end) return begin; c = to_ascii(*begin); } struct { state current_state = state::start; FMT_CONSTEXPR void operator()(state s, bool valid = true) { if (current_state >= s || !valid) report_error("invalid format specifier"); current_state = s; } } enter_state; using pres = presentation_type; constexpr auto integral_set = sint_set | uint_set | bool_set | char_set; struct { const Char*& begin; format_specs& specs; type arg_type; FMT_CONSTEXPR auto operator()(pres pres_type, int set) -> const Char* { if (!in(arg_type, set)) report_error("invalid format specifier"); specs.set_type(pres_type); return begin + 1; } } parse_presentation_type{begin, specs, arg_type}; for (;;) { switch (c) { case '<': case '>': case '^': enter_state(state::align); specs.set_align(parse_align(c)); ++begin; break; case '+': case ' ': specs.set_sign(c == ' ' ? sign::space : sign::plus); FMT_FALLTHROUGH; case '-': enter_state(state::sign, in(arg_type, sint_set | float_set)); ++begin; break; case '#': enter_state(state::hash, is_arithmetic_type(arg_type)); specs.set_alt(); ++begin; break; case '0': enter_state(state::zero); if (!is_arithmetic_type(arg_type)) report_error("format specifier requires numeric argument"); if (specs.align() == align::none) { // Ignore 0 if align is specified for compatibility with std::format. specs.set_align(align::numeric); specs.set_fill('0'); } ++begin; break; // clang-format off case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '{': // clang-format on enter_state(state::width); begin = parse_width(begin, end, specs, specs.width_ref, ctx); break; case '.': enter_state(state::precision, in(arg_type, float_set | string_set | cstring_set)); begin = parse_precision(begin, end, specs, specs.precision_ref, ctx); break; case 'L': enter_state(state::locale, is_arithmetic_type(arg_type)); specs.set_localized(); ++begin; break; case 'd': return parse_presentation_type(pres::dec, integral_set); case 'X': specs.set_upper(); FMT_FALLTHROUGH; case 'x': return parse_presentation_type(pres::hex, integral_set); case 'o': return parse_presentation_type(pres::oct, integral_set); case 'B': specs.set_upper(); FMT_FALLTHROUGH; case 'b': return parse_presentation_type(pres::bin, integral_set); case 'E': specs.set_upper(); FMT_FALLTHROUGH; case 'e': return parse_presentation_type(pres::exp, float_set); case 'F': specs.set_upper(); FMT_FALLTHROUGH; case 'f': return parse_presentation_type(pres::fixed, float_set); case 'G': specs.set_upper(); FMT_FALLTHROUGH; case 'g': return parse_presentation_type(pres::general, float_set); case 'A': specs.set_upper(); FMT_FALLTHROUGH; case 'a': return parse_presentation_type(pres::hexfloat, float_set); case 'c': if (arg_type == type::bool_type) report_error("invalid format specifier"); return parse_presentation_type(pres::chr, integral_set); case 's': return parse_presentation_type(pres::string, bool_set | string_set | cstring_set); case 'p': return parse_presentation_type(pres::pointer, pointer_set | cstring_set); case '?': return parse_presentation_type(pres::debug, char_set | string_set | cstring_set); case '}': return begin; default: { if (*begin == '}') return begin; // Parse fill and alignment. auto fill_end = begin + code_point_length(begin); if (end - fill_end <= 0) { report_error("invalid format specifier"); return begin; } if (*begin == '{') { report_error("invalid fill character '{'"); return begin; } auto alignment = parse_align(to_ascii(*fill_end)); enter_state(state::align, alignment != align::none); specs.set_fill( basic_string_view(begin, to_unsigned(fill_end - begin))); specs.set_align(alignment); begin = fill_end + 1; } } if (begin == end) return begin; c = to_ascii(*begin); } } template FMT_CONSTEXPR FMT_INLINE auto parse_replacement_field(const Char* begin, const Char* end, Handler&& handler) -> const Char* { ++begin; if (begin == end) { handler.on_error("invalid format string"); return end; } int arg_id = 0; switch (*begin) { case '}': handler.on_replacement_field(handler.on_arg_id(), begin); return begin + 1; case '{': handler.on_text(begin, begin + 1); return begin + 1; case ':': arg_id = handler.on_arg_id(); break; default: { struct id_adapter { Handler& handler; int arg_id; FMT_CONSTEXPR void on_index(int id) { arg_id = handler.on_arg_id(id); } FMT_CONSTEXPR void on_name(basic_string_view id) { arg_id = handler.on_arg_id(id); } } adapter = {handler, 0}; begin = parse_arg_id(begin, end, adapter); arg_id = adapter.arg_id; Char c = begin != end ? *begin : Char(); if (c == '}') { handler.on_replacement_field(arg_id, begin); return begin + 1; } if (c != ':') { handler.on_error("missing '}' in format string"); return end; } break; } } begin = handler.on_format_specs(arg_id, begin + 1, end); if (begin == end || *begin != '}') return handler.on_error("unknown format specifier"), end; return begin + 1; } template FMT_CONSTEXPR void parse_format_string(basic_string_view fmt, Handler&& handler) { auto begin = fmt.data(), end = begin + fmt.size(); auto p = begin; while (p != end) { auto c = *p++; if (c == '{') { handler.on_text(begin, p - 1); begin = p = parse_replacement_field(p - 1, end, handler); } else if (c == '}') { if (p == end || *p != '}') return handler.on_error("unmatched '}' in format string"); handler.on_text(begin, p); begin = ++p; } } handler.on_text(begin, end); } // Checks char specs and returns true iff the presentation type is char-like. FMT_CONSTEXPR inline auto check_char_specs(const format_specs& specs) -> bool { auto type = specs.type(); if (type != presentation_type::none && type != presentation_type::chr && type != presentation_type::debug) { return false; } if (specs.align() == align::numeric || specs.sign() != sign::none || specs.alt()) { report_error("invalid format specifier for char"); } return true; } // A base class for compile-time strings. struct compile_string {}; template FMT_VISIBILITY("hidden") // Suppress an ld warning on macOS (#3769). FMT_CONSTEXPR auto invoke_parse(parse_context& ctx) -> const Char* { using mapped_type = remove_cvref_t>; constexpr bool formattable = std::is_constructible>::value; if (!formattable) return ctx.begin(); // Error is reported in the value ctor. using formatted_type = conditional_t; return formatter().parse(ctx); } template struct arg_pack {}; template class format_string_checker { private: type types_[max_of(1, NUM_ARGS)]; named_arg_info named_args_[max_of(1, NUM_NAMED_ARGS)]; compile_parse_context context_; using parse_func = auto (*)(parse_context&) -> const Char*; parse_func parse_funcs_[max_of(1, NUM_ARGS)]; public: template FMT_CONSTEXPR explicit format_string_checker(basic_string_view fmt, arg_pack) : types_{mapped_type_constant::value...}, named_args_{}, context_(fmt, NUM_ARGS, types_), parse_funcs_{&invoke_parse...} { int arg_index = 0, named_arg_index = 0; FMT_APPLY_VARIADIC( init_static_named_arg(named_args_, arg_index, named_arg_index)); ignore_unused(arg_index, named_arg_index); } FMT_CONSTEXPR void on_text(const Char*, const Char*) {} FMT_CONSTEXPR auto on_arg_id() -> int { return context_.next_arg_id(); } FMT_CONSTEXPR auto on_arg_id(int id) -> int { context_.check_arg_id(id); return id; } FMT_CONSTEXPR auto on_arg_id(basic_string_view id) -> int { for (int i = 0; i < NUM_NAMED_ARGS; ++i) { if (named_args_[i].name == id) return named_args_[i].id; } if (!DYNAMIC_NAMES) on_error("argument not found"); return -1; } FMT_CONSTEXPR void on_replacement_field(int id, const Char* begin) { on_format_specs(id, begin, begin); // Call parse() on empty specs. } FMT_CONSTEXPR auto on_format_specs(int id, const Char* begin, const Char* end) -> const Char* { context_.advance_to(begin); if (id >= 0 && id < NUM_ARGS) return parse_funcs_[id](context_); // If id is out of range, it means we do not know the type and cannot parse // the format at compile time. Instead, skip over content until we finish // the format spec, accounting for any nested replacements. for (int bracket_count = 0; begin != end && (bracket_count > 0 || *begin != '}'); ++begin) { if (*begin == '{') ++bracket_count; else if (*begin == '}') --bracket_count; } return begin; } FMT_NORETURN FMT_CONSTEXPR void on_error(const char* message) { report_error(message); } }; /// A contiguous memory buffer with an optional growing ability. It is an /// internal class and shouldn't be used directly, only via `memory_buffer`. template class buffer { private: T* ptr_; size_t size_; size_t capacity_; using grow_fun = void (*)(buffer& buf, size_t capacity); grow_fun grow_; protected: // Don't initialize ptr_ since it is not accessed to save a few cycles. FMT_MSC_WARNING(suppress : 26495) FMT_CONSTEXPR buffer(grow_fun grow, size_t sz) noexcept : size_(sz), capacity_(sz), grow_(grow) {} constexpr buffer(grow_fun grow, T* p = nullptr, size_t sz = 0, size_t cap = 0) noexcept : ptr_(p), size_(sz), capacity_(cap), grow_(grow) {} FMT_CONSTEXPR20 ~buffer() = default; buffer(buffer&&) = default; /// Sets the buffer data and capacity. FMT_CONSTEXPR void set(T* buf_data, size_t buf_capacity) noexcept { ptr_ = buf_data; capacity_ = buf_capacity; } public: using value_type = T; using const_reference = const T&; buffer(const buffer&) = delete; void operator=(const buffer&) = delete; auto begin() noexcept -> T* { return ptr_; } auto end() noexcept -> T* { return ptr_ + size_; } auto begin() const noexcept -> const T* { return ptr_; } auto end() const noexcept -> const T* { return ptr_ + size_; } /// Returns the size of this buffer. constexpr auto size() const noexcept -> size_t { return size_; } /// Returns the capacity of this buffer. constexpr auto capacity() const noexcept -> size_t { return capacity_; } /// Returns a pointer to the buffer data (not null-terminated). FMT_CONSTEXPR auto data() noexcept -> T* { return ptr_; } FMT_CONSTEXPR auto data() const noexcept -> const T* { return ptr_; } /// Clears this buffer. FMT_CONSTEXPR void clear() { size_ = 0; } // Tries resizing the buffer to contain `count` elements. If T is a POD type // the new elements may not be initialized. FMT_CONSTEXPR void try_resize(size_t count) { try_reserve(count); size_ = min_of(count, capacity_); } // Tries increasing the buffer capacity to `new_capacity`. It can increase the // capacity by a smaller amount than requested but guarantees there is space // for at least one additional element either by increasing the capacity or by // flushing the buffer if it is full. FMT_CONSTEXPR void try_reserve(size_t new_capacity) { if (new_capacity > capacity_) grow_(*this, new_capacity); } FMT_CONSTEXPR void push_back(const T& value) { try_reserve(size_ + 1); ptr_[size_++] = value; } /// Appends data to the end of the buffer. template // Workaround for MSVC2019 to fix error C2893: Failed to specialize function // template 'void fmt::v11::detail::buffer::append(const U *,const U *)'. #if !FMT_MSC_VERSION || FMT_MSC_VERSION >= 1940 FMT_CONSTEXPR20 #endif void append(const U* begin, const U* end) { while (begin != end) { auto count = to_unsigned(end - begin); try_reserve(size_ + count); auto free_cap = capacity_ - size_; if (free_cap < count) count = free_cap; // A loop is faster than memcpy on small sizes. T* out = ptr_ + size_; for (size_t i = 0; i < count; ++i) out[i] = begin[i]; size_ += count; begin += count; } } template FMT_CONSTEXPR auto operator[](Idx index) -> T& { return ptr_[index]; } template FMT_CONSTEXPR auto operator[](Idx index) const -> const T& { return ptr_[index]; } }; struct buffer_traits { constexpr explicit buffer_traits(size_t) {} constexpr auto count() const -> size_t { return 0; } constexpr auto limit(size_t size) const -> size_t { return size; } }; class fixed_buffer_traits { private: size_t count_ = 0; size_t limit_; public: constexpr explicit fixed_buffer_traits(size_t limit) : limit_(limit) {} constexpr auto count() const -> size_t { return count_; } FMT_CONSTEXPR auto limit(size_t size) -> size_t { size_t n = limit_ > count_ ? limit_ - count_ : 0; count_ += size; return min_of(size, n); } }; // A buffer that writes to an output iterator when flushed. template class iterator_buffer : public Traits, public buffer { private: OutputIt out_; enum { buffer_size = 256 }; T data_[buffer_size]; static FMT_CONSTEXPR void grow(buffer& buf, size_t) { if (buf.size() == buffer_size) static_cast(buf).flush(); } void flush() { auto size = this->size(); this->clear(); const T* begin = data_; const T* end = begin + this->limit(size); while (begin != end) *out_++ = *begin++; } public: explicit iterator_buffer(OutputIt out, size_t n = buffer_size) : Traits(n), buffer(grow, data_, 0, buffer_size), out_(out) {} iterator_buffer(iterator_buffer&& other) noexcept : Traits(other), buffer(grow, data_, 0, buffer_size), out_(other.out_) {} ~iterator_buffer() { // Don't crash if flush fails during unwinding. FMT_TRY { flush(); } FMT_CATCH(...) {} } auto out() -> OutputIt { flush(); return out_; } auto count() const -> size_t { return Traits::count() + this->size(); } }; template class iterator_buffer : public fixed_buffer_traits, public buffer { private: T* out_; enum { buffer_size = 256 }; T data_[buffer_size]; static FMT_CONSTEXPR void grow(buffer& buf, size_t) { if (buf.size() == buf.capacity()) static_cast(buf).flush(); } void flush() { size_t n = this->limit(this->size()); if (this->data() == out_) { out_ += n; this->set(data_, buffer_size); } this->clear(); } public: explicit iterator_buffer(T* out, size_t n = buffer_size) : fixed_buffer_traits(n), buffer(grow, out, 0, n), out_(out) {} iterator_buffer(iterator_buffer&& other) noexcept : fixed_buffer_traits(other), buffer(static_cast(other)), out_(other.out_) { if (this->data() != out_) { this->set(data_, buffer_size); this->clear(); } } ~iterator_buffer() { flush(); } auto out() -> T* { flush(); return out_; } auto count() const -> size_t { return fixed_buffer_traits::count() + this->size(); } }; template class iterator_buffer : public buffer { public: explicit iterator_buffer(T* out, size_t = 0) : buffer([](buffer&, size_t) {}, out, 0, ~size_t()) {} auto out() -> T* { return &*this->end(); } }; template class container_buffer : public buffer { private: using value_type = typename Container::value_type; static FMT_CONSTEXPR void grow(buffer& buf, size_t capacity) { auto& self = static_cast(buf); self.container.resize(capacity); self.set(&self.container[0], capacity); } public: Container& container; explicit container_buffer(Container& c) : buffer(grow, c.size()), container(c) {} }; // A buffer that writes to a container with the contiguous storage. template class iterator_buffer< OutputIt, enable_if_t::value && is_contiguous::value, typename OutputIt::container_type::value_type>> : public container_buffer { private: using base = container_buffer; public: explicit iterator_buffer(typename OutputIt::container_type& c) : base(c) {} explicit iterator_buffer(OutputIt out, size_t = 0) : base(get_container(out)) {} auto out() -> OutputIt { return OutputIt(this->container); } }; // A buffer that counts the number of code units written discarding the output. template class counting_buffer : public buffer { private: enum { buffer_size = 256 }; T data_[buffer_size]; size_t count_ = 0; static FMT_CONSTEXPR void grow(buffer& buf, size_t) { if (buf.size() != buffer_size) return; static_cast(buf).count_ += buf.size(); buf.clear(); } public: FMT_CONSTEXPR counting_buffer() : buffer(grow, data_, 0, buffer_size) {} constexpr auto count() const noexcept -> size_t { return count_ + this->size(); } }; template struct is_back_insert_iterator> : std::true_type {}; template struct has_back_insert_iterator_container_append : std::false_type {}; template struct has_back_insert_iterator_container_append< OutputIt, InputIt, void_t()) .append(std::declval(), std::declval()))>> : std::true_type {}; template struct has_back_insert_iterator_container_insert_at_end : std::false_type {}; template struct has_back_insert_iterator_container_insert_at_end< OutputIt, InputIt, void_t()) .insert(get_container(std::declval()).end(), std::declval(), std::declval()))>> : std::true_type {}; // An optimized version of std::copy with the output value type (T). template ::value&& has_back_insert_iterator_container_append< OutputIt, InputIt>::value)> FMT_CONSTEXPR20 auto copy(InputIt begin, InputIt end, OutputIt out) -> OutputIt { get_container(out).append(begin, end); return out; } template ::value && !has_back_insert_iterator_container_append< OutputIt, InputIt>::value && has_back_insert_iterator_container_insert_at_end< OutputIt, InputIt>::value)> FMT_CONSTEXPR20 auto copy(InputIt begin, InputIt end, OutputIt out) -> OutputIt { auto& c = get_container(out); c.insert(c.end(), begin, end); return out; } template ::value && (has_back_insert_iterator_container_append< OutputIt, InputIt>::value || has_back_insert_iterator_container_insert_at_end< OutputIt, InputIt>::value)))> FMT_CONSTEXPR auto copy(InputIt begin, InputIt end, OutputIt out) -> OutputIt { while (begin != end) *out++ = static_cast(*begin++); return out; } template FMT_CONSTEXPR auto copy(basic_string_view s, OutputIt out) -> OutputIt { return copy(s.begin(), s.end(), out); } template struct is_buffer_appender : std::false_type {}; template struct is_buffer_appender< It, bool_constant< is_back_insert_iterator::value && std::is_base_of, typename It::container_type>::value>> : std::true_type {}; // Maps an output iterator to a buffer. template ::value)> auto get_buffer(OutputIt out) -> iterator_buffer { return iterator_buffer(out); } template ::value)> auto get_buffer(OutputIt out) -> buffer& { return get_container(out); } template auto get_iterator(Buf& buf, OutputIt) -> decltype(buf.out()) { return buf.out(); } template auto get_iterator(buffer&, OutputIt out) -> OutputIt { return out; } // This type is intentionally undefined, only used for errors. template struct type_is_unformattable_for; template struct string_value { const Char* data; size_t size; auto str() const -> basic_string_view { return {data, size}; } }; template struct custom_value { using char_type = typename Context::char_type; void* value; void (*format)(void* arg, parse_context& parse_ctx, Context& ctx); }; template struct named_arg_value { const named_arg_info* data; size_t size; }; struct custom_tag {}; #if !FMT_BUILTIN_TYPES # define FMT_BUILTIN , monostate #else # define FMT_BUILTIN #endif // A formatting argument value. template class value { public: using char_type = typename Context::char_type; union { monostate no_value; int int_value; unsigned uint_value; long long long_long_value; unsigned long long ulong_long_value; int128_opt int128_value; uint128_opt uint128_value; bool bool_value; char_type char_value; float float_value; double double_value; long double long_double_value; const void* pointer; string_value string; custom_value custom; named_arg_value named_args; }; constexpr FMT_INLINE value() : no_value() {} constexpr FMT_INLINE value(signed char x) : int_value(x) {} constexpr FMT_INLINE value(unsigned char x FMT_BUILTIN) : uint_value(x) {} constexpr FMT_INLINE value(signed short x) : int_value(x) {} constexpr FMT_INLINE value(unsigned short x FMT_BUILTIN) : uint_value(x) {} constexpr FMT_INLINE value(int x) : int_value(x) {} constexpr FMT_INLINE value(unsigned x FMT_BUILTIN) : uint_value(x) {} FMT_CONSTEXPR FMT_INLINE value(long x FMT_BUILTIN) : value(long_type(x)) {} FMT_CONSTEXPR FMT_INLINE value(unsigned long x FMT_BUILTIN) : value(ulong_type(x)) {} constexpr FMT_INLINE value(long long x FMT_BUILTIN) : long_long_value(x) {} constexpr FMT_INLINE value(unsigned long long x FMT_BUILTIN) : ulong_long_value(x) {} FMT_INLINE value(int128_opt x FMT_BUILTIN) : int128_value(x) {} FMT_INLINE value(uint128_opt x FMT_BUILTIN) : uint128_value(x) {} constexpr FMT_INLINE value(bool x FMT_BUILTIN) : bool_value(x) {} template constexpr FMT_INLINE value(bitint x FMT_BUILTIN) : long_long_value(x) { static_assert(N <= 64, "unsupported _BitInt"); } template constexpr FMT_INLINE value(ubitint x FMT_BUILTIN) : ulong_long_value(x) { static_assert(N <= 64, "unsupported _BitInt"); } template ::value)> constexpr FMT_INLINE value(T x FMT_BUILTIN) : char_value(x) { static_assert( std::is_same::value || std::is_same::value, "mixing character types is disallowed"); } constexpr FMT_INLINE value(float x FMT_BUILTIN) : float_value(x) {} constexpr FMT_INLINE value(double x FMT_BUILTIN) : double_value(x) {} FMT_INLINE value(long double x FMT_BUILTIN) : long_double_value(x) {} FMT_CONSTEXPR FMT_INLINE value(char_type* x FMT_BUILTIN) { string.data = x; if (is_constant_evaluated()) string.size = 0; } FMT_CONSTEXPR FMT_INLINE value(const char_type* x FMT_BUILTIN) { string.data = x; if (is_constant_evaluated()) string.size = 0; } template , FMT_ENABLE_IF(!std::is_pointer::value)> FMT_CONSTEXPR value(const T& x FMT_BUILTIN) { static_assert(std::is_same::value, "mixing character types is disallowed"); auto sv = to_string_view(x); string.data = sv.data(); string.size = sv.size(); } FMT_INLINE value(void* x FMT_BUILTIN) : pointer(x) {} FMT_INLINE value(const void* x FMT_BUILTIN) : pointer(x) {} FMT_INLINE value(volatile void* x FMT_BUILTIN) : pointer(const_cast(x)) {} FMT_INLINE value(const volatile void* x FMT_BUILTIN) : pointer(const_cast(x)) {} FMT_INLINE value(nullptr_t) : pointer(nullptr) {} template ::value || std::is_member_pointer::value)> value(const T&) { // Formatting of arbitrary pointers is disallowed. If you want to format a // pointer cast it to `void*` or `const void*`. In particular, this forbids // formatting of `[const] volatile char*` printed as bool by iostreams. static_assert(sizeof(T) == 0, "formatting of non-void pointers is disallowed"); } template ::value)> value(const T& x) : value(format_as(x)) {} template ::value)> value(const T& x) : value(formatter::format_as(x)) {} template ::value)> value(const T& named_arg) : value(named_arg.value) {} template ::value || !FMT_BUILTIN_TYPES)> FMT_CONSTEXPR20 FMT_INLINE value(T& x) : value(x, custom_tag()) {} FMT_ALWAYS_INLINE value(const named_arg_info* args, size_t size) : named_args{args, size} {} private: template ())> FMT_CONSTEXPR value(T& x, custom_tag) { using value_type = remove_const_t; // T may overload operator& e.g. std::vector::reference in libc++. if (!is_constant_evaluated()) { custom.value = const_cast(&reinterpret_cast(x)); } else { custom.value = nullptr; #if defined(__cpp_if_constexpr) if constexpr (std::is_same*>::value) custom.value = const_cast(&x); #endif } custom.format = format_custom; } template ())> FMT_CONSTEXPR value(const T&, custom_tag) { // Cannot format an argument; to make type T formattable provide a // formatter specialization: https://fmt.dev/latest/api.html#udt. type_is_unformattable_for _; } // Formats an argument of a custom type, such as a user-defined class. template static void format_custom(void* arg, parse_context& parse_ctx, Context& ctx) { auto f = formatter(); parse_ctx.advance_to(f.parse(parse_ctx)); using qualified_type = conditional_t(), const T, T>; // format must be const for compatibility with std::format and compilation. const auto& cf = f; ctx.advance_to(cf.format(*static_cast(arg), ctx)); } }; enum { packed_arg_bits = 4 }; // Maximum number of arguments with packed types. enum { max_packed_args = 62 / packed_arg_bits }; enum : unsigned long long { is_unpacked_bit = 1ULL << 63 }; enum : unsigned long long { has_named_args_bit = 1ULL << 62 }; template struct is_output_iterator : std::false_type {}; template <> struct is_output_iterator : std::true_type {}; template struct is_output_iterator< It, T, enable_if_t&>()++), T>::value>> : std::true_type {}; template constexpr auto encode_types() -> unsigned long long { return 0; } template constexpr auto encode_types() -> unsigned long long { return static_cast(stored_type_constant::value) | (encode_types() << packed_arg_bits); } template constexpr auto make_descriptor() -> unsigned long long { return NUM_ARGS <= max_packed_args ? encode_types() : is_unpacked_bit | NUM_ARGS; } template using arg_t = conditional_t, basic_format_arg>; template struct named_arg_store { // args_[0].named_args points to named_args to avoid bloating format_args. arg_t args[1u + NUM_ARGS]; named_arg_info named_args[static_cast(NUM_NAMED_ARGS)]; template FMT_CONSTEXPR FMT_ALWAYS_INLINE named_arg_store(T&... values) : args{{named_args, NUM_NAMED_ARGS}, values...} { int arg_index = 0, named_arg_index = 0; FMT_APPLY_VARIADIC( init_named_arg(named_args, arg_index, named_arg_index, values)); } named_arg_store(named_arg_store&& rhs) { args[0] = {named_args, NUM_NAMED_ARGS}; for (size_t i = 1; i < sizeof(args) / sizeof(*args); ++i) args[i] = rhs.args[i]; for (size_t i = 0; i < NUM_NAMED_ARGS; ++i) named_args[i] = rhs.named_args[i]; } named_arg_store(const named_arg_store& rhs) = delete; auto operator=(const named_arg_store& rhs) -> named_arg_store& = delete; auto operator=(named_arg_store&& rhs) -> named_arg_store& = delete; operator const arg_t*() const { return args + 1; } }; // An array of references to arguments. It can be implicitly converted to // `basic_format_args` for passing into type-erased formatting functions // such as `vformat`. It is a plain struct to reduce binary size in debug mode. template struct format_arg_store { // +1 to workaround a bug in gcc 7.5 that causes duplicated-branches warning. using type = conditional_t[max_of(1, NUM_ARGS)], named_arg_store>; type args; }; // TYPE can be different from type_constant, e.g. for __float128. template struct native_formatter { private: dynamic_format_specs specs_; public: using nonlocking = void; FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { if (ctx.begin() == ctx.end() || *ctx.begin() == '}') return ctx.begin(); auto end = parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx, TYPE); if (const_check(TYPE == type::char_type)) check_char_specs(specs_); return end; } template FMT_CONSTEXPR void set_debug_format(bool set = true) { specs_.set_type(set ? presentation_type::debug : presentation_type::none); } FMT_PRAGMA_CLANG(diagnostic ignored "-Wundefined-inline") template FMT_CONSTEXPR auto format(const T& val, FormatContext& ctx) const -> decltype(ctx.out()); }; template struct locking : bool_constant::value == type::custom_type> {}; template struct locking>::nonlocking>> : std::false_type {}; template FMT_CONSTEXPR inline auto is_locking() -> bool { return locking::value; } template FMT_CONSTEXPR inline auto is_locking() -> bool { return locking::value || is_locking(); } FMT_API void vformat_to(buffer& buf, string_view fmt, format_args args, locale_ref loc = {}); #if FMT_WIN32 FMT_API void vprint_mojibake(FILE*, string_view, format_args, bool); #else // format_args is passed by reference since it is defined later. inline void vprint_mojibake(FILE*, string_view, const format_args&, bool) {} #endif } // namespace detail // The main public API. template FMT_CONSTEXPR void parse_context::do_check_arg_id(int arg_id) { // Argument id is only checked at compile time during parsing because // formatting has its own validation. if (detail::is_constant_evaluated() && use_constexpr_cast) { auto ctx = static_cast*>(this); if (arg_id >= ctx->num_args()) report_error("argument not found"); } } template FMT_CONSTEXPR void parse_context::check_dynamic_spec(int arg_id) { using detail::compile_parse_context; if (detail::is_constant_evaluated() && use_constexpr_cast) static_cast*>(this)->check_dynamic_spec(arg_id); } FMT_BEGIN_EXPORT // An output iterator that appends to a buffer. It is used instead of // back_insert_iterator to reduce symbol sizes and avoid dependency. template class basic_appender { protected: detail::buffer* container; public: using container_type = detail::buffer; FMT_CONSTEXPR basic_appender(detail::buffer& buf) : container(&buf) {} FMT_CONSTEXPR20 auto operator=(T c) -> basic_appender& { container->push_back(c); return *this; } FMT_CONSTEXPR20 auto operator*() -> basic_appender& { return *this; } FMT_CONSTEXPR20 auto operator++() -> basic_appender& { return *this; } FMT_CONSTEXPR20 auto operator++(int) -> basic_appender { return *this; } }; // A formatting argument. Context is a template parameter for the compiled API // where output can be unbuffered. template class basic_format_arg { private: detail::value value_; detail::type type_; friend class basic_format_args; using char_type = typename Context::char_type; public: class handle { private: detail::custom_value custom_; public: explicit handle(detail::custom_value custom) : custom_(custom) {} void format(parse_context& parse_ctx, Context& ctx) const { custom_.format(custom_.value, parse_ctx, ctx); } }; constexpr basic_format_arg() : type_(detail::type::none_type) {} basic_format_arg(const detail::named_arg_info* args, size_t size) : value_(args, size) {} template basic_format_arg(T&& val) : value_(val), type_(detail::stored_type_constant::value) {} constexpr explicit operator bool() const noexcept { return type_ != detail::type::none_type; } auto type() const -> detail::type { return type_; } /** * Visits an argument dispatching to the appropriate visit method based on * the argument type. For example, if the argument type is `double` then * `vis(value)` will be called with the value of type `double`. */ template FMT_CONSTEXPR FMT_INLINE auto visit(Visitor&& vis) const -> decltype(vis(0)) { using detail::map; switch (type_) { case detail::type::none_type: break; case detail::type::int_type: return vis(value_.int_value); case detail::type::uint_type: return vis(value_.uint_value); case detail::type::long_long_type: return vis(value_.long_long_value); case detail::type::ulong_long_type: return vis(value_.ulong_long_value); case detail::type::int128_type: return vis(map(value_.int128_value)); case detail::type::uint128_type: return vis(map(value_.uint128_value)); case detail::type::bool_type: return vis(value_.bool_value); case detail::type::char_type: return vis(value_.char_value); case detail::type::float_type: return vis(value_.float_value); case detail::type::double_type: return vis(value_.double_value); case detail::type::long_double_type: return vis(value_.long_double_value); case detail::type::cstring_type: return vis(value_.string.data); case detail::type::string_type: return vis(value_.string.str()); case detail::type::pointer_type: return vis(value_.pointer); case detail::type::custom_type: return vis(handle(value_.custom)); } return vis(monostate()); } auto format_custom(const char_type* parse_begin, parse_context& parse_ctx, Context& ctx) -> bool { if (type_ != detail::type::custom_type) return false; parse_ctx.advance_to(parse_begin); value_.custom.format(value_.custom.value, parse_ctx, ctx); return true; } }; /** * A view of a collection of formatting arguments. To avoid lifetime issues it * should only be used as a parameter type in type-erased functions such as * `vformat`: * * void vlog(fmt::string_view fmt, fmt::format_args args); // OK * fmt::format_args args = fmt::make_format_args(); // Dangling reference */ template class basic_format_args { private: // A descriptor that contains information about formatting arguments. // If the number of arguments is less or equal to max_packed_args then // argument types are passed in the descriptor. This reduces binary code size // per formatting function call. unsigned long long desc_; union { // If is_packed() returns true then argument values are stored in values_; // otherwise they are stored in args_. This is done to improve cache // locality and reduce compiled code size since storing larger objects // may require more code (at least on x86-64) even if the same amount of // data is actually copied to stack. It saves ~10% on the bloat test. const detail::value* values_; const basic_format_arg* args_; }; constexpr auto is_packed() const -> bool { return (desc_ & detail::is_unpacked_bit) == 0; } constexpr auto has_named_args() const -> bool { return (desc_ & detail::has_named_args_bit) != 0; } FMT_CONSTEXPR auto type(int index) const -> detail::type { int shift = index * detail::packed_arg_bits; unsigned mask = (1 << detail::packed_arg_bits) - 1; return static_cast((desc_ >> shift) & mask); } template using store = detail::format_arg_store; public: using format_arg = basic_format_arg; constexpr basic_format_args() : desc_(0), args_(nullptr) {} /// Constructs a `basic_format_args` object from `format_arg_store`. template constexpr FMT_ALWAYS_INLINE basic_format_args( const store& s) : desc_(DESC | (NUM_NAMED_ARGS != 0 ? +detail::has_named_args_bit : 0)), values_(s.args) {} template detail::max_packed_args)> constexpr basic_format_args(const store& s) : desc_(DESC | (NUM_NAMED_ARGS != 0 ? +detail::has_named_args_bit : 0)), args_(s.args) {} /// Constructs a `basic_format_args` object from a dynamic list of arguments. constexpr basic_format_args(const format_arg* args, int count, bool has_named = false) : desc_(detail::is_unpacked_bit | detail::to_unsigned(count) | (has_named ? +detail::has_named_args_bit : 0)), args_(args) {} /// Returns the argument with the specified id. FMT_CONSTEXPR auto get(int id) const -> format_arg { auto arg = format_arg(); if (!is_packed()) { if (id < max_size()) arg = args_[id]; return arg; } if (static_cast(id) >= detail::max_packed_args) return arg; arg.type_ = type(id); if (arg.type_ != detail::type::none_type) arg.value_ = values_[id]; return arg; } template auto get(basic_string_view name) const -> format_arg { int id = get_id(name); return id >= 0 ? get(id) : format_arg(); } template FMT_CONSTEXPR auto get_id(basic_string_view name) const -> int { if (!has_named_args()) return -1; const auto& named_args = (is_packed() ? values_[-1] : args_[-1].value_).named_args; for (size_t i = 0; i < named_args.size; ++i) { if (named_args.data[i].name == name) return named_args.data[i].id; } return -1; } auto max_size() const -> int { unsigned long long max_packed = detail::max_packed_args; return static_cast(is_packed() ? max_packed : desc_ & ~detail::is_unpacked_bit); } }; // A formatting context. class context { private: appender out_; format_args args_; FMT_NO_UNIQUE_ADDRESS locale_ref loc_; public: using char_type = char; ///< The character type for the output. using iterator = appender; using format_arg = basic_format_arg; enum { builtin_types = FMT_BUILTIN_TYPES }; /// Constructs a `context` object. References to the arguments are stored /// in the object so make sure they have appropriate lifetimes. FMT_CONSTEXPR context(iterator out, format_args args, locale_ref loc = {}) : out_(out), args_(args), loc_(loc) {} context(context&&) = default; context(const context&) = delete; void operator=(const context&) = delete; FMT_CONSTEXPR auto arg(int id) const -> format_arg { return args_.get(id); } inline auto arg(string_view name) const -> format_arg { return args_.get(name); } FMT_CONSTEXPR auto arg_id(string_view name) const -> int { return args_.get_id(name); } auto args() const -> const format_args& { return args_; } // Returns an iterator to the beginning of the output range. FMT_CONSTEXPR auto out() const -> iterator { return out_; } // Advances the begin iterator to `it`. FMT_CONSTEXPR void advance_to(iterator) {} FMT_CONSTEXPR auto locale() const -> locale_ref { return loc_; } }; template struct runtime_format_string { basic_string_view str; }; /** * Creates a runtime format string. * * **Example**: * * // Check format string at runtime instead of compile-time. * fmt::print(fmt::runtime("{:d}"), "I am not a number"); */ inline auto runtime(string_view s) -> runtime_format_string<> { return {{s}}; } /// A compile-time format string. Use `format_string` in the public API to /// prevent type deduction. template struct fstring { private: static constexpr int num_static_named_args = detail::count_static_named_args(); using checker = detail::format_string_checker< char, static_cast(sizeof...(T)), num_static_named_args, num_static_named_args != detail::count_named_args()>; using arg_pack = detail::arg_pack; public: string_view str; using t = fstring; // Reports a compile-time error if S is not a valid format string for T. template FMT_CONSTEVAL FMT_ALWAYS_INLINE fstring(const char (&s)[N]) : str(s, N - 1) { using namespace detail; static_assert(count<(is_view>::value && std::is_reference::value)...>() == 0, "passing views as lvalues is disallowed"); if (FMT_USE_CONSTEVAL) parse_format_string(s, checker(s, arg_pack())); #ifdef FMT_ENFORCE_COMPILE_STRING static_assert( FMT_USE_CONSTEVAL && sizeof(s) != 0, "FMT_ENFORCE_COMPILE_STRING requires format strings to use FMT_STRING"); #endif } template ::value)> FMT_CONSTEVAL FMT_ALWAYS_INLINE fstring(const S& s) : str(s) { auto sv = string_view(str); if (FMT_USE_CONSTEVAL) detail::parse_format_string(sv, checker(sv, arg_pack())); #ifdef FMT_ENFORCE_COMPILE_STRING static_assert( FMT_USE_CONSTEVAL && sizeof(s) != 0, "FMT_ENFORCE_COMPILE_STRING requires format strings to use FMT_STRING"); #endif } template ::value&& std::is_same::value)> FMT_ALWAYS_INLINE fstring(const S&) : str(S()) { FMT_CONSTEXPR auto sv = string_view(S()); FMT_CONSTEXPR int unused = (parse_format_string(sv, checker(sv, arg_pack())), 0); detail::ignore_unused(unused); } fstring(runtime_format_string<> fmt) : str(fmt.str) {} // Returning by reference generates better code in debug mode. FMT_ALWAYS_INLINE operator const string_view&() const { return str; } auto get() const -> string_view { return str; } }; template using format_string = typename fstring::t; template using is_formattable = bool_constant::value, int*, T>, Char>, void>::value>; #ifdef __cpp_concepts template concept formattable = is_formattable, Char>::value; #endif // A formatter specialization for natively supported types. template struct formatter::value != detail::type::custom_type>> : detail::native_formatter::value> { }; /** * Constructs an object that stores references to arguments and can be * implicitly converted to `format_args`. `Context` can be omitted in which case * it defaults to `context`. See `arg` for lifetime considerations. */ // Take arguments by lvalue references to avoid some lifetime issues, e.g. // auto args = make_format_args(std::string()); template (), unsigned long long DESC = detail::make_descriptor()> constexpr FMT_ALWAYS_INLINE auto make_format_args(T&... args) -> detail::format_arg_store { // Suppress warnings for pathological types convertible to detail::value. FMT_PRAGMA_GCC(diagnostic ignored "-Wconversion") return {{args...}}; } template using vargs = detail::format_arg_store(), detail::make_descriptor()>; /** * Returns a named argument to be used in a formatting function. * It should only be used in a call to a formatting function. * * **Example**: * * fmt::print("The answer is {answer}.", fmt::arg("answer", 42)); */ template inline auto arg(const Char* name, const T& arg) -> detail::named_arg { return {name, arg}; } /// Formats a string and writes the output to `out`. template , char>::value)> auto vformat_to(OutputIt&& out, string_view fmt, format_args args) -> remove_cvref_t { auto&& buf = detail::get_buffer(out); detail::vformat_to(buf, fmt, args, {}); return detail::get_iterator(buf, out); } /** * Formats `args` according to specifications in `fmt`, writes the result to * the output iterator `out` and returns the iterator past the end of the output * range. `format_to` does not append a terminating null character. * * **Example**: * * auto out = std::vector(); * fmt::format_to(std::back_inserter(out), "{}", 42); */ template , char>::value)> FMT_INLINE auto format_to(OutputIt&& out, format_string fmt, T&&... args) -> remove_cvref_t { return vformat_to(out, fmt.str, vargs{{args...}}); } template struct format_to_n_result { /// Iterator past the end of the output range. OutputIt out; /// Total (not truncated) output size. size_t size; }; template ::value)> auto vformat_to_n(OutputIt out, size_t n, string_view fmt, format_args args) -> format_to_n_result { using traits = detail::fixed_buffer_traits; auto buf = detail::iterator_buffer(out, n); detail::vformat_to(buf, fmt, args, {}); return {buf.out(), buf.count()}; } /** * Formats `args` according to specifications in `fmt`, writes up to `n` * characters of the result to the output iterator `out` and returns the total * (not truncated) output size and the iterator past the end of the output * range. `format_to_n` does not append a terminating null character. */ template ::value)> FMT_INLINE auto format_to_n(OutputIt out, size_t n, format_string fmt, T&&... args) -> format_to_n_result { return vformat_to_n(out, n, fmt.str, vargs{{args...}}); } struct format_to_result { /// Pointer to just after the last successful write in the array. char* out; /// Specifies if the output was truncated. bool truncated; FMT_CONSTEXPR operator char*() const { // Report truncation to prevent silent data loss. if (truncated) report_error("output is truncated"); return out; } }; template auto vformat_to(char (&out)[N], string_view fmt, format_args args) -> format_to_result { auto result = vformat_to_n(out, N, fmt, args); return {result.out, result.size > N}; } template FMT_INLINE auto format_to(char (&out)[N], format_string fmt, T&&... args) -> format_to_result { auto result = vformat_to_n(out, N, fmt.str, vargs{{args...}}); return {result.out, result.size > N}; } /// Returns the number of chars in the output of `format(fmt, args...)`. template FMT_NODISCARD FMT_INLINE auto formatted_size(format_string fmt, T&&... args) -> size_t { auto buf = detail::counting_buffer<>(); detail::vformat_to(buf, fmt.str, vargs{{args...}}, {}); return buf.count(); } FMT_API void vprint(string_view fmt, format_args args); FMT_API void vprint(FILE* f, string_view fmt, format_args args); FMT_API void vprintln(FILE* f, string_view fmt, format_args args); FMT_API void vprint_buffered(FILE* f, string_view fmt, format_args args); /** * Formats `args` according to specifications in `fmt` and writes the output * to `stdout`. * * **Example**: * * fmt::print("The answer is {}.", 42); */ template FMT_INLINE void print(format_string fmt, T&&... args) { vargs va = {{args...}}; if (detail::const_check(!detail::use_utf8)) return detail::vprint_mojibake(stdout, fmt.str, va, false); return detail::is_locking() ? vprint_buffered(stdout, fmt.str, va) : vprint(fmt.str, va); } /** * Formats `args` according to specifications in `fmt` and writes the * output to the file `f`. * * **Example**: * * fmt::print(stderr, "Don't {}!", "panic"); */ template FMT_INLINE void print(FILE* f, format_string fmt, T&&... args) { vargs va = {{args...}}; if (detail::const_check(!detail::use_utf8)) return detail::vprint_mojibake(f, fmt.str, va, false); return detail::is_locking() ? vprint_buffered(f, fmt.str, va) : vprint(f, fmt.str, va); } /// Formats `args` according to specifications in `fmt` and writes the output /// to the file `f` followed by a newline. template FMT_INLINE void println(FILE* f, format_string fmt, T&&... args) { vargs va = {{args...}}; return detail::const_check(detail::use_utf8) ? vprintln(f, fmt.str, va) : detail::vprint_mojibake(f, fmt.str, va, true); } /// Formats `args` according to specifications in `fmt` and writes the output /// to `stdout` followed by a newline. template FMT_INLINE void println(format_string fmt, T&&... args) { return fmt::println(stdout, fmt, static_cast(args)...); } FMT_PRAGMA_CLANG(diagnostic pop) FMT_PRAGMA_GCC(pop_options) FMT_END_EXPORT FMT_END_NAMESPACE #ifdef FMT_HEADER_ONLY # include "format.h" #endif #endif // FMT_BASE_H_ btop-1.4.5/include/fmt/chrono.h000066400000000000000000002271071506333644200163560ustar00rootroot00000000000000// Formatting library for C++ - chrono support // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_CHRONO_H_ #define FMT_CHRONO_H_ #ifndef FMT_MODULE # include # include # include // std::isfinite # include // std::memcpy # include # include # include # include # include #endif #include "format.h" FMT_BEGIN_NAMESPACE // Enable safe chrono durations, unless explicitly disabled. #ifndef FMT_SAFE_DURATION_CAST # define FMT_SAFE_DURATION_CAST 1 #endif #if FMT_SAFE_DURATION_CAST // For conversion between std::chrono::durations without undefined // behaviour or erroneous results. // This is a stripped down version of duration_cast, for inclusion in fmt. // See https://github.com/pauldreik/safe_duration_cast // // Copyright Paul Dreik 2019 namespace safe_duration_cast { // DEPRECATED! template ::value && std::numeric_limits::is_signed == std::numeric_limits::is_signed)> FMT_CONSTEXPR auto lossless_integral_conversion(const From from, int& ec) -> To { ec = 0; using F = std::numeric_limits; using T = std::numeric_limits; static_assert(F::is_integer, "From must be integral"); static_assert(T::is_integer, "To must be integral"); // A and B are both signed, or both unsigned. if (detail::const_check(F::digits <= T::digits)) { // From fits in To without any problem. } else { // From does not always fit in To, resort to a dynamic check. if (from < (T::min)() || from > (T::max)()) { // outside range. ec = 1; return {}; } } return static_cast(from); } /// Converts From to To, without loss. If the dynamic value of from /// can't be converted to To without loss, ec is set. template ::value && std::numeric_limits::is_signed != std::numeric_limits::is_signed)> FMT_CONSTEXPR auto lossless_integral_conversion(const From from, int& ec) -> To { ec = 0; using F = std::numeric_limits; using T = std::numeric_limits; static_assert(F::is_integer, "From must be integral"); static_assert(T::is_integer, "To must be integral"); if (detail::const_check(F::is_signed && !T::is_signed)) { // From may be negative, not allowed! if (fmt::detail::is_negative(from)) { ec = 1; return {}; } // From is positive. Can it always fit in To? if (detail::const_check(F::digits > T::digits) && from > static_cast(detail::max_value())) { ec = 1; return {}; } } if (detail::const_check(!F::is_signed && T::is_signed && F::digits >= T::digits) && from > static_cast(detail::max_value())) { ec = 1; return {}; } return static_cast(from); // Lossless conversion. } template ::value)> FMT_CONSTEXPR auto lossless_integral_conversion(const From from, int& ec) -> To { ec = 0; return from; } // function // clang-format off /** * converts From to To if possible, otherwise ec is set. * * input | output * ---------------------------------|--------------- * NaN | NaN * Inf | Inf * normal, fits in output | converted (possibly lossy) * normal, does not fit in output | ec is set * subnormal | best effort * -Inf | -Inf */ // clang-format on template ::value)> FMT_CONSTEXPR auto safe_float_conversion(const From from, int& ec) -> To { ec = 0; using T = std::numeric_limits; static_assert(std::is_floating_point::value, "From must be floating"); static_assert(std::is_floating_point::value, "To must be floating"); // catch the only happy case if (std::isfinite(from)) { if (from >= T::lowest() && from <= (T::max)()) { return static_cast(from); } // not within range. ec = 1; return {}; } // nan and inf will be preserved return static_cast(from); } // function template ::value)> FMT_CONSTEXPR auto safe_float_conversion(const From from, int& ec) -> To { ec = 0; static_assert(std::is_floating_point::value, "From must be floating"); return from; } /// Safe duration_cast between floating point durations template ::value), FMT_ENABLE_IF(std::is_floating_point::value)> auto safe_duration_cast(std::chrono::duration from, int& ec) -> To { using From = std::chrono::duration; ec = 0; // the basic idea is that we need to convert from count() in the from type // to count() in the To type, by multiplying it with this: struct Factor : std::ratio_divide {}; static_assert(Factor::num > 0, "num must be positive"); static_assert(Factor::den > 0, "den must be positive"); // the conversion is like this: multiply from.count() with Factor::num // /Factor::den and convert it to To::rep, all this without // overflow/underflow. let's start by finding a suitable type that can hold // both To, From and Factor::num using IntermediateRep = typename std::common_type::type; // force conversion of From::rep -> IntermediateRep to be safe, // even if it will never happen be narrowing in this context. IntermediateRep count = safe_float_conversion(from.count(), ec); if (ec) { return {}; } // multiply with Factor::num without overflow or underflow if (detail::const_check(Factor::num != 1)) { constexpr auto max1 = detail::max_value() / static_cast(Factor::num); if (count > max1) { ec = 1; return {}; } constexpr auto min1 = std::numeric_limits::lowest() / static_cast(Factor::num); if (count < min1) { ec = 1; return {}; } count *= static_cast(Factor::num); } // this can't go wrong, right? den>0 is checked earlier. if (detail::const_check(Factor::den != 1)) { using common_t = typename std::common_type::type; count /= static_cast(Factor::den); } // convert to the to type, safely using ToRep = typename To::rep; const ToRep tocount = safe_float_conversion(count, ec); if (ec) { return {}; } return To{tocount}; } } // namespace safe_duration_cast #endif namespace detail { // Check if std::chrono::utc_time is available. #ifdef FMT_USE_UTC_TIME // Use the provided definition. #elif defined(__cpp_lib_chrono) # define FMT_USE_UTC_TIME (__cpp_lib_chrono >= 201907L) #else # define FMT_USE_UTC_TIME 0 #endif #if FMT_USE_UTC_TIME using utc_clock = std::chrono::utc_clock; #else struct utc_clock { template void to_sys(T); }; #endif // Check if std::chrono::local_time is available. #ifdef FMT_USE_LOCAL_TIME // Use the provided definition. #elif defined(__cpp_lib_chrono) # define FMT_USE_LOCAL_TIME (__cpp_lib_chrono >= 201907L) #else # define FMT_USE_LOCAL_TIME 0 #endif #if FMT_USE_LOCAL_TIME using local_t = std::chrono::local_t; #else struct local_t {}; #endif } // namespace detail template using sys_time = std::chrono::time_point; template using utc_time = std::chrono::time_point; template using local_time = std::chrono::time_point; namespace detail { // Prevents expansion of a preceding token as a function-style macro. // Usage: f FMT_NOMACRO() #define FMT_NOMACRO template struct null {}; inline auto gmtime_r(...) -> null<> { return null<>(); } inline auto gmtime_s(...) -> null<> { return null<>(); } // It is defined here and not in ostream.h because the latter has expensive // includes. template class formatbuf : public StreamBuf { private: using char_type = typename StreamBuf::char_type; using streamsize = decltype(std::declval().sputn(nullptr, 0)); using int_type = typename StreamBuf::int_type; using traits_type = typename StreamBuf::traits_type; buffer& buffer_; public: explicit formatbuf(buffer& buf) : buffer_(buf) {} protected: // The put area is always empty. This makes the implementation simpler and has // the advantage that the streambuf and the buffer are always in sync and // sputc never writes into uninitialized memory. A disadvantage is that each // call to sputc always results in a (virtual) call to overflow. There is no // disadvantage here for sputn since this always results in a call to xsputn. auto overflow(int_type ch) -> int_type override { if (!traits_type::eq_int_type(ch, traits_type::eof())) buffer_.push_back(static_cast(ch)); return ch; } auto xsputn(const char_type* s, streamsize count) -> streamsize override { buffer_.append(s, s + count); return count; } }; inline auto get_classic_locale() -> const std::locale& { static const auto& locale = std::locale::classic(); return locale; } template struct codecvt_result { static constexpr size_t max_size = 32; CodeUnit buf[max_size]; CodeUnit* end; }; template void write_codecvt(codecvt_result& out, string_view in, const std::locale& loc) { FMT_PRAGMA_CLANG(diagnostic push) FMT_PRAGMA_CLANG(diagnostic ignored "-Wdeprecated") auto& f = std::use_facet>(loc); FMT_PRAGMA_CLANG(diagnostic pop) auto mb = std::mbstate_t(); const char* from_next = nullptr; auto result = f.in(mb, in.begin(), in.end(), from_next, std::begin(out.buf), std::end(out.buf), out.end); if (result != std::codecvt_base::ok) FMT_THROW(format_error("failed to format time")); } template auto write_encoded_tm_str(OutputIt out, string_view in, const std::locale& loc) -> OutputIt { if (const_check(detail::use_utf8) && loc != get_classic_locale()) { // char16_t and char32_t codecvts are broken in MSVC (linkage errors) and // gcc-4. #if FMT_MSC_VERSION != 0 || \ (defined(__GLIBCXX__) && \ (!defined(_GLIBCXX_USE_DUAL_ABI) || _GLIBCXX_USE_DUAL_ABI == 0)) // The _GLIBCXX_USE_DUAL_ABI macro is always defined in libstdc++ from gcc-5 // and newer. using code_unit = wchar_t; #else using code_unit = char32_t; #endif using unit_t = codecvt_result; unit_t unit; write_codecvt(unit, in, loc); // In UTF-8 is used one to four one-byte code units. auto u = to_utf8>(); if (!u.convert({unit.buf, to_unsigned(unit.end - unit.buf)})) FMT_THROW(format_error("failed to format time")); return copy(u.c_str(), u.c_str() + u.size(), out); } return copy(in.data(), in.data() + in.size(), out); } template ::value)> auto write_tm_str(OutputIt out, string_view sv, const std::locale& loc) -> OutputIt { codecvt_result unit; write_codecvt(unit, sv, loc); return copy(unit.buf, unit.end, out); } template ::value)> auto write_tm_str(OutputIt out, string_view sv, const std::locale& loc) -> OutputIt { return write_encoded_tm_str(out, sv, loc); } template inline void do_write(buffer& buf, const std::tm& time, const std::locale& loc, char format, char modifier) { auto&& format_buf = formatbuf>(buf); auto&& os = std::basic_ostream(&format_buf); os.imbue(loc); const auto& facet = std::use_facet>(loc); auto end = facet.put(os, os, Char(' '), &time, format, modifier); if (end.failed()) FMT_THROW(format_error("failed to format time")); } template ::value)> auto write(OutputIt out, const std::tm& time, const std::locale& loc, char format, char modifier = 0) -> OutputIt { auto&& buf = get_buffer(out); do_write(buf, time, loc, format, modifier); return get_iterator(buf, out); } template ::value)> auto write(OutputIt out, const std::tm& time, const std::locale& loc, char format, char modifier = 0) -> OutputIt { auto&& buf = basic_memory_buffer(); do_write(buf, time, loc, format, modifier); return write_encoded_tm_str(out, string_view(buf.data(), buf.size()), loc); } template using is_similar_arithmetic_type = bool_constant<(std::is_integral::value && std::is_integral::value) || (std::is_floating_point::value && std::is_floating_point::value)>; FMT_NORETURN inline void throw_duration_error() { FMT_THROW(format_error("cannot format duration")); } // Cast one integral duration to another with an overflow check. template ::value&& std::is_integral::value)> auto duration_cast(std::chrono::duration from) -> To { #if !FMT_SAFE_DURATION_CAST return std::chrono::duration_cast(from); #else // The conversion factor: to.count() == factor * from.count(). using factor = std::ratio_divide; using common_rep = typename std::common_type::type; common_rep count = from.count(); // This conversion is lossless. // Multiply from.count() by factor and check for overflow. if (const_check(factor::num != 1)) { if (count > max_value() / factor::num) throw_duration_error(); const auto min = (std::numeric_limits::min)() / factor::num; if (const_check(!std::is_unsigned::value) && count < min) throw_duration_error(); count *= factor::num; } if (const_check(factor::den != 1)) count /= factor::den; int ec = 0; auto to = To(safe_duration_cast::lossless_integral_conversion( count, ec)); if (ec) throw_duration_error(); return to; #endif } template ::value&& std::is_floating_point::value)> auto duration_cast(std::chrono::duration from) -> To { #if FMT_SAFE_DURATION_CAST // Preserve infinity and NaN. if (!isfinite(from.count())) return static_cast(from.count()); // Throwing version of safe_duration_cast is only available for // integer to integer or float to float casts. int ec; To to = safe_duration_cast::safe_duration_cast(from, ec); if (ec) throw_duration_error(); return to; #else // Standard duration cast, may overflow. return std::chrono::duration_cast(from); #endif } template ::value)> auto duration_cast(std::chrono::duration from) -> To { // Mixed integer <-> float cast is not supported by safe duration_cast. return std::chrono::duration_cast(from); } template auto to_time_t(sys_time time_point) -> std::time_t { // Cannot use std::chrono::system_clock::to_time_t since this would first // require a cast to std::chrono::system_clock::time_point, which could // overflow. return detail::duration_cast>( time_point.time_since_epoch()) .count(); } } // namespace detail FMT_BEGIN_EXPORT /** * Converts given time since epoch as `std::time_t` value into calendar time, * expressed in Coordinated Universal Time (UTC). Unlike `std::gmtime`, this * function is thread-safe on most platforms. */ inline auto gmtime(std::time_t time) -> std::tm { struct dispatcher { std::time_t time_; std::tm tm_; inline dispatcher(std::time_t t) : time_(t) {} inline auto run() -> bool { using namespace fmt::detail; return handle(gmtime_r(&time_, &tm_)); } inline auto handle(std::tm* tm) -> bool { return tm != nullptr; } inline auto handle(detail::null<>) -> bool { using namespace fmt::detail; return fallback(gmtime_s(&tm_, &time_)); } inline auto fallback(int res) -> bool { return res == 0; } #if !FMT_MSC_VERSION inline auto fallback(detail::null<>) -> bool { std::tm* tm = std::gmtime(&time_); if (tm) tm_ = *tm; return tm != nullptr; } #endif }; auto gt = dispatcher(time); // Too big time values may be unsupported. if (!gt.run()) FMT_THROW(format_error("time_t value out of range")); return gt.tm_; } template inline auto gmtime(sys_time time_point) -> std::tm { return gmtime(detail::to_time_t(time_point)); } namespace detail { // Writes two-digit numbers a, b and c separated by sep to buf. // The method by Pavel Novikov based on // https://johnnylee-sde.github.io/Fast-unsigned-integer-to-time-string/. inline void write_digit2_separated(char* buf, unsigned a, unsigned b, unsigned c, char sep) { unsigned long long digits = a | (b << 24) | (static_cast(c) << 48); // Convert each value to BCD. // We have x = a * 10 + b and we want to convert it to BCD y = a * 16 + b. // The difference is // y - x = a * 6 // a can be found from x: // a = floor(x / 10) // then // y = x + a * 6 = x + floor(x / 10) * 6 // floor(x / 10) is (x * 205) >> 11 (needs 16 bits). digits += (((digits * 205) >> 11) & 0x000f00000f00000f) * 6; // Put low nibbles to high bytes and high nibbles to low bytes. digits = ((digits & 0x00f00000f00000f0) >> 4) | ((digits & 0x000f00000f00000f) << 8); auto usep = static_cast(sep); // Add ASCII '0' to each digit byte and insert separators. digits |= 0x3030003030003030 | (usep << 16) | (usep << 40); constexpr size_t len = 8; if (const_check(is_big_endian())) { char tmp[len]; std::memcpy(tmp, &digits, len); std::reverse_copy(tmp, tmp + len, buf); } else { std::memcpy(buf, &digits, len); } } template FMT_CONSTEXPR inline auto get_units() -> const char* { if (std::is_same::value) return "as"; if (std::is_same::value) return "fs"; if (std::is_same::value) return "ps"; if (std::is_same::value) return "ns"; if (std::is_same::value) return detail::use_utf8 ? "µs" : "us"; if (std::is_same::value) return "ms"; if (std::is_same::value) return "cs"; if (std::is_same::value) return "ds"; if (std::is_same>::value) return "s"; if (std::is_same::value) return "das"; if (std::is_same::value) return "hs"; if (std::is_same::value) return "ks"; if (std::is_same::value) return "Ms"; if (std::is_same::value) return "Gs"; if (std::is_same::value) return "Ts"; if (std::is_same::value) return "Ps"; if (std::is_same::value) return "Es"; if (std::is_same>::value) return "min"; if (std::is_same>::value) return "h"; if (std::is_same>::value) return "d"; return nullptr; } enum class numeric_system { standard, // Alternative numeric system, e.g. å二 instead of 12 in ja_JP locale. alternative }; // Glibc extensions for formatting numeric values. enum class pad_type { // Pad a numeric result string with zeros (the default). zero, // Do not pad a numeric result string. none, // Pad a numeric result string with spaces. space, }; template auto write_padding(OutputIt out, pad_type pad, int width) -> OutputIt { if (pad == pad_type::none) return out; return detail::fill_n(out, width, pad == pad_type::space ? ' ' : '0'); } template auto write_padding(OutputIt out, pad_type pad) -> OutputIt { if (pad != pad_type::none) *out++ = pad == pad_type::space ? ' ' : '0'; return out; } // Parses a put_time-like format string and invokes handler actions. template FMT_CONSTEXPR auto parse_chrono_format(const Char* begin, const Char* end, Handler&& handler) -> const Char* { if (begin == end || *begin == '}') return begin; if (*begin != '%') FMT_THROW(format_error("invalid format")); auto ptr = begin; while (ptr != end) { pad_type pad = pad_type::zero; auto c = *ptr; if (c == '}') break; if (c != '%') { ++ptr; continue; } if (begin != ptr) handler.on_text(begin, ptr); ++ptr; // consume '%' if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr; switch (c) { case '_': pad = pad_type::space; ++ptr; break; case '-': pad = pad_type::none; ++ptr; break; } if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr++; switch (c) { case '%': handler.on_text(ptr - 1, ptr); break; case 'n': { const Char newline[] = {'\n'}; handler.on_text(newline, newline + 1); break; } case 't': { const Char tab[] = {'\t'}; handler.on_text(tab, tab + 1); break; } // Year: case 'Y': handler.on_year(numeric_system::standard, pad); break; case 'y': handler.on_short_year(numeric_system::standard); break; case 'C': handler.on_century(numeric_system::standard); break; case 'G': handler.on_iso_week_based_year(); break; case 'g': handler.on_iso_week_based_short_year(); break; // Day of the week: case 'a': handler.on_abbr_weekday(); break; case 'A': handler.on_full_weekday(); break; case 'w': handler.on_dec0_weekday(numeric_system::standard); break; case 'u': handler.on_dec1_weekday(numeric_system::standard); break; // Month: case 'b': case 'h': handler.on_abbr_month(); break; case 'B': handler.on_full_month(); break; case 'm': handler.on_dec_month(numeric_system::standard, pad); break; // Day of the year/month: case 'U': handler.on_dec0_week_of_year(numeric_system::standard, pad); break; case 'W': handler.on_dec1_week_of_year(numeric_system::standard, pad); break; case 'V': handler.on_iso_week_of_year(numeric_system::standard, pad); break; case 'j': handler.on_day_of_year(pad); break; case 'd': handler.on_day_of_month(numeric_system::standard, pad); break; case 'e': handler.on_day_of_month(numeric_system::standard, pad_type::space); break; // Hour, minute, second: case 'H': handler.on_24_hour(numeric_system::standard, pad); break; case 'I': handler.on_12_hour(numeric_system::standard, pad); break; case 'M': handler.on_minute(numeric_system::standard, pad); break; case 'S': handler.on_second(numeric_system::standard, pad); break; // Other: case 'c': handler.on_datetime(numeric_system::standard); break; case 'x': handler.on_loc_date(numeric_system::standard); break; case 'X': handler.on_loc_time(numeric_system::standard); break; case 'D': handler.on_us_date(); break; case 'F': handler.on_iso_date(); break; case 'r': handler.on_12_hour_time(); break; case 'R': handler.on_24_hour_time(); break; case 'T': handler.on_iso_time(); break; case 'p': handler.on_am_pm(); break; case 'Q': handler.on_duration_value(); break; case 'q': handler.on_duration_unit(); break; case 'z': handler.on_utc_offset(numeric_system::standard); break; case 'Z': handler.on_tz_name(); break; // Alternative representation: case 'E': { if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr++; switch (c) { case 'Y': handler.on_year(numeric_system::alternative, pad); break; case 'y': handler.on_offset_year(); break; case 'C': handler.on_century(numeric_system::alternative); break; case 'c': handler.on_datetime(numeric_system::alternative); break; case 'x': handler.on_loc_date(numeric_system::alternative); break; case 'X': handler.on_loc_time(numeric_system::alternative); break; case 'z': handler.on_utc_offset(numeric_system::alternative); break; default: FMT_THROW(format_error("invalid format")); } break; } case 'O': if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr++; switch (c) { case 'y': handler.on_short_year(numeric_system::alternative); break; case 'm': handler.on_dec_month(numeric_system::alternative, pad); break; case 'U': handler.on_dec0_week_of_year(numeric_system::alternative, pad); break; case 'W': handler.on_dec1_week_of_year(numeric_system::alternative, pad); break; case 'V': handler.on_iso_week_of_year(numeric_system::alternative, pad); break; case 'd': handler.on_day_of_month(numeric_system::alternative, pad); break; case 'e': handler.on_day_of_month(numeric_system::alternative, pad_type::space); break; case 'w': handler.on_dec0_weekday(numeric_system::alternative); break; case 'u': handler.on_dec1_weekday(numeric_system::alternative); break; case 'H': handler.on_24_hour(numeric_system::alternative, pad); break; case 'I': handler.on_12_hour(numeric_system::alternative, pad); break; case 'M': handler.on_minute(numeric_system::alternative, pad); break; case 'S': handler.on_second(numeric_system::alternative, pad); break; case 'z': handler.on_utc_offset(numeric_system::alternative); break; default: FMT_THROW(format_error("invalid format")); } break; default: FMT_THROW(format_error("invalid format")); } begin = ptr; } if (begin != ptr) handler.on_text(begin, ptr); return ptr; } template struct null_chrono_spec_handler { FMT_CONSTEXPR void unsupported() { static_cast(this)->unsupported(); } FMT_CONSTEXPR void on_year(numeric_system, pad_type) { unsupported(); } FMT_CONSTEXPR void on_short_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_offset_year() { unsupported(); } FMT_CONSTEXPR void on_century(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_iso_week_based_year() { unsupported(); } FMT_CONSTEXPR void on_iso_week_based_short_year() { unsupported(); } FMT_CONSTEXPR void on_abbr_weekday() { unsupported(); } FMT_CONSTEXPR void on_full_weekday() { unsupported(); } FMT_CONSTEXPR void on_dec0_weekday(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_dec1_weekday(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_abbr_month() { unsupported(); } FMT_CONSTEXPR void on_full_month() { unsupported(); } FMT_CONSTEXPR void on_dec_month(numeric_system, pad_type) { unsupported(); } FMT_CONSTEXPR void on_dec0_week_of_year(numeric_system, pad_type) { unsupported(); } FMT_CONSTEXPR void on_dec1_week_of_year(numeric_system, pad_type) { unsupported(); } FMT_CONSTEXPR void on_iso_week_of_year(numeric_system, pad_type) { unsupported(); } FMT_CONSTEXPR void on_day_of_year(pad_type) { unsupported(); } FMT_CONSTEXPR void on_day_of_month(numeric_system, pad_type) { unsupported(); } FMT_CONSTEXPR void on_24_hour(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_12_hour(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_minute(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_second(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_datetime(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_loc_date(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_loc_time(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_us_date() { unsupported(); } FMT_CONSTEXPR void on_iso_date() { unsupported(); } FMT_CONSTEXPR void on_12_hour_time() { unsupported(); } FMT_CONSTEXPR void on_24_hour_time() { unsupported(); } FMT_CONSTEXPR void on_iso_time() { unsupported(); } FMT_CONSTEXPR void on_am_pm() { unsupported(); } FMT_CONSTEXPR void on_duration_value() { unsupported(); } FMT_CONSTEXPR void on_duration_unit() { unsupported(); } FMT_CONSTEXPR void on_utc_offset(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_tz_name() { unsupported(); } }; class tm_format_checker : public null_chrono_spec_handler { private: bool has_timezone_ = false; public: constexpr explicit tm_format_checker(bool has_timezone) : has_timezone_(has_timezone) {} FMT_NORETURN inline void unsupported() { FMT_THROW(format_error("no format")); } template FMT_CONSTEXPR void on_text(const Char*, const Char*) {} FMT_CONSTEXPR void on_year(numeric_system, pad_type) {} FMT_CONSTEXPR void on_short_year(numeric_system) {} FMT_CONSTEXPR void on_offset_year() {} FMT_CONSTEXPR void on_century(numeric_system) {} FMT_CONSTEXPR void on_iso_week_based_year() {} FMT_CONSTEXPR void on_iso_week_based_short_year() {} FMT_CONSTEXPR void on_abbr_weekday() {} FMT_CONSTEXPR void on_full_weekday() {} FMT_CONSTEXPR void on_dec0_weekday(numeric_system) {} FMT_CONSTEXPR void on_dec1_weekday(numeric_system) {} FMT_CONSTEXPR void on_abbr_month() {} FMT_CONSTEXPR void on_full_month() {} FMT_CONSTEXPR void on_dec_month(numeric_system, pad_type) {} FMT_CONSTEXPR void on_dec0_week_of_year(numeric_system, pad_type) {} FMT_CONSTEXPR void on_dec1_week_of_year(numeric_system, pad_type) {} FMT_CONSTEXPR void on_iso_week_of_year(numeric_system, pad_type) {} FMT_CONSTEXPR void on_day_of_year(pad_type) {} FMT_CONSTEXPR void on_day_of_month(numeric_system, pad_type) {} FMT_CONSTEXPR void on_24_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_12_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_minute(numeric_system, pad_type) {} FMT_CONSTEXPR void on_second(numeric_system, pad_type) {} FMT_CONSTEXPR void on_datetime(numeric_system) {} FMT_CONSTEXPR void on_loc_date(numeric_system) {} FMT_CONSTEXPR void on_loc_time(numeric_system) {} FMT_CONSTEXPR void on_us_date() {} FMT_CONSTEXPR void on_iso_date() {} FMT_CONSTEXPR void on_12_hour_time() {} FMT_CONSTEXPR void on_24_hour_time() {} FMT_CONSTEXPR void on_iso_time() {} FMT_CONSTEXPR void on_am_pm() {} FMT_CONSTEXPR void on_utc_offset(numeric_system) { if (!has_timezone_) FMT_THROW(format_error("no timezone")); } FMT_CONSTEXPR void on_tz_name() { if (!has_timezone_) FMT_THROW(format_error("no timezone")); } }; inline auto tm_wday_full_name(int wday) -> const char* { static constexpr const char* full_name_list[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; return wday >= 0 && wday <= 6 ? full_name_list[wday] : "?"; } inline auto tm_wday_short_name(int wday) -> const char* { static constexpr const char* short_name_list[] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; return wday >= 0 && wday <= 6 ? short_name_list[wday] : "???"; } inline auto tm_mon_full_name(int mon) -> const char* { static constexpr const char* full_name_list[] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}; return mon >= 0 && mon <= 11 ? full_name_list[mon] : "?"; } inline auto tm_mon_short_name(int mon) -> const char* { static constexpr const char* short_name_list[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", }; return mon >= 0 && mon <= 11 ? short_name_list[mon] : "???"; } template struct has_tm_gmtoff : std::false_type {}; template struct has_tm_gmtoff> : std::true_type {}; template struct has_tm_zone : std::false_type {}; template struct has_tm_zone> : std::true_type {}; template ::value)> auto set_tm_zone(T& time, char* tz) -> bool { time.tm_zone = tz; return true; } template ::value)> auto set_tm_zone(T&, char*) -> bool { return false; } inline auto utc() -> char* { static char tz[] = "UTC"; return tz; } // Converts value to Int and checks that it's in the range [0, upper). template ::value)> inline auto to_nonnegative_int(T value, Int upper) -> Int { if (!std::is_unsigned::value && (value < 0 || to_unsigned(value) > to_unsigned(upper))) { FMT_THROW(format_error("chrono value is out of range")); } return static_cast(value); } template ::value)> inline auto to_nonnegative_int(T value, Int upper) -> Int { auto int_value = static_cast(value); if (int_value < 0 || value > static_cast(upper)) FMT_THROW(format_error("invalid value")); return int_value; } constexpr auto pow10(std::uint32_t n) -> long long { return n == 0 ? 1 : 10 * pow10(n - 1); } // Counts the number of fractional digits in the range [0, 18] according to the // C++20 spec. If more than 18 fractional digits are required then returns 6 for // microseconds precision. template () / 10)> struct count_fractional_digits { static constexpr int value = Num % Den == 0 ? N : count_fractional_digits::value; }; // Base case that doesn't instantiate any more templates // in order to avoid overflow. template struct count_fractional_digits { static constexpr int value = (Num % Den == 0) ? N : 6; }; // Format subseconds which are given as an integer type with an appropriate // number of digits. template void write_fractional_seconds(OutputIt& out, Duration d, int precision = -1) { constexpr auto num_fractional_digits = count_fractional_digits::value; using subsecond_precision = std::chrono::duration< typename std::common_type::type, std::ratio<1, pow10(num_fractional_digits)>>; const auto fractional = d - detail::duration_cast(d); const auto subseconds = std::chrono::treat_as_floating_point< typename subsecond_precision::rep>::value ? fractional.count() : detail::duration_cast(fractional).count(); auto n = static_cast>(subseconds); const int num_digits = count_digits(n); int leading_zeroes = (std::max)(0, num_fractional_digits - num_digits); if (precision < 0) { FMT_ASSERT(!std::is_floating_point::value, ""); if (std::ratio_less::value) { *out++ = '.'; out = detail::fill_n(out, leading_zeroes, '0'); out = format_decimal(out, n, num_digits); } } else if (precision > 0) { *out++ = '.'; leading_zeroes = min_of(leading_zeroes, precision); int remaining = precision - leading_zeroes; out = detail::fill_n(out, leading_zeroes, '0'); if (remaining < num_digits) { int num_truncated_digits = num_digits - remaining; n /= to_unsigned(pow10(to_unsigned(num_truncated_digits))); if (n != 0) out = format_decimal(out, n, remaining); return; } if (n != 0) { out = format_decimal(out, n, num_digits); remaining -= num_digits; } out = detail::fill_n(out, remaining, '0'); } } // Format subseconds which are given as a floating point type with an // appropriate number of digits. We cannot pass the Duration here, as we // explicitly need to pass the Rep value in the duration_formatter. template void write_floating_seconds(memory_buffer& buf, Duration duration, int num_fractional_digits = -1) { using rep = typename Duration::rep; FMT_ASSERT(std::is_floating_point::value, ""); auto val = duration.count(); if (num_fractional_digits < 0) { // For `std::round` with fallback to `round`: // On some toolchains `std::round` is not available (e.g. GCC 6). using namespace std; num_fractional_digits = count_fractional_digits::value; if (num_fractional_digits < 6 && static_cast(round(val)) != val) num_fractional_digits = 6; } fmt::format_to(std::back_inserter(buf), FMT_STRING("{:.{}f}"), std::fmod(val * static_cast(Duration::period::num) / static_cast(Duration::period::den), static_cast(60)), num_fractional_digits); } template class tm_writer { private: static constexpr int days_per_week = 7; const std::locale& loc_; bool is_classic_; OutputIt out_; const Duration* subsecs_; const std::tm& tm_; auto tm_sec() const noexcept -> int { FMT_ASSERT(tm_.tm_sec >= 0 && tm_.tm_sec <= 61, ""); return tm_.tm_sec; } auto tm_min() const noexcept -> int { FMT_ASSERT(tm_.tm_min >= 0 && tm_.tm_min <= 59, ""); return tm_.tm_min; } auto tm_hour() const noexcept -> int { FMT_ASSERT(tm_.tm_hour >= 0 && tm_.tm_hour <= 23, ""); return tm_.tm_hour; } auto tm_mday() const noexcept -> int { FMT_ASSERT(tm_.tm_mday >= 1 && tm_.tm_mday <= 31, ""); return tm_.tm_mday; } auto tm_mon() const noexcept -> int { FMT_ASSERT(tm_.tm_mon >= 0 && tm_.tm_mon <= 11, ""); return tm_.tm_mon; } auto tm_year() const noexcept -> long long { return 1900ll + tm_.tm_year; } auto tm_wday() const noexcept -> int { FMT_ASSERT(tm_.tm_wday >= 0 && tm_.tm_wday <= 6, ""); return tm_.tm_wday; } auto tm_yday() const noexcept -> int { FMT_ASSERT(tm_.tm_yday >= 0 && tm_.tm_yday <= 365, ""); return tm_.tm_yday; } auto tm_hour12() const noexcept -> int { auto h = tm_hour(); auto z = h < 12 ? h : h - 12; return z == 0 ? 12 : z; } // POSIX and the C Standard are unclear or inconsistent about what %C and %y // do if the year is negative or exceeds 9999. Use the convention that %C // concatenated with %y yields the same output as %Y, and that %Y contains at // least 4 characters, with more only if necessary. auto split_year_lower(long long year) const noexcept -> int { auto l = year % 100; if (l < 0) l = -l; // l in [0, 99] return static_cast(l); } // Algorithm: https://en.wikipedia.org/wiki/ISO_week_date. auto iso_year_weeks(long long curr_year) const noexcept -> int { auto prev_year = curr_year - 1; auto curr_p = (curr_year + curr_year / 4 - curr_year / 100 + curr_year / 400) % days_per_week; auto prev_p = (prev_year + prev_year / 4 - prev_year / 100 + prev_year / 400) % days_per_week; return 52 + ((curr_p == 4 || prev_p == 3) ? 1 : 0); } auto iso_week_num(int tm_yday, int tm_wday) const noexcept -> int { return (tm_yday + 11 - (tm_wday == 0 ? days_per_week : tm_wday)) / days_per_week; } auto tm_iso_week_year() const noexcept -> long long { auto year = tm_year(); auto w = iso_week_num(tm_yday(), tm_wday()); if (w < 1) return year - 1; if (w > iso_year_weeks(year)) return year + 1; return year; } auto tm_iso_week_of_year() const noexcept -> int { auto year = tm_year(); auto w = iso_week_num(tm_yday(), tm_wday()); if (w < 1) return iso_year_weeks(year - 1); if (w > iso_year_weeks(year)) return 1; return w; } void write1(int value) { *out_++ = static_cast('0' + to_unsigned(value) % 10); } void write2(int value) { const char* d = digits2(to_unsigned(value) % 100); *out_++ = *d++; *out_++ = *d; } void write2(int value, pad_type pad) { unsigned int v = to_unsigned(value) % 100; if (v >= 10) { const char* d = digits2(v); *out_++ = *d++; *out_++ = *d; } else { out_ = detail::write_padding(out_, pad); *out_++ = static_cast('0' + v); } } void write_year_extended(long long year, pad_type pad) { // At least 4 characters. int width = 4; bool negative = year < 0; if (negative) { year = 0 - year; --width; } uint32_or_64_or_128_t n = to_unsigned(year); const int num_digits = count_digits(n); if (negative && pad == pad_type::zero) *out_++ = '-'; if (width > num_digits) out_ = detail::write_padding(out_, pad, width - num_digits); if (negative && pad != pad_type::zero) *out_++ = '-'; out_ = format_decimal(out_, n, num_digits); } void write_year(long long year, pad_type pad) { write_year_extended(year, pad); } void write_utc_offset(long long offset, numeric_system ns) { if (offset < 0) { *out_++ = '-'; offset = -offset; } else { *out_++ = '+'; } offset /= 60; write2(static_cast(offset / 60)); if (ns != numeric_system::standard) *out_++ = ':'; write2(static_cast(offset % 60)); } template ::value)> void format_utc_offset(const T& tm, numeric_system ns) { write_utc_offset(tm.tm_gmtoff, ns); } template ::value)> void format_utc_offset(const T&, numeric_system ns) { write_utc_offset(0, ns); } template ::value)> void format_tz_name(const T& tm) { out_ = write_tm_str(out_, tm.tm_zone, loc_); } template ::value)> void format_tz_name(const T&) { out_ = std::copy_n(utc(), 3, out_); } void format_localized(char format, char modifier = 0) { out_ = write(out_, tm_, loc_, format, modifier); } public: tm_writer(const std::locale& loc, OutputIt out, const std::tm& tm, const Duration* subsecs = nullptr) : loc_(loc), is_classic_(loc_ == get_classic_locale()), out_(out), subsecs_(subsecs), tm_(tm) {} auto out() const -> OutputIt { return out_; } FMT_CONSTEXPR void on_text(const Char* begin, const Char* end) { out_ = copy(begin, end, out_); } void on_abbr_weekday() { if (is_classic_) out_ = write(out_, tm_wday_short_name(tm_wday())); else format_localized('a'); } void on_full_weekday() { if (is_classic_) out_ = write(out_, tm_wday_full_name(tm_wday())); else format_localized('A'); } void on_dec0_weekday(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write1(tm_wday()); format_localized('w', 'O'); } void on_dec1_weekday(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto wday = tm_wday(); write1(wday == 0 ? days_per_week : wday); } else { format_localized('u', 'O'); } } void on_abbr_month() { if (is_classic_) out_ = write(out_, tm_mon_short_name(tm_mon())); else format_localized('b'); } void on_full_month() { if (is_classic_) out_ = write(out_, tm_mon_full_name(tm_mon())); else format_localized('B'); } void on_datetime(numeric_system ns) { if (is_classic_) { on_abbr_weekday(); *out_++ = ' '; on_abbr_month(); *out_++ = ' '; on_day_of_month(numeric_system::standard, pad_type::space); *out_++ = ' '; on_iso_time(); *out_++ = ' '; on_year(numeric_system::standard, pad_type::space); } else { format_localized('c', ns == numeric_system::standard ? '\0' : 'E'); } } void on_loc_date(numeric_system ns) { if (is_classic_) on_us_date(); else format_localized('x', ns == numeric_system::standard ? '\0' : 'E'); } void on_loc_time(numeric_system ns) { if (is_classic_) on_iso_time(); else format_localized('X', ns == numeric_system::standard ? '\0' : 'E'); } void on_us_date() { char buf[8]; write_digit2_separated(buf, to_unsigned(tm_mon() + 1), to_unsigned(tm_mday()), to_unsigned(split_year_lower(tm_year())), '/'); out_ = copy(std::begin(buf), std::end(buf), out_); } void on_iso_date() { auto year = tm_year(); char buf[10]; size_t offset = 0; if (year >= 0 && year < 10000) { write2digits(buf, static_cast(year / 100)); } else { offset = 4; write_year_extended(year, pad_type::zero); year = 0; } write_digit2_separated(buf + 2, static_cast(year % 100), to_unsigned(tm_mon() + 1), to_unsigned(tm_mday()), '-'); out_ = copy(std::begin(buf) + offset, std::end(buf), out_); } void on_utc_offset(numeric_system ns) { format_utc_offset(tm_, ns); } void on_tz_name() { format_tz_name(tm_); } void on_year(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write_year(tm_year(), pad); format_localized('Y', 'E'); } void on_short_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2(split_year_lower(tm_year())); format_localized('y', 'O'); } void on_offset_year() { if (is_classic_) return write2(split_year_lower(tm_year())); format_localized('y', 'E'); } void on_century(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto year = tm_year(); auto upper = year / 100; if (year >= -99 && year < 0) { // Zero upper on negative year. *out_++ = '-'; *out_++ = '0'; } else if (upper >= 0 && upper < 100) { write2(static_cast(upper)); } else { out_ = write(out_, upper); } } else { format_localized('C', 'E'); } } void on_dec_month(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_mon() + 1, pad); format_localized('m', 'O'); } void on_dec0_week_of_year(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2((tm_yday() + days_per_week - tm_wday()) / days_per_week, pad); format_localized('U', 'O'); } void on_dec1_week_of_year(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) { auto wday = tm_wday(); write2((tm_yday() + days_per_week - (wday == 0 ? (days_per_week - 1) : (wday - 1))) / days_per_week, pad); } else { format_localized('W', 'O'); } } void on_iso_week_of_year(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_iso_week_of_year(), pad); format_localized('V', 'O'); } void on_iso_week_based_year() { write_year(tm_iso_week_year(), pad_type::zero); } void on_iso_week_based_short_year() { write2(split_year_lower(tm_iso_week_year())); } void on_day_of_year(pad_type pad) { auto yday = tm_yday() + 1; auto digit1 = yday / 100; if (digit1 != 0) write1(digit1); else out_ = detail::write_padding(out_, pad); write2(yday % 100, pad); } void on_day_of_month(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_mday(), pad); format_localized('d', 'O'); } void on_24_hour(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_hour(), pad); format_localized('H', 'O'); } void on_12_hour(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_hour12(), pad); format_localized('I', 'O'); } void on_minute(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_min(), pad); format_localized('M', 'O'); } void on_second(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) { write2(tm_sec(), pad); if (subsecs_) { if (std::is_floating_point::value) { auto buf = memory_buffer(); write_floating_seconds(buf, *subsecs_); if (buf.size() > 1) { // Remove the leading "0", write something like ".123". out_ = copy(buf.begin() + 1, buf.end(), out_); } } else { write_fractional_seconds(out_, *subsecs_); } } } else { // Currently no formatting of subseconds when a locale is set. format_localized('S', 'O'); } } void on_12_hour_time() { if (is_classic_) { char buf[8]; write_digit2_separated(buf, to_unsigned(tm_hour12()), to_unsigned(tm_min()), to_unsigned(tm_sec()), ':'); out_ = copy(std::begin(buf), std::end(buf), out_); *out_++ = ' '; on_am_pm(); } else { format_localized('r'); } } void on_24_hour_time() { write2(tm_hour()); *out_++ = ':'; write2(tm_min()); } void on_iso_time() { on_24_hour_time(); *out_++ = ':'; on_second(numeric_system::standard, pad_type::zero); } void on_am_pm() { if (is_classic_) { *out_++ = tm_hour() < 12 ? 'A' : 'P'; *out_++ = 'M'; } else { format_localized('p'); } } // These apply to chrono durations but not tm. void on_duration_value() {} void on_duration_unit() {} }; struct chrono_format_checker : null_chrono_spec_handler { bool has_precision_integral = false; FMT_NORETURN inline void unsupported() { FMT_THROW(format_error("no date")); } template FMT_CONSTEXPR void on_text(const Char*, const Char*) {} FMT_CONSTEXPR void on_day_of_year(pad_type) {} FMT_CONSTEXPR void on_24_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_12_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_minute(numeric_system, pad_type) {} FMT_CONSTEXPR void on_second(numeric_system, pad_type) {} FMT_CONSTEXPR void on_12_hour_time() {} FMT_CONSTEXPR void on_24_hour_time() {} FMT_CONSTEXPR void on_iso_time() {} FMT_CONSTEXPR void on_am_pm() {} FMT_CONSTEXPR void on_duration_value() const { if (has_precision_integral) FMT_THROW(format_error("precision not allowed for this argument type")); } FMT_CONSTEXPR void on_duration_unit() {} }; template ::value&& has_isfinite::value)> inline auto isfinite(T) -> bool { return true; } template ::value)> inline auto mod(T x, int y) -> T { return x % static_cast(y); } template ::value)> inline auto mod(T x, int y) -> T { return std::fmod(x, static_cast(y)); } // If T is an integral type, maps T to its unsigned counterpart, otherwise // leaves it unchanged (unlike std::make_unsigned). template ::value> struct make_unsigned_or_unchanged { using type = T; }; template struct make_unsigned_or_unchanged { using type = typename std::make_unsigned::type; }; template ::value)> inline auto get_milliseconds(std::chrono::duration d) -> std::chrono::duration { // This may overflow and/or the result may not fit in the target type. #if FMT_SAFE_DURATION_CAST using common_seconds_type = typename std::common_type::type; auto d_as_common = detail::duration_cast(d); auto d_as_whole_seconds = detail::duration_cast(d_as_common); // This conversion should be nonproblematic. auto diff = d_as_common - d_as_whole_seconds; auto ms = detail::duration_cast>(diff); return ms; #else auto s = detail::duration_cast(d); return detail::duration_cast(d - s); #endif } template ::value)> auto format_duration_value(OutputIt out, Rep val, int) -> OutputIt { return write(out, val); } template ::value)> auto format_duration_value(OutputIt out, Rep val, int precision) -> OutputIt { auto specs = format_specs(); specs.precision = precision; specs.set_type(precision >= 0 ? presentation_type::fixed : presentation_type::general); return write(out, val, specs); } template auto copy_unit(string_view unit, OutputIt out, Char) -> OutputIt { return copy(unit.begin(), unit.end(), out); } template auto copy_unit(string_view unit, OutputIt out, wchar_t) -> OutputIt { // This works when wchar_t is UTF-32 because units only contain characters // that have the same representation in UTF-16 and UTF-32. utf8_to_utf16 u(unit); return copy(u.c_str(), u.c_str() + u.size(), out); } template auto format_duration_unit(OutputIt out) -> OutputIt { if (const char* unit = get_units()) return copy_unit(string_view(unit), out, Char()); *out++ = '['; out = write(out, Period::num); if (const_check(Period::den != 1)) { *out++ = '/'; out = write(out, Period::den); } *out++ = ']'; *out++ = 's'; return out; } class get_locale { private: union { std::locale locale_; }; bool has_locale_ = false; public: inline get_locale(bool localized, locale_ref loc) : has_locale_(localized) { if (localized) ::new (&locale_) std::locale(loc.template get()); } inline ~get_locale() { if (has_locale_) locale_.~locale(); } inline operator const std::locale&() const { return has_locale_ ? locale_ : get_classic_locale(); } }; template struct duration_formatter { using iterator = basic_appender; iterator out; // rep is unsigned to avoid overflow. using rep = conditional_t::value && sizeof(Rep) < sizeof(int), unsigned, typename make_unsigned_or_unchanged::type>; rep val; int precision; locale_ref locale; bool localized = false; using seconds = std::chrono::duration; seconds s; using milliseconds = std::chrono::duration; bool negative; using tm_writer_type = tm_writer; duration_formatter(iterator o, std::chrono::duration d, locale_ref loc) : out(o), val(static_cast(d.count())), locale(loc), negative(false) { if (d.count() < 0) { val = 0 - val; negative = true; } // this may overflow and/or the result may not fit in the // target type. // might need checked conversion (rep!=Rep) s = detail::duration_cast(std::chrono::duration(val)); } // returns true if nan or inf, writes to out. auto handle_nan_inf() -> bool { if (isfinite(val)) return false; if (isnan(val)) { write_nan(); return true; } // must be +-inf if (val > 0) std::copy_n("inf", 3, out); else std::copy_n("-inf", 4, out); return true; } auto days() const -> Rep { return static_cast(s.count() / 86400); } auto hour() const -> Rep { return static_cast(mod((s.count() / 3600), 24)); } auto hour12() const -> Rep { Rep hour = static_cast(mod((s.count() / 3600), 12)); return hour <= 0 ? 12 : hour; } auto minute() const -> Rep { return static_cast(mod((s.count() / 60), 60)); } auto second() const -> Rep { return static_cast(mod(s.count(), 60)); } auto time() const -> std::tm { auto time = std::tm(); time.tm_hour = to_nonnegative_int(hour(), 24); time.tm_min = to_nonnegative_int(minute(), 60); time.tm_sec = to_nonnegative_int(second(), 60); return time; } void write_sign() { if (!negative) return; *out++ = '-'; negative = false; } void write(Rep value, int width, pad_type pad = pad_type::zero) { write_sign(); if (isnan(value)) return write_nan(); uint32_or_64_or_128_t n = to_unsigned(to_nonnegative_int(value, max_value())); int num_digits = detail::count_digits(n); if (width > num_digits) { out = detail::write_padding(out, pad, width - num_digits); } out = format_decimal(out, n, num_digits); } void write_nan() { std::copy_n("nan", 3, out); } template void format_tm(const tm& time, Callback cb, Args... args) { if (isnan(val)) return write_nan(); get_locale loc(localized, locale); auto w = tm_writer_type(loc, out, time); (w.*cb)(args...); out = w.out(); } void on_text(const Char* begin, const Char* end) { copy(begin, end, out); } // These are not implemented because durations don't have date information. void on_abbr_weekday() {} void on_full_weekday() {} void on_dec0_weekday(numeric_system) {} void on_dec1_weekday(numeric_system) {} void on_abbr_month() {} void on_full_month() {} void on_datetime(numeric_system) {} void on_loc_date(numeric_system) {} void on_loc_time(numeric_system) {} void on_us_date() {} void on_iso_date() {} void on_utc_offset(numeric_system) {} void on_tz_name() {} void on_year(numeric_system, pad_type) {} void on_short_year(numeric_system) {} void on_offset_year() {} void on_century(numeric_system) {} void on_iso_week_based_year() {} void on_iso_week_based_short_year() {} void on_dec_month(numeric_system, pad_type) {} void on_dec0_week_of_year(numeric_system, pad_type) {} void on_dec1_week_of_year(numeric_system, pad_type) {} void on_iso_week_of_year(numeric_system, pad_type) {} void on_day_of_month(numeric_system, pad_type) {} void on_day_of_year(pad_type) { if (handle_nan_inf()) return; write(days(), 0); } void on_24_hour(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) return write(hour(), 2, pad); auto time = tm(); time.tm_hour = to_nonnegative_int(hour(), 24); format_tm(time, &tm_writer_type::on_24_hour, ns, pad); } void on_12_hour(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) return write(hour12(), 2, pad); auto time = tm(); time.tm_hour = to_nonnegative_int(hour12(), 12); format_tm(time, &tm_writer_type::on_12_hour, ns, pad); } void on_minute(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) return write(minute(), 2, pad); auto time = tm(); time.tm_min = to_nonnegative_int(minute(), 60); format_tm(time, &tm_writer_type::on_minute, ns, pad); } void on_second(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) { if (std::is_floating_point::value) { auto buf = memory_buffer(); write_floating_seconds(buf, std::chrono::duration(val), precision); if (negative) *out++ = '-'; if (buf.size() < 2 || buf[1] == '.') out = detail::write_padding(out, pad); out = copy(buf.begin(), buf.end(), out); } else { write(second(), 2, pad); write_fractional_seconds( out, std::chrono::duration(val), precision); } return; } auto time = tm(); time.tm_sec = to_nonnegative_int(second(), 60); format_tm(time, &tm_writer_type::on_second, ns, pad); } void on_12_hour_time() { if (handle_nan_inf()) return; format_tm(time(), &tm_writer_type::on_12_hour_time); } void on_24_hour_time() { if (handle_nan_inf()) { *out++ = ':'; handle_nan_inf(); return; } write(hour(), 2); *out++ = ':'; write(minute(), 2); } void on_iso_time() { on_24_hour_time(); *out++ = ':'; if (handle_nan_inf()) return; on_second(numeric_system::standard, pad_type::zero); } void on_am_pm() { if (handle_nan_inf()) return; format_tm(time(), &tm_writer_type::on_am_pm); } void on_duration_value() { if (handle_nan_inf()) return; write_sign(); out = format_duration_value(out, val, precision); } void on_duration_unit() { out = format_duration_unit(out); } }; } // namespace detail #if defined(__cpp_lib_chrono) && __cpp_lib_chrono >= 201907 using weekday = std::chrono::weekday; using day = std::chrono::day; using month = std::chrono::month; using year = std::chrono::year; using year_month_day = std::chrono::year_month_day; #else // A fallback version of weekday. class weekday { private: unsigned char value_; public: weekday() = default; constexpr explicit weekday(unsigned wd) noexcept : value_(static_cast(wd != 7 ? wd : 0)) {} constexpr auto c_encoding() const noexcept -> unsigned { return value_; } }; class day { private: unsigned char value_; public: day() = default; constexpr explicit day(unsigned d) noexcept : value_(static_cast(d)) {} constexpr explicit operator unsigned() const noexcept { return value_; } }; class month { private: unsigned char value_; public: month() = default; constexpr explicit month(unsigned m) noexcept : value_(static_cast(m)) {} constexpr explicit operator unsigned() const noexcept { return value_; } }; class year { private: int value_; public: year() = default; constexpr explicit year(int y) noexcept : value_(y) {} constexpr explicit operator int() const noexcept { return value_; } }; class year_month_day { private: fmt::year year_; fmt::month month_; fmt::day day_; public: year_month_day() = default; constexpr year_month_day(const year& y, const month& m, const day& d) noexcept : year_(y), month_(m), day_(d) {} constexpr auto year() const noexcept -> fmt::year { return year_; } constexpr auto month() const noexcept -> fmt::month { return month_; } constexpr auto day() const noexcept -> fmt::day { return day_; } }; #endif // __cpp_lib_chrono >= 201907 template struct formatter : private formatter { private: bool use_tm_formatter_ = false; public: FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(), end = ctx.end(); if (it != end && *it == 'L') { ++it; this->set_localized(); } use_tm_formatter_ = it != end && *it != '}'; return use_tm_formatter_ ? formatter::parse(ctx) : it; } template auto format(weekday wd, FormatContext& ctx) const -> decltype(ctx.out()) { auto time = std::tm(); time.tm_wday = static_cast(wd.c_encoding()); if (use_tm_formatter_) return formatter::format(time, ctx); detail::get_locale loc(this->localized(), ctx.locale()); auto w = detail::tm_writer(loc, ctx.out(), time); w.on_abbr_weekday(); return w.out(); } }; template struct formatter : private formatter { private: bool use_tm_formatter_ = false; public: FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(), end = ctx.end(); use_tm_formatter_ = it != end && *it != '}'; return use_tm_formatter_ ? formatter::parse(ctx) : it; } template auto format(day d, FormatContext& ctx) const -> decltype(ctx.out()) { auto time = std::tm(); time.tm_mday = static_cast(static_cast(d)); if (use_tm_formatter_) return formatter::format(time, ctx); detail::get_locale loc(false, ctx.locale()); auto w = detail::tm_writer(loc, ctx.out(), time); w.on_day_of_month(detail::numeric_system::standard, detail::pad_type::zero); return w.out(); } }; template struct formatter : private formatter { private: bool use_tm_formatter_ = false; public: FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(), end = ctx.end(); if (it != end && *it == 'L') { ++it; this->set_localized(); } use_tm_formatter_ = it != end && *it != '}'; return use_tm_formatter_ ? formatter::parse(ctx) : it; } template auto format(month m, FormatContext& ctx) const -> decltype(ctx.out()) { auto time = std::tm(); time.tm_mon = static_cast(static_cast(m)) - 1; if (use_tm_formatter_) return formatter::format(time, ctx); detail::get_locale loc(this->localized(), ctx.locale()); auto w = detail::tm_writer(loc, ctx.out(), time); w.on_abbr_month(); return w.out(); } }; template struct formatter : private formatter { private: bool use_tm_formatter_ = false; public: FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(), end = ctx.end(); use_tm_formatter_ = it != end && *it != '}'; return use_tm_formatter_ ? formatter::parse(ctx) : it; } template auto format(year y, FormatContext& ctx) const -> decltype(ctx.out()) { auto time = std::tm(); time.tm_year = static_cast(y) - 1900; if (use_tm_formatter_) return formatter::format(time, ctx); detail::get_locale loc(false, ctx.locale()); auto w = detail::tm_writer(loc, ctx.out(), time); w.on_year(detail::numeric_system::standard, detail::pad_type::zero); return w.out(); } }; template struct formatter : private formatter { private: bool use_tm_formatter_ = false; public: FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(), end = ctx.end(); use_tm_formatter_ = it != end && *it != '}'; return use_tm_formatter_ ? formatter::parse(ctx) : it; } template auto format(year_month_day val, FormatContext& ctx) const -> decltype(ctx.out()) { auto time = std::tm(); time.tm_year = static_cast(val.year()) - 1900; time.tm_mon = static_cast(static_cast(val.month())) - 1; time.tm_mday = static_cast(static_cast(val.day())); if (use_tm_formatter_) return formatter::format(time, ctx); detail::get_locale loc(true, ctx.locale()); auto w = detail::tm_writer(loc, ctx.out(), time); w.on_iso_date(); return w.out(); } }; template struct formatter, Char> { private: format_specs specs_; detail::arg_ref width_ref_; detail::arg_ref precision_ref_; basic_string_view fmt_; public: FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(), end = ctx.end(); if (it == end || *it == '}') return it; it = detail::parse_align(it, end, specs_); if (it == end) return it; Char c = *it; if ((c >= '0' && c <= '9') || c == '{') { it = detail::parse_width(it, end, specs_, width_ref_, ctx); if (it == end) return it; } auto checker = detail::chrono_format_checker(); if (*it == '.') { checker.has_precision_integral = !std::is_floating_point::value; it = detail::parse_precision(it, end, specs_, precision_ref_, ctx); } if (it != end && *it == 'L') { specs_.set_localized(); ++it; } end = detail::parse_chrono_format(it, end, checker); fmt_ = {it, detail::to_unsigned(end - it)}; return end; } template auto format(std::chrono::duration d, FormatContext& ctx) const -> decltype(ctx.out()) { auto specs = specs_; auto precision = specs.precision; specs.precision = -1; auto begin = fmt_.begin(), end = fmt_.end(); // As a possible future optimization, we could avoid extra copying if width // is not specified. auto buf = basic_memory_buffer(); auto out = basic_appender(buf); detail::handle_dynamic_spec(specs.dynamic_width(), specs.width, width_ref_, ctx); detail::handle_dynamic_spec(specs.dynamic_precision(), precision, precision_ref_, ctx); if (begin == end || *begin == '}') { out = detail::format_duration_value(out, d.count(), precision); detail::format_duration_unit(out); } else { auto f = detail::duration_formatter(out, d, ctx.locale()); f.precision = precision; f.localized = specs_.localized(); detail::parse_chrono_format(begin, end, f); } return detail::write( ctx.out(), basic_string_view(buf.data(), buf.size()), specs); } }; template struct formatter { private: format_specs specs_; detail::arg_ref width_ref_; basic_string_view fmt_ = detail::string_literal(); protected: auto localized() const -> bool { return specs_.localized(); } FMT_CONSTEXPR void set_localized() { specs_.set_localized(); } FMT_CONSTEXPR auto do_parse(parse_context& ctx, bool has_timezone) -> const Char* { auto it = ctx.begin(), end = ctx.end(); if (it == end || *it == '}') return it; it = detail::parse_align(it, end, specs_); if (it == end) return it; Char c = *it; if ((c >= '0' && c <= '9') || c == '{') { it = detail::parse_width(it, end, specs_, width_ref_, ctx); if (it == end) return it; } if (*it == 'L') { specs_.set_localized(); ++it; } end = detail::parse_chrono_format(it, end, detail::tm_format_checker(has_timezone)); // Replace the default format string only if the new spec is not empty. if (end != it) fmt_ = {it, detail::to_unsigned(end - it)}; return end; } template auto do_format(const std::tm& tm, FormatContext& ctx, const Duration* subsecs) const -> decltype(ctx.out()) { auto specs = specs_; auto buf = basic_memory_buffer(); auto out = basic_appender(buf); detail::handle_dynamic_spec(specs.dynamic_width(), specs.width, width_ref_, ctx); auto loc_ref = specs.localized() ? ctx.locale() : locale_ref(); detail::get_locale loc(static_cast(loc_ref), loc_ref); auto w = detail::tm_writer, Char, Duration>( loc, out, tm, subsecs); detail::parse_chrono_format(fmt_.begin(), fmt_.end(), w); return detail::write( ctx.out(), basic_string_view(buf.data(), buf.size()), specs); } public: FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return do_parse(ctx, detail::has_tm_gmtoff::value); } template auto format(const std::tm& tm, FormatContext& ctx) const -> decltype(ctx.out()) { return do_format(tm, ctx, nullptr); } }; // DEPRECATED! Reversed order of template parameters. template struct formatter, Char> : private formatter { FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return this->do_parse(ctx, true); } template auto format(sys_time val, FormatContext& ctx) const -> decltype(ctx.out()) { std::tm tm = gmtime(val); using period = typename Duration::period; if (detail::const_check( period::num == 1 && period::den == 1 && !std::is_floating_point::value)) { detail::set_tm_zone(tm, detail::utc()); return formatter::format(tm, ctx); } Duration epoch = val.time_since_epoch(); Duration subsecs = detail::duration_cast( epoch - detail::duration_cast(epoch)); if (subsecs.count() < 0) { auto second = detail::duration_cast(std::chrono::seconds(1)); if (tm.tm_sec != 0) { --tm.tm_sec; } else { tm = gmtime(val - second); detail::set_tm_zone(tm, detail::utc()); } subsecs += second; } return formatter::do_format(tm, ctx, &subsecs); } }; template struct formatter, Char> : formatter, Char> { template auto format(utc_time val, FormatContext& ctx) const -> decltype(ctx.out()) { return formatter, Char>::format( detail::utc_clock::to_sys(val), ctx); } }; template struct formatter, Char> : private formatter { FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return this->do_parse(ctx, false); } template auto format(local_time val, FormatContext& ctx) const -> decltype(ctx.out()) { auto time_since_epoch = val.time_since_epoch(); auto seconds_since_epoch = detail::duration_cast(time_since_epoch); // Use gmtime to prevent time zone conversion since local_time has an // unspecified time zone. std::tm t = gmtime(seconds_since_epoch.count()); using period = typename Duration::period; if (period::num == 1 && period::den == 1 && !std::is_floating_point::value) { return formatter::format(t, ctx); } auto subsecs = detail::duration_cast(time_since_epoch - seconds_since_epoch); return formatter::do_format(t, ctx, &subsecs); } }; FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_CHRONO_H_ btop-1.4.5/include/fmt/color.h000066400000000000000000000571141506333644200162030ustar00rootroot00000000000000// Formatting library for C++ - color support // // Copyright (c) 2018 - present, Victor Zverovich and fmt contributors // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_COLOR_H_ #define FMT_COLOR_H_ #include "format.h" FMT_BEGIN_NAMESPACE FMT_BEGIN_EXPORT enum class color : uint32_t { alice_blue = 0xF0F8FF, // rgb(240,248,255) antique_white = 0xFAEBD7, // rgb(250,235,215) aqua = 0x00FFFF, // rgb(0,255,255) aquamarine = 0x7FFFD4, // rgb(127,255,212) azure = 0xF0FFFF, // rgb(240,255,255) beige = 0xF5F5DC, // rgb(245,245,220) bisque = 0xFFE4C4, // rgb(255,228,196) black = 0x000000, // rgb(0,0,0) blanched_almond = 0xFFEBCD, // rgb(255,235,205) blue = 0x0000FF, // rgb(0,0,255) blue_violet = 0x8A2BE2, // rgb(138,43,226) brown = 0xA52A2A, // rgb(165,42,42) burly_wood = 0xDEB887, // rgb(222,184,135) cadet_blue = 0x5F9EA0, // rgb(95,158,160) chartreuse = 0x7FFF00, // rgb(127,255,0) chocolate = 0xD2691E, // rgb(210,105,30) coral = 0xFF7F50, // rgb(255,127,80) cornflower_blue = 0x6495ED, // rgb(100,149,237) cornsilk = 0xFFF8DC, // rgb(255,248,220) crimson = 0xDC143C, // rgb(220,20,60) cyan = 0x00FFFF, // rgb(0,255,255) dark_blue = 0x00008B, // rgb(0,0,139) dark_cyan = 0x008B8B, // rgb(0,139,139) dark_golden_rod = 0xB8860B, // rgb(184,134,11) dark_gray = 0xA9A9A9, // rgb(169,169,169) dark_green = 0x006400, // rgb(0,100,0) dark_khaki = 0xBDB76B, // rgb(189,183,107) dark_magenta = 0x8B008B, // rgb(139,0,139) dark_olive_green = 0x556B2F, // rgb(85,107,47) dark_orange = 0xFF8C00, // rgb(255,140,0) dark_orchid = 0x9932CC, // rgb(153,50,204) dark_red = 0x8B0000, // rgb(139,0,0) dark_salmon = 0xE9967A, // rgb(233,150,122) dark_sea_green = 0x8FBC8F, // rgb(143,188,143) dark_slate_blue = 0x483D8B, // rgb(72,61,139) dark_slate_gray = 0x2F4F4F, // rgb(47,79,79) dark_turquoise = 0x00CED1, // rgb(0,206,209) dark_violet = 0x9400D3, // rgb(148,0,211) deep_pink = 0xFF1493, // rgb(255,20,147) deep_sky_blue = 0x00BFFF, // rgb(0,191,255) dim_gray = 0x696969, // rgb(105,105,105) dodger_blue = 0x1E90FF, // rgb(30,144,255) fire_brick = 0xB22222, // rgb(178,34,34) floral_white = 0xFFFAF0, // rgb(255,250,240) forest_green = 0x228B22, // rgb(34,139,34) fuchsia = 0xFF00FF, // rgb(255,0,255) gainsboro = 0xDCDCDC, // rgb(220,220,220) ghost_white = 0xF8F8FF, // rgb(248,248,255) gold = 0xFFD700, // rgb(255,215,0) golden_rod = 0xDAA520, // rgb(218,165,32) gray = 0x808080, // rgb(128,128,128) green = 0x008000, // rgb(0,128,0) green_yellow = 0xADFF2F, // rgb(173,255,47) honey_dew = 0xF0FFF0, // rgb(240,255,240) hot_pink = 0xFF69B4, // rgb(255,105,180) indian_red = 0xCD5C5C, // rgb(205,92,92) indigo = 0x4B0082, // rgb(75,0,130) ivory = 0xFFFFF0, // rgb(255,255,240) khaki = 0xF0E68C, // rgb(240,230,140) lavender = 0xE6E6FA, // rgb(230,230,250) lavender_blush = 0xFFF0F5, // rgb(255,240,245) lawn_green = 0x7CFC00, // rgb(124,252,0) lemon_chiffon = 0xFFFACD, // rgb(255,250,205) light_blue = 0xADD8E6, // rgb(173,216,230) light_coral = 0xF08080, // rgb(240,128,128) light_cyan = 0xE0FFFF, // rgb(224,255,255) light_golden_rod_yellow = 0xFAFAD2, // rgb(250,250,210) light_gray = 0xD3D3D3, // rgb(211,211,211) light_green = 0x90EE90, // rgb(144,238,144) light_pink = 0xFFB6C1, // rgb(255,182,193) light_salmon = 0xFFA07A, // rgb(255,160,122) light_sea_green = 0x20B2AA, // rgb(32,178,170) light_sky_blue = 0x87CEFA, // rgb(135,206,250) light_slate_gray = 0x778899, // rgb(119,136,153) light_steel_blue = 0xB0C4DE, // rgb(176,196,222) light_yellow = 0xFFFFE0, // rgb(255,255,224) lime = 0x00FF00, // rgb(0,255,0) lime_green = 0x32CD32, // rgb(50,205,50) linen = 0xFAF0E6, // rgb(250,240,230) magenta = 0xFF00FF, // rgb(255,0,255) maroon = 0x800000, // rgb(128,0,0) medium_aquamarine = 0x66CDAA, // rgb(102,205,170) medium_blue = 0x0000CD, // rgb(0,0,205) medium_orchid = 0xBA55D3, // rgb(186,85,211) medium_purple = 0x9370DB, // rgb(147,112,219) medium_sea_green = 0x3CB371, // rgb(60,179,113) medium_slate_blue = 0x7B68EE, // rgb(123,104,238) medium_spring_green = 0x00FA9A, // rgb(0,250,154) medium_turquoise = 0x48D1CC, // rgb(72,209,204) medium_violet_red = 0xC71585, // rgb(199,21,133) midnight_blue = 0x191970, // rgb(25,25,112) mint_cream = 0xF5FFFA, // rgb(245,255,250) misty_rose = 0xFFE4E1, // rgb(255,228,225) moccasin = 0xFFE4B5, // rgb(255,228,181) navajo_white = 0xFFDEAD, // rgb(255,222,173) navy = 0x000080, // rgb(0,0,128) old_lace = 0xFDF5E6, // rgb(253,245,230) olive = 0x808000, // rgb(128,128,0) olive_drab = 0x6B8E23, // rgb(107,142,35) orange = 0xFFA500, // rgb(255,165,0) orange_red = 0xFF4500, // rgb(255,69,0) orchid = 0xDA70D6, // rgb(218,112,214) pale_golden_rod = 0xEEE8AA, // rgb(238,232,170) pale_green = 0x98FB98, // rgb(152,251,152) pale_turquoise = 0xAFEEEE, // rgb(175,238,238) pale_violet_red = 0xDB7093, // rgb(219,112,147) papaya_whip = 0xFFEFD5, // rgb(255,239,213) peach_puff = 0xFFDAB9, // rgb(255,218,185) peru = 0xCD853F, // rgb(205,133,63) pink = 0xFFC0CB, // rgb(255,192,203) plum = 0xDDA0DD, // rgb(221,160,221) powder_blue = 0xB0E0E6, // rgb(176,224,230) purple = 0x800080, // rgb(128,0,128) rebecca_purple = 0x663399, // rgb(102,51,153) red = 0xFF0000, // rgb(255,0,0) rosy_brown = 0xBC8F8F, // rgb(188,143,143) royal_blue = 0x4169E1, // rgb(65,105,225) saddle_brown = 0x8B4513, // rgb(139,69,19) salmon = 0xFA8072, // rgb(250,128,114) sandy_brown = 0xF4A460, // rgb(244,164,96) sea_green = 0x2E8B57, // rgb(46,139,87) sea_shell = 0xFFF5EE, // rgb(255,245,238) sienna = 0xA0522D, // rgb(160,82,45) silver = 0xC0C0C0, // rgb(192,192,192) sky_blue = 0x87CEEB, // rgb(135,206,235) slate_blue = 0x6A5ACD, // rgb(106,90,205) slate_gray = 0x708090, // rgb(112,128,144) snow = 0xFFFAFA, // rgb(255,250,250) spring_green = 0x00FF7F, // rgb(0,255,127) steel_blue = 0x4682B4, // rgb(70,130,180) tan = 0xD2B48C, // rgb(210,180,140) teal = 0x008080, // rgb(0,128,128) thistle = 0xD8BFD8, // rgb(216,191,216) tomato = 0xFF6347, // rgb(255,99,71) turquoise = 0x40E0D0, // rgb(64,224,208) violet = 0xEE82EE, // rgb(238,130,238) wheat = 0xF5DEB3, // rgb(245,222,179) white = 0xFFFFFF, // rgb(255,255,255) white_smoke = 0xF5F5F5, // rgb(245,245,245) yellow = 0xFFFF00, // rgb(255,255,0) yellow_green = 0x9ACD32 // rgb(154,205,50) }; // enum class color enum class terminal_color : uint8_t { black = 30, red, green, yellow, blue, magenta, cyan, white, bright_black = 90, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white }; enum class emphasis : uint8_t { bold = 1, faint = 1 << 1, italic = 1 << 2, underline = 1 << 3, blink = 1 << 4, reverse = 1 << 5, conceal = 1 << 6, strikethrough = 1 << 7, }; // rgb is a struct for red, green and blue colors. // Using the name "rgb" makes some editors show the color in a tooltip. struct rgb { constexpr rgb() : r(0), g(0), b(0) {} constexpr rgb(uint8_t r_, uint8_t g_, uint8_t b_) : r(r_), g(g_), b(b_) {} constexpr rgb(uint32_t hex) : r((hex >> 16) & 0xFF), g((hex >> 8) & 0xFF), b(hex & 0xFF) {} constexpr rgb(color hex) : r((uint32_t(hex) >> 16) & 0xFF), g((uint32_t(hex) >> 8) & 0xFF), b(uint32_t(hex) & 0xFF) {} uint8_t r; uint8_t g; uint8_t b; }; namespace detail { // A bit-packed variant of an RGB color, a terminal color, or unset color. // see text_style for the bit-packing scheme. struct color_type { constexpr color_type() noexcept = default; constexpr color_type(color rgb_color) noexcept : value_(static_cast(rgb_color) | (1 << 24)) {} constexpr color_type(rgb rgb_color) noexcept : color_type(static_cast( (static_cast(rgb_color.r) << 16) | (static_cast(rgb_color.g) << 8) | rgb_color.b)) {} constexpr color_type(terminal_color term_color) noexcept : value_(static_cast(term_color) | (3 << 24)) {} constexpr auto is_terminal_color() const noexcept -> bool { return (value_ & (1 << 25)) != 0; } constexpr auto value() const noexcept -> uint32_t { return value_ & 0xFFFFFF; } constexpr color_type(uint32_t value) noexcept : value_(value) {} uint32_t value_ = 0; }; } // namespace detail /// A text style consisting of foreground and background colors and emphasis. class text_style { // The information is packed as follows: // ┌──┠// │ 0│─┠// │..│ ├── foreground color value // │23│─┘ // ├──┤ // │24│─┬── discriminator for the above value. 00 if unset, 01 if it's // │25│─┘ an RGB color, or 11 if it's a terminal color (10 is unused) // ├──┤ // │26│──── overflow bit, always zero (see below) // ├──┤ // │27│─┠// │..│ │ // │50│ │ // ├──┤ │ // │51│ ├── background color (same format as the foreground color) // │52│ │ // ├──┤ │ // │53│─┘ // ├──┤ // │54│─┠// │..│ ├── emphases // │61│─┘ // ├──┤ // │62│─┬── unused // │63│─┘ // └──┘ // The overflow bits are there to make operator|= efficient. // When ORing, we must throw if, for either the foreground or background, // one style specifies a terminal color and the other specifies any color // (terminal or RGB); in other words, if one discriminator is 11 and the // other is 11 or 01. // // We do that check by adding the styles. Consider what adding does to each // possible pair of discriminators: // 00 + 00 = 000 // 01 + 00 = 001 // 11 + 00 = 011 // 01 + 01 = 010 // 11 + 01 = 100 (!!) // 11 + 11 = 110 (!!) // In the last two cases, the ones we want to catch, the third bit——the // overflow bit——is set. Bingo. // // We must take into account the possible carry bit from the bits // before the discriminator. The only potentially problematic case is // 11 + 00 = 011 (a carry bit would make it 100, not good!), but a carry // bit is impossible in that case, because 00 (unset color) means the // 24 bits that precede the discriminator are all zero. // // This test can be applied to both colors simultaneously. public: FMT_CONSTEXPR text_style(emphasis em = emphasis()) noexcept : style_(static_cast(em) << 54) {} FMT_CONSTEXPR auto operator|=(text_style rhs) -> text_style& { if (((style_ + rhs.style_) & ((1ULL << 26) | (1ULL << 53))) != 0) report_error("can't OR a terminal color"); style_ |= rhs.style_; return *this; } friend FMT_CONSTEXPR auto operator|(text_style lhs, text_style rhs) -> text_style { return lhs |= rhs; } FMT_CONSTEXPR auto operator==(text_style rhs) const noexcept -> bool { return style_ == rhs.style_; } FMT_CONSTEXPR auto operator!=(text_style rhs) const noexcept -> bool { return !(*this == rhs); } FMT_CONSTEXPR auto has_foreground() const noexcept -> bool { return (style_ & (1 << 24)) != 0; } FMT_CONSTEXPR auto has_background() const noexcept -> bool { return (style_ & (1ULL << 51)) != 0; } FMT_CONSTEXPR auto has_emphasis() const noexcept -> bool { return (style_ >> 54) != 0; } FMT_CONSTEXPR auto get_foreground() const noexcept -> detail::color_type { FMT_ASSERT(has_foreground(), "no foreground specified for this style"); return style_ & 0x3FFFFFF; } FMT_CONSTEXPR auto get_background() const noexcept -> detail::color_type { FMT_ASSERT(has_background(), "no background specified for this style"); return (style_ >> 27) & 0x3FFFFFF; } FMT_CONSTEXPR auto get_emphasis() const noexcept -> emphasis { FMT_ASSERT(has_emphasis(), "no emphasis specified for this style"); return static_cast(style_ >> 54); } private: FMT_CONSTEXPR text_style(uint64_t style) noexcept : style_(style) {} friend FMT_CONSTEXPR auto fg(detail::color_type foreground) noexcept -> text_style; friend FMT_CONSTEXPR auto bg(detail::color_type background) noexcept -> text_style; uint64_t style_ = 0; }; /// Creates a text style from the foreground (text) color. FMT_CONSTEXPR inline auto fg(detail::color_type foreground) noexcept -> text_style { return foreground.value_; } /// Creates a text style from the background color. FMT_CONSTEXPR inline auto bg(detail::color_type background) noexcept -> text_style { return static_cast(background.value_) << 27; } FMT_CONSTEXPR inline auto operator|(emphasis lhs, emphasis rhs) noexcept -> text_style { return text_style(lhs) | rhs; } namespace detail { template struct ansi_color_escape { FMT_CONSTEXPR ansi_color_escape(color_type text_color, const char* esc) noexcept { // If we have a terminal color, we need to output another escape code // sequence. if (text_color.is_terminal_color()) { bool is_background = esc == string_view("\x1b[48;2;"); uint32_t value = text_color.value(); // Background ASCII codes are the same as the foreground ones but with // 10 more. if (is_background) value += 10u; buffer[size++] = static_cast('\x1b'); buffer[size++] = static_cast('['); if (value >= 100u) { buffer[size++] = static_cast('1'); value %= 100u; } buffer[size++] = static_cast('0' + value / 10u); buffer[size++] = static_cast('0' + value % 10u); buffer[size++] = static_cast('m'); return; } for (int i = 0; i < 7; i++) { buffer[i] = static_cast(esc[i]); } rgb color(text_color.value()); to_esc(color.r, buffer + 7, ';'); to_esc(color.g, buffer + 11, ';'); to_esc(color.b, buffer + 15, 'm'); size = 19; } FMT_CONSTEXPR ansi_color_escape(emphasis em) noexcept { uint8_t em_codes[num_emphases] = {}; if (has_emphasis(em, emphasis::bold)) em_codes[0] = 1; if (has_emphasis(em, emphasis::faint)) em_codes[1] = 2; if (has_emphasis(em, emphasis::italic)) em_codes[2] = 3; if (has_emphasis(em, emphasis::underline)) em_codes[3] = 4; if (has_emphasis(em, emphasis::blink)) em_codes[4] = 5; if (has_emphasis(em, emphasis::reverse)) em_codes[5] = 7; if (has_emphasis(em, emphasis::conceal)) em_codes[6] = 8; if (has_emphasis(em, emphasis::strikethrough)) em_codes[7] = 9; buffer[size++] = static_cast('\x1b'); buffer[size++] = static_cast('['); for (size_t i = 0; i < num_emphases; ++i) { if (!em_codes[i]) continue; buffer[size++] = static_cast('0' + em_codes[i]); buffer[size++] = static_cast(';'); } buffer[size - 1] = static_cast('m'); } FMT_CONSTEXPR operator const Char*() const noexcept { return buffer; } FMT_CONSTEXPR auto begin() const noexcept -> const Char* { return buffer; } FMT_CONSTEXPR auto end() const noexcept -> const Char* { return buffer + size; } private: static constexpr size_t num_emphases = 8; Char buffer[7u + 4u * num_emphases]; size_t size = 0; static FMT_CONSTEXPR void to_esc(uint8_t c, Char* out, char delimiter) noexcept { out[0] = static_cast('0' + c / 100); out[1] = static_cast('0' + c / 10 % 10); out[2] = static_cast('0' + c % 10); out[3] = static_cast(delimiter); } static FMT_CONSTEXPR auto has_emphasis(emphasis em, emphasis mask) noexcept -> bool { return static_cast(em) & static_cast(mask); } }; template FMT_CONSTEXPR auto make_foreground_color(color_type foreground) noexcept -> ansi_color_escape { return ansi_color_escape(foreground, "\x1b[38;2;"); } template FMT_CONSTEXPR auto make_background_color(color_type background) noexcept -> ansi_color_escape { return ansi_color_escape(background, "\x1b[48;2;"); } template FMT_CONSTEXPR auto make_emphasis(emphasis em) noexcept -> ansi_color_escape { return ansi_color_escape(em); } template inline void reset_color(buffer& buffer) { auto reset_color = string_view("\x1b[0m"); buffer.append(reset_color.begin(), reset_color.end()); } template struct styled_arg : view { const T& value; text_style style; styled_arg(const T& v, text_style s) : value(v), style(s) {} }; template void vformat_to(buffer& buf, text_style ts, basic_string_view fmt, basic_format_args> args) { if (ts.has_emphasis()) { auto emphasis = make_emphasis(ts.get_emphasis()); buf.append(emphasis.begin(), emphasis.end()); } if (ts.has_foreground()) { auto foreground = make_foreground_color(ts.get_foreground()); buf.append(foreground.begin(), foreground.end()); } if (ts.has_background()) { auto background = make_background_color(ts.get_background()); buf.append(background.begin(), background.end()); } vformat_to(buf, fmt, args); if (ts != text_style()) reset_color(buf); } } // namespace detail inline void vprint(FILE* f, text_style ts, string_view fmt, format_args args) { auto buf = memory_buffer(); detail::vformat_to(buf, ts, fmt, args); print(f, FMT_STRING("{}"), string_view(buf.begin(), buf.size())); } /** * Formats a string and prints it to the specified file stream using ANSI * escape sequences to specify text formatting. * * **Example**: * * fmt::print(fmt::emphasis::bold | fg(fmt::color::red), * "Elapsed time: {0:.2f} seconds", 1.23); */ template void print(FILE* f, text_style ts, format_string fmt, T&&... args) { vprint(f, ts, fmt.str, vargs{{args...}}); } /** * Formats a string and prints it to stdout using ANSI escape sequences to * specify text formatting. * * **Example**: * * fmt::print(fmt::emphasis::bold | fg(fmt::color::red), * "Elapsed time: {0:.2f} seconds", 1.23); */ template void print(text_style ts, format_string fmt, T&&... args) { return print(stdout, ts, fmt, std::forward(args)...); } inline auto vformat(text_style ts, string_view fmt, format_args args) -> std::string { auto buf = memory_buffer(); detail::vformat_to(buf, ts, fmt, args); return fmt::to_string(buf); } /** * Formats arguments and returns the result as a string using ANSI escape * sequences to specify text formatting. * * **Example**: * * ``` * #include * std::string message = fmt::format(fmt::emphasis::bold | fg(fmt::color::red), * "The answer is {}", 42); * ``` */ template inline auto format(text_style ts, format_string fmt, T&&... args) -> std::string { return fmt::vformat(ts, fmt.str, vargs{{args...}}); } /// Formats a string with the given text_style and writes the output to `out`. template ::value)> auto vformat_to(OutputIt out, text_style ts, string_view fmt, format_args args) -> OutputIt { auto&& buf = detail::get_buffer(out); detail::vformat_to(buf, ts, fmt, args); return detail::get_iterator(buf, out); } /** * Formats arguments with the given text style, writes the result to the output * iterator `out` and returns the iterator past the end of the output range. * * **Example**: * * std::vector out; * fmt::format_to(std::back_inserter(out), * fmt::emphasis::bold | fg(fmt::color::red), "{}", 42); */ template ::value)> inline auto format_to(OutputIt out, text_style ts, format_string fmt, T&&... args) -> OutputIt { return vformat_to(out, ts, fmt.str, vargs{{args...}}); } template struct formatter, Char> : formatter { template auto format(const detail::styled_arg& arg, FormatContext& ctx) const -> decltype(ctx.out()) { const auto& ts = arg.style; auto out = ctx.out(); bool has_style = false; if (ts.has_emphasis()) { has_style = true; auto emphasis = detail::make_emphasis(ts.get_emphasis()); out = detail::copy(emphasis.begin(), emphasis.end(), out); } if (ts.has_foreground()) { has_style = true; auto foreground = detail::make_foreground_color(ts.get_foreground()); out = detail::copy(foreground.begin(), foreground.end(), out); } if (ts.has_background()) { has_style = true; auto background = detail::make_background_color(ts.get_background()); out = detail::copy(background.begin(), background.end(), out); } out = formatter::format(arg.value, ctx); if (has_style) { auto reset_color = string_view("\x1b[0m"); out = detail::copy(reset_color.begin(), reset_color.end(), out); } return out; } }; /** * Returns an argument that will be formatted using ANSI escape sequences, * to be used in a formatting function. * * **Example**: * * fmt::print("Elapsed time: {0:.2f} seconds", * fmt::styled(1.23, fmt::fg(fmt::color::green) | * fmt::bg(fmt::color::blue))); */ template FMT_CONSTEXPR auto styled(const T& value, text_style ts) -> detail::styled_arg> { return detail::styled_arg>{value, ts}; } FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_COLOR_H_ btop-1.4.5/include/fmt/compile.h000066400000000000000000000477671506333644200165320ustar00rootroot00000000000000// Formatting library for C++ - experimental format string compilation // // Copyright (c) 2012 - present, Victor Zverovich and fmt contributors // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_COMPILE_H_ #define FMT_COMPILE_H_ #ifndef FMT_MODULE # include // std::back_inserter #endif #include "format.h" FMT_BEGIN_NAMESPACE // A compile-time string which is compiled into fast formatting code. FMT_EXPORT class compiled_string {}; template struct is_compiled_string : std::is_base_of {}; /** * Converts a string literal `s` into a format string that will be parsed at * compile time and converted into efficient formatting code. Requires C++17 * `constexpr if` compiler support. * * **Example**: * * // Converts 42 into std::string using the most efficient method and no * // runtime format string processing. * std::string s = fmt::format(FMT_COMPILE("{}"), 42); */ #if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) # define FMT_COMPILE(s) FMT_STRING_IMPL(s, fmt::compiled_string) #else # define FMT_COMPILE(s) FMT_STRING(s) #endif /** * Converts a string literal into a format string that will be parsed at * compile time and converted into efficient formatting code. Requires support * for class types in constant template parameters (a C++20 feature). * * **Example**: * * // Converts 42 into std::string using the most efficient method and no * // runtime format string processing. * using namespace fmt::literals; * std::string s = fmt::format("{}"_cf, 42); */ #if FMT_USE_NONTYPE_TEMPLATE_ARGS inline namespace literals { template constexpr auto operator""_cf() { return FMT_COMPILE(Str.data); } } // namespace literals #endif namespace detail { template constexpr auto first(const T& value, const Tail&...) -> const T& { return value; } #if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) template struct type_list {}; // Returns a reference to the argument at index N from [first, rest...]. template constexpr auto get([[maybe_unused]] const T& first, [[maybe_unused]] const Args&... rest) -> const auto& { static_assert(N < 1 + sizeof...(Args), "index is out of bounds"); if constexpr (N == 0) return first; else return detail::get(rest...); } # if FMT_USE_NONTYPE_TEMPLATE_ARGS template constexpr auto get_arg_index_by_name(basic_string_view name) -> int { if constexpr (is_static_named_arg()) { if (name == T::name) return N; } if constexpr (sizeof...(Args) > 0) return get_arg_index_by_name(name); (void)name; // Workaround an MSVC bug about "unused" parameter. return -1; } # endif template FMT_CONSTEXPR auto get_arg_index_by_name(basic_string_view name) -> int { # if FMT_USE_NONTYPE_TEMPLATE_ARGS if constexpr (sizeof...(Args) > 0) return get_arg_index_by_name<0, Args...>(name); # endif (void)name; return -1; } template constexpr auto get_arg_index_by_name(basic_string_view name, type_list) -> int { return get_arg_index_by_name(name); } template struct get_type_impl; template struct get_type_impl> { using type = remove_cvref_t(std::declval()...))>; }; template using get_type = typename get_type_impl::type; template struct is_compiled_format : std::false_type {}; template struct text { basic_string_view data; using char_type = Char; template constexpr auto format(OutputIt out, const T&...) const -> OutputIt { return write(out, data); } }; template struct is_compiled_format> : std::true_type {}; template constexpr auto make_text(basic_string_view s, size_t pos, size_t size) -> text { return {{&s[pos], size}}; } template struct code_unit { Char value; using char_type = Char; template constexpr auto format(OutputIt out, const T&...) const -> OutputIt { *out++ = value; return out; } }; // This ensures that the argument type is convertible to `const T&`. template constexpr auto get_arg_checked(const Args&... args) -> const T& { const auto& arg = detail::get(args...); if constexpr (detail::is_named_arg>()) { return arg.value; } else { return arg; } } template struct is_compiled_format> : std::true_type {}; // A replacement field that refers to argument N. template struct field { using char_type = Char; template constexpr auto format(OutputIt out, const T&... args) const -> OutputIt { const V& arg = get_arg_checked(args...); if constexpr (std::is_convertible>::value) { auto s = basic_string_view(arg); return copy(s.begin(), s.end(), out); } else { return write(out, arg); } } }; template struct is_compiled_format> : std::true_type {}; // A replacement field that refers to argument with name. template struct runtime_named_field { using char_type = Char; basic_string_view name; template constexpr static auto try_format_argument( OutputIt& out, // [[maybe_unused]] due to unused-but-set-parameter warning in GCC 7,8,9 [[maybe_unused]] basic_string_view arg_name, const T& arg) -> bool { if constexpr (is_named_arg::type>::value) { if (arg_name == arg.name) { out = write(out, arg.value); return true; } } return false; } template constexpr auto format(OutputIt out, const T&... args) const -> OutputIt { bool found = (try_format_argument(out, name, args) || ...); if (!found) { FMT_THROW(format_error("argument with specified name is not found")); } return out; } }; template struct is_compiled_format> : std::true_type {}; // A replacement field that refers to argument N and has format specifiers. template struct spec_field { using char_type = Char; formatter fmt; template constexpr FMT_INLINE auto format(OutputIt out, const T&... args) const -> OutputIt { const auto& vargs = fmt::make_format_args>(args...); basic_format_context ctx(out, vargs); return fmt.format(get_arg_checked(args...), ctx); } }; template struct is_compiled_format> : std::true_type {}; template struct concat { L lhs; R rhs; using char_type = typename L::char_type; template constexpr auto format(OutputIt out, const T&... args) const -> OutputIt { out = lhs.format(out, args...); return rhs.format(out, args...); } }; template struct is_compiled_format> : std::true_type {}; template constexpr auto make_concat(L lhs, R rhs) -> concat { return {lhs, rhs}; } struct unknown_format {}; template constexpr auto parse_text(basic_string_view str, size_t pos) -> size_t { for (size_t size = str.size(); pos != size; ++pos) { if (str[pos] == '{' || str[pos] == '}') break; } return pos; } template constexpr auto compile_format_string(S fmt); template constexpr auto parse_tail(T head, S fmt) { if constexpr (POS != basic_string_view(fmt).size()) { constexpr auto tail = compile_format_string(fmt); if constexpr (std::is_same, unknown_format>()) return tail; else return make_concat(head, tail); } else { return head; } } template struct parse_specs_result { formatter fmt; size_t end; int next_arg_id; }; enum { manual_indexing_id = -1 }; template constexpr auto parse_specs(basic_string_view str, size_t pos, int next_arg_id) -> parse_specs_result { str.remove_prefix(pos); auto ctx = compile_parse_context(str, max_value(), nullptr, next_arg_id); auto f = formatter(); auto end = f.parse(ctx); return {f, pos + fmt::detail::to_unsigned(end - str.data()), next_arg_id == 0 ? manual_indexing_id : ctx.next_arg_id()}; } template struct arg_id_handler { arg_id_kind kind; arg_ref arg_id; constexpr auto on_auto() -> int { FMT_ASSERT(false, "handler cannot be used with automatic indexing"); return 0; } constexpr auto on_index(int id) -> int { kind = arg_id_kind::index; arg_id = arg_ref(id); return 0; } constexpr auto on_name(basic_string_view id) -> int { kind = arg_id_kind::name; arg_id = arg_ref(id); return 0; } }; template struct parse_arg_id_result { arg_id_kind kind; arg_ref arg_id; const Char* arg_id_end; }; template constexpr auto parse_arg_id(const Char* begin, const Char* end) { auto handler = arg_id_handler{arg_id_kind::none, arg_ref{}}; auto arg_id_end = parse_arg_id(begin, end, handler); return parse_arg_id_result{handler.kind, handler.arg_id, arg_id_end}; } template struct field_type { using type = remove_cvref_t; }; template struct field_type::value>> { using type = remove_cvref_t; }; template constexpr auto parse_replacement_field_then_tail(S fmt) { using char_type = typename S::char_type; constexpr auto str = basic_string_view(fmt); constexpr char_type c = END_POS != str.size() ? str[END_POS] : char_type(); if constexpr (c == '}') { return parse_tail( field::type, ARG_INDEX>(), fmt); } else if constexpr (c != ':') { FMT_THROW(format_error("expected ':'")); } else { constexpr auto result = parse_specs::type>( str, END_POS + 1, NEXT_ID == manual_indexing_id ? 0 : NEXT_ID); if constexpr (result.end >= str.size() || str[result.end] != '}') { FMT_THROW(format_error("expected '}'")); return 0; } else { return parse_tail( spec_field::type, ARG_INDEX>{ result.fmt}, fmt); } } } // Compiles a non-empty format string and returns the compiled representation // or unknown_format() on unrecognized input. template constexpr auto compile_format_string(S fmt) { using char_type = typename S::char_type; constexpr auto str = basic_string_view(fmt); if constexpr (str[POS] == '{') { if constexpr (POS + 1 == str.size()) FMT_THROW(format_error("unmatched '{' in format string")); if constexpr (str[POS + 1] == '{') { return parse_tail(make_text(str, POS, 1), fmt); } else if constexpr (str[POS + 1] == '}' || str[POS + 1] == ':') { static_assert(ID != manual_indexing_id, "cannot switch from manual to automatic argument indexing"); constexpr auto next_id = ID != manual_indexing_id ? ID + 1 : manual_indexing_id; return parse_replacement_field_then_tail, Args, POS + 1, ID, next_id>(fmt); } else { constexpr auto arg_id_result = parse_arg_id(str.data() + POS + 1, str.data() + str.size()); constexpr auto arg_id_end_pos = arg_id_result.arg_id_end - str.data(); constexpr char_type c = arg_id_end_pos != str.size() ? str[arg_id_end_pos] : char_type(); static_assert(c == '}' || c == ':', "missing '}' in format string"); if constexpr (arg_id_result.kind == arg_id_kind::index) { static_assert( ID == manual_indexing_id || ID == 0, "cannot switch from automatic to manual argument indexing"); constexpr auto arg_index = arg_id_result.arg_id.index; return parse_replacement_field_then_tail, Args, arg_id_end_pos, arg_index, manual_indexing_id>( fmt); } else if constexpr (arg_id_result.kind == arg_id_kind::name) { constexpr auto arg_index = get_arg_index_by_name(arg_id_result.arg_id.name, Args{}); if constexpr (arg_index >= 0) { constexpr auto next_id = ID != manual_indexing_id ? ID + 1 : manual_indexing_id; return parse_replacement_field_then_tail< decltype(get_type::value), Args, arg_id_end_pos, arg_index, next_id>(fmt); } else if constexpr (c == '}') { return parse_tail( runtime_named_field{arg_id_result.arg_id.name}, fmt); } else if constexpr (c == ':') { return unknown_format(); // no type info for specs parsing } } } } else if constexpr (str[POS] == '}') { if constexpr (POS + 1 == str.size()) FMT_THROW(format_error("unmatched '}' in format string")); return parse_tail(make_text(str, POS, 1), fmt); } else { constexpr auto end = parse_text(str, POS + 1); if constexpr (end - POS > 1) { return parse_tail(make_text(str, POS, end - POS), fmt); } else { return parse_tail(code_unit{str[POS]}, fmt); } } } template ::value)> constexpr auto compile(S fmt) { constexpr auto str = basic_string_view(fmt); if constexpr (str.size() == 0) { return detail::make_text(str, 0, 0); } else { constexpr auto result = detail::compile_format_string, 0, 0>(fmt); return result; } } #endif // defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) } // namespace detail FMT_BEGIN_EXPORT #if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) template ::value)> FMT_INLINE FMT_CONSTEXPR_STRING auto format(const CompiledFormat& cf, const T&... args) -> std::basic_string { auto s = std::basic_string(); cf.format(std::back_inserter(s), args...); return s; } template ::value)> constexpr FMT_INLINE auto format_to(OutputIt out, const CompiledFormat& cf, const T&... args) -> OutputIt { return cf.format(out, args...); } template ::value)> FMT_INLINE FMT_CONSTEXPR_STRING auto format(const S&, T&&... args) -> std::basic_string { if constexpr (std::is_same::value) { constexpr auto str = basic_string_view(S()); if constexpr (str.size() == 2 && str[0] == '{' && str[1] == '}') { const auto& first = detail::first(args...); if constexpr (detail::is_named_arg< remove_cvref_t>::value) { return fmt::to_string(first.value); } else { return fmt::to_string(first); } } } constexpr auto compiled = detail::compile(S()); if constexpr (std::is_same, detail::unknown_format>()) { return fmt::format( static_cast>(S()), std::forward(args)...); } else { return fmt::format(compiled, std::forward(args)...); } } template ::value)> FMT_CONSTEXPR auto format_to(OutputIt out, const S&, T&&... args) -> OutputIt { constexpr auto compiled = detail::compile(S()); if constexpr (std::is_same, detail::unknown_format>()) { return fmt::format_to( out, static_cast>(S()), std::forward(args)...); } else { return fmt::format_to(out, compiled, std::forward(args)...); } } #endif template ::value)> auto format_to_n(OutputIt out, size_t n, const S& fmt, T&&... args) -> format_to_n_result { using traits = detail::fixed_buffer_traits; auto buf = detail::iterator_buffer(out, n); fmt::format_to(std::back_inserter(buf), fmt, std::forward(args)...); return {buf.out(), buf.count()}; } template ::value)> FMT_CONSTEXPR20 auto formatted_size(const S& fmt, T&&... args) -> size_t { auto buf = detail::counting_buffer<>(); fmt::format_to(appender(buf), fmt, std::forward(args)...); return buf.count(); } template ::value)> void print(std::FILE* f, const S& fmt, T&&... args) { auto buf = memory_buffer(); fmt::format_to(appender(buf), fmt, std::forward(args)...); detail::print(f, {buf.data(), buf.size()}); } template ::value)> void print(const S& fmt, T&&... args) { print(stdout, fmt, std::forward(args)...); } template class static_format_result { private: char data[N]; public: template ::value)> explicit FMT_CONSTEXPR static_format_result(const S& fmt, T&&... args) { *fmt::format_to(data, fmt, std::forward(args)...) = '\0'; } auto str() const -> fmt::string_view { return {data, N - 1}; } auto c_str() const -> const char* { return data; } }; /** * Formats arguments according to the format string `fmt_str` and produces * a string of the exact required size at compile time. Both the format string * and the arguments must be compile-time expressions. * * The resulting string can be accessed as a C string via `c_str()` or as * a `fmt::string_view` via `str()`. * * **Example**: * * // Produces the static string "42" at compile time. * static constexpr auto result = FMT_STATIC_FORMAT("{}", 42); * const char* s = result.c_str(); */ #define FMT_STATIC_FORMAT(fmt_str, ...) \ fmt::static_format_result< \ fmt::formatted_size(FMT_COMPILE(fmt_str), __VA_ARGS__) + 1>( \ FMT_COMPILE(fmt_str), __VA_ARGS__) FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_COMPILE_H_ btop-1.4.5/include/fmt/core.h000066400000000000000000000002731506333644200160070ustar00rootroot00000000000000// This file is only provided for compatibility and may be removed in future // versions. Use fmt/base.h if you don't need fmt::format and fmt/format.h // otherwise. #include "format.h" btop-1.4.5/include/fmt/format-inl.h000066400000000000000000002364661506333644200171460ustar00rootroot00000000000000// Formatting library for C++ - implementation // // Copyright (c) 2012 - 2016, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_FORMAT_INL_H_ #define FMT_FORMAT_INL_H_ #ifndef FMT_MODULE # include # include // errno # include # include # include #endif #if defined(_WIN32) && !defined(FMT_USE_WRITE_CONSOLE) # include // _isatty #endif #include "format.h" #if FMT_USE_LOCALE && !defined(FMT_MODULE) # include #endif #ifndef FMT_FUNC # define FMT_FUNC #endif FMT_BEGIN_NAMESPACE #ifndef FMT_CUSTOM_ASSERT_FAIL FMT_FUNC void assert_fail(const char* file, int line, const char* message) { // Use unchecked std::fprintf to avoid triggering another assertion when // writing to stderr fails. fprintf(stderr, "%s:%d: assertion failed: %s", file, line, message); abort(); } #endif #if FMT_USE_LOCALE namespace detail { using std::locale; using std::numpunct; using std::use_facet; } // namespace detail template > locale_ref::locale_ref(const Locale& loc) : locale_(&loc) { static_assert(std::is_same::value, ""); } #else namespace detail { struct locale {}; template struct numpunct { auto grouping() const -> std::string { return "\03"; } auto thousands_sep() const -> Char { return ','; } auto decimal_point() const -> Char { return '.'; } }; template Facet use_facet(locale) { return {}; } } // namespace detail #endif // FMT_USE_LOCALE template auto locale_ref::get() const -> Locale { using namespace detail; static_assert(std::is_same::value, ""); #if FMT_USE_LOCALE if (locale_) return *static_cast(locale_); #endif return locale(); } namespace detail { FMT_FUNC void format_error_code(detail::buffer& out, int error_code, string_view message) noexcept { // Report error code making sure that the output fits into // inline_buffer_size to avoid dynamic memory allocation and potential // bad_alloc. out.try_resize(0); static const char SEP[] = ": "; static const char ERROR_STR[] = "error "; // Subtract 2 to account for terminating null characters in SEP and ERROR_STR. size_t error_code_size = sizeof(SEP) + sizeof(ERROR_STR) - 2; auto abs_value = static_cast>(error_code); if (detail::is_negative(error_code)) { abs_value = 0 - abs_value; ++error_code_size; } error_code_size += detail::to_unsigned(detail::count_digits(abs_value)); auto it = appender(out); if (message.size() <= inline_buffer_size - error_code_size) fmt::format_to(it, FMT_STRING("{}{}"), message, SEP); fmt::format_to(it, FMT_STRING("{}{}"), ERROR_STR, error_code); FMT_ASSERT(out.size() <= inline_buffer_size, ""); } FMT_FUNC void do_report_error(format_func func, int error_code, const char* message) noexcept { memory_buffer full_message; func(full_message, error_code, message); // Don't use fwrite_all because the latter may throw. if (std::fwrite(full_message.data(), full_message.size(), 1, stderr) > 0) std::fputc('\n', stderr); } // A wrapper around fwrite that throws on error. inline void fwrite_all(const void* ptr, size_t count, FILE* stream) { size_t written = std::fwrite(ptr, 1, count, stream); if (written < count) FMT_THROW(system_error(errno, FMT_STRING("cannot write to file"))); } template FMT_FUNC auto thousands_sep_impl(locale_ref loc) -> thousands_sep_result { auto&& facet = use_facet>(loc.get()); auto grouping = facet.grouping(); auto thousands_sep = grouping.empty() ? Char() : facet.thousands_sep(); return {std::move(grouping), thousands_sep}; } template FMT_FUNC auto decimal_point_impl(locale_ref loc) -> Char { return use_facet>(loc.get()).decimal_point(); } #if FMT_USE_LOCALE FMT_FUNC auto write_loc(appender out, loc_value value, const format_specs& specs, locale_ref loc) -> bool { auto locale = loc.get(); // We cannot use the num_put facet because it may produce output in // a wrong encoding. using facet = format_facet; if (std::has_facet(locale)) return use_facet(locale).put(out, value, specs); return facet(locale).put(out, value, specs); } #endif } // namespace detail FMT_FUNC void report_error(const char* message) { #if FMT_MSC_VERSION || defined(__NVCC__) // Silence unreachable code warnings in MSVC and NVCC because these // are nearly impossible to fix in a generic code. volatile bool b = true; if (!b) return; #endif FMT_THROW(format_error(message)); } template typename Locale::id format_facet::id; template format_facet::format_facet(Locale& loc) { auto& np = detail::use_facet>(loc); grouping_ = np.grouping(); if (!grouping_.empty()) separator_ = std::string(1, np.thousands_sep()); } #if FMT_USE_LOCALE template <> FMT_API FMT_FUNC auto format_facet::do_put( appender out, loc_value val, const format_specs& specs) const -> bool { return val.visit( detail::loc_writer<>{out, specs, separator_, grouping_, decimal_point_}); } #endif FMT_FUNC auto vsystem_error(int error_code, string_view fmt, format_args args) -> std::system_error { auto ec = std::error_code(error_code, std::generic_category()); return std::system_error(ec, vformat(fmt, args)); } namespace detail { template inline auto operator==(basic_fp x, basic_fp y) -> bool { return x.f == y.f && x.e == y.e; } // Compilers should be able to optimize this into the ror instruction. FMT_INLINE auto rotr(uint32_t n, uint32_t r) noexcept -> uint32_t { r &= 31; return (n >> r) | (n << (32 - r)); } FMT_INLINE auto rotr(uint64_t n, uint32_t r) noexcept -> uint64_t { r &= 63; return (n >> r) | (n << (64 - r)); } // Implementation of Dragonbox algorithm: https://github.com/jk-jeon/dragonbox. namespace dragonbox { // Computes upper 64 bits of multiplication of a 32-bit unsigned integer and a // 64-bit unsigned integer. inline auto umul96_upper64(uint32_t x, uint64_t y) noexcept -> uint64_t { return umul128_upper64(static_cast(x) << 32, y); } // Computes lower 128 bits of multiplication of a 64-bit unsigned integer and a // 128-bit unsigned integer. inline auto umul192_lower128(uint64_t x, uint128_fallback y) noexcept -> uint128_fallback { uint64_t high = x * y.high(); uint128_fallback high_low = umul128(x, y.low()); return {high + high_low.high(), high_low.low()}; } // Computes lower 64 bits of multiplication of a 32-bit unsigned integer and a // 64-bit unsigned integer. inline auto umul96_lower64(uint32_t x, uint64_t y) noexcept -> uint64_t { return x * y; } // Various fast log computations. inline auto floor_log10_pow2_minus_log10_4_over_3(int e) noexcept -> int { FMT_ASSERT(e <= 2936 && e >= -2985, "too large exponent"); return (e * 631305 - 261663) >> 21; } FMT_INLINE_VARIABLE constexpr struct div_small_pow10_infos_struct { uint32_t divisor; int shift_amount; } div_small_pow10_infos[] = {{10, 16}, {100, 16}}; // Replaces n by floor(n / pow(10, N)) returning true if and only if n is // divisible by pow(10, N). // Precondition: n <= pow(10, N + 1). template auto check_divisibility_and_divide_by_pow10(uint32_t& n) noexcept -> bool { // The numbers below are chosen such that: // 1. floor(n/d) = floor(nm / 2^k) where d=10 or d=100, // 2. nm mod 2^k < m if and only if n is divisible by d, // where m is magic_number, k is shift_amount // and d is divisor. // // Item 1 is a common technique of replacing division by a constant with // multiplication, see e.g. "Division by Invariant Integers Using // Multiplication" by Granlund and Montgomery (1994). magic_number (m) is set // to ceil(2^k/d) for large enough k. // The idea for item 2 originates from Schubfach. constexpr auto info = div_small_pow10_infos[N - 1]; FMT_ASSERT(n <= info.divisor * 10, "n is too large"); constexpr uint32_t magic_number = (1u << info.shift_amount) / info.divisor + 1; n *= magic_number; const uint32_t comparison_mask = (1u << info.shift_amount) - 1; bool result = (n & comparison_mask) < magic_number; n >>= info.shift_amount; return result; } // Computes floor(n / pow(10, N)) for small n and N. // Precondition: n <= pow(10, N + 1). template auto small_division_by_pow10(uint32_t n) noexcept -> uint32_t { constexpr auto info = div_small_pow10_infos[N - 1]; FMT_ASSERT(n <= info.divisor * 10, "n is too large"); constexpr uint32_t magic_number = (1u << info.shift_amount) / info.divisor + 1; return (n * magic_number) >> info.shift_amount; } // Computes floor(n / 10^(kappa + 1)) (float) inline auto divide_by_10_to_kappa_plus_1(uint32_t n) noexcept -> uint32_t { // 1374389535 = ceil(2^37/100) return static_cast((static_cast(n) * 1374389535) >> 37); } // Computes floor(n / 10^(kappa + 1)) (double) inline auto divide_by_10_to_kappa_plus_1(uint64_t n) noexcept -> uint64_t { // 2361183241434822607 = ceil(2^(64+7)/1000) return umul128_upper64(n, 2361183241434822607ull) >> 7; } // Various subroutines using pow10 cache template struct cache_accessor; template <> struct cache_accessor { using carrier_uint = float_info::carrier_uint; using cache_entry_type = uint64_t; static auto get_cached_power(int k) noexcept -> uint64_t { FMT_ASSERT(k >= float_info::min_k && k <= float_info::max_k, "k is out of range"); static constexpr uint64_t pow10_significands[] = { 0x81ceb32c4b43fcf5, 0xa2425ff75e14fc32, 0xcad2f7f5359a3b3f, 0xfd87b5f28300ca0e, 0x9e74d1b791e07e49, 0xc612062576589ddb, 0xf79687aed3eec552, 0x9abe14cd44753b53, 0xc16d9a0095928a28, 0xf1c90080baf72cb2, 0x971da05074da7bef, 0xbce5086492111aeb, 0xec1e4a7db69561a6, 0x9392ee8e921d5d08, 0xb877aa3236a4b44a, 0xe69594bec44de15c, 0x901d7cf73ab0acda, 0xb424dc35095cd810, 0xe12e13424bb40e14, 0x8cbccc096f5088cc, 0xafebff0bcb24aaff, 0xdbe6fecebdedd5bf, 0x89705f4136b4a598, 0xabcc77118461cefd, 0xd6bf94d5e57a42bd, 0x8637bd05af6c69b6, 0xa7c5ac471b478424, 0xd1b71758e219652c, 0x83126e978d4fdf3c, 0xa3d70a3d70a3d70b, 0xcccccccccccccccd, 0x8000000000000000, 0xa000000000000000, 0xc800000000000000, 0xfa00000000000000, 0x9c40000000000000, 0xc350000000000000, 0xf424000000000000, 0x9896800000000000, 0xbebc200000000000, 0xee6b280000000000, 0x9502f90000000000, 0xba43b74000000000, 0xe8d4a51000000000, 0x9184e72a00000000, 0xb5e620f480000000, 0xe35fa931a0000000, 0x8e1bc9bf04000000, 0xb1a2bc2ec5000000, 0xde0b6b3a76400000, 0x8ac7230489e80000, 0xad78ebc5ac620000, 0xd8d726b7177a8000, 0x878678326eac9000, 0xa968163f0a57b400, 0xd3c21bcecceda100, 0x84595161401484a0, 0xa56fa5b99019a5c8, 0xcecb8f27f4200f3a, 0x813f3978f8940985, 0xa18f07d736b90be6, 0xc9f2c9cd04674edf, 0xfc6f7c4045812297, 0x9dc5ada82b70b59e, 0xc5371912364ce306, 0xf684df56c3e01bc7, 0x9a130b963a6c115d, 0xc097ce7bc90715b4, 0xf0bdc21abb48db21, 0x96769950b50d88f5, 0xbc143fa4e250eb32, 0xeb194f8e1ae525fe, 0x92efd1b8d0cf37bf, 0xb7abc627050305ae, 0xe596b7b0c643c71a, 0x8f7e32ce7bea5c70, 0xb35dbf821ae4f38c, 0xe0352f62a19e306f}; return pow10_significands[k - float_info::min_k]; } struct compute_mul_result { carrier_uint result; bool is_integer; }; struct compute_mul_parity_result { bool parity; bool is_integer; }; static auto compute_mul(carrier_uint u, const cache_entry_type& cache) noexcept -> compute_mul_result { auto r = umul96_upper64(u, cache); return {static_cast(r >> 32), static_cast(r) == 0}; } static auto compute_delta(const cache_entry_type& cache, int beta) noexcept -> uint32_t { return static_cast(cache >> (64 - 1 - beta)); } static auto compute_mul_parity(carrier_uint two_f, const cache_entry_type& cache, int beta) noexcept -> compute_mul_parity_result { FMT_ASSERT(beta >= 1, ""); FMT_ASSERT(beta < 64, ""); auto r = umul96_lower64(two_f, cache); return {((r >> (64 - beta)) & 1) != 0, static_cast(r >> (32 - beta)) == 0}; } static auto compute_left_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept -> carrier_uint { return static_cast( (cache - (cache >> (num_significand_bits() + 2))) >> (64 - num_significand_bits() - 1 - beta)); } static auto compute_right_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept -> carrier_uint { return static_cast( (cache + (cache >> (num_significand_bits() + 1))) >> (64 - num_significand_bits() - 1 - beta)); } static auto compute_round_up_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept -> carrier_uint { return (static_cast( cache >> (64 - num_significand_bits() - 2 - beta)) + 1) / 2; } }; template <> struct cache_accessor { using carrier_uint = float_info::carrier_uint; using cache_entry_type = uint128_fallback; static auto get_cached_power(int k) noexcept -> uint128_fallback { FMT_ASSERT(k >= float_info::min_k && k <= float_info::max_k, "k is out of range"); static constexpr uint128_fallback pow10_significands[] = { #if FMT_USE_FULL_CACHE_DRAGONBOX {0xff77b1fcbebcdc4f, 0x25e8e89c13bb0f7b}, {0x9faacf3df73609b1, 0x77b191618c54e9ad}, {0xc795830d75038c1d, 0xd59df5b9ef6a2418}, {0xf97ae3d0d2446f25, 0x4b0573286b44ad1e}, {0x9becce62836ac577, 0x4ee367f9430aec33}, {0xc2e801fb244576d5, 0x229c41f793cda740}, {0xf3a20279ed56d48a, 0x6b43527578c11110}, {0x9845418c345644d6, 0x830a13896b78aaaa}, {0xbe5691ef416bd60c, 0x23cc986bc656d554}, {0xedec366b11c6cb8f, 0x2cbfbe86b7ec8aa9}, {0x94b3a202eb1c3f39, 0x7bf7d71432f3d6aa}, {0xb9e08a83a5e34f07, 0xdaf5ccd93fb0cc54}, {0xe858ad248f5c22c9, 0xd1b3400f8f9cff69}, {0x91376c36d99995be, 0x23100809b9c21fa2}, {0xb58547448ffffb2d, 0xabd40a0c2832a78b}, {0xe2e69915b3fff9f9, 0x16c90c8f323f516d}, {0x8dd01fad907ffc3b, 0xae3da7d97f6792e4}, {0xb1442798f49ffb4a, 0x99cd11cfdf41779d}, {0xdd95317f31c7fa1d, 0x40405643d711d584}, {0x8a7d3eef7f1cfc52, 0x482835ea666b2573}, {0xad1c8eab5ee43b66, 0xda3243650005eed0}, {0xd863b256369d4a40, 0x90bed43e40076a83}, {0x873e4f75e2224e68, 0x5a7744a6e804a292}, {0xa90de3535aaae202, 0x711515d0a205cb37}, {0xd3515c2831559a83, 0x0d5a5b44ca873e04}, {0x8412d9991ed58091, 0xe858790afe9486c3}, {0xa5178fff668ae0b6, 0x626e974dbe39a873}, {0xce5d73ff402d98e3, 0xfb0a3d212dc81290}, {0x80fa687f881c7f8e, 0x7ce66634bc9d0b9a}, {0xa139029f6a239f72, 0x1c1fffc1ebc44e81}, {0xc987434744ac874e, 0xa327ffb266b56221}, {0xfbe9141915d7a922, 0x4bf1ff9f0062baa9}, {0x9d71ac8fada6c9b5, 0x6f773fc3603db4aa}, {0xc4ce17b399107c22, 0xcb550fb4384d21d4}, {0xf6019da07f549b2b, 0x7e2a53a146606a49}, {0x99c102844f94e0fb, 0x2eda7444cbfc426e}, {0xc0314325637a1939, 0xfa911155fefb5309}, {0xf03d93eebc589f88, 0x793555ab7eba27cb}, {0x96267c7535b763b5, 0x4bc1558b2f3458df}, {0xbbb01b9283253ca2, 0x9eb1aaedfb016f17}, {0xea9c227723ee8bcb, 0x465e15a979c1cadd}, {0x92a1958a7675175f, 0x0bfacd89ec191eca}, {0xb749faed14125d36, 0xcef980ec671f667c}, {0xe51c79a85916f484, 0x82b7e12780e7401b}, {0x8f31cc0937ae58d2, 0xd1b2ecb8b0908811}, {0xb2fe3f0b8599ef07, 0x861fa7e6dcb4aa16}, {0xdfbdcece67006ac9, 0x67a791e093e1d49b}, {0x8bd6a141006042bd, 0xe0c8bb2c5c6d24e1}, {0xaecc49914078536d, 0x58fae9f773886e19}, {0xda7f5bf590966848, 0xaf39a475506a899f}, {0x888f99797a5e012d, 0x6d8406c952429604}, {0xaab37fd7d8f58178, 0xc8e5087ba6d33b84}, {0xd5605fcdcf32e1d6, 0xfb1e4a9a90880a65}, {0x855c3be0a17fcd26, 0x5cf2eea09a550680}, {0xa6b34ad8c9dfc06f, 0xf42faa48c0ea481f}, {0xd0601d8efc57b08b, 0xf13b94daf124da27}, {0x823c12795db6ce57, 0x76c53d08d6b70859}, {0xa2cb1717b52481ed, 0x54768c4b0c64ca6f}, {0xcb7ddcdda26da268, 0xa9942f5dcf7dfd0a}, {0xfe5d54150b090b02, 0xd3f93b35435d7c4d}, {0x9efa548d26e5a6e1, 0xc47bc5014a1a6db0}, {0xc6b8e9b0709f109a, 0x359ab6419ca1091c}, {0xf867241c8cc6d4c0, 0xc30163d203c94b63}, {0x9b407691d7fc44f8, 0x79e0de63425dcf1e}, {0xc21094364dfb5636, 0x985915fc12f542e5}, {0xf294b943e17a2bc4, 0x3e6f5b7b17b2939e}, {0x979cf3ca6cec5b5a, 0xa705992ceecf9c43}, {0xbd8430bd08277231, 0x50c6ff782a838354}, {0xece53cec4a314ebd, 0xa4f8bf5635246429}, {0x940f4613ae5ed136, 0x871b7795e136be9a}, {0xb913179899f68584, 0x28e2557b59846e40}, {0xe757dd7ec07426e5, 0x331aeada2fe589d0}, {0x9096ea6f3848984f, 0x3ff0d2c85def7622}, {0xb4bca50b065abe63, 0x0fed077a756b53aa}, {0xe1ebce4dc7f16dfb, 0xd3e8495912c62895}, {0x8d3360f09cf6e4bd, 0x64712dd7abbbd95d}, {0xb080392cc4349dec, 0xbd8d794d96aacfb4}, {0xdca04777f541c567, 0xecf0d7a0fc5583a1}, {0x89e42caaf9491b60, 0xf41686c49db57245}, {0xac5d37d5b79b6239, 0x311c2875c522ced6}, {0xd77485cb25823ac7, 0x7d633293366b828c}, {0x86a8d39ef77164bc, 0xae5dff9c02033198}, {0xa8530886b54dbdeb, 0xd9f57f830283fdfd}, {0xd267caa862a12d66, 0xd072df63c324fd7c}, {0x8380dea93da4bc60, 0x4247cb9e59f71e6e}, {0xa46116538d0deb78, 0x52d9be85f074e609}, {0xcd795be870516656, 0x67902e276c921f8c}, {0x806bd9714632dff6, 0x00ba1cd8a3db53b7}, {0xa086cfcd97bf97f3, 0x80e8a40eccd228a5}, {0xc8a883c0fdaf7df0, 0x6122cd128006b2ce}, {0xfad2a4b13d1b5d6c, 0x796b805720085f82}, {0x9cc3a6eec6311a63, 0xcbe3303674053bb1}, {0xc3f490aa77bd60fc, 0xbedbfc4411068a9d}, {0xf4f1b4d515acb93b, 0xee92fb5515482d45}, {0x991711052d8bf3c5, 0x751bdd152d4d1c4b}, {0xbf5cd54678eef0b6, 0xd262d45a78a0635e}, {0xef340a98172aace4, 0x86fb897116c87c35}, {0x9580869f0e7aac0e, 0xd45d35e6ae3d4da1}, {0xbae0a846d2195712, 0x8974836059cca10a}, {0xe998d258869facd7, 0x2bd1a438703fc94c}, {0x91ff83775423cc06, 0x7b6306a34627ddd0}, {0xb67f6455292cbf08, 0x1a3bc84c17b1d543}, {0xe41f3d6a7377eeca, 0x20caba5f1d9e4a94}, {0x8e938662882af53e, 0x547eb47b7282ee9d}, {0xb23867fb2a35b28d, 0xe99e619a4f23aa44}, {0xdec681f9f4c31f31, 0x6405fa00e2ec94d5}, {0x8b3c113c38f9f37e, 0xde83bc408dd3dd05}, {0xae0b158b4738705e, 0x9624ab50b148d446}, {0xd98ddaee19068c76, 0x3badd624dd9b0958}, {0x87f8a8d4cfa417c9, 0xe54ca5d70a80e5d7}, {0xa9f6d30a038d1dbc, 0x5e9fcf4ccd211f4d}, {0xd47487cc8470652b, 0x7647c32000696720}, {0x84c8d4dfd2c63f3b, 0x29ecd9f40041e074}, {0xa5fb0a17c777cf09, 0xf468107100525891}, {0xcf79cc9db955c2cc, 0x7182148d4066eeb5}, {0x81ac1fe293d599bf, 0xc6f14cd848405531}, {0xa21727db38cb002f, 0xb8ada00e5a506a7d}, {0xca9cf1d206fdc03b, 0xa6d90811f0e4851d}, {0xfd442e4688bd304a, 0x908f4a166d1da664}, {0x9e4a9cec15763e2e, 0x9a598e4e043287ff}, {0xc5dd44271ad3cdba, 0x40eff1e1853f29fe}, {0xf7549530e188c128, 0xd12bee59e68ef47d}, {0x9a94dd3e8cf578b9, 0x82bb74f8301958cf}, {0xc13a148e3032d6e7, 0xe36a52363c1faf02}, {0xf18899b1bc3f8ca1, 0xdc44e6c3cb279ac2}, {0x96f5600f15a7b7e5, 0x29ab103a5ef8c0ba}, {0xbcb2b812db11a5de, 0x7415d448f6b6f0e8}, {0xebdf661791d60f56, 0x111b495b3464ad22}, {0x936b9fcebb25c995, 0xcab10dd900beec35}, {0xb84687c269ef3bfb, 0x3d5d514f40eea743}, {0xe65829b3046b0afa, 0x0cb4a5a3112a5113}, {0x8ff71a0fe2c2e6dc, 0x47f0e785eaba72ac}, {0xb3f4e093db73a093, 0x59ed216765690f57}, {0xe0f218b8d25088b8, 0x306869c13ec3532d}, {0x8c974f7383725573, 0x1e414218c73a13fc}, {0xafbd2350644eeacf, 0xe5d1929ef90898fb}, {0xdbac6c247d62a583, 0xdf45f746b74abf3a}, {0x894bc396ce5da772, 0x6b8bba8c328eb784}, {0xab9eb47c81f5114f, 0x066ea92f3f326565}, {0xd686619ba27255a2, 0xc80a537b0efefebe}, {0x8613fd0145877585, 0xbd06742ce95f5f37}, {0xa798fc4196e952e7, 0x2c48113823b73705}, {0xd17f3b51fca3a7a0, 0xf75a15862ca504c6}, {0x82ef85133de648c4, 0x9a984d73dbe722fc}, {0xa3ab66580d5fdaf5, 0xc13e60d0d2e0ebbb}, {0xcc963fee10b7d1b3, 0x318df905079926a9}, {0xffbbcfe994e5c61f, 0xfdf17746497f7053}, {0x9fd561f1fd0f9bd3, 0xfeb6ea8bedefa634}, {0xc7caba6e7c5382c8, 0xfe64a52ee96b8fc1}, {0xf9bd690a1b68637b, 0x3dfdce7aa3c673b1}, {0x9c1661a651213e2d, 0x06bea10ca65c084f}, {0xc31bfa0fe5698db8, 0x486e494fcff30a63}, {0xf3e2f893dec3f126, 0x5a89dba3c3efccfb}, {0x986ddb5c6b3a76b7, 0xf89629465a75e01d}, {0xbe89523386091465, 0xf6bbb397f1135824}, {0xee2ba6c0678b597f, 0x746aa07ded582e2d}, {0x94db483840b717ef, 0xa8c2a44eb4571cdd}, {0xba121a4650e4ddeb, 0x92f34d62616ce414}, {0xe896a0d7e51e1566, 0x77b020baf9c81d18}, {0x915e2486ef32cd60, 0x0ace1474dc1d122f}, {0xb5b5ada8aaff80b8, 0x0d819992132456bb}, {0xe3231912d5bf60e6, 0x10e1fff697ed6c6a}, {0x8df5efabc5979c8f, 0xca8d3ffa1ef463c2}, {0xb1736b96b6fd83b3, 0xbd308ff8a6b17cb3}, {0xddd0467c64bce4a0, 0xac7cb3f6d05ddbdf}, {0x8aa22c0dbef60ee4, 0x6bcdf07a423aa96c}, {0xad4ab7112eb3929d, 0x86c16c98d2c953c7}, {0xd89d64d57a607744, 0xe871c7bf077ba8b8}, {0x87625f056c7c4a8b, 0x11471cd764ad4973}, {0xa93af6c6c79b5d2d, 0xd598e40d3dd89bd0}, {0xd389b47879823479, 0x4aff1d108d4ec2c4}, {0x843610cb4bf160cb, 0xcedf722a585139bb}, {0xa54394fe1eedb8fe, 0xc2974eb4ee658829}, {0xce947a3da6a9273e, 0x733d226229feea33}, {0x811ccc668829b887, 0x0806357d5a3f5260}, {0xa163ff802a3426a8, 0xca07c2dcb0cf26f8}, {0xc9bcff6034c13052, 0xfc89b393dd02f0b6}, {0xfc2c3f3841f17c67, 0xbbac2078d443ace3}, {0x9d9ba7832936edc0, 0xd54b944b84aa4c0e}, {0xc5029163f384a931, 0x0a9e795e65d4df12}, {0xf64335bcf065d37d, 0x4d4617b5ff4a16d6}, {0x99ea0196163fa42e, 0x504bced1bf8e4e46}, {0xc06481fb9bcf8d39, 0xe45ec2862f71e1d7}, {0xf07da27a82c37088, 0x5d767327bb4e5a4d}, {0x964e858c91ba2655, 0x3a6a07f8d510f870}, {0xbbe226efb628afea, 0x890489f70a55368c}, {0xeadab0aba3b2dbe5, 0x2b45ac74ccea842f}, {0x92c8ae6b464fc96f, 0x3b0b8bc90012929e}, {0xb77ada0617e3bbcb, 0x09ce6ebb40173745}, {0xe55990879ddcaabd, 0xcc420a6a101d0516}, {0x8f57fa54c2a9eab6, 0x9fa946824a12232e}, {0xb32df8e9f3546564, 0x47939822dc96abfa}, {0xdff9772470297ebd, 0x59787e2b93bc56f8}, {0x8bfbea76c619ef36, 0x57eb4edb3c55b65b}, {0xaefae51477a06b03, 0xede622920b6b23f2}, {0xdab99e59958885c4, 0xe95fab368e45ecee}, {0x88b402f7fd75539b, 0x11dbcb0218ebb415}, {0xaae103b5fcd2a881, 0xd652bdc29f26a11a}, {0xd59944a37c0752a2, 0x4be76d3346f04960}, {0x857fcae62d8493a5, 0x6f70a4400c562ddc}, {0xa6dfbd9fb8e5b88e, 0xcb4ccd500f6bb953}, {0xd097ad07a71f26b2, 0x7e2000a41346a7a8}, {0x825ecc24c873782f, 0x8ed400668c0c28c9}, {0xa2f67f2dfa90563b, 0x728900802f0f32fb}, {0xcbb41ef979346bca, 0x4f2b40a03ad2ffba}, {0xfea126b7d78186bc, 0xe2f610c84987bfa9}, {0x9f24b832e6b0f436, 0x0dd9ca7d2df4d7ca}, {0xc6ede63fa05d3143, 0x91503d1c79720dbc}, {0xf8a95fcf88747d94, 0x75a44c6397ce912b}, {0x9b69dbe1b548ce7c, 0xc986afbe3ee11abb}, {0xc24452da229b021b, 0xfbe85badce996169}, {0xf2d56790ab41c2a2, 0xfae27299423fb9c4}, {0x97c560ba6b0919a5, 0xdccd879fc967d41b}, {0xbdb6b8e905cb600f, 0x5400e987bbc1c921}, {0xed246723473e3813, 0x290123e9aab23b69}, {0x9436c0760c86e30b, 0xf9a0b6720aaf6522}, {0xb94470938fa89bce, 0xf808e40e8d5b3e6a}, {0xe7958cb87392c2c2, 0xb60b1d1230b20e05}, {0x90bd77f3483bb9b9, 0xb1c6f22b5e6f48c3}, {0xb4ecd5f01a4aa828, 0x1e38aeb6360b1af4}, {0xe2280b6c20dd5232, 0x25c6da63c38de1b1}, {0x8d590723948a535f, 0x579c487e5a38ad0f}, {0xb0af48ec79ace837, 0x2d835a9df0c6d852}, {0xdcdb1b2798182244, 0xf8e431456cf88e66}, {0x8a08f0f8bf0f156b, 0x1b8e9ecb641b5900}, {0xac8b2d36eed2dac5, 0xe272467e3d222f40}, {0xd7adf884aa879177, 0x5b0ed81dcc6abb10}, {0x86ccbb52ea94baea, 0x98e947129fc2b4ea}, {0xa87fea27a539e9a5, 0x3f2398d747b36225}, {0xd29fe4b18e88640e, 0x8eec7f0d19a03aae}, {0x83a3eeeef9153e89, 0x1953cf68300424ad}, {0xa48ceaaab75a8e2b, 0x5fa8c3423c052dd8}, {0xcdb02555653131b6, 0x3792f412cb06794e}, {0x808e17555f3ebf11, 0xe2bbd88bbee40bd1}, {0xa0b19d2ab70e6ed6, 0x5b6aceaeae9d0ec5}, {0xc8de047564d20a8b, 0xf245825a5a445276}, {0xfb158592be068d2e, 0xeed6e2f0f0d56713}, {0x9ced737bb6c4183d, 0x55464dd69685606c}, {0xc428d05aa4751e4c, 0xaa97e14c3c26b887}, {0xf53304714d9265df, 0xd53dd99f4b3066a9}, {0x993fe2c6d07b7fab, 0xe546a8038efe402a}, {0xbf8fdb78849a5f96, 0xde98520472bdd034}, {0xef73d256a5c0f77c, 0x963e66858f6d4441}, {0x95a8637627989aad, 0xdde7001379a44aa9}, {0xbb127c53b17ec159, 0x5560c018580d5d53}, {0xe9d71b689dde71af, 0xaab8f01e6e10b4a7}, {0x9226712162ab070d, 0xcab3961304ca70e9}, {0xb6b00d69bb55c8d1, 0x3d607b97c5fd0d23}, {0xe45c10c42a2b3b05, 0x8cb89a7db77c506b}, {0x8eb98a7a9a5b04e3, 0x77f3608e92adb243}, {0xb267ed1940f1c61c, 0x55f038b237591ed4}, {0xdf01e85f912e37a3, 0x6b6c46dec52f6689}, {0x8b61313bbabce2c6, 0x2323ac4b3b3da016}, {0xae397d8aa96c1b77, 0xabec975e0a0d081b}, {0xd9c7dced53c72255, 0x96e7bd358c904a22}, {0x881cea14545c7575, 0x7e50d64177da2e55}, {0xaa242499697392d2, 0xdde50bd1d5d0b9ea}, {0xd4ad2dbfc3d07787, 0x955e4ec64b44e865}, {0x84ec3c97da624ab4, 0xbd5af13bef0b113f}, {0xa6274bbdd0fadd61, 0xecb1ad8aeacdd58f}, {0xcfb11ead453994ba, 0x67de18eda5814af3}, {0x81ceb32c4b43fcf4, 0x80eacf948770ced8}, {0xa2425ff75e14fc31, 0xa1258379a94d028e}, {0xcad2f7f5359a3b3e, 0x096ee45813a04331}, {0xfd87b5f28300ca0d, 0x8bca9d6e188853fd}, {0x9e74d1b791e07e48, 0x775ea264cf55347e}, {0xc612062576589dda, 0x95364afe032a819e}, {0xf79687aed3eec551, 0x3a83ddbd83f52205}, {0x9abe14cd44753b52, 0xc4926a9672793543}, {0xc16d9a0095928a27, 0x75b7053c0f178294}, {0xf1c90080baf72cb1, 0x5324c68b12dd6339}, {0x971da05074da7bee, 0xd3f6fc16ebca5e04}, {0xbce5086492111aea, 0x88f4bb1ca6bcf585}, {0xec1e4a7db69561a5, 0x2b31e9e3d06c32e6}, {0x9392ee8e921d5d07, 0x3aff322e62439fd0}, {0xb877aa3236a4b449, 0x09befeb9fad487c3}, {0xe69594bec44de15b, 0x4c2ebe687989a9b4}, {0x901d7cf73ab0acd9, 0x0f9d37014bf60a11}, {0xb424dc35095cd80f, 0x538484c19ef38c95}, {0xe12e13424bb40e13, 0x2865a5f206b06fba}, {0x8cbccc096f5088cb, 0xf93f87b7442e45d4}, {0xafebff0bcb24aafe, 0xf78f69a51539d749}, {0xdbe6fecebdedd5be, 0xb573440e5a884d1c}, {0x89705f4136b4a597, 0x31680a88f8953031}, {0xabcc77118461cefc, 0xfdc20d2b36ba7c3e}, {0xd6bf94d5e57a42bc, 0x3d32907604691b4d}, {0x8637bd05af6c69b5, 0xa63f9a49c2c1b110}, {0xa7c5ac471b478423, 0x0fcf80dc33721d54}, {0xd1b71758e219652b, 0xd3c36113404ea4a9}, {0x83126e978d4fdf3b, 0x645a1cac083126ea}, {0xa3d70a3d70a3d70a, 0x3d70a3d70a3d70a4}, {0xcccccccccccccccc, 0xcccccccccccccccd}, {0x8000000000000000, 0x0000000000000000}, {0xa000000000000000, 0x0000000000000000}, {0xc800000000000000, 0x0000000000000000}, {0xfa00000000000000, 0x0000000000000000}, {0x9c40000000000000, 0x0000000000000000}, {0xc350000000000000, 0x0000000000000000}, {0xf424000000000000, 0x0000000000000000}, {0x9896800000000000, 0x0000000000000000}, {0xbebc200000000000, 0x0000000000000000}, {0xee6b280000000000, 0x0000000000000000}, {0x9502f90000000000, 0x0000000000000000}, {0xba43b74000000000, 0x0000000000000000}, {0xe8d4a51000000000, 0x0000000000000000}, {0x9184e72a00000000, 0x0000000000000000}, {0xb5e620f480000000, 0x0000000000000000}, {0xe35fa931a0000000, 0x0000000000000000}, {0x8e1bc9bf04000000, 0x0000000000000000}, {0xb1a2bc2ec5000000, 0x0000000000000000}, {0xde0b6b3a76400000, 0x0000000000000000}, {0x8ac7230489e80000, 0x0000000000000000}, {0xad78ebc5ac620000, 0x0000000000000000}, {0xd8d726b7177a8000, 0x0000000000000000}, {0x878678326eac9000, 0x0000000000000000}, {0xa968163f0a57b400, 0x0000000000000000}, {0xd3c21bcecceda100, 0x0000000000000000}, {0x84595161401484a0, 0x0000000000000000}, {0xa56fa5b99019a5c8, 0x0000000000000000}, {0xcecb8f27f4200f3a, 0x0000000000000000}, {0x813f3978f8940984, 0x4000000000000000}, {0xa18f07d736b90be5, 0x5000000000000000}, {0xc9f2c9cd04674ede, 0xa400000000000000}, {0xfc6f7c4045812296, 0x4d00000000000000}, {0x9dc5ada82b70b59d, 0xf020000000000000}, {0xc5371912364ce305, 0x6c28000000000000}, {0xf684df56c3e01bc6, 0xc732000000000000}, {0x9a130b963a6c115c, 0x3c7f400000000000}, {0xc097ce7bc90715b3, 0x4b9f100000000000}, {0xf0bdc21abb48db20, 0x1e86d40000000000}, {0x96769950b50d88f4, 0x1314448000000000}, {0xbc143fa4e250eb31, 0x17d955a000000000}, {0xeb194f8e1ae525fd, 0x5dcfab0800000000}, {0x92efd1b8d0cf37be, 0x5aa1cae500000000}, {0xb7abc627050305ad, 0xf14a3d9e40000000}, {0xe596b7b0c643c719, 0x6d9ccd05d0000000}, {0x8f7e32ce7bea5c6f, 0xe4820023a2000000}, {0xb35dbf821ae4f38b, 0xdda2802c8a800000}, {0xe0352f62a19e306e, 0xd50b2037ad200000}, {0x8c213d9da502de45, 0x4526f422cc340000}, {0xaf298d050e4395d6, 0x9670b12b7f410000}, {0xdaf3f04651d47b4c, 0x3c0cdd765f114000}, {0x88d8762bf324cd0f, 0xa5880a69fb6ac800}, {0xab0e93b6efee0053, 0x8eea0d047a457a00}, {0xd5d238a4abe98068, 0x72a4904598d6d880}, {0x85a36366eb71f041, 0x47a6da2b7f864750}, {0xa70c3c40a64e6c51, 0x999090b65f67d924}, {0xd0cf4b50cfe20765, 0xfff4b4e3f741cf6d}, {0x82818f1281ed449f, 0xbff8f10e7a8921a5}, {0xa321f2d7226895c7, 0xaff72d52192b6a0e}, {0xcbea6f8ceb02bb39, 0x9bf4f8a69f764491}, {0xfee50b7025c36a08, 0x02f236d04753d5b5}, {0x9f4f2726179a2245, 0x01d762422c946591}, {0xc722f0ef9d80aad6, 0x424d3ad2b7b97ef6}, {0xf8ebad2b84e0d58b, 0xd2e0898765a7deb3}, {0x9b934c3b330c8577, 0x63cc55f49f88eb30}, {0xc2781f49ffcfa6d5, 0x3cbf6b71c76b25fc}, {0xf316271c7fc3908a, 0x8bef464e3945ef7b}, {0x97edd871cfda3a56, 0x97758bf0e3cbb5ad}, {0xbde94e8e43d0c8ec, 0x3d52eeed1cbea318}, {0xed63a231d4c4fb27, 0x4ca7aaa863ee4bde}, {0x945e455f24fb1cf8, 0x8fe8caa93e74ef6b}, {0xb975d6b6ee39e436, 0xb3e2fd538e122b45}, {0xe7d34c64a9c85d44, 0x60dbbca87196b617}, {0x90e40fbeea1d3a4a, 0xbc8955e946fe31ce}, {0xb51d13aea4a488dd, 0x6babab6398bdbe42}, {0xe264589a4dcdab14, 0xc696963c7eed2dd2}, {0x8d7eb76070a08aec, 0xfc1e1de5cf543ca3}, {0xb0de65388cc8ada8, 0x3b25a55f43294bcc}, {0xdd15fe86affad912, 0x49ef0eb713f39ebf}, {0x8a2dbf142dfcc7ab, 0x6e3569326c784338}, {0xacb92ed9397bf996, 0x49c2c37f07965405}, {0xd7e77a8f87daf7fb, 0xdc33745ec97be907}, {0x86f0ac99b4e8dafd, 0x69a028bb3ded71a4}, {0xa8acd7c0222311bc, 0xc40832ea0d68ce0d}, {0xd2d80db02aabd62b, 0xf50a3fa490c30191}, {0x83c7088e1aab65db, 0x792667c6da79e0fb}, {0xa4b8cab1a1563f52, 0x577001b891185939}, {0xcde6fd5e09abcf26, 0xed4c0226b55e6f87}, {0x80b05e5ac60b6178, 0x544f8158315b05b5}, {0xa0dc75f1778e39d6, 0x696361ae3db1c722}, {0xc913936dd571c84c, 0x03bc3a19cd1e38ea}, {0xfb5878494ace3a5f, 0x04ab48a04065c724}, {0x9d174b2dcec0e47b, 0x62eb0d64283f9c77}, {0xc45d1df942711d9a, 0x3ba5d0bd324f8395}, {0xf5746577930d6500, 0xca8f44ec7ee3647a}, {0x9968bf6abbe85f20, 0x7e998b13cf4e1ecc}, {0xbfc2ef456ae276e8, 0x9e3fedd8c321a67f}, {0xefb3ab16c59b14a2, 0xc5cfe94ef3ea101f}, {0x95d04aee3b80ece5, 0xbba1f1d158724a13}, {0xbb445da9ca61281f, 0x2a8a6e45ae8edc98}, {0xea1575143cf97226, 0xf52d09d71a3293be}, {0x924d692ca61be758, 0x593c2626705f9c57}, {0xb6e0c377cfa2e12e, 0x6f8b2fb00c77836d}, {0xe498f455c38b997a, 0x0b6dfb9c0f956448}, {0x8edf98b59a373fec, 0x4724bd4189bd5ead}, {0xb2977ee300c50fe7, 0x58edec91ec2cb658}, {0xdf3d5e9bc0f653e1, 0x2f2967b66737e3ee}, {0x8b865b215899f46c, 0xbd79e0d20082ee75}, {0xae67f1e9aec07187, 0xecd8590680a3aa12}, {0xda01ee641a708de9, 0xe80e6f4820cc9496}, {0x884134fe908658b2, 0x3109058d147fdcde}, {0xaa51823e34a7eede, 0xbd4b46f0599fd416}, {0xd4e5e2cdc1d1ea96, 0x6c9e18ac7007c91b}, {0x850fadc09923329e, 0x03e2cf6bc604ddb1}, {0xa6539930bf6bff45, 0x84db8346b786151d}, {0xcfe87f7cef46ff16, 0xe612641865679a64}, {0x81f14fae158c5f6e, 0x4fcb7e8f3f60c07f}, {0xa26da3999aef7749, 0xe3be5e330f38f09e}, {0xcb090c8001ab551c, 0x5cadf5bfd3072cc6}, {0xfdcb4fa002162a63, 0x73d9732fc7c8f7f7}, {0x9e9f11c4014dda7e, 0x2867e7fddcdd9afb}, {0xc646d63501a1511d, 0xb281e1fd541501b9}, {0xf7d88bc24209a565, 0x1f225a7ca91a4227}, {0x9ae757596946075f, 0x3375788de9b06959}, {0xc1a12d2fc3978937, 0x0052d6b1641c83af}, {0xf209787bb47d6b84, 0xc0678c5dbd23a49b}, {0x9745eb4d50ce6332, 0xf840b7ba963646e1}, {0xbd176620a501fbff, 0xb650e5a93bc3d899}, {0xec5d3fa8ce427aff, 0xa3e51f138ab4cebf}, {0x93ba47c980e98cdf, 0xc66f336c36b10138}, {0xb8a8d9bbe123f017, 0xb80b0047445d4185}, {0xe6d3102ad96cec1d, 0xa60dc059157491e6}, {0x9043ea1ac7e41392, 0x87c89837ad68db30}, {0xb454e4a179dd1877, 0x29babe4598c311fc}, {0xe16a1dc9d8545e94, 0xf4296dd6fef3d67b}, {0x8ce2529e2734bb1d, 0x1899e4a65f58660d}, {0xb01ae745b101e9e4, 0x5ec05dcff72e7f90}, {0xdc21a1171d42645d, 0x76707543f4fa1f74}, {0x899504ae72497eba, 0x6a06494a791c53a9}, {0xabfa45da0edbde69, 0x0487db9d17636893}, {0xd6f8d7509292d603, 0x45a9d2845d3c42b7}, {0x865b86925b9bc5c2, 0x0b8a2392ba45a9b3}, {0xa7f26836f282b732, 0x8e6cac7768d7141f}, {0xd1ef0244af2364ff, 0x3207d795430cd927}, {0x8335616aed761f1f, 0x7f44e6bd49e807b9}, {0xa402b9c5a8d3a6e7, 0x5f16206c9c6209a7}, {0xcd036837130890a1, 0x36dba887c37a8c10}, {0x802221226be55a64, 0xc2494954da2c978a}, {0xa02aa96b06deb0fd, 0xf2db9baa10b7bd6d}, {0xc83553c5c8965d3d, 0x6f92829494e5acc8}, {0xfa42a8b73abbf48c, 0xcb772339ba1f17fa}, {0x9c69a97284b578d7, 0xff2a760414536efc}, {0xc38413cf25e2d70d, 0xfef5138519684abb}, {0xf46518c2ef5b8cd1, 0x7eb258665fc25d6a}, {0x98bf2f79d5993802, 0xef2f773ffbd97a62}, {0xbeeefb584aff8603, 0xaafb550ffacfd8fb}, {0xeeaaba2e5dbf6784, 0x95ba2a53f983cf39}, {0x952ab45cfa97a0b2, 0xdd945a747bf26184}, {0xba756174393d88df, 0x94f971119aeef9e5}, {0xe912b9d1478ceb17, 0x7a37cd5601aab85e}, {0x91abb422ccb812ee, 0xac62e055c10ab33b}, {0xb616a12b7fe617aa, 0x577b986b314d600a}, {0xe39c49765fdf9d94, 0xed5a7e85fda0b80c}, {0x8e41ade9fbebc27d, 0x14588f13be847308}, {0xb1d219647ae6b31c, 0x596eb2d8ae258fc9}, {0xde469fbd99a05fe3, 0x6fca5f8ed9aef3bc}, {0x8aec23d680043bee, 0x25de7bb9480d5855}, {0xada72ccc20054ae9, 0xaf561aa79a10ae6b}, {0xd910f7ff28069da4, 0x1b2ba1518094da05}, {0x87aa9aff79042286, 0x90fb44d2f05d0843}, {0xa99541bf57452b28, 0x353a1607ac744a54}, {0xd3fa922f2d1675f2, 0x42889b8997915ce9}, {0x847c9b5d7c2e09b7, 0x69956135febada12}, {0xa59bc234db398c25, 0x43fab9837e699096}, {0xcf02b2c21207ef2e, 0x94f967e45e03f4bc}, {0x8161afb94b44f57d, 0x1d1be0eebac278f6}, {0xa1ba1ba79e1632dc, 0x6462d92a69731733}, {0xca28a291859bbf93, 0x7d7b8f7503cfdcff}, {0xfcb2cb35e702af78, 0x5cda735244c3d43f}, {0x9defbf01b061adab, 0x3a0888136afa64a8}, {0xc56baec21c7a1916, 0x088aaa1845b8fdd1}, {0xf6c69a72a3989f5b, 0x8aad549e57273d46}, {0x9a3c2087a63f6399, 0x36ac54e2f678864c}, {0xc0cb28a98fcf3c7f, 0x84576a1bb416a7de}, {0xf0fdf2d3f3c30b9f, 0x656d44a2a11c51d6}, {0x969eb7c47859e743, 0x9f644ae5a4b1b326}, {0xbc4665b596706114, 0x873d5d9f0dde1fef}, {0xeb57ff22fc0c7959, 0xa90cb506d155a7eb}, {0x9316ff75dd87cbd8, 0x09a7f12442d588f3}, {0xb7dcbf5354e9bece, 0x0c11ed6d538aeb30}, {0xe5d3ef282a242e81, 0x8f1668c8a86da5fb}, {0x8fa475791a569d10, 0xf96e017d694487bd}, {0xb38d92d760ec4455, 0x37c981dcc395a9ad}, {0xe070f78d3927556a, 0x85bbe253f47b1418}, {0x8c469ab843b89562, 0x93956d7478ccec8f}, {0xaf58416654a6babb, 0x387ac8d1970027b3}, {0xdb2e51bfe9d0696a, 0x06997b05fcc0319f}, {0x88fcf317f22241e2, 0x441fece3bdf81f04}, {0xab3c2fddeeaad25a, 0xd527e81cad7626c4}, {0xd60b3bd56a5586f1, 0x8a71e223d8d3b075}, {0x85c7056562757456, 0xf6872d5667844e4a}, {0xa738c6bebb12d16c, 0xb428f8ac016561dc}, {0xd106f86e69d785c7, 0xe13336d701beba53}, {0x82a45b450226b39c, 0xecc0024661173474}, {0xa34d721642b06084, 0x27f002d7f95d0191}, {0xcc20ce9bd35c78a5, 0x31ec038df7b441f5}, {0xff290242c83396ce, 0x7e67047175a15272}, {0x9f79a169bd203e41, 0x0f0062c6e984d387}, {0xc75809c42c684dd1, 0x52c07b78a3e60869}, {0xf92e0c3537826145, 0xa7709a56ccdf8a83}, {0x9bbcc7a142b17ccb, 0x88a66076400bb692}, {0xc2abf989935ddbfe, 0x6acff893d00ea436}, {0xf356f7ebf83552fe, 0x0583f6b8c4124d44}, {0x98165af37b2153de, 0xc3727a337a8b704b}, {0xbe1bf1b059e9a8d6, 0x744f18c0592e4c5d}, {0xeda2ee1c7064130c, 0x1162def06f79df74}, {0x9485d4d1c63e8be7, 0x8addcb5645ac2ba9}, {0xb9a74a0637ce2ee1, 0x6d953e2bd7173693}, {0xe8111c87c5c1ba99, 0xc8fa8db6ccdd0438}, {0x910ab1d4db9914a0, 0x1d9c9892400a22a3}, {0xb54d5e4a127f59c8, 0x2503beb6d00cab4c}, {0xe2a0b5dc971f303a, 0x2e44ae64840fd61e}, {0x8da471a9de737e24, 0x5ceaecfed289e5d3}, {0xb10d8e1456105dad, 0x7425a83e872c5f48}, {0xdd50f1996b947518, 0xd12f124e28f7771a}, {0x8a5296ffe33cc92f, 0x82bd6b70d99aaa70}, {0xace73cbfdc0bfb7b, 0x636cc64d1001550c}, {0xd8210befd30efa5a, 0x3c47f7e05401aa4f}, {0x8714a775e3e95c78, 0x65acfaec34810a72}, {0xa8d9d1535ce3b396, 0x7f1839a741a14d0e}, {0xd31045a8341ca07c, 0x1ede48111209a051}, {0x83ea2b892091e44d, 0x934aed0aab460433}, {0xa4e4b66b68b65d60, 0xf81da84d56178540}, {0xce1de40642e3f4b9, 0x36251260ab9d668f}, {0x80d2ae83e9ce78f3, 0xc1d72b7c6b42601a}, {0xa1075a24e4421730, 0xb24cf65b8612f820}, {0xc94930ae1d529cfc, 0xdee033f26797b628}, {0xfb9b7cd9a4a7443c, 0x169840ef017da3b2}, {0x9d412e0806e88aa5, 0x8e1f289560ee864f}, {0xc491798a08a2ad4e, 0xf1a6f2bab92a27e3}, {0xf5b5d7ec8acb58a2, 0xae10af696774b1dc}, {0x9991a6f3d6bf1765, 0xacca6da1e0a8ef2a}, {0xbff610b0cc6edd3f, 0x17fd090a58d32af4}, {0xeff394dcff8a948e, 0xddfc4b4cef07f5b1}, {0x95f83d0a1fb69cd9, 0x4abdaf101564f98f}, {0xbb764c4ca7a4440f, 0x9d6d1ad41abe37f2}, {0xea53df5fd18d5513, 0x84c86189216dc5ee}, {0x92746b9be2f8552c, 0x32fd3cf5b4e49bb5}, {0xb7118682dbb66a77, 0x3fbc8c33221dc2a2}, {0xe4d5e82392a40515, 0x0fabaf3feaa5334b}, {0x8f05b1163ba6832d, 0x29cb4d87f2a7400f}, {0xb2c71d5bca9023f8, 0x743e20e9ef511013}, {0xdf78e4b2bd342cf6, 0x914da9246b255417}, {0x8bab8eefb6409c1a, 0x1ad089b6c2f7548f}, {0xae9672aba3d0c320, 0xa184ac2473b529b2}, {0xda3c0f568cc4f3e8, 0xc9e5d72d90a2741f}, {0x8865899617fb1871, 0x7e2fa67c7a658893}, {0xaa7eebfb9df9de8d, 0xddbb901b98feeab8}, {0xd51ea6fa85785631, 0x552a74227f3ea566}, {0x8533285c936b35de, 0xd53a88958f872760}, {0xa67ff273b8460356, 0x8a892abaf368f138}, {0xd01fef10a657842c, 0x2d2b7569b0432d86}, {0x8213f56a67f6b29b, 0x9c3b29620e29fc74}, {0xa298f2c501f45f42, 0x8349f3ba91b47b90}, {0xcb3f2f7642717713, 0x241c70a936219a74}, {0xfe0efb53d30dd4d7, 0xed238cd383aa0111}, {0x9ec95d1463e8a506, 0xf4363804324a40ab}, {0xc67bb4597ce2ce48, 0xb143c6053edcd0d6}, {0xf81aa16fdc1b81da, 0xdd94b7868e94050b}, {0x9b10a4e5e9913128, 0xca7cf2b4191c8327}, {0xc1d4ce1f63f57d72, 0xfd1c2f611f63a3f1}, {0xf24a01a73cf2dccf, 0xbc633b39673c8ced}, {0x976e41088617ca01, 0xd5be0503e085d814}, {0xbd49d14aa79dbc82, 0x4b2d8644d8a74e19}, {0xec9c459d51852ba2, 0xddf8e7d60ed1219f}, {0x93e1ab8252f33b45, 0xcabb90e5c942b504}, {0xb8da1662e7b00a17, 0x3d6a751f3b936244}, {0xe7109bfba19c0c9d, 0x0cc512670a783ad5}, {0x906a617d450187e2, 0x27fb2b80668b24c6}, {0xb484f9dc9641e9da, 0xb1f9f660802dedf7}, {0xe1a63853bbd26451, 0x5e7873f8a0396974}, {0x8d07e33455637eb2, 0xdb0b487b6423e1e9}, {0xb049dc016abc5e5f, 0x91ce1a9a3d2cda63}, {0xdc5c5301c56b75f7, 0x7641a140cc7810fc}, {0x89b9b3e11b6329ba, 0xa9e904c87fcb0a9e}, {0xac2820d9623bf429, 0x546345fa9fbdcd45}, {0xd732290fbacaf133, 0xa97c177947ad4096}, {0x867f59a9d4bed6c0, 0x49ed8eabcccc485e}, {0xa81f301449ee8c70, 0x5c68f256bfff5a75}, {0xd226fc195c6a2f8c, 0x73832eec6fff3112}, {0x83585d8fd9c25db7, 0xc831fd53c5ff7eac}, {0xa42e74f3d032f525, 0xba3e7ca8b77f5e56}, {0xcd3a1230c43fb26f, 0x28ce1bd2e55f35ec}, {0x80444b5e7aa7cf85, 0x7980d163cf5b81b4}, {0xa0555e361951c366, 0xd7e105bcc3326220}, {0xc86ab5c39fa63440, 0x8dd9472bf3fefaa8}, {0xfa856334878fc150, 0xb14f98f6f0feb952}, {0x9c935e00d4b9d8d2, 0x6ed1bf9a569f33d4}, {0xc3b8358109e84f07, 0x0a862f80ec4700c9}, {0xf4a642e14c6262c8, 0xcd27bb612758c0fb}, {0x98e7e9cccfbd7dbd, 0x8038d51cb897789d}, {0xbf21e44003acdd2c, 0xe0470a63e6bd56c4}, {0xeeea5d5004981478, 0x1858ccfce06cac75}, {0x95527a5202df0ccb, 0x0f37801e0c43ebc9}, {0xbaa718e68396cffd, 0xd30560258f54e6bb}, {0xe950df20247c83fd, 0x47c6b82ef32a206a}, {0x91d28b7416cdd27e, 0x4cdc331d57fa5442}, {0xb6472e511c81471d, 0xe0133fe4adf8e953}, {0xe3d8f9e563a198e5, 0x58180fddd97723a7}, {0x8e679c2f5e44ff8f, 0x570f09eaa7ea7649}, {0xb201833b35d63f73, 0x2cd2cc6551e513db}, {0xde81e40a034bcf4f, 0xf8077f7ea65e58d2}, {0x8b112e86420f6191, 0xfb04afaf27faf783}, {0xadd57a27d29339f6, 0x79c5db9af1f9b564}, {0xd94ad8b1c7380874, 0x18375281ae7822bd}, {0x87cec76f1c830548, 0x8f2293910d0b15b6}, {0xa9c2794ae3a3c69a, 0xb2eb3875504ddb23}, {0xd433179d9c8cb841, 0x5fa60692a46151ec}, {0x849feec281d7f328, 0xdbc7c41ba6bcd334}, {0xa5c7ea73224deff3, 0x12b9b522906c0801}, {0xcf39e50feae16bef, 0xd768226b34870a01}, {0x81842f29f2cce375, 0xe6a1158300d46641}, {0xa1e53af46f801c53, 0x60495ae3c1097fd1}, {0xca5e89b18b602368, 0x385bb19cb14bdfc5}, {0xfcf62c1dee382c42, 0x46729e03dd9ed7b6}, {0x9e19db92b4e31ba9, 0x6c07a2c26a8346d2}, {0xc5a05277621be293, 0xc7098b7305241886}, {0xf70867153aa2db38, 0xb8cbee4fc66d1ea8}, {0x9a65406d44a5c903, 0x737f74f1dc043329}, {0xc0fe908895cf3b44, 0x505f522e53053ff3}, {0xf13e34aabb430a15, 0x647726b9e7c68ff0}, {0x96c6e0eab509e64d, 0x5eca783430dc19f6}, {0xbc789925624c5fe0, 0xb67d16413d132073}, {0xeb96bf6ebadf77d8, 0xe41c5bd18c57e890}, {0x933e37a534cbaae7, 0x8e91b962f7b6f15a}, {0xb80dc58e81fe95a1, 0x723627bbb5a4adb1}, {0xe61136f2227e3b09, 0xcec3b1aaa30dd91d}, {0x8fcac257558ee4e6, 0x213a4f0aa5e8a7b2}, {0xb3bd72ed2af29e1f, 0xa988e2cd4f62d19e}, {0xe0accfa875af45a7, 0x93eb1b80a33b8606}, {0x8c6c01c9498d8b88, 0xbc72f130660533c4}, {0xaf87023b9bf0ee6a, 0xeb8fad7c7f8680b5}, {0xdb68c2ca82ed2a05, 0xa67398db9f6820e2}, #else {0xff77b1fcbebcdc4f, 0x25e8e89c13bb0f7b}, {0xce5d73ff402d98e3, 0xfb0a3d212dc81290}, {0xa6b34ad8c9dfc06f, 0xf42faa48c0ea481f}, {0x86a8d39ef77164bc, 0xae5dff9c02033198}, {0xd98ddaee19068c76, 0x3badd624dd9b0958}, {0xafbd2350644eeacf, 0xe5d1929ef90898fb}, {0x8df5efabc5979c8f, 0xca8d3ffa1ef463c2}, {0xe55990879ddcaabd, 0xcc420a6a101d0516}, {0xb94470938fa89bce, 0xf808e40e8d5b3e6a}, {0x95a8637627989aad, 0xdde7001379a44aa9}, {0xf1c90080baf72cb1, 0x5324c68b12dd6339}, {0xc350000000000000, 0x0000000000000000}, {0x9dc5ada82b70b59d, 0xf020000000000000}, {0xfee50b7025c36a08, 0x02f236d04753d5b5}, {0xcde6fd5e09abcf26, 0xed4c0226b55e6f87}, {0xa6539930bf6bff45, 0x84db8346b786151d}, {0x865b86925b9bc5c2, 0x0b8a2392ba45a9b3}, {0xd910f7ff28069da4, 0x1b2ba1518094da05}, {0xaf58416654a6babb, 0x387ac8d1970027b3}, {0x8da471a9de737e24, 0x5ceaecfed289e5d3}, {0xe4d5e82392a40515, 0x0fabaf3feaa5334b}, {0xb8da1662e7b00a17, 0x3d6a751f3b936244}, {0x95527a5202df0ccb, 0x0f37801e0c43ebc9}, {0xf13e34aabb430a15, 0x647726b9e7c68ff0} #endif }; #if FMT_USE_FULL_CACHE_DRAGONBOX return pow10_significands[k - float_info::min_k]; #else static constexpr uint64_t powers_of_5_64[] = { 0x0000000000000001, 0x0000000000000005, 0x0000000000000019, 0x000000000000007d, 0x0000000000000271, 0x0000000000000c35, 0x0000000000003d09, 0x000000000001312d, 0x000000000005f5e1, 0x00000000001dcd65, 0x00000000009502f9, 0x0000000002e90edd, 0x000000000e8d4a51, 0x0000000048c27395, 0x000000016bcc41e9, 0x000000071afd498d, 0x0000002386f26fc1, 0x000000b1a2bc2ec5, 0x000003782dace9d9, 0x00001158e460913d, 0x000056bc75e2d631, 0x0001b1ae4d6e2ef5, 0x000878678326eac9, 0x002a5a058fc295ed, 0x00d3c21bcecceda1, 0x0422ca8b0a00a425, 0x14adf4b7320334b9}; static const int compression_ratio = 27; // Compute base index. int cache_index = (k - float_info::min_k) / compression_ratio; int kb = cache_index * compression_ratio + float_info::min_k; int offset = k - kb; // Get base cache. uint128_fallback base_cache = pow10_significands[cache_index]; if (offset == 0) return base_cache; // Compute the required amount of bit-shift. int alpha = floor_log2_pow10(kb + offset) - floor_log2_pow10(kb) - offset; FMT_ASSERT(alpha > 0 && alpha < 64, "shifting error detected"); // Try to recover the real cache. uint64_t pow5 = powers_of_5_64[offset]; uint128_fallback recovered_cache = umul128(base_cache.high(), pow5); uint128_fallback middle_low = umul128(base_cache.low(), pow5); recovered_cache += middle_low.high(); uint64_t high_to_middle = recovered_cache.high() << (64 - alpha); uint64_t middle_to_low = recovered_cache.low() << (64 - alpha); recovered_cache = uint128_fallback{(recovered_cache.low() >> alpha) | high_to_middle, ((middle_low.low() >> alpha) | middle_to_low)}; FMT_ASSERT(recovered_cache.low() + 1 != 0, ""); return {recovered_cache.high(), recovered_cache.low() + 1}; #endif } struct compute_mul_result { carrier_uint result; bool is_integer; }; struct compute_mul_parity_result { bool parity; bool is_integer; }; static auto compute_mul(carrier_uint u, const cache_entry_type& cache) noexcept -> compute_mul_result { auto r = umul192_upper128(u, cache); return {r.high(), r.low() == 0}; } static auto compute_delta(const cache_entry_type& cache, int beta) noexcept -> uint32_t { return static_cast(cache.high() >> (64 - 1 - beta)); } static auto compute_mul_parity(carrier_uint two_f, const cache_entry_type& cache, int beta) noexcept -> compute_mul_parity_result { FMT_ASSERT(beta >= 1, ""); FMT_ASSERT(beta < 64, ""); auto r = umul192_lower128(two_f, cache); return {((r.high() >> (64 - beta)) & 1) != 0, ((r.high() << beta) | (r.low() >> (64 - beta))) == 0}; } static auto compute_left_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept -> carrier_uint { return (cache.high() - (cache.high() >> (num_significand_bits() + 2))) >> (64 - num_significand_bits() - 1 - beta); } static auto compute_right_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept -> carrier_uint { return (cache.high() + (cache.high() >> (num_significand_bits() + 1))) >> (64 - num_significand_bits() - 1 - beta); } static auto compute_round_up_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept -> carrier_uint { return ((cache.high() >> (64 - num_significand_bits() - 2 - beta)) + 1) / 2; } }; FMT_FUNC auto get_cached_power(int k) noexcept -> uint128_fallback { return cache_accessor::get_cached_power(k); } // Various integer checks template auto is_left_endpoint_integer_shorter_interval(int exponent) noexcept -> bool { const int case_shorter_interval_left_endpoint_lower_threshold = 2; const int case_shorter_interval_left_endpoint_upper_threshold = 3; return exponent >= case_shorter_interval_left_endpoint_lower_threshold && exponent <= case_shorter_interval_left_endpoint_upper_threshold; } // Remove trailing zeros from n and return the number of zeros removed (float). FMT_INLINE auto remove_trailing_zeros(uint32_t& n, int s = 0) noexcept -> int { FMT_ASSERT(n != 0, ""); // Modular inverse of 5 (mod 2^32): (mod_inv_5 * 5) mod 2^32 = 1. constexpr uint32_t mod_inv_5 = 0xcccccccd; constexpr uint32_t mod_inv_25 = 0xc28f5c29; // = mod_inv_5 * mod_inv_5 while (true) { auto q = rotr(n * mod_inv_25, 2); if (q > max_value() / 100) break; n = q; s += 2; } auto q = rotr(n * mod_inv_5, 1); if (q <= max_value() / 10) { n = q; s |= 1; } return s; } // Removes trailing zeros and returns the number of zeros removed (double). FMT_INLINE auto remove_trailing_zeros(uint64_t& n) noexcept -> int { FMT_ASSERT(n != 0, ""); // Is n is divisible by 10^8? constexpr uint32_t ten_pow_8 = 100000000u; if ((n % ten_pow_8) == 0) { // If yes, work with the quotient... auto n32 = static_cast(n / ten_pow_8); // ... and use the 32 bit variant of the function int num_zeros = remove_trailing_zeros(n32, 8); n = n32; return num_zeros; } // If n is not divisible by 10^8, work with n itself. constexpr uint64_t mod_inv_5 = 0xcccccccccccccccd; constexpr uint64_t mod_inv_25 = 0x8f5c28f5c28f5c29; // mod_inv_5 * mod_inv_5 int s = 0; while (true) { auto q = rotr(n * mod_inv_25, 2); if (q > max_value() / 100) break; n = q; s += 2; } auto q = rotr(n * mod_inv_5, 1); if (q <= max_value() / 10) { n = q; s |= 1; } return s; } // The main algorithm for shorter interval case template FMT_INLINE auto shorter_interval_case(int exponent) noexcept -> decimal_fp { decimal_fp ret_value; // Compute k and beta const int minus_k = floor_log10_pow2_minus_log10_4_over_3(exponent); const int beta = exponent + floor_log2_pow10(-minus_k); // Compute xi and zi using cache_entry_type = typename cache_accessor::cache_entry_type; const cache_entry_type cache = cache_accessor::get_cached_power(-minus_k); auto xi = cache_accessor::compute_left_endpoint_for_shorter_interval_case( cache, beta); auto zi = cache_accessor::compute_right_endpoint_for_shorter_interval_case( cache, beta); // If the left endpoint is not an integer, increase it if (!is_left_endpoint_integer_shorter_interval(exponent)) ++xi; // Try bigger divisor ret_value.significand = zi / 10; // If succeed, remove trailing zeros if necessary and return if (ret_value.significand * 10 >= xi) { ret_value.exponent = minus_k + 1; ret_value.exponent += remove_trailing_zeros(ret_value.significand); return ret_value; } // Otherwise, compute the round-up of y ret_value.significand = cache_accessor::compute_round_up_for_shorter_interval_case(cache, beta); ret_value.exponent = minus_k; // When tie occurs, choose one of them according to the rule if (exponent >= float_info::shorter_interval_tie_lower_threshold && exponent <= float_info::shorter_interval_tie_upper_threshold) { ret_value.significand = ret_value.significand % 2 == 0 ? ret_value.significand : ret_value.significand - 1; } else if (ret_value.significand < xi) { ++ret_value.significand; } return ret_value; } template auto to_decimal(T x) noexcept -> decimal_fp { // Step 1: integer promotion & Schubfach multiplier calculation. using carrier_uint = typename float_info::carrier_uint; using cache_entry_type = typename cache_accessor::cache_entry_type; auto br = bit_cast(x); // Extract significand bits and exponent bits. const carrier_uint significand_mask = (static_cast(1) << num_significand_bits()) - 1; carrier_uint significand = (br & significand_mask); int exponent = static_cast((br & exponent_mask()) >> num_significand_bits()); if (exponent != 0) { // Check if normal. exponent -= exponent_bias() + num_significand_bits(); // Shorter interval case; proceed like Schubfach. // In fact, when exponent == 1 and significand == 0, the interval is // regular. However, it can be shown that the end-results are anyway same. if (significand == 0) return shorter_interval_case(exponent); significand |= (static_cast(1) << num_significand_bits()); } else { // Subnormal case; the interval is always regular. if (significand == 0) return {0, 0}; exponent = std::numeric_limits::min_exponent - num_significand_bits() - 1; } const bool include_left_endpoint = (significand % 2 == 0); const bool include_right_endpoint = include_left_endpoint; // Compute k and beta. const int minus_k = floor_log10_pow2(exponent) - float_info::kappa; const cache_entry_type cache = cache_accessor::get_cached_power(-minus_k); const int beta = exponent + floor_log2_pow10(-minus_k); // Compute zi and deltai. // 10^kappa <= deltai < 10^(kappa + 1) const uint32_t deltai = cache_accessor::compute_delta(cache, beta); const carrier_uint two_fc = significand << 1; // For the case of binary32, the result of integer check is not correct for // 29711844 * 2^-82 // = 6.1442653300000000008655037797566933477355632930994033813476... * 10^-18 // and 29711844 * 2^-81 // = 1.2288530660000000001731007559513386695471126586198806762695... * 10^-17, // and they are the unique counterexamples. However, since 29711844 is even, // this does not cause any problem for the endpoints calculations; it can only // cause a problem when we need to perform integer check for the center. // Fortunately, with these inputs, that branch is never executed, so we are // fine. const typename cache_accessor::compute_mul_result z_mul = cache_accessor::compute_mul((two_fc | 1) << beta, cache); // Step 2: Try larger divisor; remove trailing zeros if necessary. // Using an upper bound on zi, we might be able to optimize the division // better than the compiler; we are computing zi / big_divisor here. decimal_fp ret_value; ret_value.significand = divide_by_10_to_kappa_plus_1(z_mul.result); uint32_t r = static_cast(z_mul.result - float_info::big_divisor * ret_value.significand); if (r < deltai) { // Exclude the right endpoint if necessary. if (r == 0 && (z_mul.is_integer & !include_right_endpoint)) { --ret_value.significand; r = float_info::big_divisor; goto small_divisor_case_label; } } else if (r > deltai) { goto small_divisor_case_label; } else { // r == deltai; compare fractional parts. const typename cache_accessor::compute_mul_parity_result x_mul = cache_accessor::compute_mul_parity(two_fc - 1, cache, beta); if (!(x_mul.parity | (x_mul.is_integer & include_left_endpoint))) goto small_divisor_case_label; } ret_value.exponent = minus_k + float_info::kappa + 1; // We may need to remove trailing zeros. ret_value.exponent += remove_trailing_zeros(ret_value.significand); return ret_value; // Step 3: Find the significand with the smaller divisor. small_divisor_case_label: ret_value.significand *= 10; ret_value.exponent = minus_k + float_info::kappa; uint32_t dist = r - (deltai / 2) + (float_info::small_divisor / 2); const bool approx_y_parity = ((dist ^ (float_info::small_divisor / 2)) & 1) != 0; // Is dist divisible by 10^kappa? const bool divisible_by_small_divisor = check_divisibility_and_divide_by_pow10::kappa>(dist); // Add dist / 10^kappa to the significand. ret_value.significand += dist; if (!divisible_by_small_divisor) return ret_value; // Check z^(f) >= epsilon^(f). // We have either yi == zi - epsiloni or yi == (zi - epsiloni) - 1, // where yi == zi - epsiloni if and only if z^(f) >= epsilon^(f). // Since there are only 2 possibilities, we only need to care about the // parity. Also, zi and r should have the same parity since the divisor // is an even number. const auto y_mul = cache_accessor::compute_mul_parity(two_fc, cache, beta); // If z^(f) >= epsilon^(f), we might have a tie when z^(f) == epsilon^(f), // or equivalently, when y is an integer. if (y_mul.parity != approx_y_parity) --ret_value.significand; else if (y_mul.is_integer & (ret_value.significand % 2 != 0)) --ret_value.significand; return ret_value; } } // namespace dragonbox } // namespace detail template <> struct formatter { FMT_CONSTEXPR auto parse(format_parse_context& ctx) -> format_parse_context::iterator { return ctx.begin(); } auto format(const detail::bigint& n, format_context& ctx) const -> format_context::iterator { auto out = ctx.out(); bool first = true; for (auto i = n.bigits_.size(); i > 0; --i) { auto value = n.bigits_[i - 1u]; if (first) { out = fmt::format_to(out, FMT_STRING("{:x}"), value); first = false; continue; } out = fmt::format_to(out, FMT_STRING("{:08x}"), value); } if (n.exp_ > 0) out = fmt::format_to(out, FMT_STRING("p{}"), n.exp_ * detail::bigint::bigit_bits); return out; } }; FMT_FUNC detail::utf8_to_utf16::utf8_to_utf16(string_view s) { for_each_codepoint(s, [this](uint32_t cp, string_view) { if (cp == invalid_code_point) FMT_THROW(std::runtime_error("invalid utf8")); if (cp <= 0xFFFF) { buffer_.push_back(static_cast(cp)); } else { cp -= 0x10000; buffer_.push_back(static_cast(0xD800 + (cp >> 10))); buffer_.push_back(static_cast(0xDC00 + (cp & 0x3FF))); } return true; }); buffer_.push_back(0); } FMT_FUNC void format_system_error(detail::buffer& out, int error_code, const char* message) noexcept { FMT_TRY { auto ec = std::error_code(error_code, std::generic_category()); detail::write(appender(out), std::system_error(ec, message).what()); return; } FMT_CATCH(...) {} format_error_code(out, error_code, message); } FMT_FUNC void report_system_error(int error_code, const char* message) noexcept { do_report_error(format_system_error, error_code, message); } FMT_FUNC auto vformat(string_view fmt, format_args args) -> std::string { // Don't optimize the "{}" case to keep the binary size small and because it // can be better optimized in fmt::format anyway. auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); return to_string(buffer); } namespace detail { FMT_FUNC void vformat_to(buffer& buf, string_view fmt, format_args args, locale_ref loc) { auto out = appender(buf); if (fmt.size() == 2 && equal2(fmt.data(), "{}")) return args.get(0).visit(default_arg_formatter{out}); parse_format_string(fmt, format_handler<>{parse_context<>(fmt), {out, args, loc}}); } template struct span { T* data; size_t size; }; template auto flockfile(F* f) -> decltype(_lock_file(f)) { _lock_file(f); } template auto funlockfile(F* f) -> decltype(_unlock_file(f)) { _unlock_file(f); } #ifndef getc_unlocked template auto getc_unlocked(F* f) -> decltype(_fgetc_nolock(f)) { return _fgetc_nolock(f); } #endif template struct has_flockfile : std::false_type {}; template struct has_flockfile()))>> : std::true_type {}; // A FILE wrapper. F is FILE defined as a template parameter to make system API // detection work. template class file_base { public: F* file_; public: file_base(F* file) : file_(file) {} operator F*() const { return file_; } // Reads a code unit from the stream. auto get() -> int { int result = getc_unlocked(file_); if (result == EOF && ferror(file_) != 0) FMT_THROW(system_error(errno, FMT_STRING("getc failed"))); return result; } // Puts the code unit back into the stream buffer. void unget(char c) { if (ungetc(c, file_) == EOF) FMT_THROW(system_error(errno, FMT_STRING("ungetc failed"))); } void flush() { fflush(this->file_); } }; // A FILE wrapper for glibc. template class glibc_file : public file_base { private: enum { line_buffered = 0x200, // _IO_LINE_BUF unbuffered = 2 // _IO_UNBUFFERED }; public: using file_base::file_base; auto is_buffered() const -> bool { return (this->file_->_flags & unbuffered) == 0; } void init_buffer() { if (this->file_->_IO_write_ptr < this->file_->_IO_write_end) return; // Force buffer initialization by placing and removing a char in a buffer. putc_unlocked(0, this->file_); --this->file_->_IO_write_ptr; } // Returns the file's read buffer. auto get_read_buffer() const -> span { auto ptr = this->file_->_IO_read_ptr; return {ptr, to_unsigned(this->file_->_IO_read_end - ptr)}; } // Returns the file's write buffer. auto get_write_buffer() const -> span { auto ptr = this->file_->_IO_write_ptr; return {ptr, to_unsigned(this->file_->_IO_buf_end - ptr)}; } void advance_write_buffer(size_t size) { this->file_->_IO_write_ptr += size; } auto needs_flush() const -> bool { if ((this->file_->_flags & line_buffered) == 0) return false; char* end = this->file_->_IO_write_end; auto size = max_of(this->file_->_IO_write_ptr - end, 0); return memchr(end, '\n', static_cast(size)); } void flush() { fflush_unlocked(this->file_); } }; // A FILE wrapper for Apple's libc. template class apple_file : public file_base { private: enum { line_buffered = 1, // __SNBF unbuffered = 2 // __SLBF }; public: using file_base::file_base; auto is_buffered() const -> bool { return (this->file_->_flags & unbuffered) == 0; } void init_buffer() { if (this->file_->_p) return; // Force buffer initialization by placing and removing a char in a buffer. if (!FMT_CLANG_ANALYZER) putc_unlocked(0, this->file_); --this->file_->_p; ++this->file_->_w; } auto get_read_buffer() const -> span { return {reinterpret_cast(this->file_->_p), to_unsigned(this->file_->_r)}; } auto get_write_buffer() const -> span { return {reinterpret_cast(this->file_->_p), to_unsigned(this->file_->_bf._base + this->file_->_bf._size - this->file_->_p)}; } void advance_write_buffer(size_t size) { this->file_->_p += size; this->file_->_w -= size; } auto needs_flush() const -> bool { if ((this->file_->_flags & line_buffered) == 0) return false; return memchr(this->file_->_p + this->file_->_w, '\n', to_unsigned(-this->file_->_w)); } }; // A fallback FILE wrapper. template class fallback_file : public file_base { private: char next_; // The next unconsumed character in the buffer. bool has_next_ = false; public: using file_base::file_base; auto is_buffered() const -> bool { return false; } auto needs_flush() const -> bool { return false; } void init_buffer() {} auto get_read_buffer() const -> span { return {&next_, has_next_ ? 1u : 0u}; } auto get_write_buffer() const -> span { return {nullptr, 0}; } void advance_write_buffer(size_t) {} auto get() -> int { has_next_ = false; return file_base::get(); } void unget(char c) { file_base::unget(c); next_ = c; has_next_ = true; } }; #ifndef FMT_USE_FALLBACK_FILE # define FMT_USE_FALLBACK_FILE 0 #endif template auto get_file(F* f, int) -> apple_file { return f; } template inline auto get_file(F* f, int) -> glibc_file { return f; } inline auto get_file(FILE* f, ...) -> fallback_file { return f; } using file_ref = decltype(get_file(static_cast(nullptr), 0)); template class file_print_buffer : public buffer { public: explicit file_print_buffer(F*) : buffer(nullptr, size_t()) {} }; template class file_print_buffer::value>> : public buffer { private: file_ref file_; static void grow(buffer& base, size_t) { auto& self = static_cast(base); self.file_.advance_write_buffer(self.size()); if (self.file_.get_write_buffer().size == 0) self.file_.flush(); auto buf = self.file_.get_write_buffer(); FMT_ASSERT(buf.size > 0, ""); self.set(buf.data, buf.size); self.clear(); } public: explicit file_print_buffer(F* f) : buffer(grow, size_t()), file_(f) { flockfile(f); file_.init_buffer(); auto buf = file_.get_write_buffer(); set(buf.data, buf.size); } ~file_print_buffer() { file_.advance_write_buffer(size()); bool flush = file_.needs_flush(); F* f = file_; // Make funlockfile depend on the template parameter F funlockfile(f); // for the system API detection to work. if (flush) fflush(file_); } }; #if !defined(_WIN32) || defined(FMT_USE_WRITE_CONSOLE) FMT_FUNC auto write_console(int, string_view) -> bool { return false; } #else using dword = conditional_t; extern "C" __declspec(dllimport) int __stdcall WriteConsoleW( // void*, const void*, dword, dword*, void*); FMT_FUNC bool write_console(int fd, string_view text) { auto u16 = utf8_to_utf16(text); return WriteConsoleW(reinterpret_cast(_get_osfhandle(fd)), u16.c_str(), static_cast(u16.size()), nullptr, nullptr) != 0; } #endif #ifdef _WIN32 // Print assuming legacy (non-Unicode) encoding. FMT_FUNC void vprint_mojibake(std::FILE* f, string_view fmt, format_args args, bool newline) { auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); if (newline) buffer.push_back('\n'); fwrite_all(buffer.data(), buffer.size(), f); } #endif FMT_FUNC void print(std::FILE* f, string_view text) { #if defined(_WIN32) && !defined(FMT_USE_WRITE_CONSOLE) int fd = _fileno(f); if (_isatty(fd)) { std::fflush(f); if (write_console(fd, text)) return; } #endif fwrite_all(text.data(), text.size(), f); } } // namespace detail FMT_FUNC void vprint_buffered(std::FILE* f, string_view fmt, format_args args) { auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); detail::print(f, {buffer.data(), buffer.size()}); } FMT_FUNC void vprint(std::FILE* f, string_view fmt, format_args args) { if (!detail::file_ref(f).is_buffered() || !detail::has_flockfile<>()) return vprint_buffered(f, fmt, args); auto&& buffer = detail::file_print_buffer<>(f); return detail::vformat_to(buffer, fmt, args); } FMT_FUNC void vprintln(std::FILE* f, string_view fmt, format_args args) { auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); buffer.push_back('\n'); detail::print(f, {buffer.data(), buffer.size()}); } FMT_FUNC void vprint(string_view fmt, format_args args) { vprint(stdout, fmt, args); } namespace detail { struct singleton { unsigned char upper; unsigned char lower_count; }; inline auto is_printable(uint16_t x, const singleton* singletons, size_t singletons_size, const unsigned char* singleton_lowers, const unsigned char* normal, size_t normal_size) -> bool { auto upper = x >> 8; auto lower_start = 0; for (size_t i = 0; i < singletons_size; ++i) { auto s = singletons[i]; auto lower_end = lower_start + s.lower_count; if (upper < s.upper) break; if (upper == s.upper) { for (auto j = lower_start; j < lower_end; ++j) { if (singleton_lowers[j] == (x & 0xff)) return false; } } lower_start = lower_end; } auto xsigned = static_cast(x); auto current = true; for (size_t i = 0; i < normal_size; ++i) { auto v = static_cast(normal[i]); auto len = (v & 0x80) != 0 ? (v & 0x7f) << 8 | normal[++i] : v; xsigned -= len; if (xsigned < 0) break; current = !current; } return current; } // This code is generated by support/printable.py. FMT_FUNC auto is_printable(uint32_t cp) -> bool { static constexpr singleton singletons0[] = { {0x00, 1}, {0x03, 5}, {0x05, 6}, {0x06, 3}, {0x07, 6}, {0x08, 8}, {0x09, 17}, {0x0a, 28}, {0x0b, 25}, {0x0c, 20}, {0x0d, 16}, {0x0e, 13}, {0x0f, 4}, {0x10, 3}, {0x12, 18}, {0x13, 9}, {0x16, 1}, {0x17, 5}, {0x18, 2}, {0x19, 3}, {0x1a, 7}, {0x1c, 2}, {0x1d, 1}, {0x1f, 22}, {0x20, 3}, {0x2b, 3}, {0x2c, 2}, {0x2d, 11}, {0x2e, 1}, {0x30, 3}, {0x31, 2}, {0x32, 1}, {0xa7, 2}, {0xa9, 2}, {0xaa, 4}, {0xab, 8}, {0xfa, 2}, {0xfb, 5}, {0xfd, 4}, {0xfe, 3}, {0xff, 9}, }; static constexpr unsigned char singletons0_lower[] = { 0xad, 0x78, 0x79, 0x8b, 0x8d, 0xa2, 0x30, 0x57, 0x58, 0x8b, 0x8c, 0x90, 0x1c, 0x1d, 0xdd, 0x0e, 0x0f, 0x4b, 0x4c, 0xfb, 0xfc, 0x2e, 0x2f, 0x3f, 0x5c, 0x5d, 0x5f, 0xb5, 0xe2, 0x84, 0x8d, 0x8e, 0x91, 0x92, 0xa9, 0xb1, 0xba, 0xbb, 0xc5, 0xc6, 0xc9, 0xca, 0xde, 0xe4, 0xe5, 0xff, 0x00, 0x04, 0x11, 0x12, 0x29, 0x31, 0x34, 0x37, 0x3a, 0x3b, 0x3d, 0x49, 0x4a, 0x5d, 0x84, 0x8e, 0x92, 0xa9, 0xb1, 0xb4, 0xba, 0xbb, 0xc6, 0xca, 0xce, 0xcf, 0xe4, 0xe5, 0x00, 0x04, 0x0d, 0x0e, 0x11, 0x12, 0x29, 0x31, 0x34, 0x3a, 0x3b, 0x45, 0x46, 0x49, 0x4a, 0x5e, 0x64, 0x65, 0x84, 0x91, 0x9b, 0x9d, 0xc9, 0xce, 0xcf, 0x0d, 0x11, 0x29, 0x45, 0x49, 0x57, 0x64, 0x65, 0x8d, 0x91, 0xa9, 0xb4, 0xba, 0xbb, 0xc5, 0xc9, 0xdf, 0xe4, 0xe5, 0xf0, 0x0d, 0x11, 0x45, 0x49, 0x64, 0x65, 0x80, 0x84, 0xb2, 0xbc, 0xbe, 0xbf, 0xd5, 0xd7, 0xf0, 0xf1, 0x83, 0x85, 0x8b, 0xa4, 0xa6, 0xbe, 0xbf, 0xc5, 0xc7, 0xce, 0xcf, 0xda, 0xdb, 0x48, 0x98, 0xbd, 0xcd, 0xc6, 0xce, 0xcf, 0x49, 0x4e, 0x4f, 0x57, 0x59, 0x5e, 0x5f, 0x89, 0x8e, 0x8f, 0xb1, 0xb6, 0xb7, 0xbf, 0xc1, 0xc6, 0xc7, 0xd7, 0x11, 0x16, 0x17, 0x5b, 0x5c, 0xf6, 0xf7, 0xfe, 0xff, 0x80, 0x0d, 0x6d, 0x71, 0xde, 0xdf, 0x0e, 0x0f, 0x1f, 0x6e, 0x6f, 0x1c, 0x1d, 0x5f, 0x7d, 0x7e, 0xae, 0xaf, 0xbb, 0xbc, 0xfa, 0x16, 0x17, 0x1e, 0x1f, 0x46, 0x47, 0x4e, 0x4f, 0x58, 0x5a, 0x5c, 0x5e, 0x7e, 0x7f, 0xb5, 0xc5, 0xd4, 0xd5, 0xdc, 0xf0, 0xf1, 0xf5, 0x72, 0x73, 0x8f, 0x74, 0x75, 0x96, 0x2f, 0x5f, 0x26, 0x2e, 0x2f, 0xa7, 0xaf, 0xb7, 0xbf, 0xc7, 0xcf, 0xd7, 0xdf, 0x9a, 0x40, 0x97, 0x98, 0x30, 0x8f, 0x1f, 0xc0, 0xc1, 0xce, 0xff, 0x4e, 0x4f, 0x5a, 0x5b, 0x07, 0x08, 0x0f, 0x10, 0x27, 0x2f, 0xee, 0xef, 0x6e, 0x6f, 0x37, 0x3d, 0x3f, 0x42, 0x45, 0x90, 0x91, 0xfe, 0xff, 0x53, 0x67, 0x75, 0xc8, 0xc9, 0xd0, 0xd1, 0xd8, 0xd9, 0xe7, 0xfe, 0xff, }; static constexpr singleton singletons1[] = { {0x00, 6}, {0x01, 1}, {0x03, 1}, {0x04, 2}, {0x08, 8}, {0x09, 2}, {0x0a, 5}, {0x0b, 2}, {0x0e, 4}, {0x10, 1}, {0x11, 2}, {0x12, 5}, {0x13, 17}, {0x14, 1}, {0x15, 2}, {0x17, 2}, {0x19, 13}, {0x1c, 5}, {0x1d, 8}, {0x24, 1}, {0x6a, 3}, {0x6b, 2}, {0xbc, 2}, {0xd1, 2}, {0xd4, 12}, {0xd5, 9}, {0xd6, 2}, {0xd7, 2}, {0xda, 1}, {0xe0, 5}, {0xe1, 2}, {0xe8, 2}, {0xee, 32}, {0xf0, 4}, {0xf8, 2}, {0xf9, 2}, {0xfa, 2}, {0xfb, 1}, }; static constexpr unsigned char singletons1_lower[] = { 0x0c, 0x27, 0x3b, 0x3e, 0x4e, 0x4f, 0x8f, 0x9e, 0x9e, 0x9f, 0x06, 0x07, 0x09, 0x36, 0x3d, 0x3e, 0x56, 0xf3, 0xd0, 0xd1, 0x04, 0x14, 0x18, 0x36, 0x37, 0x56, 0x57, 0x7f, 0xaa, 0xae, 0xaf, 0xbd, 0x35, 0xe0, 0x12, 0x87, 0x89, 0x8e, 0x9e, 0x04, 0x0d, 0x0e, 0x11, 0x12, 0x29, 0x31, 0x34, 0x3a, 0x45, 0x46, 0x49, 0x4a, 0x4e, 0x4f, 0x64, 0x65, 0x5c, 0xb6, 0xb7, 0x1b, 0x1c, 0x07, 0x08, 0x0a, 0x0b, 0x14, 0x17, 0x36, 0x39, 0x3a, 0xa8, 0xa9, 0xd8, 0xd9, 0x09, 0x37, 0x90, 0x91, 0xa8, 0x07, 0x0a, 0x3b, 0x3e, 0x66, 0x69, 0x8f, 0x92, 0x6f, 0x5f, 0xee, 0xef, 0x5a, 0x62, 0x9a, 0x9b, 0x27, 0x28, 0x55, 0x9d, 0xa0, 0xa1, 0xa3, 0xa4, 0xa7, 0xa8, 0xad, 0xba, 0xbc, 0xc4, 0x06, 0x0b, 0x0c, 0x15, 0x1d, 0x3a, 0x3f, 0x45, 0x51, 0xa6, 0xa7, 0xcc, 0xcd, 0xa0, 0x07, 0x19, 0x1a, 0x22, 0x25, 0x3e, 0x3f, 0xc5, 0xc6, 0x04, 0x20, 0x23, 0x25, 0x26, 0x28, 0x33, 0x38, 0x3a, 0x48, 0x4a, 0x4c, 0x50, 0x53, 0x55, 0x56, 0x58, 0x5a, 0x5c, 0x5e, 0x60, 0x63, 0x65, 0x66, 0x6b, 0x73, 0x78, 0x7d, 0x7f, 0x8a, 0xa4, 0xaa, 0xaf, 0xb0, 0xc0, 0xd0, 0xae, 0xaf, 0x79, 0xcc, 0x6e, 0x6f, 0x93, }; static constexpr unsigned char normal0[] = { 0x00, 0x20, 0x5f, 0x22, 0x82, 0xdf, 0x04, 0x82, 0x44, 0x08, 0x1b, 0x04, 0x06, 0x11, 0x81, 0xac, 0x0e, 0x80, 0xab, 0x35, 0x28, 0x0b, 0x80, 0xe0, 0x03, 0x19, 0x08, 0x01, 0x04, 0x2f, 0x04, 0x34, 0x04, 0x07, 0x03, 0x01, 0x07, 0x06, 0x07, 0x11, 0x0a, 0x50, 0x0f, 0x12, 0x07, 0x55, 0x07, 0x03, 0x04, 0x1c, 0x0a, 0x09, 0x03, 0x08, 0x03, 0x07, 0x03, 0x02, 0x03, 0x03, 0x03, 0x0c, 0x04, 0x05, 0x03, 0x0b, 0x06, 0x01, 0x0e, 0x15, 0x05, 0x3a, 0x03, 0x11, 0x07, 0x06, 0x05, 0x10, 0x07, 0x57, 0x07, 0x02, 0x07, 0x15, 0x0d, 0x50, 0x04, 0x43, 0x03, 0x2d, 0x03, 0x01, 0x04, 0x11, 0x06, 0x0f, 0x0c, 0x3a, 0x04, 0x1d, 0x25, 0x5f, 0x20, 0x6d, 0x04, 0x6a, 0x25, 0x80, 0xc8, 0x05, 0x82, 0xb0, 0x03, 0x1a, 0x06, 0x82, 0xfd, 0x03, 0x59, 0x07, 0x15, 0x0b, 0x17, 0x09, 0x14, 0x0c, 0x14, 0x0c, 0x6a, 0x06, 0x0a, 0x06, 0x1a, 0x06, 0x59, 0x07, 0x2b, 0x05, 0x46, 0x0a, 0x2c, 0x04, 0x0c, 0x04, 0x01, 0x03, 0x31, 0x0b, 0x2c, 0x04, 0x1a, 0x06, 0x0b, 0x03, 0x80, 0xac, 0x06, 0x0a, 0x06, 0x21, 0x3f, 0x4c, 0x04, 0x2d, 0x03, 0x74, 0x08, 0x3c, 0x03, 0x0f, 0x03, 0x3c, 0x07, 0x38, 0x08, 0x2b, 0x05, 0x82, 0xff, 0x11, 0x18, 0x08, 0x2f, 0x11, 0x2d, 0x03, 0x20, 0x10, 0x21, 0x0f, 0x80, 0x8c, 0x04, 0x82, 0x97, 0x19, 0x0b, 0x15, 0x88, 0x94, 0x05, 0x2f, 0x05, 0x3b, 0x07, 0x02, 0x0e, 0x18, 0x09, 0x80, 0xb3, 0x2d, 0x74, 0x0c, 0x80, 0xd6, 0x1a, 0x0c, 0x05, 0x80, 0xff, 0x05, 0x80, 0xdf, 0x0c, 0xee, 0x0d, 0x03, 0x84, 0x8d, 0x03, 0x37, 0x09, 0x81, 0x5c, 0x14, 0x80, 0xb8, 0x08, 0x80, 0xcb, 0x2a, 0x38, 0x03, 0x0a, 0x06, 0x38, 0x08, 0x46, 0x08, 0x0c, 0x06, 0x74, 0x0b, 0x1e, 0x03, 0x5a, 0x04, 0x59, 0x09, 0x80, 0x83, 0x18, 0x1c, 0x0a, 0x16, 0x09, 0x4c, 0x04, 0x80, 0x8a, 0x06, 0xab, 0xa4, 0x0c, 0x17, 0x04, 0x31, 0xa1, 0x04, 0x81, 0xda, 0x26, 0x07, 0x0c, 0x05, 0x05, 0x80, 0xa5, 0x11, 0x81, 0x6d, 0x10, 0x78, 0x28, 0x2a, 0x06, 0x4c, 0x04, 0x80, 0x8d, 0x04, 0x80, 0xbe, 0x03, 0x1b, 0x03, 0x0f, 0x0d, }; static constexpr unsigned char normal1[] = { 0x5e, 0x22, 0x7b, 0x05, 0x03, 0x04, 0x2d, 0x03, 0x66, 0x03, 0x01, 0x2f, 0x2e, 0x80, 0x82, 0x1d, 0x03, 0x31, 0x0f, 0x1c, 0x04, 0x24, 0x09, 0x1e, 0x05, 0x2b, 0x05, 0x44, 0x04, 0x0e, 0x2a, 0x80, 0xaa, 0x06, 0x24, 0x04, 0x24, 0x04, 0x28, 0x08, 0x34, 0x0b, 0x01, 0x80, 0x90, 0x81, 0x37, 0x09, 0x16, 0x0a, 0x08, 0x80, 0x98, 0x39, 0x03, 0x63, 0x08, 0x09, 0x30, 0x16, 0x05, 0x21, 0x03, 0x1b, 0x05, 0x01, 0x40, 0x38, 0x04, 0x4b, 0x05, 0x2f, 0x04, 0x0a, 0x07, 0x09, 0x07, 0x40, 0x20, 0x27, 0x04, 0x0c, 0x09, 0x36, 0x03, 0x3a, 0x05, 0x1a, 0x07, 0x04, 0x0c, 0x07, 0x50, 0x49, 0x37, 0x33, 0x0d, 0x33, 0x07, 0x2e, 0x08, 0x0a, 0x81, 0x26, 0x52, 0x4e, 0x28, 0x08, 0x2a, 0x56, 0x1c, 0x14, 0x17, 0x09, 0x4e, 0x04, 0x1e, 0x0f, 0x43, 0x0e, 0x19, 0x07, 0x0a, 0x06, 0x48, 0x08, 0x27, 0x09, 0x75, 0x0b, 0x3f, 0x41, 0x2a, 0x06, 0x3b, 0x05, 0x0a, 0x06, 0x51, 0x06, 0x01, 0x05, 0x10, 0x03, 0x05, 0x80, 0x8b, 0x62, 0x1e, 0x48, 0x08, 0x0a, 0x80, 0xa6, 0x5e, 0x22, 0x45, 0x0b, 0x0a, 0x06, 0x0d, 0x13, 0x39, 0x07, 0x0a, 0x36, 0x2c, 0x04, 0x10, 0x80, 0xc0, 0x3c, 0x64, 0x53, 0x0c, 0x48, 0x09, 0x0a, 0x46, 0x45, 0x1b, 0x48, 0x08, 0x53, 0x1d, 0x39, 0x81, 0x07, 0x46, 0x0a, 0x1d, 0x03, 0x47, 0x49, 0x37, 0x03, 0x0e, 0x08, 0x0a, 0x06, 0x39, 0x07, 0x0a, 0x81, 0x36, 0x19, 0x80, 0xb7, 0x01, 0x0f, 0x32, 0x0d, 0x83, 0x9b, 0x66, 0x75, 0x0b, 0x80, 0xc4, 0x8a, 0xbc, 0x84, 0x2f, 0x8f, 0xd1, 0x82, 0x47, 0xa1, 0xb9, 0x82, 0x39, 0x07, 0x2a, 0x04, 0x02, 0x60, 0x26, 0x0a, 0x46, 0x0a, 0x28, 0x05, 0x13, 0x82, 0xb0, 0x5b, 0x65, 0x4b, 0x04, 0x39, 0x07, 0x11, 0x40, 0x05, 0x0b, 0x02, 0x0e, 0x97, 0xf8, 0x08, 0x84, 0xd6, 0x2a, 0x09, 0xa2, 0xf7, 0x81, 0x1f, 0x31, 0x03, 0x11, 0x04, 0x08, 0x81, 0x8c, 0x89, 0x04, 0x6b, 0x05, 0x0d, 0x03, 0x09, 0x07, 0x10, 0x93, 0x60, 0x80, 0xf6, 0x0a, 0x73, 0x08, 0x6e, 0x17, 0x46, 0x80, 0x9a, 0x14, 0x0c, 0x57, 0x09, 0x19, 0x80, 0x87, 0x81, 0x47, 0x03, 0x85, 0x42, 0x0f, 0x15, 0x85, 0x50, 0x2b, 0x80, 0xd5, 0x2d, 0x03, 0x1a, 0x04, 0x02, 0x81, 0x70, 0x3a, 0x05, 0x01, 0x85, 0x00, 0x80, 0xd7, 0x29, 0x4c, 0x04, 0x0a, 0x04, 0x02, 0x83, 0x11, 0x44, 0x4c, 0x3d, 0x80, 0xc2, 0x3c, 0x06, 0x01, 0x04, 0x55, 0x05, 0x1b, 0x34, 0x02, 0x81, 0x0e, 0x2c, 0x04, 0x64, 0x0c, 0x56, 0x0a, 0x80, 0xae, 0x38, 0x1d, 0x0d, 0x2c, 0x04, 0x09, 0x07, 0x02, 0x0e, 0x06, 0x80, 0x9a, 0x83, 0xd8, 0x08, 0x0d, 0x03, 0x0d, 0x03, 0x74, 0x0c, 0x59, 0x07, 0x0c, 0x14, 0x0c, 0x04, 0x38, 0x08, 0x0a, 0x06, 0x28, 0x08, 0x22, 0x4e, 0x81, 0x54, 0x0c, 0x15, 0x03, 0x03, 0x05, 0x07, 0x09, 0x19, 0x07, 0x07, 0x09, 0x03, 0x0d, 0x07, 0x29, 0x80, 0xcb, 0x25, 0x0a, 0x84, 0x06, }; auto lower = static_cast(cp); if (cp < 0x10000) { return is_printable(lower, singletons0, sizeof(singletons0) / sizeof(*singletons0), singletons0_lower, normal0, sizeof(normal0)); } if (cp < 0x20000) { return is_printable(lower, singletons1, sizeof(singletons1) / sizeof(*singletons1), singletons1_lower, normal1, sizeof(normal1)); } if (0x2a6de <= cp && cp < 0x2a700) return false; if (0x2b735 <= cp && cp < 0x2b740) return false; if (0x2b81e <= cp && cp < 0x2b820) return false; if (0x2cea2 <= cp && cp < 0x2ceb0) return false; if (0x2ebe1 <= cp && cp < 0x2f800) return false; if (0x2fa1e <= cp && cp < 0x30000) return false; if (0x3134b <= cp && cp < 0xe0100) return false; if (0xe01f0 <= cp && cp < 0x110000) return false; return cp < 0x110000; } } // namespace detail FMT_END_NAMESPACE #endif // FMT_FORMAT_INL_H_ btop-1.4.5/include/fmt/format.h000066400000000000000000004751121506333644200163570ustar00rootroot00000000000000/* Formatting library for C++ Copyright (c) 2012 - present, Victor Zverovich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- Optional exception to the license --- As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into a machine-executable object form of such source code, you may redistribute such embedded portions in such object form without including the above copyright and permission notices. */ #ifndef FMT_FORMAT_H_ #define FMT_FORMAT_H_ #ifndef _LIBCPP_REMOVE_TRANSITIVE_INCLUDES # define _LIBCPP_REMOVE_TRANSITIVE_INCLUDES # define FMT_REMOVE_TRANSITIVE_INCLUDES #endif #include "base.h" #ifndef FMT_MODULE # include // std::signbit # include // std::byte # include // uint32_t # include // std::malloc, std::free # include // std::memcpy # include // std::numeric_limits # include // std::bad_alloc # if defined(__GLIBCXX__) && !defined(_GLIBCXX_USE_DUAL_ABI) // Workaround for pre gcc 5 libstdc++. # include // std::allocator_traits # endif # include // std::runtime_error # include // std::string # include // std::system_error // Check FMT_CPLUSPLUS to avoid a warning in MSVC. # if FMT_HAS_INCLUDE() && FMT_CPLUSPLUS > 201703L # include // std::bit_cast # endif // libc++ supports string_view in pre-c++17. # if FMT_HAS_INCLUDE() && \ (FMT_CPLUSPLUS >= 201703L || defined(_LIBCPP_VERSION)) # include # define FMT_USE_STRING_VIEW # endif # if FMT_MSC_VERSION # include // _BitScanReverse[64], _umul128 # endif #endif // FMT_MODULE #if defined(FMT_USE_NONTYPE_TEMPLATE_ARGS) // Use the provided definition. #elif defined(__NVCOMPILER) # define FMT_USE_NONTYPE_TEMPLATE_ARGS 0 #elif FMT_GCC_VERSION >= 903 && FMT_CPLUSPLUS >= 201709L # define FMT_USE_NONTYPE_TEMPLATE_ARGS 1 #elif defined(__cpp_nontype_template_args) && \ __cpp_nontype_template_args >= 201911L # define FMT_USE_NONTYPE_TEMPLATE_ARGS 1 #elif FMT_CLANG_VERSION >= 1200 && FMT_CPLUSPLUS >= 202002L # define FMT_USE_NONTYPE_TEMPLATE_ARGS 1 #else # define FMT_USE_NONTYPE_TEMPLATE_ARGS 0 #endif #if defined __cpp_inline_variables && __cpp_inline_variables >= 201606L # define FMT_INLINE_VARIABLE inline #else # define FMT_INLINE_VARIABLE #endif // Check if RTTI is disabled. #ifdef FMT_USE_RTTI // Use the provided definition. #elif defined(__GXX_RTTI) || FMT_HAS_FEATURE(cxx_rtti) || defined(_CPPRTTI) || \ defined(__INTEL_RTTI__) || defined(__RTTI) // __RTTI is for EDG compilers. _CPPRTTI is for MSVC. # define FMT_USE_RTTI 1 #else # define FMT_USE_RTTI 0 #endif // Visibility when compiled as a shared library/object. #if defined(FMT_LIB_EXPORT) || defined(FMT_SHARED) # define FMT_SO_VISIBILITY(value) FMT_VISIBILITY(value) #else # define FMT_SO_VISIBILITY(value) #endif #if FMT_GCC_VERSION || FMT_CLANG_VERSION # define FMT_NOINLINE __attribute__((noinline)) #else # define FMT_NOINLINE #endif #ifdef FMT_DEPRECATED // Use the provided definition. #elif FMT_HAS_CPP14_ATTRIBUTE(deprecated) # define FMT_DEPRECATED [[deprecated]] #else # define FMT_DEPRECATED /* deprecated */ #endif // Detect constexpr std::string. #if !FMT_USE_CONSTEVAL # define FMT_USE_CONSTEXPR_STRING 0 #elif defined(__cpp_lib_constexpr_string) && \ __cpp_lib_constexpr_string >= 201907L # if FMT_CLANG_VERSION && FMT_GLIBCXX_RELEASE // clang + libstdc++ are able to work only starting with gcc13.3 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113294 # if FMT_GLIBCXX_RELEASE < 13 # define FMT_USE_CONSTEXPR_STRING 0 # elif FMT_GLIBCXX_RELEASE == 13 && __GLIBCXX__ < 20240521 # define FMT_USE_CONSTEXPR_STRING 0 # else # define FMT_USE_CONSTEXPR_STRING 1 # endif # else # define FMT_USE_CONSTEXPR_STRING 1 # endif #else # define FMT_USE_CONSTEXPR_STRING 0 #endif #if FMT_USE_CONSTEXPR_STRING # define FMT_CONSTEXPR_STRING constexpr #else # define FMT_CONSTEXPR_STRING #endif // GCC 4.9 doesn't support qualified names in specializations. namespace std { template struct iterator_traits> { using iterator_category = output_iterator_tag; using value_type = T; using difference_type = decltype(static_cast(nullptr) - static_cast(nullptr)); using pointer = void; using reference = void; }; } // namespace std #ifdef FMT_THROW // Use the provided definition. #elif FMT_USE_EXCEPTIONS # define FMT_THROW(x) throw x #else # define FMT_THROW(x) ::fmt::assert_fail(__FILE__, __LINE__, (x).what()) #endif #ifdef __clang_analyzer__ # define FMT_CLANG_ANALYZER 1 #else # define FMT_CLANG_ANALYZER 0 #endif // Defining FMT_REDUCE_INT_INSTANTIATIONS to 1, will reduce the number of // integer formatter template instantiations to just one by only using the // largest integer type. This results in a reduction in binary size but will // cause a decrease in integer formatting performance. #if !defined(FMT_REDUCE_INT_INSTANTIATIONS) # define FMT_REDUCE_INT_INSTANTIATIONS 0 #endif FMT_BEGIN_NAMESPACE template struct is_contiguous> : std::true_type {}; namespace detail { // __builtin_clz is broken in clang with Microsoft codegen: // https://github.com/fmtlib/fmt/issues/519. #if !FMT_MSC_VERSION # if FMT_HAS_BUILTIN(__builtin_clz) || FMT_GCC_VERSION || FMT_ICC_VERSION # define FMT_BUILTIN_CLZ(n) __builtin_clz(n) # endif # if FMT_HAS_BUILTIN(__builtin_clzll) || FMT_GCC_VERSION || FMT_ICC_VERSION # define FMT_BUILTIN_CLZLL(n) __builtin_clzll(n) # endif #endif // Some compilers masquerade as both MSVC and GCC but otherwise support // __builtin_clz and __builtin_clzll, so only define FMT_BUILTIN_CLZ using the // MSVC intrinsics if the clz and clzll builtins are not available. #if FMT_MSC_VERSION && !defined(FMT_BUILTIN_CLZLL) // Avoid Clang with Microsoft CodeGen's -Wunknown-pragmas warning. # ifndef __clang__ # pragma intrinsic(_BitScanReverse) # ifdef _WIN64 # pragma intrinsic(_BitScanReverse64) # endif # endif inline auto clz(uint32_t x) -> int { FMT_ASSERT(x != 0, ""); FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning. unsigned long r = 0; _BitScanReverse(&r, x); return 31 ^ static_cast(r); } # define FMT_BUILTIN_CLZ(n) detail::clz(n) inline auto clzll(uint64_t x) -> int { FMT_ASSERT(x != 0, ""); FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning. unsigned long r = 0; # ifdef _WIN64 _BitScanReverse64(&r, x); # else // Scan the high 32 bits. if (_BitScanReverse(&r, static_cast(x >> 32))) return 63 ^ static_cast(r + 32); // Scan the low 32 bits. _BitScanReverse(&r, static_cast(x)); # endif return 63 ^ static_cast(r); } # define FMT_BUILTIN_CLZLL(n) detail::clzll(n) #endif // FMT_MSC_VERSION && !defined(FMT_BUILTIN_CLZLL) FMT_CONSTEXPR inline void abort_fuzzing_if(bool condition) { ignore_unused(condition); #ifdef FMT_FUZZ if (condition) throw std::runtime_error("fuzzing limit reached"); #endif } #if defined(FMT_USE_STRING_VIEW) template using std_string_view = std::basic_string_view; #else template struct std_string_view { operator basic_string_view() const; }; #endif template struct string_literal { static constexpr Char value[sizeof...(C)] = {C...}; constexpr operator basic_string_view() const { return {value, sizeof...(C)}; } }; #if FMT_CPLUSPLUS < 201703L template constexpr Char string_literal::value[sizeof...(C)]; #endif // Implementation of std::bit_cast for pre-C++20. template FMT_CONSTEXPR20 auto bit_cast(const From& from) -> To { #ifdef __cpp_lib_bit_cast if (is_constant_evaluated()) return std::bit_cast(from); #endif auto to = To(); // The cast suppresses a bogus -Wclass-memaccess on GCC. std::memcpy(static_cast(&to), &from, sizeof(to)); return to; } inline auto is_big_endian() -> bool { #ifdef _WIN32 return false; #elif defined(__BIG_ENDIAN__) return true; #elif defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__) return __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__; #else struct bytes { char data[sizeof(int)]; }; return bit_cast(1).data[0] == 0; #endif } class uint128_fallback { private: uint64_t lo_, hi_; public: constexpr uint128_fallback(uint64_t hi, uint64_t lo) : lo_(lo), hi_(hi) {} constexpr uint128_fallback(uint64_t value = 0) : lo_(value), hi_(0) {} constexpr auto high() const noexcept -> uint64_t { return hi_; } constexpr auto low() const noexcept -> uint64_t { return lo_; } template ::value)> constexpr explicit operator T() const { return static_cast(lo_); } friend constexpr auto operator==(const uint128_fallback& lhs, const uint128_fallback& rhs) -> bool { return lhs.hi_ == rhs.hi_ && lhs.lo_ == rhs.lo_; } friend constexpr auto operator!=(const uint128_fallback& lhs, const uint128_fallback& rhs) -> bool { return !(lhs == rhs); } friend constexpr auto operator>(const uint128_fallback& lhs, const uint128_fallback& rhs) -> bool { return lhs.hi_ != rhs.hi_ ? lhs.hi_ > rhs.hi_ : lhs.lo_ > rhs.lo_; } friend constexpr auto operator|(const uint128_fallback& lhs, const uint128_fallback& rhs) -> uint128_fallback { return {lhs.hi_ | rhs.hi_, lhs.lo_ | rhs.lo_}; } friend constexpr auto operator&(const uint128_fallback& lhs, const uint128_fallback& rhs) -> uint128_fallback { return {lhs.hi_ & rhs.hi_, lhs.lo_ & rhs.lo_}; } friend constexpr auto operator~(const uint128_fallback& n) -> uint128_fallback { return {~n.hi_, ~n.lo_}; } friend FMT_CONSTEXPR auto operator+(const uint128_fallback& lhs, const uint128_fallback& rhs) -> uint128_fallback { auto result = uint128_fallback(lhs); result += rhs; return result; } friend FMT_CONSTEXPR auto operator*(const uint128_fallback& lhs, uint32_t rhs) -> uint128_fallback { FMT_ASSERT(lhs.hi_ == 0, ""); uint64_t hi = (lhs.lo_ >> 32) * rhs; uint64_t lo = (lhs.lo_ & ~uint32_t()) * rhs; uint64_t new_lo = (hi << 32) + lo; return {(hi >> 32) + (new_lo < lo ? 1 : 0), new_lo}; } friend constexpr auto operator-(const uint128_fallback& lhs, uint64_t rhs) -> uint128_fallback { return {lhs.hi_ - (lhs.lo_ < rhs ? 1 : 0), lhs.lo_ - rhs}; } FMT_CONSTEXPR auto operator>>(int shift) const -> uint128_fallback { if (shift == 64) return {0, hi_}; if (shift > 64) return uint128_fallback(0, hi_) >> (shift - 64); return {hi_ >> shift, (hi_ << (64 - shift)) | (lo_ >> shift)}; } FMT_CONSTEXPR auto operator<<(int shift) const -> uint128_fallback { if (shift == 64) return {lo_, 0}; if (shift > 64) return uint128_fallback(lo_, 0) << (shift - 64); return {hi_ << shift | (lo_ >> (64 - shift)), (lo_ << shift)}; } FMT_CONSTEXPR auto operator>>=(int shift) -> uint128_fallback& { return *this = *this >> shift; } FMT_CONSTEXPR void operator+=(uint128_fallback n) { uint64_t new_lo = lo_ + n.lo_; uint64_t new_hi = hi_ + n.hi_ + (new_lo < lo_ ? 1 : 0); FMT_ASSERT(new_hi >= hi_, ""); lo_ = new_lo; hi_ = new_hi; } FMT_CONSTEXPR void operator&=(uint128_fallback n) { lo_ &= n.lo_; hi_ &= n.hi_; } FMT_CONSTEXPR20 auto operator+=(uint64_t n) noexcept -> uint128_fallback& { if (is_constant_evaluated()) { lo_ += n; hi_ += (lo_ < n ? 1 : 0); return *this; } #if FMT_HAS_BUILTIN(__builtin_addcll) && !defined(__ibmxl__) unsigned long long carry; lo_ = __builtin_addcll(lo_, n, 0, &carry); hi_ += carry; #elif FMT_HAS_BUILTIN(__builtin_ia32_addcarryx_u64) && !defined(__ibmxl__) unsigned long long result; auto carry = __builtin_ia32_addcarryx_u64(0, lo_, n, &result); lo_ = result; hi_ += carry; #elif defined(_MSC_VER) && defined(_M_X64) auto carry = _addcarry_u64(0, lo_, n, &lo_); _addcarry_u64(carry, hi_, 0, &hi_); #else lo_ += n; hi_ += (lo_ < n ? 1 : 0); #endif return *this; } }; using uint128_t = conditional_t; #ifdef UINTPTR_MAX using uintptr_t = ::uintptr_t; #else using uintptr_t = uint128_t; #endif // Returns the largest possible value for type T. Same as // std::numeric_limits::max() but shorter and not affected by the max macro. template constexpr auto max_value() -> T { return (std::numeric_limits::max)(); } template constexpr auto num_bits() -> int { return std::numeric_limits::digits; } // std::numeric_limits::digits may return 0 for 128-bit ints. template <> constexpr auto num_bits() -> int { return 128; } template <> constexpr auto num_bits() -> int { return 128; } template <> constexpr auto num_bits() -> int { return 128; } // A heterogeneous bit_cast used for converting 96-bit long double to uint128_t // and 128-bit pointers to uint128_fallback. template sizeof(From))> inline auto bit_cast(const From& from) -> To { constexpr auto size = static_cast(sizeof(From) / sizeof(unsigned short)); struct data_t { unsigned short value[static_cast(size)]; } data = bit_cast(from); auto result = To(); if (const_check(is_big_endian())) { for (int i = 0; i < size; ++i) result = (result << num_bits()) | data.value[i]; } else { for (int i = size - 1; i >= 0; --i) result = (result << num_bits()) | data.value[i]; } return result; } template FMT_CONSTEXPR20 inline auto countl_zero_fallback(UInt n) -> int { int lz = 0; constexpr UInt msb_mask = static_cast(1) << (num_bits() - 1); for (; (n & msb_mask) == 0; n <<= 1) lz++; return lz; } FMT_CONSTEXPR20 inline auto countl_zero(uint32_t n) -> int { #ifdef FMT_BUILTIN_CLZ if (!is_constant_evaluated()) return FMT_BUILTIN_CLZ(n); #endif return countl_zero_fallback(n); } FMT_CONSTEXPR20 inline auto countl_zero(uint64_t n) -> int { #ifdef FMT_BUILTIN_CLZLL if (!is_constant_evaluated()) return FMT_BUILTIN_CLZLL(n); #endif return countl_zero_fallback(n); } FMT_INLINE void assume(bool condition) { (void)condition; #if FMT_HAS_BUILTIN(__builtin_assume) && !FMT_ICC_VERSION __builtin_assume(condition); #elif FMT_GCC_VERSION if (!condition) __builtin_unreachable(); #endif } // Attempts to reserve space for n extra characters in the output range. // Returns a pointer to the reserved range or a reference to it. template ::value&& is_contiguous::value)> #if FMT_CLANG_VERSION >= 307 && !FMT_ICC_VERSION __attribute__((no_sanitize("undefined"))) #endif FMT_CONSTEXPR20 inline auto reserve(OutputIt it, size_t n) -> typename OutputIt::value_type* { auto& c = get_container(it); size_t size = c.size(); c.resize(size + n); return &c[size]; } template FMT_CONSTEXPR20 inline auto reserve(basic_appender it, size_t n) -> basic_appender { buffer& buf = get_container(it); buf.try_reserve(buf.size() + n); return it; } template constexpr auto reserve(Iterator& it, size_t) -> Iterator& { return it; } template using reserve_iterator = remove_reference_t(), 0))>; template constexpr auto to_pointer(OutputIt, size_t) -> T* { return nullptr; } template FMT_CONSTEXPR auto to_pointer(T*& ptr, size_t n) -> T* { T* begin = ptr; ptr += n; return begin; } template FMT_CONSTEXPR20 auto to_pointer(basic_appender it, size_t n) -> T* { buffer& buf = get_container(it); buf.try_reserve(buf.size() + n); auto size = buf.size(); if (buf.capacity() < size + n) return nullptr; buf.try_resize(size + n); return buf.data() + size; } template ::value&& is_contiguous::value)> inline auto base_iterator(OutputIt it, typename OutputIt::container_type::value_type*) -> OutputIt { return it; } template constexpr auto base_iterator(Iterator, Iterator it) -> Iterator { return it; } // is spectacularly slow to compile in C++20 so use a simple fill_n // instead (#1998). template FMT_CONSTEXPR auto fill_n(OutputIt out, Size count, const T& value) -> OutputIt { for (Size i = 0; i < count; ++i) *out++ = value; return out; } template FMT_CONSTEXPR20 auto fill_n(T* out, Size count, char value) -> T* { if (is_constant_evaluated()) return fill_n(out, count, value); static_assert(sizeof(T) == 1, "sizeof(T) must be 1 to use char for initialization"); std::memset(out, value, to_unsigned(count)); return out + count; } template FMT_CONSTEXPR FMT_NOINLINE auto copy_noinline(InputIt begin, InputIt end, OutputIt out) -> OutputIt { return copy(begin, end, out); } // A public domain branchless UTF-8 decoder by Christopher Wellons: // https://github.com/skeeto/branchless-utf8 /* Decode the next character, c, from s, reporting errors in e. * * Since this is a branchless decoder, four bytes will be read from the * buffer regardless of the actual length of the next character. This * means the buffer _must_ have at least three bytes of zero padding * following the end of the data stream. * * Errors are reported in e, which will be non-zero if the parsed * character was somehow invalid: invalid byte sequence, non-canonical * encoding, or a surrogate half. * * The function returns a pointer to the next character. When an error * occurs, this pointer will be a guess that depends on the particular * error, but it will always advance at least one byte. */ FMT_CONSTEXPR inline auto utf8_decode(const char* s, uint32_t* c, int* e) -> const char* { constexpr int masks[] = {0x00, 0x7f, 0x1f, 0x0f, 0x07}; constexpr uint32_t mins[] = {4194304, 0, 128, 2048, 65536}; constexpr int shiftc[] = {0, 18, 12, 6, 0}; constexpr int shifte[] = {0, 6, 4, 2, 0}; int len = "\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\0\0\0\0\0\0\0\0\2\2\2\2\3\3\4" [static_cast(*s) >> 3]; // Compute the pointer to the next character early so that the next // iteration can start working on the next character. Neither Clang // nor GCC figure out this reordering on their own. const char* next = s + len + !len; using uchar = unsigned char; // Assume a four-byte character and load four bytes. Unused bits are // shifted out. *c = uint32_t(uchar(s[0]) & masks[len]) << 18; *c |= uint32_t(uchar(s[1]) & 0x3f) << 12; *c |= uint32_t(uchar(s[2]) & 0x3f) << 6; *c |= uint32_t(uchar(s[3]) & 0x3f) << 0; *c >>= shiftc[len]; // Accumulate the various error conditions. *e = (*c < mins[len]) << 6; // non-canonical encoding *e |= ((*c >> 11) == 0x1b) << 7; // surrogate half? *e |= (*c > 0x10FFFF) << 8; // out of range? *e |= (uchar(s[1]) & 0xc0) >> 2; *e |= (uchar(s[2]) & 0xc0) >> 4; *e |= uchar(s[3]) >> 6; *e ^= 0x2a; // top two bits of each tail byte correct? *e >>= shifte[len]; return next; } constexpr FMT_INLINE_VARIABLE uint32_t invalid_code_point = ~uint32_t(); // Invokes f(cp, sv) for every code point cp in s with sv being the string view // corresponding to the code point. cp is invalid_code_point on error. template FMT_CONSTEXPR void for_each_codepoint(string_view s, F f) { auto decode = [f](const char* buf_ptr, const char* ptr) { auto cp = uint32_t(); auto error = 0; auto end = utf8_decode(buf_ptr, &cp, &error); bool result = f(error ? invalid_code_point : cp, string_view(ptr, error ? 1 : to_unsigned(end - buf_ptr))); return result ? (error ? buf_ptr + 1 : end) : nullptr; }; auto p = s.data(); const size_t block_size = 4; // utf8_decode always reads blocks of 4 chars. if (s.size() >= block_size) { for (auto end = p + s.size() - block_size + 1; p < end;) { p = decode(p, p); if (!p) return; } } auto num_chars_left = to_unsigned(s.data() + s.size() - p); if (num_chars_left == 0) return; // Suppress bogus -Wstringop-overflow. if (FMT_GCC_VERSION) num_chars_left &= 3; char buf[2 * block_size - 1] = {}; copy(p, p + num_chars_left, buf); const char* buf_ptr = buf; do { auto end = decode(buf_ptr, p); if (!end) return; p += end - buf_ptr; buf_ptr = end; } while (buf_ptr < buf + num_chars_left); } FMT_CONSTEXPR inline auto display_width_of(uint32_t cp) noexcept -> size_t { return to_unsigned( 1 + (cp >= 0x1100 && (cp <= 0x115f || // Hangul Jamo init. consonants cp == 0x2329 || // LEFT-POINTING ANGLE BRACKET cp == 0x232a || // RIGHT-POINTING ANGLE BRACKET // CJK ... Yi except IDEOGRAPHIC HALF FILL SPACE: (cp >= 0x2e80 && cp <= 0xa4cf && cp != 0x303f) || (cp >= 0xac00 && cp <= 0xd7a3) || // Hangul Syllables (cp >= 0xf900 && cp <= 0xfaff) || // CJK Compatibility Ideographs (cp >= 0xfe10 && cp <= 0xfe19) || // Vertical Forms (cp >= 0xfe30 && cp <= 0xfe6f) || // CJK Compatibility Forms (cp >= 0xff00 && cp <= 0xff60) || // Fullwidth Forms (cp >= 0xffe0 && cp <= 0xffe6) || // Fullwidth Forms (cp >= 0x20000 && cp <= 0x2fffd) || // CJK (cp >= 0x30000 && cp <= 0x3fffd) || // Miscellaneous Symbols and Pictographs + Emoticons: (cp >= 0x1f300 && cp <= 0x1f64f) || // Supplemental Symbols and Pictographs: (cp >= 0x1f900 && cp <= 0x1f9ff)))); } template struct is_integral : std::is_integral {}; template <> struct is_integral : std::true_type {}; template <> struct is_integral : std::true_type {}; template using is_signed = std::integral_constant::is_signed || std::is_same::value>; template using is_integer = bool_constant::value && !std::is_same::value && !std::is_same::value && !std::is_same::value>; #if defined(FMT_USE_FLOAT128) // Use the provided definition. #elif FMT_CLANG_VERSION >= 309 && FMT_HAS_INCLUDE() # define FMT_USE_FLOAT128 1 #elif FMT_GCC_VERSION && defined(_GLIBCXX_USE_FLOAT128) && \ !defined(__STRICT_ANSI__) # define FMT_USE_FLOAT128 1 #else # define FMT_USE_FLOAT128 0 #endif #if FMT_USE_FLOAT128 using float128 = __float128; #else struct float128 {}; #endif template using is_float128 = std::is_same; template struct is_floating_point : std::is_floating_point {}; template <> struct is_floating_point : std::true_type {}; template ::value> struct is_fast_float : bool_constant::is_iec559 && sizeof(T) <= sizeof(double)> {}; template struct is_fast_float : std::false_type {}; template using fast_float_t = conditional_t; template using is_double_double = bool_constant::digits == 106>; #ifndef FMT_USE_FULL_CACHE_DRAGONBOX # define FMT_USE_FULL_CACHE_DRAGONBOX 0 #endif // An allocator that uses malloc/free to allow removing dependency on the C++ // standard libary runtime. std::decay is used for back_inserter to be found by // ADL when applied to memory_buffer. template struct allocator : private std::decay { using value_type = T; auto allocate(size_t n) -> T* { FMT_ASSERT(n <= max_value() / sizeof(T), ""); T* p = static_cast(std::malloc(n * sizeof(T))); if (!p) FMT_THROW(std::bad_alloc()); return p; } void deallocate(T* p, size_t) { std::free(p); } constexpr friend auto operator==(allocator, allocator) noexcept -> bool { return true; // All instances of this allocator are equivalent. } constexpr friend auto operator!=(allocator, allocator) noexcept -> bool { return false; } }; } // namespace detail FMT_BEGIN_EXPORT // The number of characters to store in the basic_memory_buffer object itself // to avoid dynamic memory allocation. enum { inline_buffer_size = 500 }; /** * A dynamically growing memory buffer for trivially copyable/constructible * types with the first `SIZE` elements stored in the object itself. Most * commonly used via the `memory_buffer` alias for `char`. * * **Example**: * * auto out = fmt::memory_buffer(); * fmt::format_to(std::back_inserter(out), "The answer is {}.", 42); * * This will append "The answer is 42." to `out`. The buffer content can be * converted to `std::string` with `to_string(out)`. */ template > class basic_memory_buffer : public detail::buffer { private: T store_[SIZE]; // Don't inherit from Allocator to avoid generating type_info for it. FMT_NO_UNIQUE_ADDRESS Allocator alloc_; // Deallocate memory allocated by the buffer. FMT_CONSTEXPR20 void deallocate() { T* data = this->data(); if (data != store_) alloc_.deallocate(data, this->capacity()); } static FMT_CONSTEXPR20 void grow(detail::buffer& buf, size_t size) { detail::abort_fuzzing_if(size > 5000); auto& self = static_cast(buf); const size_t max_size = std::allocator_traits::max_size(self.alloc_); size_t old_capacity = buf.capacity(); size_t new_capacity = old_capacity + old_capacity / 2; if (size > new_capacity) new_capacity = size; else if (new_capacity > max_size) new_capacity = max_of(size, max_size); T* old_data = buf.data(); T* new_data = self.alloc_.allocate(new_capacity); // Suppress a bogus -Wstringop-overflow in gcc 13.1 (#3481). detail::assume(buf.size() <= new_capacity); // The following code doesn't throw, so the raw pointer above doesn't leak. memcpy(new_data, old_data, buf.size() * sizeof(T)); self.set(new_data, new_capacity); // deallocate must not throw according to the standard, but even if it does, // the buffer already uses the new storage and will deallocate it in // destructor. if (old_data != self.store_) self.alloc_.deallocate(old_data, old_capacity); } public: using value_type = T; using const_reference = const T&; FMT_CONSTEXPR explicit basic_memory_buffer( const Allocator& alloc = Allocator()) : detail::buffer(grow), alloc_(alloc) { this->set(store_, SIZE); if (detail::is_constant_evaluated()) detail::fill_n(store_, SIZE, T()); } FMT_CONSTEXPR20 ~basic_memory_buffer() { deallocate(); } private: template :: propagate_on_container_move_assignment::value)> FMT_CONSTEXPR20 auto move_alloc(basic_memory_buffer& other) -> bool { alloc_ = std::move(other.alloc_); return true; } // If the allocator does not propagate then copy the data from other. template :: propagate_on_container_move_assignment::value)> FMT_CONSTEXPR20 auto move_alloc(basic_memory_buffer& other) -> bool { T* data = other.data(); if (alloc_ == other.alloc_ || data == other.store_) return true; size_t size = other.size(); // Perform copy operation, allocators are different. this->resize(size); detail::copy(data, data + size, this->data()); return false; } // Move data from other to this buffer. FMT_CONSTEXPR20 void move(basic_memory_buffer& other) { T* data = other.data(); size_t size = other.size(), capacity = other.capacity(); if (!move_alloc(other)) return; if (data == other.store_) { this->set(store_, capacity); detail::copy(other.store_, other.store_ + size, store_); } else { this->set(data, capacity); // Set pointer to the inline array so that delete is not called // when deallocating. other.set(other.store_, 0); other.clear(); } this->resize(size); } public: /// Constructs a `basic_memory_buffer` object moving the content of the other /// object to it. FMT_CONSTEXPR20 basic_memory_buffer(basic_memory_buffer&& other) noexcept : detail::buffer(grow) { move(other); } /// Moves the content of the other `basic_memory_buffer` object to this one. auto operator=(basic_memory_buffer&& other) noexcept -> basic_memory_buffer& { FMT_ASSERT(this != &other, ""); deallocate(); move(other); return *this; } // Returns a copy of the allocator associated with this buffer. auto get_allocator() const -> Allocator { return alloc_; } /// Resizes the buffer to contain `count` elements. If T is a POD type new /// elements may not be initialized. FMT_CONSTEXPR void resize(size_t count) { this->try_resize(count); } /// Increases the buffer capacity to `new_capacity`. void reserve(size_t new_capacity) { this->try_reserve(new_capacity); } using detail::buffer::append; template FMT_CONSTEXPR20 void append(const ContiguousRange& range) { append(range.data(), range.data() + range.size()); } }; using memory_buffer = basic_memory_buffer; template FMT_NODISCARD auto to_string(const basic_memory_buffer& buf) -> std::string { auto size = buf.size(); detail::assume(size < std::string().max_size()); return {buf.data(), size}; } // A writer to a buffered stream. It doesn't own the underlying stream. class writer { private: detail::buffer* buf_; // We cannot create a file buffer in advance because any write to a FILE may // invalidate it. FILE* file_; public: inline writer(FILE* f) : buf_(nullptr), file_(f) {} inline writer(detail::buffer& buf) : buf_(&buf) {} /// Formats `args` according to specifications in `fmt` and writes the /// output to the file. template void print(format_string fmt, T&&... args) { if (buf_) fmt::format_to(appender(*buf_), fmt, std::forward(args)...); else fmt::print(file_, fmt, std::forward(args)...); } }; class string_buffer { private: std::string str_; detail::container_buffer buf_; public: inline string_buffer() : buf_(str_) {} inline operator writer() { return buf_; } inline auto str() -> std::string& { return str_; } }; template struct is_contiguous> : std::true_type { }; // Suppress a misleading warning in older versions of clang. FMT_PRAGMA_CLANG(diagnostic ignored "-Wweak-vtables") /// An error reported from a formatting function. class FMT_SO_VISIBILITY("default") format_error : public std::runtime_error { public: using std::runtime_error::runtime_error; }; class loc_value; FMT_END_EXPORT namespace detail { FMT_API auto write_console(int fd, string_view text) -> bool; FMT_API void print(FILE*, string_view); } // namespace detail namespace detail { template struct fixed_string { FMT_CONSTEXPR20 fixed_string(const Char (&s)[N]) { detail::copy(static_cast(s), s + N, data); } Char data[N] = {}; }; // Converts a compile-time string to basic_string_view. FMT_EXPORT template constexpr auto compile_string_to_view(const Char (&s)[N]) -> basic_string_view { // Remove trailing NUL character if needed. Won't be present if this is used // with a raw character array (i.e. not defined as a string). return {s, N - (std::char_traits::to_int_type(s[N - 1]) == 0 ? 1 : 0)}; } FMT_EXPORT template constexpr auto compile_string_to_view(basic_string_view s) -> basic_string_view { return s; } // Returns true if value is negative, false otherwise. // Same as `value < 0` but doesn't produce warnings if T is an unsigned type. template ::value)> constexpr auto is_negative(T value) -> bool { return value < 0; } template ::value)> constexpr auto is_negative(T) -> bool { return false; } // Smallest of uint32_t, uint64_t, uint128_t that is large enough to // represent all values of an integral type T. template using uint32_or_64_or_128_t = conditional_t() <= 32 && !FMT_REDUCE_INT_INSTANTIATIONS, uint32_t, conditional_t() <= 64, uint64_t, uint128_t>>; template using uint64_or_128_t = conditional_t() <= 64, uint64_t, uint128_t>; #define FMT_POWERS_OF_10(factor) \ factor * 10, (factor) * 100, (factor) * 1000, (factor) * 10000, \ (factor) * 100000, (factor) * 1000000, (factor) * 10000000, \ (factor) * 100000000, (factor) * 1000000000 // Converts value in the range [0, 100) to a string. // GCC generates slightly better code when value is pointer-size. inline auto digits2(size_t value) -> const char* { // Align data since unaligned access may be slower when crossing a // hardware-specific boundary. alignas(2) static const char data[] = "0001020304050607080910111213141516171819" "2021222324252627282930313233343536373839" "4041424344454647484950515253545556575859" "6061626364656667686970717273747576777879" "8081828384858687888990919293949596979899"; return &data[value * 2]; } template constexpr auto getsign(sign s) -> Char { return static_cast(((' ' << 24) | ('+' << 16) | ('-' << 8)) >> (static_cast(s) * 8)); } template FMT_CONSTEXPR auto count_digits_fallback(T n) -> int { int count = 1; for (;;) { // Integer division is slow so do it for a group of four digits instead // of for every digit. The idea comes from the talk by Alexandrescu // "Three Optimization Tips for C++". See speed-test for a comparison. if (n < 10) return count; if (n < 100) return count + 1; if (n < 1000) return count + 2; if (n < 10000) return count + 3; n /= 10000u; count += 4; } } #if FMT_USE_INT128 FMT_CONSTEXPR inline auto count_digits(uint128_opt n) -> int { return count_digits_fallback(n); } #endif #ifdef FMT_BUILTIN_CLZLL // It is a separate function rather than a part of count_digits to workaround // the lack of static constexpr in constexpr functions. inline auto do_count_digits(uint64_t n) -> int { // This has comparable performance to the version by Kendall Willets // (https://github.com/fmtlib/format-benchmark/blob/master/digits10) // but uses smaller tables. // Maps bsr(n) to ceil(log10(pow(2, bsr(n) + 1) - 1)). static constexpr uint8_t bsr2log10[] = { 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 15, 15, 15, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 19, 19, 19, 19, 20}; auto t = bsr2log10[FMT_BUILTIN_CLZLL(n | 1) ^ 63]; static constexpr uint64_t zero_or_powers_of_10[] = { 0, 0, FMT_POWERS_OF_10(1U), FMT_POWERS_OF_10(1000000000ULL), 10000000000000000000ULL}; return t - (n < zero_or_powers_of_10[t]); } #endif // Returns the number of decimal digits in n. Leading zeros are not counted // except for n == 0 in which case count_digits returns 1. FMT_CONSTEXPR20 inline auto count_digits(uint64_t n) -> int { #ifdef FMT_BUILTIN_CLZLL if (!is_constant_evaluated() && !FMT_OPTIMIZE_SIZE) return do_count_digits(n); #endif return count_digits_fallback(n); } // Counts the number of digits in n. BITS = log2(radix). template FMT_CONSTEXPR auto count_digits(UInt n) -> int { #ifdef FMT_BUILTIN_CLZ if (!is_constant_evaluated() && num_bits() == 32) return (FMT_BUILTIN_CLZ(static_cast(n) | 1) ^ 31) / BITS + 1; #endif // Lambda avoids unreachable code warnings from NVHPC. return [](UInt m) { int num_digits = 0; do { ++num_digits; } while ((m >>= BITS) != 0); return num_digits; }(n); } #ifdef FMT_BUILTIN_CLZ // It is a separate function rather than a part of count_digits to workaround // the lack of static constexpr in constexpr functions. FMT_INLINE auto do_count_digits(uint32_t n) -> int { // An optimization by Kendall Willets from https://bit.ly/3uOIQrB. // This increments the upper 32 bits (log10(T) - 1) when >= T is added. # define FMT_INC(T) (((sizeof(#T) - 1ull) << 32) - T) static constexpr uint64_t table[] = { FMT_INC(0), FMT_INC(0), FMT_INC(0), // 8 FMT_INC(10), FMT_INC(10), FMT_INC(10), // 64 FMT_INC(100), FMT_INC(100), FMT_INC(100), // 512 FMT_INC(1000), FMT_INC(1000), FMT_INC(1000), // 4096 FMT_INC(10000), FMT_INC(10000), FMT_INC(10000), // 32k FMT_INC(100000), FMT_INC(100000), FMT_INC(100000), // 256k FMT_INC(1000000), FMT_INC(1000000), FMT_INC(1000000), // 2048k FMT_INC(10000000), FMT_INC(10000000), FMT_INC(10000000), // 16M FMT_INC(100000000), FMT_INC(100000000), FMT_INC(100000000), // 128M FMT_INC(1000000000), FMT_INC(1000000000), FMT_INC(1000000000), // 1024M FMT_INC(1000000000), FMT_INC(1000000000) // 4B }; auto inc = table[FMT_BUILTIN_CLZ(n | 1) ^ 31]; return static_cast((n + inc) >> 32); } #endif // Optional version of count_digits for better performance on 32-bit platforms. FMT_CONSTEXPR20 inline auto count_digits(uint32_t n) -> int { #ifdef FMT_BUILTIN_CLZ if (!is_constant_evaluated() && !FMT_OPTIMIZE_SIZE) return do_count_digits(n); #endif return count_digits_fallback(n); } template constexpr auto digits10() noexcept -> int { return std::numeric_limits::digits10; } template <> constexpr auto digits10() noexcept -> int { return 38; } template <> constexpr auto digits10() noexcept -> int { return 38; } template struct thousands_sep_result { std::string grouping; Char thousands_sep; }; template FMT_API auto thousands_sep_impl(locale_ref loc) -> thousands_sep_result; template inline auto thousands_sep(locale_ref loc) -> thousands_sep_result { auto result = thousands_sep_impl(loc); return {result.grouping, Char(result.thousands_sep)}; } template <> inline auto thousands_sep(locale_ref loc) -> thousands_sep_result { return thousands_sep_impl(loc); } template FMT_API auto decimal_point_impl(locale_ref loc) -> Char; template inline auto decimal_point(locale_ref loc) -> Char { return Char(decimal_point_impl(loc)); } template <> inline auto decimal_point(locale_ref loc) -> wchar_t { return decimal_point_impl(loc); } #ifndef FMT_HEADER_ONLY FMT_BEGIN_EXPORT extern template FMT_API auto thousands_sep_impl(locale_ref) -> thousands_sep_result; extern template FMT_API auto thousands_sep_impl(locale_ref) -> thousands_sep_result; extern template FMT_API auto decimal_point_impl(locale_ref) -> char; extern template FMT_API auto decimal_point_impl(locale_ref) -> wchar_t; FMT_END_EXPORT #endif // FMT_HEADER_ONLY // Compares two characters for equality. template auto equal2(const Char* lhs, const char* rhs) -> bool { return lhs[0] == Char(rhs[0]) && lhs[1] == Char(rhs[1]); } inline auto equal2(const char* lhs, const char* rhs) -> bool { return memcmp(lhs, rhs, 2) == 0; } // Writes a two-digit value to out. template FMT_CONSTEXPR20 FMT_INLINE void write2digits(Char* out, size_t value) { if (!is_constant_evaluated() && std::is_same::value && !FMT_OPTIMIZE_SIZE) { memcpy(out, digits2(value), 2); return; } *out++ = static_cast('0' + value / 10); *out = static_cast('0' + value % 10); } // Formats a decimal unsigned integer value writing to out pointing to a buffer // of specified size. The caller must ensure that the buffer is large enough. template FMT_CONSTEXPR20 auto do_format_decimal(Char* out, UInt value, int size) -> Char* { FMT_ASSERT(size >= count_digits(value), "invalid digit count"); unsigned n = to_unsigned(size); while (value >= 100) { // Integer division is slow so do it for a group of two digits instead // of for every digit. The idea comes from the talk by Alexandrescu // "Three Optimization Tips for C++". See speed-test for a comparison. n -= 2; write2digits(out + n, static_cast(value % 100)); value /= 100; } if (value >= 10) { n -= 2; write2digits(out + n, static_cast(value)); } else { out[--n] = static_cast('0' + value); } return out + n; } template FMT_CONSTEXPR FMT_INLINE auto format_decimal(Char* out, UInt value, int num_digits) -> Char* { do_format_decimal(out, value, num_digits); return out + num_digits; } template >::value)> FMT_CONSTEXPR auto format_decimal(OutputIt out, UInt value, int num_digits) -> OutputIt { if (auto ptr = to_pointer(out, to_unsigned(num_digits))) { do_format_decimal(ptr, value, num_digits); return out; } // Buffer is large enough to hold all digits (digits10 + 1). char buffer[digits10() + 1]; if (is_constant_evaluated()) fill_n(buffer, sizeof(buffer), '\0'); do_format_decimal(buffer, value, num_digits); return copy_noinline(buffer, buffer + num_digits, out); } template FMT_CONSTEXPR auto do_format_base2e(int base_bits, Char* out, UInt value, int size, bool upper = false) -> Char* { out += size; do { const char* digits = upper ? "0123456789ABCDEF" : "0123456789abcdef"; unsigned digit = static_cast(value & ((1u << base_bits) - 1)); *--out = static_cast(base_bits < 4 ? static_cast('0' + digit) : digits[digit]); } while ((value >>= base_bits) != 0); return out; } // Formats an unsigned integer in the power of two base (binary, octal, hex). template FMT_CONSTEXPR auto format_base2e(int base_bits, Char* out, UInt value, int num_digits, bool upper = false) -> Char* { do_format_base2e(base_bits, out, value, num_digits, upper); return out + num_digits; } template ::value)> FMT_CONSTEXPR inline auto format_base2e(int base_bits, OutputIt out, UInt value, int num_digits, bool upper = false) -> OutputIt { if (auto ptr = to_pointer(out, to_unsigned(num_digits))) { format_base2e(base_bits, ptr, value, num_digits, upper); return out; } // Make buffer large enough for any base. char buffer[num_bits()]; if (is_constant_evaluated()) fill_n(buffer, sizeof(buffer), '\0'); format_base2e(base_bits, buffer, value, num_digits, upper); return detail::copy_noinline(buffer, buffer + num_digits, out); } // A converter from UTF-8 to UTF-16. class utf8_to_utf16 { private: basic_memory_buffer buffer_; public: FMT_API explicit utf8_to_utf16(string_view s); inline operator basic_string_view() const { return {&buffer_[0], size()}; } inline auto size() const -> size_t { return buffer_.size() - 1; } inline auto c_str() const -> const wchar_t* { return &buffer_[0]; } inline auto str() const -> std::wstring { return {&buffer_[0], size()}; } }; enum class to_utf8_error_policy { abort, replace }; // A converter from UTF-16/UTF-32 (host endian) to UTF-8. template class to_utf8 { private: Buffer buffer_; public: to_utf8() {} explicit to_utf8(basic_string_view s, to_utf8_error_policy policy = to_utf8_error_policy::abort) { static_assert(sizeof(WChar) == 2 || sizeof(WChar) == 4, "expected utf16 or utf32"); if (!convert(s, policy)) { FMT_THROW(std::runtime_error(sizeof(WChar) == 2 ? "invalid utf16" : "invalid utf32")); } } operator string_view() const { return string_view(&buffer_[0], size()); } auto size() const -> size_t { return buffer_.size() - 1; } auto c_str() const -> const char* { return &buffer_[0]; } auto str() const -> std::string { return std::string(&buffer_[0], size()); } // Performs conversion returning a bool instead of throwing exception on // conversion error. This method may still throw in case of memory allocation // error. auto convert(basic_string_view s, to_utf8_error_policy policy = to_utf8_error_policy::abort) -> bool { if (!convert(buffer_, s, policy)) return false; buffer_.push_back(0); return true; } static auto convert(Buffer& buf, basic_string_view s, to_utf8_error_policy policy = to_utf8_error_policy::abort) -> bool { for (auto p = s.begin(); p != s.end(); ++p) { uint32_t c = static_cast(*p); if (sizeof(WChar) == 2 && c >= 0xd800 && c <= 0xdfff) { // Handle a surrogate pair. ++p; if (p == s.end() || (c & 0xfc00) != 0xd800 || (*p & 0xfc00) != 0xdc00) { if (policy == to_utf8_error_policy::abort) return false; buf.append(string_view("\xEF\xBF\xBD")); --p; continue; } c = (c << 10) + static_cast(*p) - 0x35fdc00; } if (c < 0x80) { buf.push_back(static_cast(c)); } else if (c < 0x800) { buf.push_back(static_cast(0xc0 | (c >> 6))); buf.push_back(static_cast(0x80 | (c & 0x3f))); } else if ((c >= 0x800 && c <= 0xd7ff) || (c >= 0xe000 && c <= 0xffff)) { buf.push_back(static_cast(0xe0 | (c >> 12))); buf.push_back(static_cast(0x80 | ((c & 0xfff) >> 6))); buf.push_back(static_cast(0x80 | (c & 0x3f))); } else if (c >= 0x10000 && c <= 0x10ffff) { buf.push_back(static_cast(0xf0 | (c >> 18))); buf.push_back(static_cast(0x80 | ((c & 0x3ffff) >> 12))); buf.push_back(static_cast(0x80 | ((c & 0xfff) >> 6))); buf.push_back(static_cast(0x80 | (c & 0x3f))); } else { return false; } } return true; } }; // Computes 128-bit result of multiplication of two 64-bit unsigned integers. FMT_INLINE auto umul128(uint64_t x, uint64_t y) noexcept -> uint128_fallback { #if FMT_USE_INT128 auto p = static_cast(x) * static_cast(y); return {static_cast(p >> 64), static_cast(p)}; #elif defined(_MSC_VER) && defined(_M_X64) auto hi = uint64_t(); auto lo = _umul128(x, y, &hi); return {hi, lo}; #else const uint64_t mask = static_cast(max_value()); uint64_t a = x >> 32; uint64_t b = x & mask; uint64_t c = y >> 32; uint64_t d = y & mask; uint64_t ac = a * c; uint64_t bc = b * c; uint64_t ad = a * d; uint64_t bd = b * d; uint64_t intermediate = (bd >> 32) + (ad & mask) + (bc & mask); return {ac + (intermediate >> 32) + (ad >> 32) + (bc >> 32), (intermediate << 32) + (bd & mask)}; #endif } namespace dragonbox { // Computes floor(log10(pow(2, e))) for e in [-2620, 2620] using the method from // https://fmt.dev/papers/Dragonbox.pdf#page=28, section 6.1. inline auto floor_log10_pow2(int e) noexcept -> int { FMT_ASSERT(e <= 2620 && e >= -2620, "too large exponent"); static_assert((-1 >> 1) == -1, "right shift is not arithmetic"); return (e * 315653) >> 20; } inline auto floor_log2_pow10(int e) noexcept -> int { FMT_ASSERT(e <= 1233 && e >= -1233, "too large exponent"); return (e * 1741647) >> 19; } // Computes upper 64 bits of multiplication of two 64-bit unsigned integers. inline auto umul128_upper64(uint64_t x, uint64_t y) noexcept -> uint64_t { #if FMT_USE_INT128 auto p = static_cast(x) * static_cast(y); return static_cast(p >> 64); #elif defined(_MSC_VER) && defined(_M_X64) return __umulh(x, y); #else return umul128(x, y).high(); #endif } // Computes upper 128 bits of multiplication of a 64-bit unsigned integer and a // 128-bit unsigned integer. inline auto umul192_upper128(uint64_t x, uint128_fallback y) noexcept -> uint128_fallback { uint128_fallback r = umul128(x, y.high()); r += umul128_upper64(x, y.low()); return r; } FMT_API auto get_cached_power(int k) noexcept -> uint128_fallback; // Type-specific information that Dragonbox uses. template struct float_info; template <> struct float_info { using carrier_uint = uint32_t; static const int exponent_bits = 8; static const int kappa = 1; static const int big_divisor = 100; static const int small_divisor = 10; static const int min_k = -31; static const int max_k = 46; static const int shorter_interval_tie_lower_threshold = -35; static const int shorter_interval_tie_upper_threshold = -35; }; template <> struct float_info { using carrier_uint = uint64_t; static const int exponent_bits = 11; static const int kappa = 2; static const int big_divisor = 1000; static const int small_divisor = 100; static const int min_k = -292; static const int max_k = 341; static const int shorter_interval_tie_lower_threshold = -77; static const int shorter_interval_tie_upper_threshold = -77; }; // An 80- or 128-bit floating point number. template struct float_info::digits == 64 || std::numeric_limits::digits == 113 || is_float128::value>> { using carrier_uint = detail::uint128_t; static const int exponent_bits = 15; }; // A double-double floating point number. template struct float_info::value>> { using carrier_uint = detail::uint128_t; }; template struct decimal_fp { using significand_type = typename float_info::carrier_uint; significand_type significand; int exponent; }; template FMT_API auto to_decimal(T x) noexcept -> decimal_fp; } // namespace dragonbox // Returns true iff Float has the implicit bit which is not stored. template constexpr auto has_implicit_bit() -> bool { // An 80-bit FP number has a 64-bit significand an no implicit bit. return std::numeric_limits::digits != 64; } // Returns the number of significand bits stored in Float. The implicit bit is // not counted since it is not stored. template constexpr auto num_significand_bits() -> int { // std::numeric_limits may not support __float128. return is_float128() ? 112 : (std::numeric_limits::digits - (has_implicit_bit() ? 1 : 0)); } template constexpr auto exponent_mask() -> typename dragonbox::float_info::carrier_uint { using float_uint = typename dragonbox::float_info::carrier_uint; return ((float_uint(1) << dragonbox::float_info::exponent_bits) - 1) << num_significand_bits(); } template constexpr auto exponent_bias() -> int { // std::numeric_limits may not support __float128. return is_float128() ? 16383 : std::numeric_limits::max_exponent - 1; } FMT_CONSTEXPR inline auto compute_exp_size(int exp) -> int { auto prefix_size = 2; // sign + 'e' auto abs_exp = exp >= 0 ? exp : -exp; if (abs_exp < 100) return prefix_size + 2; return prefix_size + (abs_exp >= 1000 ? 4 : 3); } // Writes the exponent exp in the form "[+-]d{2,3}" to buffer. template FMT_CONSTEXPR auto write_exponent(int exp, OutputIt out) -> OutputIt { FMT_ASSERT(-10000 < exp && exp < 10000, "exponent out of range"); if (exp < 0) { *out++ = static_cast('-'); exp = -exp; } else { *out++ = static_cast('+'); } auto uexp = static_cast(exp); if (is_constant_evaluated()) { if (uexp < 10) *out++ = '0'; return format_decimal(out, uexp, count_digits(uexp)); } if (uexp >= 100u) { const char* top = digits2(uexp / 100); if (uexp >= 1000u) *out++ = static_cast(top[0]); *out++ = static_cast(top[1]); uexp %= 100; } const char* d = digits2(uexp); *out++ = static_cast(d[0]); *out++ = static_cast(d[1]); return out; } // A floating-point number f * pow(2, e) where F is an unsigned type. template struct basic_fp { F f; int e; static constexpr int num_significand_bits = static_cast(sizeof(F) * num_bits()); constexpr basic_fp() : f(0), e(0) {} constexpr basic_fp(uint64_t f_val, int e_val) : f(f_val), e(e_val) {} // Constructs fp from an IEEE754 floating-point number. template FMT_CONSTEXPR basic_fp(Float n) { assign(n); } // Assigns n to this and return true iff predecessor is closer than successor. template ::value)> FMT_CONSTEXPR auto assign(Float n) -> bool { static_assert(std::numeric_limits::digits <= 113, "unsupported FP"); // Assume Float is in the format [sign][exponent][significand]. using carrier_uint = typename dragonbox::float_info::carrier_uint; const auto num_float_significand_bits = detail::num_significand_bits(); const auto implicit_bit = carrier_uint(1) << num_float_significand_bits; const auto significand_mask = implicit_bit - 1; auto u = bit_cast(n); f = static_cast(u & significand_mask); auto biased_e = static_cast((u & exponent_mask()) >> num_float_significand_bits); // The predecessor is closer if n is a normalized power of 2 (f == 0) // other than the smallest normalized number (biased_e > 1). auto is_predecessor_closer = f == 0 && biased_e > 1; if (biased_e == 0) biased_e = 1; // Subnormals use biased exponent 1 (min exponent). else if (has_implicit_bit()) f += static_cast(implicit_bit); e = biased_e - exponent_bias() - num_float_significand_bits; if (!has_implicit_bit()) ++e; return is_predecessor_closer; } template ::value)> FMT_CONSTEXPR auto assign(Float n) -> bool { static_assert(std::numeric_limits::is_iec559, "unsupported FP"); return assign(static_cast(n)); } }; using fp = basic_fp; // Normalizes the value converted from double and multiplied by (1 << SHIFT). template FMT_CONSTEXPR auto normalize(basic_fp value) -> basic_fp { // Handle subnormals. const auto implicit_bit = F(1) << num_significand_bits(); const auto shifted_implicit_bit = implicit_bit << SHIFT; while ((value.f & shifted_implicit_bit) == 0) { value.f <<= 1; --value.e; } // Subtract 1 to account for hidden bit. const auto offset = basic_fp::num_significand_bits - num_significand_bits() - SHIFT - 1; value.f <<= offset; value.e -= offset; return value; } // Computes lhs * rhs / pow(2, 64) rounded to nearest with half-up tie breaking. FMT_CONSTEXPR inline auto multiply(uint64_t lhs, uint64_t rhs) -> uint64_t { #if FMT_USE_INT128 auto product = static_cast<__uint128_t>(lhs) * rhs; auto f = static_cast(product >> 64); return (static_cast(product) & (1ULL << 63)) != 0 ? f + 1 : f; #else // Multiply 32-bit parts of significands. uint64_t mask = (1ULL << 32) - 1; uint64_t a = lhs >> 32, b = lhs & mask; uint64_t c = rhs >> 32, d = rhs & mask; uint64_t ac = a * c, bc = b * c, ad = a * d, bd = b * d; // Compute mid 64-bit of result and round. uint64_t mid = (bd >> 32) + (ad & mask) + (bc & mask) + (1U << 31); return ac + (ad >> 32) + (bc >> 32) + (mid >> 32); #endif } FMT_CONSTEXPR inline auto operator*(fp x, fp y) -> fp { return {multiply(x.f, y.f), x.e + y.e + 64}; } template () == num_bits()> using convert_float_result = conditional_t::value || doublish, double, T>; template constexpr auto convert_float(T value) -> convert_float_result { return static_cast>(value); } template auto select(T true_value, F) -> T { return true_value; } template auto select(T, F false_value) -> F { return false_value; } template FMT_CONSTEXPR FMT_NOINLINE auto fill(OutputIt it, size_t n, const basic_specs& specs) -> OutputIt { auto fill_size = specs.fill_size(); if (fill_size == 1) return detail::fill_n(it, n, specs.fill_unit()); if (const Char* data = specs.fill()) { for (size_t i = 0; i < n; ++i) it = copy(data, data + fill_size, it); } return it; } // Writes the output of f, padded according to format specifications in specs. // size: output size in code units. // width: output display width in (terminal) column positions. template FMT_CONSTEXPR auto write_padded(OutputIt out, const format_specs& specs, size_t size, size_t width, F&& f) -> OutputIt { static_assert(default_align == align::left || default_align == align::right, ""); unsigned spec_width = to_unsigned(specs.width); size_t padding = spec_width > width ? spec_width - width : 0; // Shifts are encoded as string literals because static constexpr is not // supported in constexpr functions. auto* shifts = default_align == align::left ? "\x1f\x1f\x00\x01" : "\x00\x1f\x00\x01"; size_t left_padding = padding >> shifts[static_cast(specs.align())]; size_t right_padding = padding - left_padding; auto it = reserve(out, size + padding * specs.fill_size()); if (left_padding != 0) it = fill(it, left_padding, specs); it = f(it); if (right_padding != 0) it = fill(it, right_padding, specs); return base_iterator(out, it); } template constexpr auto write_padded(OutputIt out, const format_specs& specs, size_t size, F&& f) -> OutputIt { return write_padded(out, specs, size, size, f); } template FMT_CONSTEXPR auto write_bytes(OutputIt out, string_view bytes, const format_specs& specs = {}) -> OutputIt { return write_padded( out, specs, bytes.size(), [bytes](reserve_iterator it) { const char* data = bytes.data(); return copy(data, data + bytes.size(), it); }); } template auto write_ptr(OutputIt out, UIntPtr value, const format_specs* specs) -> OutputIt { int num_digits = count_digits<4>(value); auto size = to_unsigned(num_digits) + size_t(2); auto write = [=](reserve_iterator it) { *it++ = static_cast('0'); *it++ = static_cast('x'); return format_base2e(4, it, value, num_digits); }; return specs ? write_padded(out, *specs, size, write) : base_iterator(out, write(reserve(out, size))); } // Returns true iff the code point cp is printable. FMT_API auto is_printable(uint32_t cp) -> bool; inline auto needs_escape(uint32_t cp) -> bool { if (cp < 0x20 || cp == 0x7f || cp == '"' || cp == '\\') return true; if (const_check(FMT_OPTIMIZE_SIZE > 1)) return false; return !is_printable(cp); } template struct find_escape_result { const Char* begin; const Char* end; uint32_t cp; }; template auto find_escape(const Char* begin, const Char* end) -> find_escape_result { for (; begin != end; ++begin) { uint32_t cp = static_cast>(*begin); if (const_check(sizeof(Char) == 1) && cp >= 0x80) continue; if (needs_escape(cp)) return {begin, begin + 1, cp}; } return {begin, nullptr, 0}; } inline auto find_escape(const char* begin, const char* end) -> find_escape_result { if (const_check(!use_utf8)) return find_escape(begin, end); auto result = find_escape_result{end, nullptr, 0}; for_each_codepoint(string_view(begin, to_unsigned(end - begin)), [&](uint32_t cp, string_view sv) { if (needs_escape(cp)) { result = {sv.begin(), sv.end(), cp}; return false; } return true; }); return result; } template auto write_codepoint(OutputIt out, char prefix, uint32_t cp) -> OutputIt { *out++ = static_cast('\\'); *out++ = static_cast(prefix); Char buf[width]; fill_n(buf, width, static_cast('0')); format_base2e(4, buf, cp, width); return copy(buf, buf + width, out); } template auto write_escaped_cp(OutputIt out, const find_escape_result& escape) -> OutputIt { auto c = static_cast(escape.cp); switch (escape.cp) { case '\n': *out++ = static_cast('\\'); c = static_cast('n'); break; case '\r': *out++ = static_cast('\\'); c = static_cast('r'); break; case '\t': *out++ = static_cast('\\'); c = static_cast('t'); break; case '"': FMT_FALLTHROUGH; case '\'': FMT_FALLTHROUGH; case '\\': *out++ = static_cast('\\'); break; default: if (escape.cp < 0x100) return write_codepoint<2, Char>(out, 'x', escape.cp); if (escape.cp < 0x10000) return write_codepoint<4, Char>(out, 'u', escape.cp); if (escape.cp < 0x110000) return write_codepoint<8, Char>(out, 'U', escape.cp); for (Char escape_char : basic_string_view( escape.begin, to_unsigned(escape.end - escape.begin))) { out = write_codepoint<2, Char>(out, 'x', static_cast(escape_char) & 0xFF); } return out; } *out++ = c; return out; } template auto write_escaped_string(OutputIt out, basic_string_view str) -> OutputIt { *out++ = static_cast('"'); auto begin = str.begin(), end = str.end(); do { auto escape = find_escape(begin, end); out = copy(begin, escape.begin, out); begin = escape.end; if (!begin) break; out = write_escaped_cp(out, escape); } while (begin != end); *out++ = static_cast('"'); return out; } template auto write_escaped_char(OutputIt out, Char v) -> OutputIt { Char v_array[1] = {v}; *out++ = static_cast('\''); if ((needs_escape(static_cast(v)) && v != static_cast('"')) || v == static_cast('\'')) { out = write_escaped_cp(out, find_escape_result{v_array, v_array + 1, static_cast(v)}); } else { *out++ = v; } *out++ = static_cast('\''); return out; } template FMT_CONSTEXPR auto write_char(OutputIt out, Char value, const format_specs& specs) -> OutputIt { bool is_debug = specs.type() == presentation_type::debug; return write_padded(out, specs, 1, [=](reserve_iterator it) { if (is_debug) return write_escaped_char(it, value); *it++ = value; return it; }); } template class digit_grouping { private: std::string grouping_; std::basic_string thousands_sep_; struct next_state { std::string::const_iterator group; int pos; }; auto initial_state() const -> next_state { return {grouping_.begin(), 0}; } // Returns the next digit group separator position. auto next(next_state& state) const -> int { if (thousands_sep_.empty()) return max_value(); if (state.group == grouping_.end()) return state.pos += grouping_.back(); if (*state.group <= 0 || *state.group == max_value()) return max_value(); state.pos += *state.group++; return state.pos; } public: explicit digit_grouping(locale_ref loc, bool localized = true) { if (!localized) return; auto sep = thousands_sep(loc); grouping_ = sep.grouping; if (sep.thousands_sep) thousands_sep_.assign(1, sep.thousands_sep); } digit_grouping(std::string grouping, std::basic_string sep) : grouping_(std::move(grouping)), thousands_sep_(std::move(sep)) {} auto has_separator() const -> bool { return !thousands_sep_.empty(); } auto count_separators(int num_digits) const -> int { int count = 0; auto state = initial_state(); while (num_digits > next(state)) ++count; return count; } // Applies grouping to digits and writes the output to out. template auto apply(Out out, basic_string_view digits) const -> Out { auto num_digits = static_cast(digits.size()); auto separators = basic_memory_buffer(); separators.push_back(0); auto state = initial_state(); while (int i = next(state)) { if (i >= num_digits) break; separators.push_back(i); } for (int i = 0, sep_index = static_cast(separators.size() - 1); i < num_digits; ++i) { if (num_digits - i == separators[sep_index]) { out = copy(thousands_sep_.data(), thousands_sep_.data() + thousands_sep_.size(), out); --sep_index; } *out++ = static_cast(digits[to_unsigned(i)]); } return out; } }; FMT_CONSTEXPR inline void prefix_append(unsigned& prefix, unsigned value) { prefix |= prefix != 0 ? value << 8 : value; prefix += (1u + (value > 0xff ? 1 : 0)) << 24; } // Writes a decimal integer with digit grouping. template auto write_int(OutputIt out, UInt value, unsigned prefix, const format_specs& specs, const digit_grouping& grouping) -> OutputIt { static_assert(std::is_same, UInt>::value, ""); int num_digits = 0; auto buffer = memory_buffer(); switch (specs.type()) { default: FMT_ASSERT(false, ""); FMT_FALLTHROUGH; case presentation_type::none: case presentation_type::dec: num_digits = count_digits(value); format_decimal(appender(buffer), value, num_digits); break; case presentation_type::hex: if (specs.alt()) prefix_append(prefix, unsigned(specs.upper() ? 'X' : 'x') << 8 | '0'); num_digits = count_digits<4>(value); format_base2e(4, appender(buffer), value, num_digits, specs.upper()); break; case presentation_type::oct: num_digits = count_digits<3>(value); // Octal prefix '0' is counted as a digit, so only add it if precision // is not greater than the number of digits. if (specs.alt() && specs.precision <= num_digits && value != 0) prefix_append(prefix, '0'); format_base2e(3, appender(buffer), value, num_digits); break; case presentation_type::bin: if (specs.alt()) prefix_append(prefix, unsigned(specs.upper() ? 'B' : 'b') << 8 | '0'); num_digits = count_digits<1>(value); format_base2e(1, appender(buffer), value, num_digits); break; case presentation_type::chr: return write_char(out, static_cast(value), specs); } unsigned size = (prefix != 0 ? prefix >> 24 : 0) + to_unsigned(num_digits) + to_unsigned(grouping.count_separators(num_digits)); return write_padded( out, specs, size, size, [&](reserve_iterator it) { for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8) *it++ = static_cast(p & 0xff); return grouping.apply(it, string_view(buffer.data(), buffer.size())); }); } #if FMT_USE_LOCALE // Writes a localized value. FMT_API auto write_loc(appender out, loc_value value, const format_specs& specs, locale_ref loc) -> bool; auto write_loc(basic_appender out, loc_value value, const format_specs& specs, locale_ref loc) -> bool; #endif template inline auto write_loc(OutputIt, const loc_value&, const format_specs&, locale_ref) -> bool { return false; } template struct write_int_arg { UInt abs_value; unsigned prefix; }; template FMT_CONSTEXPR auto make_write_int_arg(T value, sign s) -> write_int_arg> { auto prefix = 0u; auto abs_value = static_cast>(value); if (is_negative(value)) { prefix = 0x01000000 | '-'; abs_value = 0 - abs_value; } else { constexpr unsigned prefixes[4] = {0, 0, 0x1000000u | '+', 0x1000000u | ' '}; prefix = prefixes[static_cast(s)]; } return {abs_value, prefix}; } template struct loc_writer { basic_appender out; const format_specs& specs; std::basic_string sep; std::string grouping; std::basic_string decimal_point; template ::value)> auto operator()(T value) -> bool { auto arg = make_write_int_arg(value, specs.sign()); write_int(out, static_cast>(arg.abs_value), arg.prefix, specs, digit_grouping(grouping, sep)); return true; } template ::value)> auto operator()(T) -> bool { return false; } }; // Size and padding computation separate from write_int to avoid template bloat. struct size_padding { unsigned size; unsigned padding; FMT_CONSTEXPR size_padding(int num_digits, unsigned prefix, const format_specs& specs) : size((prefix >> 24) + to_unsigned(num_digits)), padding(0) { if (specs.align() == align::numeric) { auto width = to_unsigned(specs.width); if (width > size) { padding = width - size; size = width; } } else if (specs.precision > num_digits) { size = (prefix >> 24) + to_unsigned(specs.precision); padding = to_unsigned(specs.precision - num_digits); } } }; template FMT_CONSTEXPR FMT_INLINE auto write_int(OutputIt out, write_int_arg arg, const format_specs& specs) -> OutputIt { static_assert(std::is_same>::value, ""); constexpr size_t buffer_size = num_bits(); char buffer[buffer_size]; if (is_constant_evaluated()) fill_n(buffer, buffer_size, '\0'); const char* begin = nullptr; const char* end = buffer + buffer_size; auto abs_value = arg.abs_value; auto prefix = arg.prefix; switch (specs.type()) { default: FMT_ASSERT(false, ""); FMT_FALLTHROUGH; case presentation_type::none: case presentation_type::dec: begin = do_format_decimal(buffer, abs_value, buffer_size); break; case presentation_type::hex: begin = do_format_base2e(4, buffer, abs_value, buffer_size, specs.upper()); if (specs.alt()) prefix_append(prefix, unsigned(specs.upper() ? 'X' : 'x') << 8 | '0'); break; case presentation_type::oct: { begin = do_format_base2e(3, buffer, abs_value, buffer_size); // Octal prefix '0' is counted as a digit, so only add it if precision // is not greater than the number of digits. auto num_digits = end - begin; if (specs.alt() && specs.precision <= num_digits && abs_value != 0) prefix_append(prefix, '0'); break; } case presentation_type::bin: begin = do_format_base2e(1, buffer, abs_value, buffer_size); if (specs.alt()) prefix_append(prefix, unsigned(specs.upper() ? 'B' : 'b') << 8 | '0'); break; case presentation_type::chr: return write_char(out, static_cast(abs_value), specs); } // Write an integer in the format // // prefix contains chars in three lower bytes and the size in the fourth byte. int num_digits = static_cast(end - begin); // Slightly faster check for specs.width == 0 && specs.precision == -1. if ((specs.width | (specs.precision + 1)) == 0) { auto it = reserve(out, to_unsigned(num_digits) + (prefix >> 24)); for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8) *it++ = static_cast(p & 0xff); return base_iterator(out, copy(begin, end, it)); } auto sp = size_padding(num_digits, prefix, specs); unsigned padding = sp.padding; return write_padded( out, specs, sp.size, [=](reserve_iterator it) { for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8) *it++ = static_cast(p & 0xff); it = detail::fill_n(it, padding, static_cast('0')); return copy(begin, end, it); }); } template FMT_CONSTEXPR FMT_NOINLINE auto write_int_noinline(OutputIt out, write_int_arg arg, const format_specs& specs) -> OutputIt { return write_int(out, arg, specs); } template ::value && !std::is_same::value && !std::is_same::value)> FMT_CONSTEXPR FMT_INLINE auto write(basic_appender out, T value, const format_specs& specs, locale_ref loc) -> basic_appender { if (specs.localized() && write_loc(out, value, specs, loc)) return out; return write_int_noinline(out, make_write_int_arg(value, specs.sign()), specs); } // An inlined version of write used in format string compilation. template ::value && !std::is_same::value && !std::is_same::value && !std::is_same>::value)> FMT_CONSTEXPR FMT_INLINE auto write(OutputIt out, T value, const format_specs& specs, locale_ref loc) -> OutputIt { if (specs.localized() && write_loc(out, value, specs, loc)) return out; return write_int(out, make_write_int_arg(value, specs.sign()), specs); } template FMT_CONSTEXPR auto write(OutputIt out, Char value, const format_specs& specs, locale_ref loc = {}) -> OutputIt { // char is formatted as unsigned char for consistency across platforms. using unsigned_type = conditional_t::value, unsigned char, unsigned>; return check_char_specs(specs) ? write_char(out, value, specs) : write(out, static_cast(value), specs, loc); } template ::value)> FMT_CONSTEXPR auto write(OutputIt out, basic_string_view s, const format_specs& specs) -> OutputIt { bool is_debug = specs.type() == presentation_type::debug; if (specs.precision < 0 && specs.width == 0) { auto&& it = reserve(out, s.size()); return is_debug ? write_escaped_string(it, s) : copy(s, it); } size_t display_width_limit = specs.precision < 0 ? SIZE_MAX : to_unsigned(specs.precision); size_t display_width = !is_debug || specs.precision == 0 ? 0 : 1; // Account for opening '"'. size_t size = !is_debug || specs.precision == 0 ? 0 : 1; for_each_codepoint(s, [&](uint32_t cp, string_view sv) { if (is_debug && needs_escape(cp)) { counting_buffer buf; write_escaped_cp(basic_appender(buf), find_escape_result{sv.begin(), sv.end(), cp}); // We're reinterpreting bytes as display width. That's okay // because write_escaped_cp() only writes ASCII characters. size_t cp_width = buf.count(); if (display_width + cp_width <= display_width_limit) { display_width += cp_width; size += cp_width; // If this is the end of the string, account for closing '"'. if (display_width < display_width_limit && sv.end() == s.end()) { ++display_width; ++size; } return true; } size += display_width_limit - display_width; display_width = display_width_limit; return false; } size_t cp_width = display_width_of(cp); if (cp_width + display_width <= display_width_limit) { display_width += cp_width; size += sv.size(); // If this is the end of the string, account for closing '"'. if (is_debug && display_width < display_width_limit && sv.end() == s.end()) { ++display_width; ++size; } return true; } return false; }); struct bounded_output_iterator { reserve_iterator underlying_iterator; size_t bound; FMT_CONSTEXPR auto operator*() -> bounded_output_iterator& { return *this; } FMT_CONSTEXPR auto operator++() -> bounded_output_iterator& { return *this; } FMT_CONSTEXPR auto operator++(int) -> bounded_output_iterator& { return *this; } FMT_CONSTEXPR auto operator=(char c) -> bounded_output_iterator& { if (bound > 0) { *underlying_iterator++ = c; --bound; } return *this; } }; return write_padded( out, specs, size, display_width, [=](reserve_iterator it) { return is_debug ? write_escaped_string(bounded_output_iterator{it, size}, s) .underlying_iterator : copy(s.data(), s.data() + size, it); }); } template ::value)> FMT_CONSTEXPR auto write(OutputIt out, basic_string_view s, const format_specs& specs) -> OutputIt { auto data = s.data(); auto size = s.size(); if (specs.precision >= 0 && to_unsigned(specs.precision) < size) size = to_unsigned(specs.precision); bool is_debug = specs.type() == presentation_type::debug; if (is_debug) { auto buf = counting_buffer(); write_escaped_string(basic_appender(buf), s); size = buf.count(); } return write_padded( out, specs, size, [=](reserve_iterator it) { return is_debug ? write_escaped_string(it, s) : copy(data, data + size, it); }); } template FMT_CONSTEXPR auto write(OutputIt out, basic_string_view s, const format_specs& specs, locale_ref) -> OutputIt { return write(out, s, specs); } template FMT_CONSTEXPR auto write(OutputIt out, const Char* s, const format_specs& specs, locale_ref) -> OutputIt { if (specs.type() == presentation_type::pointer) return write_ptr(out, bit_cast(s), &specs); if (!s) report_error("string pointer is null"); return write(out, basic_string_view(s), specs, {}); } template ::value && !std::is_same::value && !std::is_same::value)> FMT_CONSTEXPR auto write(OutputIt out, T value) -> OutputIt { auto abs_value = static_cast>(value); bool negative = is_negative(value); // Don't do -abs_value since it trips unsigned-integer-overflow sanitizer. if (negative) abs_value = ~abs_value + 1; int num_digits = count_digits(abs_value); auto size = (negative ? 1 : 0) + static_cast(num_digits); if (auto ptr = to_pointer(out, size)) { if (negative) *ptr++ = static_cast('-'); format_decimal(ptr, abs_value, num_digits); return out; } if (negative) *out++ = static_cast('-'); return format_decimal(out, abs_value, num_digits); } template FMT_CONSTEXPR auto parse_align(const Char* begin, const Char* end, format_specs& specs) -> const Char* { FMT_ASSERT(begin != end, ""); auto alignment = align::none; auto p = begin + code_point_length(begin); if (end - p <= 0) p = begin; for (;;) { switch (to_ascii(*p)) { case '<': alignment = align::left; break; case '>': alignment = align::right; break; case '^': alignment = align::center; break; } if (alignment != align::none) { if (p != begin) { auto c = *begin; if (c == '}') return begin; if (c == '{') { report_error("invalid fill character '{'"); return begin; } specs.set_fill(basic_string_view(begin, to_unsigned(p - begin))); begin = p + 1; } else { ++begin; } break; } else if (p == begin) { break; } p = begin; } specs.set_align(alignment); return begin; } template FMT_CONSTEXPR20 auto write_nonfinite(OutputIt out, bool isnan, format_specs specs, sign s) -> OutputIt { auto str = isnan ? (specs.upper() ? "NAN" : "nan") : (specs.upper() ? "INF" : "inf"); constexpr size_t str_size = 3; auto size = str_size + (s != sign::none ? 1 : 0); // Replace '0'-padding with space for non-finite values. const bool is_zero_fill = specs.fill_size() == 1 && specs.fill_unit() == '0'; if (is_zero_fill) specs.set_fill(' '); return write_padded(out, specs, size, [=](reserve_iterator it) { if (s != sign::none) *it++ = detail::getsign(s); return copy(str, str + str_size, it); }); } // A decimal floating-point number significand * pow(10, exp). struct big_decimal_fp { const char* significand; int significand_size; int exponent; }; constexpr auto get_significand_size(const big_decimal_fp& f) -> int { return f.significand_size; } template inline auto get_significand_size(const dragonbox::decimal_fp& f) -> int { return count_digits(f.significand); } template constexpr auto write_significand(OutputIt out, const char* significand, int significand_size) -> OutputIt { return copy(significand, significand + significand_size, out); } template inline auto write_significand(OutputIt out, UInt significand, int significand_size) -> OutputIt { return format_decimal(out, significand, significand_size); } template FMT_CONSTEXPR20 auto write_significand(OutputIt out, T significand, int significand_size, int exponent, const Grouping& grouping) -> OutputIt { if (!grouping.has_separator()) { out = write_significand(out, significand, significand_size); return detail::fill_n(out, exponent, static_cast('0')); } auto buffer = memory_buffer(); write_significand(appender(buffer), significand, significand_size); detail::fill_n(appender(buffer), exponent, '0'); return grouping.apply(out, string_view(buffer.data(), buffer.size())); } template ::value)> inline auto write_significand(Char* out, UInt significand, int significand_size, int integral_size, Char decimal_point) -> Char* { if (!decimal_point) return format_decimal(out, significand, significand_size); out += significand_size + 1; Char* end = out; int floating_size = significand_size - integral_size; for (int i = floating_size / 2; i > 0; --i) { out -= 2; write2digits(out, static_cast(significand % 100)); significand /= 100; } if (floating_size % 2 != 0) { *--out = static_cast('0' + significand % 10); significand /= 10; } *--out = decimal_point; format_decimal(out - integral_size, significand, integral_size); return end; } template >::value)> inline auto write_significand(OutputIt out, UInt significand, int significand_size, int integral_size, Char decimal_point) -> OutputIt { // Buffer is large enough to hold digits (digits10 + 1) and a decimal point. Char buffer[digits10() + 2]; auto end = write_significand(buffer, significand, significand_size, integral_size, decimal_point); return detail::copy_noinline(buffer, end, out); } template FMT_CONSTEXPR auto write_significand(OutputIt out, const char* significand, int significand_size, int integral_size, Char decimal_point) -> OutputIt { out = detail::copy_noinline(significand, significand + integral_size, out); if (!decimal_point) return out; *out++ = decimal_point; return detail::copy_noinline(significand + integral_size, significand + significand_size, out); } template FMT_CONSTEXPR20 auto write_significand(OutputIt out, T significand, int significand_size, int integral_size, Char decimal_point, const Grouping& grouping) -> OutputIt { if (!grouping.has_separator()) { return write_significand(out, significand, significand_size, integral_size, decimal_point); } auto buffer = basic_memory_buffer(); write_significand(basic_appender(buffer), significand, significand_size, integral_size, decimal_point); grouping.apply( out, basic_string_view(buffer.data(), to_unsigned(integral_size))); return detail::copy_noinline(buffer.data() + integral_size, buffer.end(), out); } // Numbers with exponents greater or equal to the returned value will use // the exponential notation. template FMT_CONSTEVAL auto exp_upper() -> int { return std::numeric_limits::digits10 != 0 ? min_of(16, std::numeric_limits::digits10 + 1) : 16; } // Use the fixed notation if the exponent is in [-4, exp_upper), // e.g. 0.0001 instead of 1e-04. Otherwise use the exponent notation. constexpr auto use_fixed(int exp, int exp_upper) -> bool { return exp >= -4 && exp < exp_upper; } template class fallback_digit_grouping { public: constexpr fallback_digit_grouping(locale_ref, bool) {} constexpr auto has_separator() const -> bool { return false; } constexpr auto count_separators(int) const -> int { return 0; } template constexpr auto apply(Out out, basic_string_view) const -> Out { return out; } }; template FMT_CONSTEXPR20 auto write_fixed(OutputIt out, const DecimalFP& f, int significand_size, Char decimal_point, const format_specs& specs, sign s, locale_ref loc = {}) -> OutputIt { using iterator = reserve_iterator; int exp = f.exponent + significand_size; long long size = significand_size + (s != sign::none ? 1 : 0); if (f.exponent >= 0) { // 1234e5 -> 123400000[.0+] size += f.exponent; int num_zeros = specs.precision - exp; abort_fuzzing_if(num_zeros > 5000); if (specs.alt()) { ++size; if (num_zeros <= 0 && specs.type() != presentation_type::fixed) num_zeros = 0; if (num_zeros > 0) size += num_zeros; } auto grouping = Grouping(loc, specs.localized()); size += grouping.count_separators(exp); return write_padded( out, specs, to_unsigned(size), [&](iterator it) { if (s != sign::none) *it++ = detail::getsign(s); it = write_significand(it, f.significand, significand_size, f.exponent, grouping); if (!specs.alt()) return it; *it++ = decimal_point; return num_zeros > 0 ? detail::fill_n(it, num_zeros, Char('0')) : it; }); } if (exp > 0) { // 1234e-2 -> 12.34[0+] int num_zeros = specs.alt() ? specs.precision - significand_size : 0; size += 1 + max_of(num_zeros, 0); auto grouping = Grouping(loc, specs.localized()); size += grouping.count_separators(exp); return write_padded( out, specs, to_unsigned(size), [&](iterator it) { if (s != sign::none) *it++ = detail::getsign(s); it = write_significand(it, f.significand, significand_size, exp, decimal_point, grouping); return num_zeros > 0 ? detail::fill_n(it, num_zeros, Char('0')) : it; }); } // 1234e-6 -> 0.001234 int num_zeros = -exp; if (significand_size == 0 && specs.precision >= 0 && specs.precision < num_zeros) { num_zeros = specs.precision; } bool pointy = num_zeros != 0 || significand_size != 0 || specs.alt(); size += 1 + (pointy ? 1 : 0) + num_zeros; return write_padded( out, specs, to_unsigned(size), [&](iterator it) { if (s != sign::none) *it++ = detail::getsign(s); *it++ = Char('0'); if (!pointy) return it; *it++ = decimal_point; it = detail::fill_n(it, num_zeros, Char('0')); return write_significand(it, f.significand, significand_size); }); } template FMT_CONSTEXPR20 auto do_write_float(OutputIt out, const DecimalFP& f, const format_specs& specs, sign s, int exp_upper, locale_ref loc) -> OutputIt { Char point = specs.localized() ? detail::decimal_point(loc) : Char('.'); int significand_size = get_significand_size(f); int exp = f.exponent + significand_size - 1; if (specs.type() == presentation_type::fixed || (specs.type() != presentation_type::exp && use_fixed(exp, specs.precision > 0 ? specs.precision : exp_upper))) { return write_fixed(out, f, significand_size, point, specs, s, loc); } // Write value in the exponential format. int num_zeros = 0; long long size = significand_size + (s != sign::none ? 1 : 0); if (specs.alt()) { num_zeros = max_of(specs.precision - significand_size, 0); size += num_zeros; } else if (significand_size == 1) { point = Char(); } size += (point ? 1 : 0) + compute_exp_size(exp); char exp_char = specs.upper() ? 'E' : 'e'; auto write = [=](reserve_iterator it) { if (s != sign::none) *it++ = detail::getsign(s); // Insert a decimal point after the first digit and add an exponent. it = write_significand(it, f.significand, significand_size, 1, point); if (num_zeros > 0) it = detail::fill_n(it, num_zeros, Char('0')); *it++ = Char(exp_char); return write_exponent(exp, it); }; auto usize = to_unsigned(size); return specs.width > 0 ? write_padded(out, specs, usize, write) : base_iterator(out, write(reserve(out, usize))); } template FMT_CONSTEXPR20 auto write_float(OutputIt out, const DecimalFP& f, const format_specs& specs, sign s, int exp_upper, locale_ref loc) -> OutputIt { if (is_constant_evaluated()) { return do_write_float>(out, f, specs, s, exp_upper, loc); } else { return do_write_float>(out, f, specs, s, exp_upper, loc); } } template constexpr auto isnan(T value) -> bool { return value != value; // std::isnan doesn't support __float128. } template struct has_isfinite : std::false_type {}; template struct has_isfinite> : std::true_type {}; template ::value&& has_isfinite::value)> FMT_CONSTEXPR20 auto isfinite(T value) -> bool { constexpr T inf = T(std::numeric_limits::infinity()); if (is_constant_evaluated()) return !detail::isnan(value) && value < inf && value > -inf; return std::isfinite(value); } template ::value)> FMT_CONSTEXPR auto isfinite(T value) -> bool { T inf = T(std::numeric_limits::infinity()); // std::isfinite doesn't support __float128. return !detail::isnan(value) && value < inf && value > -inf; } template ::value)> FMT_INLINE FMT_CONSTEXPR auto signbit(T value) -> bool { if (is_constant_evaluated()) { #ifdef __cpp_if_constexpr if constexpr (std::numeric_limits::is_iec559) { auto bits = detail::bit_cast(static_cast(value)); return (bits >> (num_bits() - 1)) != 0; } #endif } return std::signbit(static_cast(value)); } inline FMT_CONSTEXPR20 void adjust_precision(int& precision, int exp10) { // Adjust fixed precision by exponent because it is relative to decimal // point. if (exp10 > 0 && precision > max_value() - exp10) FMT_THROW(format_error("number is too big")); precision += exp10; } class bigint { private: // A bigint is a number in the form bigit_[N - 1] ... bigit_[0] * 32^exp_. using bigit = uint32_t; // A big digit. using double_bigit = uint64_t; enum { bigit_bits = num_bits() }; enum { bigits_capacity = 32 }; basic_memory_buffer bigits_; int exp_; friend struct formatter; FMT_CONSTEXPR auto get_bigit(int i) const -> bigit { return i >= exp_ && i < num_bigits() ? bigits_[i - exp_] : 0; } FMT_CONSTEXPR void subtract_bigits(int index, bigit other, bigit& borrow) { auto result = double_bigit(bigits_[index]) - other - borrow; bigits_[index] = static_cast(result); borrow = static_cast(result >> (bigit_bits * 2 - 1)); } FMT_CONSTEXPR void remove_leading_zeros() { int num_bigits = static_cast(bigits_.size()) - 1; while (num_bigits > 0 && bigits_[num_bigits] == 0) --num_bigits; bigits_.resize(to_unsigned(num_bigits + 1)); } // Computes *this -= other assuming aligned bigints and *this >= other. FMT_CONSTEXPR void subtract_aligned(const bigint& other) { FMT_ASSERT(other.exp_ >= exp_, "unaligned bigints"); FMT_ASSERT(compare(*this, other) >= 0, ""); bigit borrow = 0; int i = other.exp_ - exp_; for (size_t j = 0, n = other.bigits_.size(); j != n; ++i, ++j) subtract_bigits(i, other.bigits_[j], borrow); if (borrow != 0) subtract_bigits(i, 0, borrow); FMT_ASSERT(borrow == 0, ""); remove_leading_zeros(); } FMT_CONSTEXPR void multiply(uint32_t value) { bigit carry = 0; const double_bigit wide_value = value; for (size_t i = 0, n = bigits_.size(); i < n; ++i) { double_bigit result = bigits_[i] * wide_value + carry; bigits_[i] = static_cast(result); carry = static_cast(result >> bigit_bits); } if (carry != 0) bigits_.push_back(carry); } template ::value || std::is_same::value)> FMT_CONSTEXPR void multiply(UInt value) { using half_uint = conditional_t::value, uint64_t, uint32_t>; const int shift = num_bits() - bigit_bits; const UInt lower = static_cast(value); const UInt upper = value >> num_bits(); UInt carry = 0; for (size_t i = 0, n = bigits_.size(); i < n; ++i) { UInt result = lower * bigits_[i] + static_cast(carry); carry = (upper * bigits_[i] << shift) + (result >> bigit_bits) + (carry >> bigit_bits); bigits_[i] = static_cast(result); } while (carry != 0) { bigits_.push_back(static_cast(carry)); carry >>= bigit_bits; } } template ::value || std::is_same::value)> FMT_CONSTEXPR void assign(UInt n) { size_t num_bigits = 0; do { bigits_[num_bigits++] = static_cast(n); n >>= bigit_bits; } while (n != 0); bigits_.resize(num_bigits); exp_ = 0; } public: FMT_CONSTEXPR bigint() : exp_(0) {} explicit bigint(uint64_t n) { assign(n); } bigint(const bigint&) = delete; void operator=(const bigint&) = delete; FMT_CONSTEXPR void assign(const bigint& other) { auto size = other.bigits_.size(); bigits_.resize(size); auto data = other.bigits_.data(); copy(data, data + size, bigits_.data()); exp_ = other.exp_; } template FMT_CONSTEXPR void operator=(Int n) { FMT_ASSERT(n > 0, ""); assign(uint64_or_128_t(n)); } FMT_CONSTEXPR auto num_bigits() const -> int { return static_cast(bigits_.size()) + exp_; } FMT_CONSTEXPR auto operator<<=(int shift) -> bigint& { FMT_ASSERT(shift >= 0, ""); exp_ += shift / bigit_bits; shift %= bigit_bits; if (shift == 0) return *this; bigit carry = 0; for (size_t i = 0, n = bigits_.size(); i < n; ++i) { bigit c = bigits_[i] >> (bigit_bits - shift); bigits_[i] = (bigits_[i] << shift) + carry; carry = c; } if (carry != 0) bigits_.push_back(carry); return *this; } template FMT_CONSTEXPR auto operator*=(Int value) -> bigint& { FMT_ASSERT(value > 0, ""); multiply(uint32_or_64_or_128_t(value)); return *this; } friend FMT_CONSTEXPR auto compare(const bigint& b1, const bigint& b2) -> int { int num_bigits1 = b1.num_bigits(), num_bigits2 = b2.num_bigits(); if (num_bigits1 != num_bigits2) return num_bigits1 > num_bigits2 ? 1 : -1; int i = static_cast(b1.bigits_.size()) - 1; int j = static_cast(b2.bigits_.size()) - 1; int end = i - j; if (end < 0) end = 0; for (; i >= end; --i, --j) { bigit b1_bigit = b1.bigits_[i], b2_bigit = b2.bigits_[j]; if (b1_bigit != b2_bigit) return b1_bigit > b2_bigit ? 1 : -1; } if (i != j) return i > j ? 1 : -1; return 0; } // Returns compare(lhs1 + lhs2, rhs). friend FMT_CONSTEXPR auto add_compare(const bigint& lhs1, const bigint& lhs2, const bigint& rhs) -> int { int max_lhs_bigits = max_of(lhs1.num_bigits(), lhs2.num_bigits()); int num_rhs_bigits = rhs.num_bigits(); if (max_lhs_bigits + 1 < num_rhs_bigits) return -1; if (max_lhs_bigits > num_rhs_bigits) return 1; double_bigit borrow = 0; int min_exp = min_of(min_of(lhs1.exp_, lhs2.exp_), rhs.exp_); for (int i = num_rhs_bigits - 1; i >= min_exp; --i) { double_bigit sum = double_bigit(lhs1.get_bigit(i)) + lhs2.get_bigit(i); bigit rhs_bigit = rhs.get_bigit(i); if (sum > rhs_bigit + borrow) return 1; borrow = rhs_bigit + borrow - sum; if (borrow > 1) return -1; borrow <<= bigit_bits; } return borrow != 0 ? -1 : 0; } // Assigns pow(10, exp) to this bigint. FMT_CONSTEXPR20 void assign_pow10(int exp) { FMT_ASSERT(exp >= 0, ""); if (exp == 0) return *this = 1; int bitmask = 1 << (num_bits() - countl_zero(static_cast(exp)) - 1); // pow(10, exp) = pow(5, exp) * pow(2, exp). First compute pow(5, exp) by // repeated squaring and multiplication. *this = 5; bitmask >>= 1; while (bitmask != 0) { square(); if ((exp & bitmask) != 0) *this *= 5; bitmask >>= 1; } *this <<= exp; // Multiply by pow(2, exp) by shifting. } FMT_CONSTEXPR20 void square() { int num_bigits = static_cast(bigits_.size()); int num_result_bigits = 2 * num_bigits; basic_memory_buffer n(std::move(bigits_)); bigits_.resize(to_unsigned(num_result_bigits)); auto sum = uint128_t(); for (int bigit_index = 0; bigit_index < num_bigits; ++bigit_index) { // Compute bigit at position bigit_index of the result by adding // cross-product terms n[i] * n[j] such that i + j == bigit_index. for (int i = 0, j = bigit_index; j >= 0; ++i, --j) { // Most terms are multiplied twice which can be optimized in the future. sum += double_bigit(n[i]) * n[j]; } bigits_[bigit_index] = static_cast(sum); sum >>= num_bits(); // Compute the carry. } // Do the same for the top half. for (int bigit_index = num_bigits; bigit_index < num_result_bigits; ++bigit_index) { for (int j = num_bigits - 1, i = bigit_index - j; i < num_bigits;) sum += double_bigit(n[i++]) * n[j--]; bigits_[bigit_index] = static_cast(sum); sum >>= num_bits(); } remove_leading_zeros(); exp_ *= 2; } // If this bigint has a bigger exponent than other, adds trailing zero to make // exponents equal. This simplifies some operations such as subtraction. FMT_CONSTEXPR void align(const bigint& other) { int exp_difference = exp_ - other.exp_; if (exp_difference <= 0) return; int num_bigits = static_cast(bigits_.size()); bigits_.resize(to_unsigned(num_bigits + exp_difference)); for (int i = num_bigits - 1, j = i + exp_difference; i >= 0; --i, --j) bigits_[j] = bigits_[i]; fill_n(bigits_.data(), to_unsigned(exp_difference), 0U); exp_ -= exp_difference; } // Divides this bignum by divisor, assigning the remainder to this and // returning the quotient. FMT_CONSTEXPR auto divmod_assign(const bigint& divisor) -> int { FMT_ASSERT(this != &divisor, ""); if (compare(*this, divisor) < 0) return 0; FMT_ASSERT(divisor.bigits_[divisor.bigits_.size() - 1u] != 0, ""); align(divisor); int quotient = 0; do { subtract_aligned(divisor); ++quotient; } while (compare(*this, divisor) >= 0); return quotient; } }; // format_dragon flags. enum dragon { predecessor_closer = 1, fixup = 2, // Run fixup to correct exp10 which can be off by one. fixed = 4, }; // Formats a floating-point number using a variation of the Fixed-Precision // Positive Floating-Point Printout ((FPP)^2) algorithm by Steele & White: // https://fmt.dev/papers/p372-steele.pdf. FMT_CONSTEXPR20 inline void format_dragon(basic_fp value, unsigned flags, int num_digits, buffer& buf, int& exp10) { bigint numerator; // 2 * R in (FPP)^2. bigint denominator; // 2 * S in (FPP)^2. // lower and upper are differences between value and corresponding boundaries. bigint lower; // (M^- in (FPP)^2). bigint upper_store; // upper's value if different from lower. bigint* upper = nullptr; // (M^+ in (FPP)^2). // Shift numerator and denominator by an extra bit or two (if lower boundary // is closer) to make lower and upper integers. This eliminates multiplication // by 2 during later computations. bool is_predecessor_closer = (flags & dragon::predecessor_closer) != 0; int shift = is_predecessor_closer ? 2 : 1; if (value.e >= 0) { numerator = value.f; numerator <<= value.e + shift; lower = 1; lower <<= value.e; if (is_predecessor_closer) { upper_store = 1; upper_store <<= value.e + 1; upper = &upper_store; } denominator.assign_pow10(exp10); denominator <<= shift; } else if (exp10 < 0) { numerator.assign_pow10(-exp10); lower.assign(numerator); if (is_predecessor_closer) { upper_store.assign(numerator); upper_store <<= 1; upper = &upper_store; } numerator *= value.f; numerator <<= shift; denominator = 1; denominator <<= shift - value.e; } else { numerator = value.f; numerator <<= shift; denominator.assign_pow10(exp10); denominator <<= shift - value.e; lower = 1; if (is_predecessor_closer) { upper_store = 1ULL << 1; upper = &upper_store; } } int even = static_cast((value.f & 1) == 0); if (!upper) upper = &lower; bool shortest = num_digits < 0; if ((flags & dragon::fixup) != 0) { if (add_compare(numerator, *upper, denominator) + even <= 0) { --exp10; numerator *= 10; if (num_digits < 0) { lower *= 10; if (upper != &lower) *upper *= 10; } } if ((flags & dragon::fixed) != 0) adjust_precision(num_digits, exp10 + 1); } // Invariant: value == (numerator / denominator) * pow(10, exp10). if (shortest) { // Generate the shortest representation. num_digits = 0; char* data = buf.data(); for (;;) { int digit = numerator.divmod_assign(denominator); bool low = compare(numerator, lower) - even < 0; // numerator <[=] lower. // numerator + upper >[=] pow10: bool high = add_compare(numerator, *upper, denominator) + even > 0; data[num_digits++] = static_cast('0' + digit); if (low || high) { if (!low) { ++data[num_digits - 1]; } else if (high) { int result = add_compare(numerator, numerator, denominator); // Round half to even. if (result > 0 || (result == 0 && (digit % 2) != 0)) ++data[num_digits - 1]; } buf.try_resize(to_unsigned(num_digits)); exp10 -= num_digits - 1; return; } numerator *= 10; lower *= 10; if (upper != &lower) *upper *= 10; } } // Generate the given number of digits. exp10 -= num_digits - 1; if (num_digits <= 0) { auto digit = '0'; if (num_digits == 0) { denominator *= 10; digit = add_compare(numerator, numerator, denominator) > 0 ? '1' : '0'; } buf.push_back(digit); return; } buf.try_resize(to_unsigned(num_digits)); for (int i = 0; i < num_digits - 1; ++i) { int digit = numerator.divmod_assign(denominator); buf[i] = static_cast('0' + digit); numerator *= 10; } int digit = numerator.divmod_assign(denominator); auto result = add_compare(numerator, numerator, denominator); if (result > 0 || (result == 0 && (digit % 2) != 0)) { if (digit == 9) { const auto overflow = '0' + 10; buf[num_digits - 1] = overflow; // Propagate the carry. for (int i = num_digits - 1; i > 0 && buf[i] == overflow; --i) { buf[i] = '0'; ++buf[i - 1]; } if (buf[0] == overflow) { buf[0] = '1'; if ((flags & dragon::fixed) != 0) buf.push_back('0'); else ++exp10; } return; } ++digit; } buf[num_digits - 1] = static_cast('0' + digit); } // Formats a floating-point number using the hexfloat format. template ::value)> FMT_CONSTEXPR20 void format_hexfloat(Float value, format_specs specs, buffer& buf) { // float is passed as double to reduce the number of instantiations and to // simplify implementation. static_assert(!std::is_same::value, ""); using info = dragonbox::float_info; // Assume Float is in the format [sign][exponent][significand]. using carrier_uint = typename info::carrier_uint; const auto num_float_significand_bits = detail::num_significand_bits(); basic_fp f(value); f.e += num_float_significand_bits; if (!has_implicit_bit()) --f.e; const auto num_fraction_bits = num_float_significand_bits + (has_implicit_bit() ? 1 : 0); const auto num_xdigits = (num_fraction_bits + 3) / 4; const auto leading_shift = ((num_xdigits - 1) * 4); const auto leading_mask = carrier_uint(0xF) << leading_shift; const auto leading_xdigit = static_cast((f.f & leading_mask) >> leading_shift); if (leading_xdigit > 1) f.e -= (32 - countl_zero(leading_xdigit) - 1); int print_xdigits = num_xdigits - 1; if (specs.precision >= 0 && print_xdigits > specs.precision) { const int shift = ((print_xdigits - specs.precision - 1) * 4); const auto mask = carrier_uint(0xF) << shift; const auto v = static_cast((f.f & mask) >> shift); if (v >= 8) { const auto inc = carrier_uint(1) << (shift + 4); f.f += inc; f.f &= ~(inc - 1); } // Check long double overflow if (!has_implicit_bit()) { const auto implicit_bit = carrier_uint(1) << num_float_significand_bits; if ((f.f & implicit_bit) == implicit_bit) { f.f >>= 4; f.e += 4; } } print_xdigits = specs.precision; } char xdigits[num_bits() / 4]; detail::fill_n(xdigits, sizeof(xdigits), '0'); format_base2e(4, xdigits, f.f, num_xdigits, specs.upper()); // Remove zero tail while (print_xdigits > 0 && xdigits[print_xdigits] == '0') --print_xdigits; buf.push_back('0'); buf.push_back(specs.upper() ? 'X' : 'x'); buf.push_back(xdigits[0]); if (specs.alt() || print_xdigits > 0 || print_xdigits < specs.precision) buf.push_back('.'); buf.append(xdigits + 1, xdigits + 1 + print_xdigits); for (; print_xdigits < specs.precision; ++print_xdigits) buf.push_back('0'); buf.push_back(specs.upper() ? 'P' : 'p'); uint32_t abs_e; if (f.e < 0) { buf.push_back('-'); abs_e = static_cast(-f.e); } else { buf.push_back('+'); abs_e = static_cast(f.e); } format_decimal(appender(buf), abs_e, detail::count_digits(abs_e)); } template ::value)> FMT_CONSTEXPR20 void format_hexfloat(Float value, format_specs specs, buffer& buf) { format_hexfloat(static_cast(value), specs, buf); } constexpr auto fractional_part_rounding_thresholds(int index) -> uint32_t { // For checking rounding thresholds. // The kth entry is chosen to be the smallest integer such that the // upper 32-bits of 10^(k+1) times it is strictly bigger than 5 * 10^k. // It is equal to ceil(2^31 + 2^32/10^(k + 1)). // These are stored in a string literal because we cannot have static arrays // in constexpr functions and non-static ones are poorly optimized. return U"\x9999999a\x828f5c29\x80418938\x80068db9\x8000a7c6\x800010c7" U"\x800001ae\x8000002b"[index]; } template FMT_CONSTEXPR20 auto format_float(Float value, int precision, const format_specs& specs, bool binary32, buffer& buf) -> int { // float is passed as double to reduce the number of instantiations. static_assert(!std::is_same::value, ""); auto converted_value = convert_float(value); const bool fixed = specs.type() == presentation_type::fixed; if (value == 0) { if (precision <= 0 || !fixed) { buf.push_back('0'); return 0; } buf.try_resize(to_unsigned(precision)); fill_n(buf.data(), precision, '0'); return -precision; } int exp = 0; bool use_dragon = true; unsigned dragon_flags = 0; if (!is_fast_float() || is_constant_evaluated()) { const auto inv_log2_10 = 0.3010299956639812; // 1 / log2(10) using info = dragonbox::float_info; const auto f = basic_fp(converted_value); // Compute exp, an approximate power of 10, such that // 10^(exp - 1) <= value < 10^exp or 10^exp <= value < 10^(exp + 1). // This is based on log10(value) == log2(value) / log2(10) and approximation // of log2(value) by e + num_fraction_bits idea from double-conversion. auto e = (f.e + count_digits<1>(f.f) - 1) * inv_log2_10 - 1e-10; exp = static_cast(e); if (e > exp) ++exp; // Compute ceil. dragon_flags = dragon::fixup; } else { // Extract significand bits and exponent bits. using info = dragonbox::float_info; auto br = bit_cast(static_cast(value)); const uint64_t significand_mask = (static_cast(1) << num_significand_bits()) - 1; uint64_t significand = (br & significand_mask); int exponent = static_cast((br & exponent_mask()) >> num_significand_bits()); if (exponent != 0) { // Check if normal. exponent -= exponent_bias() + num_significand_bits(); significand |= (static_cast(1) << num_significand_bits()); significand <<= 1; } else { // Normalize subnormal inputs. FMT_ASSERT(significand != 0, "zeros should not appear here"); int shift = countl_zero(significand); FMT_ASSERT(shift >= num_bits() - num_significand_bits(), ""); shift -= (num_bits() - num_significand_bits() - 2); exponent = (std::numeric_limits::min_exponent - num_significand_bits()) - shift; significand <<= shift; } // Compute the first several nonzero decimal significand digits. // We call the number we get the first segment. const int k = info::kappa - dragonbox::floor_log10_pow2(exponent); exp = -k; const int beta = exponent + dragonbox::floor_log2_pow10(k); uint64_t first_segment; bool has_more_segments; int digits_in_the_first_segment; { const auto r = dragonbox::umul192_upper128( significand << beta, dragonbox::get_cached_power(k)); first_segment = r.high(); has_more_segments = r.low() != 0; // The first segment can have 18 ~ 19 digits. if (first_segment >= 1000000000000000000ULL) { digits_in_the_first_segment = 19; } else { // When it is of 18-digits, we align it to 19-digits by adding a bogus // zero at the end. digits_in_the_first_segment = 18; first_segment *= 10; } } // Compute the actual number of decimal digits to print. if (fixed) adjust_precision(precision, exp + digits_in_the_first_segment); // Use Dragon4 only when there might be not enough digits in the first // segment. if (digits_in_the_first_segment > precision) { use_dragon = false; if (precision <= 0) { exp += digits_in_the_first_segment; if (precision < 0) { // Nothing to do, since all we have are just leading zeros. buf.try_resize(0); } else { // We may need to round-up. buf.try_resize(1); if ((first_segment | static_cast(has_more_segments)) > 5000000000000000000ULL) { buf[0] = '1'; } else { buf[0] = '0'; } } } // precision <= 0 else { exp += digits_in_the_first_segment - precision; // When precision > 0, we divide the first segment into three // subsegments, each with 9, 9, and 0 ~ 1 digits so that each fits // in 32-bits which usually allows faster calculation than in // 64-bits. Since some compiler (e.g. MSVC) doesn't know how to optimize // division-by-constant for large 64-bit divisors, we do it here // manually. The magic number 7922816251426433760 below is equal to // ceil(2^(64+32) / 10^10). const uint32_t first_subsegment = static_cast( dragonbox::umul128_upper64(first_segment, 7922816251426433760ULL) >> 32); const uint64_t second_third_subsegments = first_segment - first_subsegment * 10000000000ULL; uint64_t prod; uint32_t digits; bool should_round_up; int number_of_digits_to_print = min_of(precision, 9); // Print a 9-digits subsegment, either the first or the second. auto print_subsegment = [&](uint32_t subsegment, char* buffer) { int number_of_digits_printed = 0; // If we want to print an odd number of digits from the subsegment, if ((number_of_digits_to_print & 1) != 0) { // Convert to 64-bit fixed-point fractional form with 1-digit // integer part. The magic number 720575941 is a good enough // approximation of 2^(32 + 24) / 10^8; see // https://jk-jeon.github.io/posts/2022/12/fixed-precision-formatting/#fixed-length-case // for details. prod = ((subsegment * static_cast(720575941)) >> 24) + 1; digits = static_cast(prod >> 32); *buffer = static_cast('0' + digits); number_of_digits_printed++; } // If we want to print an even number of digits from the // first_subsegment, else { // Convert to 64-bit fixed-point fractional form with 2-digits // integer part. The magic number 450359963 is a good enough // approximation of 2^(32 + 20) / 10^7; see // https://jk-jeon.github.io/posts/2022/12/fixed-precision-formatting/#fixed-length-case // for details. prod = ((subsegment * static_cast(450359963)) >> 20) + 1; digits = static_cast(prod >> 32); write2digits(buffer, digits); number_of_digits_printed += 2; } // Print all digit pairs. while (number_of_digits_printed < number_of_digits_to_print) { prod = static_cast(prod) * static_cast(100); digits = static_cast(prod >> 32); write2digits(buffer + number_of_digits_printed, digits); number_of_digits_printed += 2; } }; // Print first subsegment. print_subsegment(first_subsegment, buf.data()); // Perform rounding if the first subsegment is the last subsegment to // print. if (precision <= 9) { // Rounding inside the subsegment. // We round-up if: // - either the fractional part is strictly larger than 1/2, or // - the fractional part is exactly 1/2 and the last digit is odd. // We rely on the following observations: // - If fractional_part >= threshold, then the fractional part is // strictly larger than 1/2. // - If the MSB of fractional_part is set, then the fractional part // must be at least 1/2. // - When the MSB of fractional_part is set, either // second_third_subsegments being nonzero or has_more_segments // being true means there are further digits not printed, so the // fractional part is strictly larger than 1/2. if (precision < 9) { uint32_t fractional_part = static_cast(prod); should_round_up = fractional_part >= fractional_part_rounding_thresholds( 8 - number_of_digits_to_print) || ((fractional_part >> 31) & ((digits & 1) | (second_third_subsegments != 0) | has_more_segments)) != 0; } // Rounding at the subsegment boundary. // In this case, the fractional part is at least 1/2 if and only if // second_third_subsegments >= 5000000000ULL, and is strictly larger // than 1/2 if we further have either second_third_subsegments > // 5000000000ULL or has_more_segments == true. else { should_round_up = second_third_subsegments > 5000000000ULL || (second_third_subsegments == 5000000000ULL && ((digits & 1) != 0 || has_more_segments)); } } // Otherwise, print the second subsegment. else { // Compilers are not aware of how to leverage the maximum value of // second_third_subsegments to find out a better magic number which // allows us to eliminate an additional shift. 1844674407370955162 = // ceil(2^64/10) < ceil(2^64*(10^9/(10^10 - 1))). const uint32_t second_subsegment = static_cast(dragonbox::umul128_upper64( second_third_subsegments, 1844674407370955162ULL)); const uint32_t third_subsegment = static_cast(second_third_subsegments) - second_subsegment * 10; number_of_digits_to_print = precision - 9; print_subsegment(second_subsegment, buf.data() + 9); // Rounding inside the subsegment. if (precision < 18) { // The condition third_subsegment != 0 implies that the segment was // of 19 digits, so in this case the third segment should be // consisting of a genuine digit from the input. uint32_t fractional_part = static_cast(prod); should_round_up = fractional_part >= fractional_part_rounding_thresholds( 8 - number_of_digits_to_print) || ((fractional_part >> 31) & ((digits & 1) | (third_subsegment != 0) | has_more_segments)) != 0; } // Rounding at the subsegment boundary. else { // In this case, the segment must be of 19 digits, thus // the third subsegment should be consisting of a genuine digit from // the input. should_round_up = third_subsegment > 5 || (third_subsegment == 5 && ((digits & 1) != 0 || has_more_segments)); } } // Round-up if necessary. if (should_round_up) { ++buf[precision - 1]; for (int i = precision - 1; i > 0 && buf[i] > '9'; --i) { buf[i] = '0'; ++buf[i - 1]; } if (buf[0] > '9') { buf[0] = '1'; if (fixed) buf[precision++] = '0'; else ++exp; } } buf.try_resize(to_unsigned(precision)); } } // if (digits_in_the_first_segment > precision) else { // Adjust the exponent for its use in Dragon4. exp += digits_in_the_first_segment - 1; } } if (use_dragon) { auto f = basic_fp(); bool is_predecessor_closer = binary32 ? f.assign(static_cast(value)) : f.assign(converted_value); if (is_predecessor_closer) dragon_flags |= dragon::predecessor_closer; if (fixed) dragon_flags |= dragon::fixed; // Limit precision to the maximum possible number of significant digits in // an IEEE754 double because we don't need to generate zeros. const int max_double_digits = 767; if (precision > max_double_digits) precision = max_double_digits; format_dragon(f, dragon_flags, precision, buf, exp); } if (!fixed && !specs.alt()) { // Remove trailing zeros. auto num_digits = buf.size(); while (num_digits > 0 && buf[num_digits - 1] == '0') { --num_digits; ++exp; } buf.try_resize(num_digits); } return exp; } template ::value)> FMT_CONSTEXPR20 auto write(OutputIt out, T value, format_specs specs, locale_ref loc = {}) -> OutputIt { if (specs.localized() && write_loc(out, value, specs, loc)) return out; // Use signbit because value < 0 is false for NaN. sign s = detail::signbit(value) ? sign::minus : specs.sign(); if (!detail::isfinite(value)) return write_nonfinite(out, detail::isnan(value), specs, s); if (specs.align() == align::numeric && s != sign::none) { *out++ = detail::getsign(s); s = sign::none; if (specs.width != 0) --specs.width; } const int exp_upper = detail::exp_upper(); int precision = specs.precision; if (precision < 0) { if (specs.type() != presentation_type::none) { precision = 6; } else if (is_fast_float::value && !is_constant_evaluated()) { // Use Dragonbox for the shortest format. auto dec = dragonbox::to_decimal(static_cast>(value)); return write_float(out, dec, specs, s, exp_upper, loc); } } memory_buffer buffer; if (specs.type() == presentation_type::hexfloat) { if (s != sign::none) buffer.push_back(detail::getsign(s)); format_hexfloat(convert_float(value), specs, buffer); return write_bytes(out, {buffer.data(), buffer.size()}, specs); } if (specs.type() == presentation_type::exp) { if (precision == max_value()) report_error("number is too big"); else ++precision; if (specs.precision != 0) specs.set_alt(); } else if (specs.type() == presentation_type::fixed) { if (specs.precision != 0) specs.set_alt(); } else if (precision == 0) { precision = 1; } int exp = format_float(convert_float(value), precision, specs, std::is_same(), buffer); specs.precision = precision; auto f = big_decimal_fp{buffer.data(), static_cast(buffer.size()), exp}; return write_float(out, f, specs, s, exp_upper, loc); } template ::value)> FMT_CONSTEXPR20 auto write(OutputIt out, T value) -> OutputIt { if (is_constant_evaluated()) return write(out, value, format_specs()); auto s = detail::signbit(value) ? sign::minus : sign::none; auto mask = exponent_mask>(); if ((bit_cast(value) & mask) == mask) return write_nonfinite(out, std::isnan(value), {}, s); auto dec = dragonbox::to_decimal(static_cast>(value)); auto significand = dec.significand; int significand_size = count_digits(significand); int exponent = dec.exponent + significand_size - 1; if (use_fixed(exponent, detail::exp_upper())) { return write_fixed>( out, dec, significand_size, Char('.'), {}, s); } // Write value in the exponential format. const char* prefix = "e+"; int abs_exponent = exponent; if (exponent < 0) { abs_exponent = -exponent; prefix = "e-"; } auto has_decimal_point = significand_size != 1; size_t size = std::is_pointer::value ? 0u : to_unsigned((s != sign::none ? 1 : 0) + significand_size + (has_decimal_point ? 1 : 0) + (abs_exponent >= 100 ? 5 : 4)); if (auto ptr = to_pointer(out, size)) { if (s != sign::none) *ptr++ = Char('-'); if (has_decimal_point) { auto begin = ptr; ptr = format_decimal(ptr, significand, significand_size + 1); *begin = begin[1]; begin[1] = '.'; } else { *ptr++ = static_cast('0' + significand); } if (std::is_same::value) { memcpy(ptr, prefix, 2); ptr += 2; } else { *ptr++ = prefix[0]; *ptr++ = prefix[1]; } if (abs_exponent >= 100) { *ptr++ = static_cast('0' + abs_exponent / 100); abs_exponent %= 100; } write2digits(ptr, static_cast(abs_exponent)); return select::value>(ptr + 2, out); } auto it = reserve(out, size); if (s != sign::none) *it++ = Char('-'); // Insert a decimal point after the first digit and add an exponent. it = write_significand(it, significand, significand_size, 1, has_decimal_point ? Char('.') : Char()); *it++ = Char('e'); it = write_exponent(exponent, it); return base_iterator(out, it); } template ::value && !is_fast_float::value)> inline auto write(OutputIt out, T value) -> OutputIt { return write(out, value, {}); } template auto write(OutputIt out, monostate, format_specs = {}, locale_ref = {}) -> OutputIt { FMT_ASSERT(false, ""); return out; } template FMT_CONSTEXPR auto write(OutputIt out, basic_string_view value) -> OutputIt { return copy_noinline(value.begin(), value.end(), out); } template ::value)> constexpr auto write(OutputIt out, const T& value) -> OutputIt { return write(out, to_string_view(value)); } // FMT_ENABLE_IF() condition separated to workaround an MSVC bug. template < typename Char, typename OutputIt, typename T, bool check = std::is_enum::value && !std::is_same::value && mapped_type_constant::value != type::custom_type, FMT_ENABLE_IF(check)> FMT_CONSTEXPR auto write(OutputIt out, T value) -> OutputIt { return write(out, static_cast>(value)); } template ::value)> FMT_CONSTEXPR auto write(OutputIt out, T value, const format_specs& specs = {}, locale_ref = {}) -> OutputIt { return specs.type() != presentation_type::none && specs.type() != presentation_type::string ? write(out, value ? 1 : 0, specs, {}) : write_bytes(out, value ? "true" : "false", specs); } template FMT_CONSTEXPR auto write(OutputIt out, Char value) -> OutputIt { auto it = reserve(out, 1); *it++ = value; return base_iterator(out, it); } template FMT_CONSTEXPR20 auto write(OutputIt out, const Char* value) -> OutputIt { if (value) return write(out, basic_string_view(value)); report_error("string pointer is null"); return out; } template ::value)> auto write(OutputIt out, const T* value, const format_specs& specs = {}, locale_ref = {}) -> OutputIt { return write_ptr(out, bit_cast(value), &specs); } template ::value == type::custom_type && !std::is_fundamental::value)> FMT_CONSTEXPR auto write(OutputIt out, const T& value) -> OutputIt { auto f = formatter(); auto parse_ctx = parse_context({}); f.parse(parse_ctx); auto ctx = basic_format_context(out, {}, {}); return f.format(value, ctx); } template using is_builtin = bool_constant::value || FMT_BUILTIN_TYPES>; // An argument visitor that formats the argument and writes it via the output // iterator. It's a class and not a generic lambda for compatibility with C++11. template struct default_arg_formatter { using context = buffered_context; basic_appender out; void operator()(monostate) { report_error("argument not found"); } template ::value)> void operator()(T value) { write(out, value); } template ::value)> void operator()(T) { FMT_ASSERT(false, ""); } void operator()(typename basic_format_arg::handle h) { // Use a null locale since the default format must be unlocalized. auto parse_ctx = parse_context({}); auto format_ctx = context(out, {}, {}); h.format(parse_ctx, format_ctx); } }; template struct arg_formatter { basic_appender out; const format_specs& specs; FMT_NO_UNIQUE_ADDRESS locale_ref locale; template ::value)> FMT_CONSTEXPR FMT_INLINE void operator()(T value) { detail::write(out, value, specs, locale); } template ::value)> void operator()(T) { FMT_ASSERT(false, ""); } void operator()(typename basic_format_arg>::handle) { // User-defined types are handled separately because they require access // to the parse context. } }; struct dynamic_spec_getter { template ::value)> FMT_CONSTEXPR auto operator()(T value) -> unsigned long long { return is_negative(value) ? ~0ull : static_cast(value); } template ::value)> FMT_CONSTEXPR auto operator()(T) -> unsigned long long { report_error("width/precision is not integer"); return 0; } }; template FMT_CONSTEXPR void handle_dynamic_spec( arg_id_kind kind, int& value, const arg_ref& ref, Context& ctx) { if (kind == arg_id_kind::none) return; auto arg = kind == arg_id_kind::index ? ctx.arg(ref.index) : ctx.arg(ref.name); if (!arg) report_error("argument not found"); unsigned long long result = arg.visit(dynamic_spec_getter()); if (result > to_unsigned(max_value())) report_error("width/precision is out of range"); value = static_cast(result); } #if FMT_USE_NONTYPE_TEMPLATE_ARGS template Str> struct static_named_arg : view { static constexpr auto name = Str.data; const T& value; static_named_arg(const T& v) : value(v) {} }; template Str> struct is_named_arg> : std::true_type {}; template Str> struct is_static_named_arg> : std::true_type { }; template Str> struct udl_arg { template auto operator=(T&& value) const { return static_named_arg(std::forward(value)); } }; #else template struct udl_arg { const Char* str; template auto operator=(T&& value) const -> named_arg { return {str, std::forward(value)}; } }; #endif // FMT_USE_NONTYPE_TEMPLATE_ARGS template struct format_handler { parse_context parse_ctx; buffered_context ctx; void on_text(const Char* begin, const Char* end) { copy_noinline(begin, end, ctx.out()); } FMT_CONSTEXPR auto on_arg_id() -> int { return parse_ctx.next_arg_id(); } FMT_CONSTEXPR auto on_arg_id(int id) -> int { parse_ctx.check_arg_id(id); return id; } FMT_CONSTEXPR auto on_arg_id(basic_string_view id) -> int { parse_ctx.check_arg_id(id); int arg_id = ctx.arg_id(id); if (arg_id < 0) report_error("argument not found"); return arg_id; } FMT_INLINE void on_replacement_field(int id, const Char*) { ctx.arg(id).visit(default_arg_formatter{ctx.out()}); } auto on_format_specs(int id, const Char* begin, const Char* end) -> const Char* { auto arg = ctx.arg(id); if (!arg) report_error("argument not found"); // Not using a visitor for custom types gives better codegen. if (arg.format_custom(begin, parse_ctx, ctx)) return parse_ctx.begin(); auto specs = dynamic_format_specs(); begin = parse_format_specs(begin, end, specs, parse_ctx, arg.type()); if (specs.dynamic()) { handle_dynamic_spec(specs.dynamic_width(), specs.width, specs.width_ref, ctx); handle_dynamic_spec(specs.dynamic_precision(), specs.precision, specs.precision_ref, ctx); } arg.visit(arg_formatter{ctx.out(), specs, ctx.locale()}); return begin; } FMT_NORETURN void on_error(const char* message) { report_error(message); } }; // It is used in format-inl.h and os.cc. using format_func = void (*)(detail::buffer&, int, const char*); FMT_API void do_report_error(format_func func, int error_code, const char* message) noexcept; FMT_API void format_error_code(buffer& out, int error_code, string_view message) noexcept; template template FMT_CONSTEXPR auto native_formatter::format( const T& val, FormatContext& ctx) const -> decltype(ctx.out()) { if (!specs_.dynamic()) return write(ctx.out(), val, specs_, ctx.locale()); auto specs = format_specs(specs_); handle_dynamic_spec(specs.dynamic_width(), specs.width, specs_.width_ref, ctx); handle_dynamic_spec(specs.dynamic_precision(), specs.precision, specs_.precision_ref, ctx); return write(ctx.out(), val, specs, ctx.locale()); } } // namespace detail FMT_BEGIN_EXPORT // A generic formatting context with custom output iterator and character // (code unit) support. Char is the format string code unit type which can be // different from OutputIt::value_type. template class generic_context { private: OutputIt out_; basic_format_args args_; locale_ref loc_; public: using char_type = Char; using iterator = OutputIt; enum { builtin_types = FMT_BUILTIN_TYPES }; constexpr generic_context(OutputIt out, basic_format_args args, locale_ref loc = {}) : out_(out), args_(args), loc_(loc) {} generic_context(generic_context&&) = default; generic_context(const generic_context&) = delete; void operator=(const generic_context&) = delete; constexpr auto arg(int id) const -> basic_format_arg { return args_.get(id); } auto arg(basic_string_view name) const -> basic_format_arg { return args_.get(name); } constexpr auto arg_id(basic_string_view name) const -> int { return args_.get_id(name); } constexpr auto out() const -> iterator { return out_; } void advance_to(iterator it) { if (!detail::is_back_insert_iterator()) out_ = it; } constexpr auto locale() const -> locale_ref { return loc_; } }; class loc_value { private: basic_format_arg value_; public: template ::value)> loc_value(T value) : value_(value) {} template ::value)> loc_value(T) {} template auto visit(Visitor&& vis) -> decltype(vis(0)) { return value_.visit(vis); } }; // A locale facet that formats values in UTF-8. // It is parameterized on the locale to avoid the heavy include. template class format_facet : public Locale::facet { private: std::string separator_; std::string grouping_; std::string decimal_point_; protected: virtual auto do_put(appender out, loc_value val, const format_specs& specs) const -> bool; public: static FMT_API typename Locale::id id; explicit format_facet(Locale& loc); explicit format_facet(string_view sep = "", std::string grouping = "\3", std::string decimal_point = ".") : separator_(sep.data(), sep.size()), grouping_(grouping), decimal_point_(decimal_point) {} auto put(appender out, loc_value val, const format_specs& specs) const -> bool { return do_put(out, val, specs); } }; #define FMT_FORMAT_AS(Type, Base) \ template \ struct formatter : formatter { \ template \ FMT_CONSTEXPR auto format(Type value, FormatContext& ctx) const \ -> decltype(ctx.out()) { \ return formatter::format(value, ctx); \ } \ } FMT_FORMAT_AS(signed char, int); FMT_FORMAT_AS(unsigned char, unsigned); FMT_FORMAT_AS(short, int); FMT_FORMAT_AS(unsigned short, unsigned); FMT_FORMAT_AS(long, detail::long_type); FMT_FORMAT_AS(unsigned long, detail::ulong_type); FMT_FORMAT_AS(Char*, const Char*); FMT_FORMAT_AS(detail::std_string_view, basic_string_view); FMT_FORMAT_AS(std::nullptr_t, const void*); FMT_FORMAT_AS(void*, const void*); template struct formatter : formatter, Char> {}; template class formatter, Char> : public formatter, Char> {}; template struct formatter, Char> : formatter {}; template struct formatter, Char> : formatter {}; template struct formatter : detail::native_formatter {}; template struct formatter>> : formatter, Char> { template FMT_CONSTEXPR auto format(const T& value, FormatContext& ctx) const -> decltype(ctx.out()) { auto&& val = format_as(value); // Make an lvalue reference for format. return formatter, Char>::format(val, ctx); } }; /** * Converts `p` to `const void*` for pointer formatting. * * **Example**: * * auto s = fmt::format("{}", fmt::ptr(p)); */ template auto ptr(T p) -> const void* { static_assert(std::is_pointer::value, "fmt::ptr used with non-pointer"); return detail::bit_cast(p); } /** * Converts `e` to the underlying type. * * **Example**: * * enum class color { red, green, blue }; * auto s = fmt::format("{}", fmt::underlying(color::red)); // s == "0" */ template constexpr auto underlying(Enum e) noexcept -> underlying_t { return static_cast>(e); } namespace enums { template ::value)> constexpr auto format_as(Enum e) noexcept -> underlying_t { return static_cast>(e); } } // namespace enums #ifdef __cpp_lib_byte template struct formatter : formatter { static auto format_as(std::byte b) -> unsigned char { return static_cast(b); } template auto format(std::byte b, Context& ctx) const -> decltype(ctx.out()) { return formatter::format(format_as(b), ctx); } }; #endif struct bytes { string_view data; inline explicit bytes(string_view s) : data(s) {} }; template <> struct formatter { private: detail::dynamic_format_specs<> specs_; public: FMT_CONSTEXPR auto parse(parse_context<>& ctx) -> const char* { return parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx, detail::type::string_type); } template auto format(bytes b, FormatContext& ctx) const -> decltype(ctx.out()) { auto specs = specs_; detail::handle_dynamic_spec(specs.dynamic_width(), specs.width, specs.width_ref, ctx); detail::handle_dynamic_spec(specs.dynamic_precision(), specs.precision, specs.precision_ref, ctx); return detail::write_bytes(ctx.out(), b.data, specs); } }; // group_digits_view is not derived from view because it copies the argument. template struct group_digits_view { T value; }; /** * Returns a view that formats an integer value using ',' as a * locale-independent thousands separator. * * **Example**: * * fmt::print("{}", fmt::group_digits(12345)); * // Output: "12,345" */ template auto group_digits(T value) -> group_digits_view { return {value}; } template struct formatter> : formatter { private: detail::dynamic_format_specs<> specs_; public: FMT_CONSTEXPR auto parse(parse_context<>& ctx) -> const char* { return parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx, detail::type::int_type); } template auto format(group_digits_view view, FormatContext& ctx) const -> decltype(ctx.out()) { auto specs = specs_; detail::handle_dynamic_spec(specs.dynamic_width(), specs.width, specs.width_ref, ctx); detail::handle_dynamic_spec(specs.dynamic_precision(), specs.precision, specs.precision_ref, ctx); auto arg = detail::make_write_int_arg(view.value, specs.sign()); return detail::write_int( ctx.out(), static_cast>(arg.abs_value), arg.prefix, specs, detail::digit_grouping("\3", ",")); } }; template struct nested_view { const formatter* fmt; const T* value; }; template struct formatter, Char> { FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return ctx.begin(); } template auto format(nested_view view, FormatContext& ctx) const -> decltype(ctx.out()) { return view.fmt->format(*view.value, ctx); } }; template struct nested_formatter { private: basic_specs specs_; int width_; formatter formatter_; public: constexpr nested_formatter() : width_(0) {} FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(), end = ctx.end(); if (it == end) return it; auto specs = format_specs(); it = detail::parse_align(it, end, specs); specs_ = specs; Char c = *it; auto width_ref = detail::arg_ref(); if ((c >= '0' && c <= '9') || c == '{') { it = detail::parse_width(it, end, specs, width_ref, ctx); width_ = specs.width; } ctx.advance_to(it); return formatter_.parse(ctx); } template auto write_padded(FormatContext& ctx, F write) const -> decltype(ctx.out()) { if (width_ == 0) return write(ctx.out()); auto buf = basic_memory_buffer(); write(basic_appender(buf)); auto specs = format_specs(); specs.width = width_; specs.copy_fill_from(specs_); specs.set_align(specs_.align()); return detail::write( ctx.out(), basic_string_view(buf.data(), buf.size()), specs); } auto nested(const T& value) const -> nested_view { return nested_view{&formatter_, &value}; } }; inline namespace literals { #if FMT_USE_NONTYPE_TEMPLATE_ARGS template constexpr auto operator""_a() { using char_t = remove_cvref_t; return detail::udl_arg(); } #else /** * User-defined literal equivalent of `fmt::arg`. * * **Example**: * * using namespace fmt::literals; * fmt::print("The answer is {answer}.", "answer"_a=42); */ constexpr auto operator""_a(const char* s, size_t) -> detail::udl_arg { return {s}; } #endif // FMT_USE_NONTYPE_TEMPLATE_ARGS } // namespace literals /// A fast integer formatter. class format_int { private: // Buffer should be large enough to hold all digits (digits10 + 1), // a sign and a null character. enum { buffer_size = std::numeric_limits::digits10 + 3 }; mutable char buffer_[buffer_size]; char* str_; template FMT_CONSTEXPR20 auto format_unsigned(UInt value) -> char* { auto n = static_cast>(value); return detail::do_format_decimal(buffer_, n, buffer_size - 1); } template FMT_CONSTEXPR20 auto format_signed(Int value) -> char* { auto abs_value = static_cast>(value); bool negative = value < 0; if (negative) abs_value = 0 - abs_value; auto begin = format_unsigned(abs_value); if (negative) *--begin = '-'; return begin; } public: FMT_CONSTEXPR20 explicit format_int(int value) : str_(format_signed(value)) {} FMT_CONSTEXPR20 explicit format_int(long value) : str_(format_signed(value)) {} FMT_CONSTEXPR20 explicit format_int(long long value) : str_(format_signed(value)) {} FMT_CONSTEXPR20 explicit format_int(unsigned value) : str_(format_unsigned(value)) {} FMT_CONSTEXPR20 explicit format_int(unsigned long value) : str_(format_unsigned(value)) {} FMT_CONSTEXPR20 explicit format_int(unsigned long long value) : str_(format_unsigned(value)) {} /// Returns the number of characters written to the output buffer. FMT_CONSTEXPR20 auto size() const -> size_t { return detail::to_unsigned(buffer_ - str_ + buffer_size - 1); } /// Returns a pointer to the output buffer content. No terminating null /// character is appended. FMT_CONSTEXPR20 auto data() const -> const char* { return str_; } /// Returns a pointer to the output buffer content with terminating null /// character appended. FMT_CONSTEXPR20 auto c_str() const -> const char* { buffer_[buffer_size - 1] = '\0'; return str_; } /// Returns the content of the output buffer as an `std::string`. inline auto str() const -> std::string { return {str_, size()}; } }; #if FMT_CLANG_ANALYZER # define FMT_STRING_IMPL(s, base) s #else # define FMT_STRING_IMPL(s, base) \ [] { \ /* Use the hidden visibility as a workaround for a GCC bug (#1973). */ \ /* Use a macro-like name to avoid shadowing warnings. */ \ struct FMT_VISIBILITY("hidden") FMT_COMPILE_STRING : base { \ using char_type = fmt::remove_cvref_t; \ constexpr explicit operator fmt::basic_string_view() \ const { \ return fmt::detail::compile_string_to_view(s); \ } \ }; \ using FMT_STRING_VIEW = \ fmt::basic_string_view; \ fmt::detail::ignore_unused(FMT_STRING_VIEW(FMT_COMPILE_STRING())); \ return FMT_COMPILE_STRING(); \ }() #endif // FMT_CLANG_ANALYZER /** * Constructs a legacy compile-time format string from a string literal `s`. * * **Example**: * * // A compile-time error because 'd' is an invalid specifier for strings. * std::string s = fmt::format(FMT_STRING("{:d}"), "foo"); */ #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string) FMT_API auto vsystem_error(int error_code, string_view fmt, format_args args) -> std::system_error; /** * Constructs `std::system_error` with a message formatted with * `fmt::format(fmt, args...)`. * `error_code` is a system error code as given by `errno`. * * **Example**: * * // This throws std::system_error with the description * // cannot open file 'madeup': No such file or directory * // or similar (system message may vary). * const char* filename = "madeup"; * FILE* file = fopen(filename, "r"); * if (!file) * throw fmt::system_error(errno, "cannot open file '{}'", filename); */ template auto system_error(int error_code, format_string fmt, T&&... args) -> std::system_error { return vsystem_error(error_code, fmt.str, vargs{{args...}}); } /** * Formats an error message for an error returned by an operating system or a * language runtime, for example a file opening error, and writes it to `out`. * The format is the same as the one used by `std::system_error(ec, message)` * where `ec` is `std::error_code(error_code, std::generic_category())`. * It is implementation-defined but normally looks like: * * : * * where `` is the passed message and `` is the system * message corresponding to the error code. * `error_code` is a system error code as given by `errno`. */ FMT_API void format_system_error(detail::buffer& out, int error_code, const char* message) noexcept; // Reports a system error without throwing an exception. // Can be used to report errors from destructors. FMT_API void report_system_error(int error_code, const char* message) noexcept; inline auto vformat(locale_ref loc, string_view fmt, format_args args) -> std::string { auto buf = memory_buffer(); detail::vformat_to(buf, fmt, args, loc); return {buf.data(), buf.size()}; } template FMT_INLINE auto format(locale_ref loc, format_string fmt, T&&... args) -> std::string { return vformat(loc, fmt.str, vargs{{args...}}); } template ::value)> auto vformat_to(OutputIt out, locale_ref loc, string_view fmt, format_args args) -> OutputIt { auto&& buf = detail::get_buffer(out); detail::vformat_to(buf, fmt, args, loc); return detail::get_iterator(buf, out); } template ::value)> FMT_INLINE auto format_to(OutputIt out, locale_ref loc, format_string fmt, T&&... args) -> OutputIt { return fmt::vformat_to(out, loc, fmt.str, vargs{{args...}}); } template FMT_NODISCARD FMT_INLINE auto formatted_size(locale_ref loc, format_string fmt, T&&... args) -> size_t { auto buf = detail::counting_buffer<>(); detail::vformat_to(buf, fmt.str, vargs{{args...}}, loc); return buf.count(); } FMT_API auto vformat(string_view fmt, format_args args) -> std::string; /** * Formats `args` according to specifications in `fmt` and returns the result * as a string. * * **Example**: * * #include * std::string message = fmt::format("The answer is {}.", 42); */ template FMT_NODISCARD FMT_INLINE auto format(format_string fmt, T&&... args) -> std::string { return vformat(fmt.str, vargs{{args...}}); } /** * Converts `value` to `std::string` using the default format for type `T`. * * **Example**: * * std::string answer = fmt::to_string(42); */ template ::value)> FMT_NODISCARD FMT_CONSTEXPR_STRING auto to_string(T value) -> std::string { // The buffer should be large enough to store the number including the sign // or "false" for bool. char buffer[max_of(detail::digits10() + 2, 5)]; return {buffer, detail::write(buffer, value)}; } template ::value)> FMT_NODISCARD FMT_CONSTEXPR_STRING auto to_string(const T& value) -> std::string { return to_string(format_as(value)); } template ::value && !detail::use_format_as::value)> FMT_NODISCARD FMT_CONSTEXPR_STRING auto to_string(const T& value) -> std::string { auto buffer = memory_buffer(); detail::write(appender(buffer), value); return {buffer.data(), buffer.size()}; } FMT_END_EXPORT FMT_END_NAMESPACE #ifdef FMT_HEADER_ONLY # define FMT_FUNC inline # include "format-inl.h" #endif // Restore _LIBCPP_REMOVE_TRANSITIVE_INCLUDES. #ifdef FMT_REMOVE_TRANSITIVE_INCLUDES # undef _LIBCPP_REMOVE_TRANSITIVE_INCLUDES #endif #endif // FMT_FORMAT_H_ btop-1.4.5/include/fmt/os.h000066400000000000000000000310231506333644200154750ustar00rootroot00000000000000// Formatting library for C++ - optional OS-specific functionality // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_OS_H_ #define FMT_OS_H_ #include "format.h" #ifndef FMT_MODULE # include # include # include # include // std::system_error # if FMT_HAS_INCLUDE() # include // LC_NUMERIC_MASK on macOS # endif #endif // FMT_MODULE #ifndef FMT_USE_FCNTL // UWP doesn't provide _pipe. # if FMT_HAS_INCLUDE("winapifamily.h") # include # endif # if (FMT_HAS_INCLUDE() || defined(__APPLE__) || \ defined(__linux__)) && \ (!defined(WINAPI_FAMILY) || \ (WINAPI_FAMILY == WINAPI_FAMILY_DESKTOP_APP)) && \ !defined(__wasm__) # include // for O_RDONLY # define FMT_USE_FCNTL 1 # else # define FMT_USE_FCNTL 0 # endif #endif #ifndef FMT_POSIX # if defined(_WIN32) && !defined(__MINGW32__) // Fix warnings about deprecated symbols. # define FMT_POSIX(call) _##call # else # define FMT_POSIX(call) call # endif #endif // Calls to system functions are wrapped in FMT_SYSTEM for testability. #ifdef FMT_SYSTEM # define FMT_HAS_SYSTEM # define FMT_POSIX_CALL(call) FMT_SYSTEM(call) #else # define FMT_SYSTEM(call) ::call # ifdef _WIN32 // Fix warnings about deprecated symbols. # define FMT_POSIX_CALL(call) ::_##call # else # define FMT_POSIX_CALL(call) ::call # endif #endif // Retries the expression while it evaluates to error_result and errno // equals to EINTR. #ifndef _WIN32 # define FMT_RETRY_VAL(result, expression, error_result) \ do { \ (result) = (expression); \ } while ((result) == (error_result) && errno == EINTR) #else # define FMT_RETRY_VAL(result, expression, error_result) result = (expression) #endif #define FMT_RETRY(result, expression) FMT_RETRY_VAL(result, expression, -1) FMT_BEGIN_NAMESPACE FMT_BEGIN_EXPORT /** * A reference to a null-terminated string. It can be constructed from a C * string or `std::string`. * * You can use one of the following type aliases for common character types: * * +---------------+-----------------------------+ * | Type | Definition | * +===============+=============================+ * | cstring_view | basic_cstring_view | * +---------------+-----------------------------+ * | wcstring_view | basic_cstring_view | * +---------------+-----------------------------+ * * This class is most useful as a parameter type for functions that wrap C APIs. */ template class basic_cstring_view { private: const Char* data_; public: /// Constructs a string reference object from a C string. basic_cstring_view(const Char* s) : data_(s) {} /// Constructs a string reference from an `std::string` object. basic_cstring_view(const std::basic_string& s) : data_(s.c_str()) {} /// Returns the pointer to a C string. auto c_str() const -> const Char* { return data_; } }; using cstring_view = basic_cstring_view; using wcstring_view = basic_cstring_view; #ifdef _WIN32 FMT_API const std::error_category& system_category() noexcept; namespace detail { FMT_API void format_windows_error(buffer& out, int error_code, const char* message) noexcept; } FMT_API std::system_error vwindows_error(int error_code, string_view fmt, format_args args); /** * Constructs a `std::system_error` object with the description of the form * * : * * where `` is the formatted message and `` is the * system message corresponding to the error code. * `error_code` is a Windows error code as given by `GetLastError`. * If `error_code` is not a valid error code such as -1, the system message * will look like "error -1". * * **Example**: * * // This throws a system_error with the description * // cannot open file 'madeup': The system cannot find the file * specified. * // or similar (system message may vary). * const char *filename = "madeup"; * LPOFSTRUCT of = LPOFSTRUCT(); * HFILE file = OpenFile(filename, &of, OF_READ); * if (file == HFILE_ERROR) { * throw fmt::windows_error(GetLastError(), * "cannot open file '{}'", filename); * } */ template auto windows_error(int error_code, string_view message, const T&... args) -> std::system_error { return vwindows_error(error_code, message, vargs{{args...}}); } // Reports a Windows error without throwing an exception. // Can be used to report errors from destructors. FMT_API void report_windows_error(int error_code, const char* message) noexcept; #else inline auto system_category() noexcept -> const std::error_category& { return std::system_category(); } #endif // _WIN32 // std::system is not available on some platforms such as iOS (#2248). #ifdef __OSX__ template > void say(const S& fmt, Args&&... args) { std::system(format("say \"{}\"", format(fmt, args...)).c_str()); } #endif // A buffered file. class buffered_file { private: FILE* file_; friend class file; inline explicit buffered_file(FILE* f) : file_(f) {} public: buffered_file(const buffered_file&) = delete; void operator=(const buffered_file&) = delete; // Constructs a buffered_file object which doesn't represent any file. inline buffered_file() noexcept : file_(nullptr) {} // Destroys the object closing the file it represents if any. FMT_API ~buffered_file() noexcept; public: inline buffered_file(buffered_file&& other) noexcept : file_(other.file_) { other.file_ = nullptr; } inline auto operator=(buffered_file&& other) -> buffered_file& { close(); file_ = other.file_; other.file_ = nullptr; return *this; } // Opens a file. FMT_API buffered_file(cstring_view filename, cstring_view mode); // Closes the file. FMT_API void close(); // Returns the pointer to a FILE object representing this file. inline auto get() const noexcept -> FILE* { return file_; } FMT_API auto descriptor() const -> int; template inline void print(string_view fmt, const T&... args) { fmt::vargs vargs = {{args...}}; detail::is_locking() ? fmt::vprint_buffered(file_, fmt, vargs) : fmt::vprint(file_, fmt, vargs); } }; #if FMT_USE_FCNTL // A file. Closed file is represented by a file object with descriptor -1. // Methods that are not declared with noexcept may throw // fmt::system_error in case of failure. Note that some errors such as // closing the file multiple times will cause a crash on Windows rather // than an exception. You can get standard behavior by overriding the // invalid parameter handler with _set_invalid_parameter_handler. class FMT_API file { private: int fd_; // File descriptor. // Constructs a file object with a given descriptor. explicit file(int fd) : fd_(fd) {} friend struct pipe; public: // Possible values for the oflag argument to the constructor. enum { RDONLY = FMT_POSIX(O_RDONLY), // Open for reading only. WRONLY = FMT_POSIX(O_WRONLY), // Open for writing only. RDWR = FMT_POSIX(O_RDWR), // Open for reading and writing. CREATE = FMT_POSIX(O_CREAT), // Create if the file doesn't exist. APPEND = FMT_POSIX(O_APPEND), // Open in append mode. TRUNC = FMT_POSIX(O_TRUNC) // Truncate the content of the file. }; // Constructs a file object which doesn't represent any file. inline file() noexcept : fd_(-1) {} // Opens a file and constructs a file object representing this file. file(cstring_view path, int oflag); public: file(const file&) = delete; void operator=(const file&) = delete; inline file(file&& other) noexcept : fd_(other.fd_) { other.fd_ = -1; } // Move assignment is not noexcept because close may throw. inline auto operator=(file&& other) -> file& { close(); fd_ = other.fd_; other.fd_ = -1; return *this; } // Destroys the object closing the file it represents if any. ~file() noexcept; // Returns the file descriptor. inline auto descriptor() const noexcept -> int { return fd_; } // Closes the file. void close(); // Returns the file size. The size has signed type for consistency with // stat::st_size. auto size() const -> long long; // Attempts to read count bytes from the file into the specified buffer. auto read(void* buffer, size_t count) -> size_t; // Attempts to write count bytes from the specified buffer to the file. auto write(const void* buffer, size_t count) -> size_t; // Duplicates a file descriptor with the dup function and returns // the duplicate as a file object. static auto dup(int fd) -> file; // Makes fd be the copy of this file descriptor, closing fd first if // necessary. void dup2(int fd); // Makes fd be the copy of this file descriptor, closing fd first if // necessary. void dup2(int fd, std::error_code& ec) noexcept; // Creates a buffered_file object associated with this file and detaches // this file object from the file. auto fdopen(const char* mode) -> buffered_file; # if defined(_WIN32) && !defined(__MINGW32__) // Opens a file and constructs a file object representing this file by // wcstring_view filename. Windows only. static file open_windows_file(wcstring_view path, int oflag); # endif }; struct FMT_API pipe { file read_end; file write_end; // Creates a pipe setting up read_end and write_end file objects for reading // and writing respectively. pipe(); }; // Returns the memory page size. auto getpagesize() -> long; namespace detail { struct buffer_size { constexpr buffer_size() = default; size_t value = 0; FMT_CONSTEXPR auto operator=(size_t val) const -> buffer_size { auto bs = buffer_size(); bs.value = val; return bs; } }; struct ostream_params { int oflag = file::WRONLY | file::CREATE | file::TRUNC; size_t buffer_size = BUFSIZ > 32768 ? BUFSIZ : 32768; constexpr ostream_params() {} template ostream_params(T... params, int new_oflag) : ostream_params(params...) { oflag = new_oflag; } template ostream_params(T... params, detail::buffer_size bs) : ostream_params(params...) { this->buffer_size = bs.value; } // Intel has a bug that results in failure to deduce a constructor // for empty parameter packs. # if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 2000 ostream_params(int new_oflag) : oflag(new_oflag) {} ostream_params(detail::buffer_size bs) : buffer_size(bs.value) {} # endif }; } // namespace detail FMT_INLINE_VARIABLE constexpr auto buffer_size = detail::buffer_size(); /// A fast buffered output stream for writing from a single thread. Writing from /// multiple threads without external synchronization may result in a data race. class FMT_API ostream : private detail::buffer { private: file file_; ostream(cstring_view path, const detail::ostream_params& params); static void grow(buffer& buf, size_t); public: ostream(ostream&& other) noexcept; ~ostream(); operator writer() { detail::buffer& buf = *this; return buf; } inline void flush() { if (size() == 0) return; file_.write(data(), size() * sizeof(data()[0])); clear(); } template friend auto output_file(cstring_view path, T... params) -> ostream; inline void close() { flush(); file_.close(); } /// Formats `args` according to specifications in `fmt` and writes the /// output to the file. template void print(format_string fmt, T&&... args) { vformat_to(appender(*this), fmt.str, vargs{{args...}}); } }; /** * Opens a file for writing. Supported parameters passed in `params`: * * - ``: Flags passed to [open]( * https://pubs.opengroup.org/onlinepubs/007904875/functions/open.html) * (`file::WRONLY | file::CREATE | file::TRUNC` by default) * - `buffer_size=`: Output buffer size * * **Example**: * * auto out = fmt::output_file("guide.txt"); * out.print("Don't {}", "Panic"); */ template inline auto output_file(cstring_view path, T... params) -> ostream { return {path, detail::ostream_params(params...)}; } #endif // FMT_USE_FCNTL FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_OS_H_ btop-1.4.5/include/fmt/ostream.h000066400000000000000000000116431506333644200165340ustar00rootroot00000000000000// Formatting library for C++ - std::ostream support // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_OSTREAM_H_ #define FMT_OSTREAM_H_ #ifndef FMT_MODULE # include // std::filebuf #endif #ifdef _WIN32 # ifdef __GLIBCXX__ # include # include # endif # include #endif #include "chrono.h" // formatbuf #ifdef _MSVC_STL_UPDATE # define FMT_MSVC_STL_UPDATE _MSVC_STL_UPDATE #elif defined(_MSC_VER) && _MSC_VER < 1912 // VS 15.5 # define FMT_MSVC_STL_UPDATE _MSVC_LANG #else # define FMT_MSVC_STL_UPDATE 0 #endif FMT_BEGIN_NAMESPACE namespace detail { // Generate a unique explicit instantiation in every translation unit using a // tag type in an anonymous namespace. namespace { struct file_access_tag {}; } // namespace template class file_access { friend auto get_file(BufType& obj) -> FILE* { return obj.*FileMemberPtr; } }; #if FMT_MSVC_STL_UPDATE template class file_access; auto get_file(std::filebuf&) -> FILE*; #endif // Write the content of buf to os. // It is a separate function rather than a part of vprint to simplify testing. template void write_buffer(std::basic_ostream& os, buffer& buf) { const Char* buf_data = buf.data(); using unsigned_streamsize = make_unsigned_t; unsigned_streamsize size = buf.size(); unsigned_streamsize max_size = to_unsigned(max_value()); do { unsigned_streamsize n = size <= max_size ? size : max_size; os.write(buf_data, static_cast(n)); buf_data += n; size -= n; } while (size != 0); } template struct streamed_view { const T& value; }; } // namespace detail // Formats an object of type T that has an overloaded ostream operator<<. template struct basic_ostream_formatter : formatter, Char> { void set_debug_format() = delete; template auto format(const T& value, Context& ctx) const -> decltype(ctx.out()) { auto buffer = basic_memory_buffer(); auto&& formatbuf = detail::formatbuf>(buffer); auto&& output = std::basic_ostream(&formatbuf); output.imbue(std::locale::classic()); // The default is always unlocalized. output << value; output.exceptions(std::ios_base::failbit | std::ios_base::badbit); return formatter, Char>::format( {buffer.data(), buffer.size()}, ctx); } }; using ostream_formatter = basic_ostream_formatter; template struct formatter, Char> : basic_ostream_formatter { template auto format(detail::streamed_view view, Context& ctx) const -> decltype(ctx.out()) { return basic_ostream_formatter::format(view.value, ctx); } }; /** * Returns a view that formats `value` via an ostream `operator<<`. * * **Example**: * * fmt::print("Current thread id: {}\n", * fmt::streamed(std::this_thread::get_id())); */ template constexpr auto streamed(const T& value) -> detail::streamed_view { return {value}; } inline void vprint(std::ostream& os, string_view fmt, format_args args) { auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); FILE* f = nullptr; #if FMT_MSVC_STL_UPDATE && FMT_USE_RTTI if (auto* buf = dynamic_cast(os.rdbuf())) f = detail::get_file(*buf); #elif defined(_WIN32) && defined(__GLIBCXX__) && FMT_USE_RTTI auto* rdbuf = os.rdbuf(); if (auto* sfbuf = dynamic_cast<__gnu_cxx::stdio_sync_filebuf*>(rdbuf)) f = sfbuf->file(); else if (auto* fbuf = dynamic_cast<__gnu_cxx::stdio_filebuf*>(rdbuf)) f = fbuf->file(); #endif #ifdef _WIN32 if (f) { int fd = _fileno(f); if (_isatty(fd)) { os.flush(); if (detail::write_console(fd, {buffer.data(), buffer.size()})) return; } } #endif detail::ignore_unused(f); detail::write_buffer(os, buffer); } /** * Prints formatted data to the stream `os`. * * **Example**: * * fmt::print(cerr, "Don't {}!", "panic"); */ FMT_EXPORT template void print(std::ostream& os, format_string fmt, T&&... args) { fmt::vargs vargs = {{args...}}; if (detail::const_check(detail::use_utf8)) return vprint(os, fmt.str, vargs); auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt.str, vargs); detail::write_buffer(os, buffer); } FMT_EXPORT template void println(std::ostream& os, format_string fmt, T&&... args) { fmt::print(os, FMT_STRING("{}\n"), fmt::format(fmt, std::forward(args)...)); } FMT_END_NAMESPACE #endif // FMT_OSTREAM_H_ btop-1.4.5/include/fmt/printf.h000066400000000000000000000470271506333644200163710ustar00rootroot00000000000000// Formatting library for C++ - legacy printf implementation // // Copyright (c) 2012 - 2016, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_PRINTF_H_ #define FMT_PRINTF_H_ #ifndef FMT_MODULE # include // std::find # include // std::numeric_limits #endif #include "format.h" FMT_BEGIN_NAMESPACE FMT_BEGIN_EXPORT template class basic_printf_context { private: basic_appender out_; basic_format_args args_; static_assert(std::is_same::value || std::is_same::value, "Unsupported code unit type."); public: using char_type = Char; enum { builtin_types = 1 }; /// Constructs a `printf_context` object. References to the arguments are /// stored in the context object so make sure they have appropriate lifetimes. basic_printf_context(basic_appender out, basic_format_args args) : out_(out), args_(args) {} auto out() -> basic_appender { return out_; } void advance_to(basic_appender) {} auto locale() -> locale_ref { return {}; } auto arg(int id) const -> basic_format_arg { return args_.get(id); } }; namespace detail { // Return the result via the out param to workaround gcc bug 77539. template FMT_CONSTEXPR auto find(Ptr first, Ptr last, T value, Ptr& out) -> bool { for (out = first; out != last; ++out) { if (*out == value) return true; } return false; } template <> inline auto find(const char* first, const char* last, char value, const char*& out) -> bool { out = static_cast(memchr(first, value, to_unsigned(last - first))); return out != nullptr; } // Checks if a value fits in int - used to avoid warnings about comparing // signed and unsigned integers. template struct int_checker { template static auto fits_in_int(T value) -> bool { return value <= to_unsigned(max_value()); } inline static auto fits_in_int(bool) -> bool { return true; } }; template <> struct int_checker { template static auto fits_in_int(T value) -> bool { return value >= (std::numeric_limits::min)() && value <= max_value(); } inline static auto fits_in_int(int) -> bool { return true; } }; struct printf_precision_handler { template ::value)> auto operator()(T value) -> int { if (!int_checker::is_signed>::fits_in_int(value)) report_error("number is too big"); return max_of(static_cast(value), 0); } template ::value)> auto operator()(T) -> int { report_error("precision is not integer"); return 0; } }; // An argument visitor that returns true iff arg is a zero integer. struct is_zero_int { template ::value)> auto operator()(T value) -> bool { return value == 0; } template ::value)> auto operator()(T) -> bool { return false; } }; template struct make_unsigned_or_bool : std::make_unsigned {}; template <> struct make_unsigned_or_bool { using type = bool; }; template class arg_converter { private: using char_type = typename Context::char_type; basic_format_arg& arg_; char_type type_; public: arg_converter(basic_format_arg& arg, char_type type) : arg_(arg), type_(type) {} void operator()(bool value) { if (type_ != 's') operator()(value); } template ::value)> void operator()(U value) { bool is_signed = type_ == 'd' || type_ == 'i'; using target_type = conditional_t::value, U, T>; if (const_check(sizeof(target_type) <= sizeof(int))) { // Extra casts are used to silence warnings. using unsigned_type = typename make_unsigned_or_bool::type; if (is_signed) arg_ = static_cast(static_cast(value)); else arg_ = static_cast(static_cast(value)); } else { // glibc's printf doesn't sign extend arguments of smaller types: // std::printf("%lld", -42); // prints "4294967254" // but we don't have to do the same because it's a UB. if (is_signed) arg_ = static_cast(value); else arg_ = static_cast::type>(value); } } template ::value)> void operator()(U) {} // No conversion needed for non-integral types. }; // Converts an integer argument to T for printf, if T is an integral type. // If T is void, the argument is converted to corresponding signed or unsigned // type depending on the type specifier: 'd' and 'i' - signed, other - // unsigned). template void convert_arg(basic_format_arg& arg, Char type) { arg.visit(arg_converter(arg, type)); } // Converts an integer argument to char for printf. template class char_converter { private: basic_format_arg& arg_; public: explicit char_converter(basic_format_arg& arg) : arg_(arg) {} template ::value)> void operator()(T value) { arg_ = static_cast(value); } template ::value)> void operator()(T) {} // No conversion needed for non-integral types. }; // An argument visitor that return a pointer to a C string if argument is a // string or null otherwise. template struct get_cstring { template auto operator()(T) -> const Char* { return nullptr; } auto operator()(const Char* s) -> const Char* { return s; } }; // Checks if an argument is a valid printf width specifier and sets // left alignment if it is negative. class printf_width_handler { private: format_specs& specs_; public: inline explicit printf_width_handler(format_specs& specs) : specs_(specs) {} template ::value)> auto operator()(T value) -> unsigned { auto width = static_cast>(value); if (detail::is_negative(value)) { specs_.set_align(align::left); width = 0 - width; } unsigned int_max = to_unsigned(max_value()); if (width > int_max) report_error("number is too big"); return static_cast(width); } template ::value)> auto operator()(T) -> unsigned { report_error("width is not integer"); return 0; } }; // Workaround for a bug with the XL compiler when initializing // printf_arg_formatter's base class. template auto make_arg_formatter(basic_appender iter, format_specs& s) -> arg_formatter { return {iter, s, locale_ref()}; } // The `printf` argument formatter. template class printf_arg_formatter : public arg_formatter { private: using base = arg_formatter; using context_type = basic_printf_context; context_type& context_; void write_null_pointer(bool is_string = false) { auto s = this->specs; s.set_type(presentation_type::none); write_bytes(this->out, is_string ? "(null)" : "(nil)", s); } template void write(T value) { detail::write(this->out, value, this->specs, this->locale); } public: printf_arg_formatter(basic_appender iter, format_specs& s, context_type& ctx) : base(make_arg_formatter(iter, s)), context_(ctx) {} void operator()(monostate value) { write(value); } template ::value)> void operator()(T value) { // MSVC2013 fails to compile separate overloads for bool and Char so use // std::is_same instead. if (!std::is_same::value) { write(value); return; } format_specs s = this->specs; if (s.type() != presentation_type::none && s.type() != presentation_type::chr) { return (*this)(static_cast(value)); } s.set_sign(sign::none); s.clear_alt(); s.set_fill(' '); // Ignore '0' flag for char types. // align::numeric needs to be overwritten here since the '0' flag is // ignored for non-numeric types if (s.align() == align::none || s.align() == align::numeric) s.set_align(align::right); detail::write(this->out, static_cast(value), s); } template ::value)> void operator()(T value) { write(value); } void operator()(const char* value) { if (value) write(value); else write_null_pointer(this->specs.type() != presentation_type::pointer); } void operator()(const wchar_t* value) { if (value) write(value); else write_null_pointer(this->specs.type() != presentation_type::pointer); } void operator()(basic_string_view value) { write(value); } void operator()(const void* value) { if (value) write(value); else write_null_pointer(); } void operator()(typename basic_format_arg::handle handle) { auto parse_ctx = parse_context({}); handle.format(parse_ctx, context_); } }; template void parse_flags(format_specs& specs, const Char*& it, const Char* end) { for (; it != end; ++it) { switch (*it) { case '-': specs.set_align(align::left); break; case '+': specs.set_sign(sign::plus); break; case '0': specs.set_fill('0'); break; case ' ': if (specs.sign() != sign::plus) specs.set_sign(sign::space); break; case '#': specs.set_alt(); break; default: return; } } } template auto parse_header(const Char*& it, const Char* end, format_specs& specs, GetArg get_arg) -> int { int arg_index = -1; Char c = *it; if (c >= '0' && c <= '9') { // Parse an argument index (if followed by '$') or a width possibly // preceded with '0' flag(s). int value = parse_nonnegative_int(it, end, -1); if (it != end && *it == '$') { // value is an argument index ++it; arg_index = value != -1 ? value : max_value(); } else { if (c == '0') specs.set_fill('0'); if (value != 0) { // Nonzero value means that we parsed width and don't need to // parse it or flags again, so return now. if (value == -1) report_error("number is too big"); specs.width = value; return arg_index; } } } parse_flags(specs, it, end); // Parse width. if (it != end) { if (*it >= '0' && *it <= '9') { specs.width = parse_nonnegative_int(it, end, -1); if (specs.width == -1) report_error("number is too big"); } else if (*it == '*') { ++it; specs.width = static_cast( get_arg(-1).visit(detail::printf_width_handler(specs))); } } return arg_index; } inline auto parse_printf_presentation_type(char c, type t, bool& upper) -> presentation_type { using pt = presentation_type; constexpr auto integral_set = sint_set | uint_set | bool_set | char_set; switch (c) { case 'd': return in(t, integral_set) ? pt::dec : pt::none; case 'o': return in(t, integral_set) ? pt::oct : pt::none; case 'X': upper = true; FMT_FALLTHROUGH; case 'x': return in(t, integral_set) ? pt::hex : pt::none; case 'E': upper = true; FMT_FALLTHROUGH; case 'e': return in(t, float_set) ? pt::exp : pt::none; case 'F': upper = true; FMT_FALLTHROUGH; case 'f': return in(t, float_set) ? pt::fixed : pt::none; case 'G': upper = true; FMT_FALLTHROUGH; case 'g': return in(t, float_set) ? pt::general : pt::none; case 'A': upper = true; FMT_FALLTHROUGH; case 'a': return in(t, float_set) ? pt::hexfloat : pt::none; case 'c': return in(t, integral_set) ? pt::chr : pt::none; case 's': return in(t, string_set | cstring_set) ? pt::string : pt::none; case 'p': return in(t, pointer_set | cstring_set) ? pt::pointer : pt::none; default: return pt::none; } } template void vprintf(buffer& buf, basic_string_view format, basic_format_args args) { using iterator = basic_appender; auto out = iterator(buf); auto context = basic_printf_context(out, args); auto parse_ctx = parse_context(format); // Returns the argument with specified index or, if arg_index is -1, the next // argument. auto get_arg = [&](int arg_index) { if (arg_index < 0) arg_index = parse_ctx.next_arg_id(); else parse_ctx.check_arg_id(--arg_index); auto arg = context.arg(arg_index); if (!arg) report_error("argument not found"); return arg; }; const Char* start = parse_ctx.begin(); const Char* end = parse_ctx.end(); auto it = start; while (it != end) { if (!find(it, end, '%', it)) { it = end; // find leaves it == nullptr if it doesn't find '%'. break; } Char c = *it++; if (it != end && *it == c) { write(out, basic_string_view(start, to_unsigned(it - start))); start = ++it; continue; } write(out, basic_string_view(start, to_unsigned(it - 1 - start))); auto specs = format_specs(); specs.set_align(align::right); // Parse argument index, flags and width. int arg_index = parse_header(it, end, specs, get_arg); if (arg_index == 0) report_error("argument not found"); // Parse precision. if (it != end && *it == '.') { ++it; c = it != end ? *it : 0; if ('0' <= c && c <= '9') { specs.precision = parse_nonnegative_int(it, end, 0); } else if (c == '*') { ++it; specs.precision = static_cast(get_arg(-1).visit(printf_precision_handler())); } else { specs.precision = 0; } } auto arg = get_arg(arg_index); // For d, i, o, u, x, and X conversion specifiers, if a precision is // specified, the '0' flag is ignored if (specs.precision >= 0 && is_integral_type(arg.type())) { // Ignore '0' for non-numeric types or if '-' present. specs.set_fill(' '); } if (specs.precision >= 0 && arg.type() == type::cstring_type) { auto str = arg.visit(get_cstring()); auto str_end = str + specs.precision; auto nul = std::find(str, str_end, Char()); auto sv = basic_string_view( str, to_unsigned(nul != str_end ? nul - str : specs.precision)); arg = sv; } if (specs.alt() && arg.visit(is_zero_int())) specs.clear_alt(); if (specs.fill_unit() == '0') { if (is_arithmetic_type(arg.type()) && specs.align() != align::left) { specs.set_align(align::numeric); } else { // Ignore '0' flag for non-numeric types or if '-' flag is also present. specs.set_fill(' '); } } // Parse length and convert the argument to the required type. c = it != end ? *it++ : 0; Char t = it != end ? *it : 0; switch (c) { case 'h': if (t == 'h') { ++it; t = it != end ? *it : 0; convert_arg(arg, t); } else { convert_arg(arg, t); } break; case 'l': if (t == 'l') { ++it; t = it != end ? *it : 0; convert_arg(arg, t); } else { convert_arg(arg, t); } break; case 'j': convert_arg(arg, t); break; case 'z': convert_arg(arg, t); break; case 't': convert_arg(arg, t); break; case 'L': // printf produces garbage when 'L' is omitted for long double, no // need to do the same. break; default: --it; convert_arg(arg, c); } // Parse type. if (it == end) report_error("invalid format string"); char type = static_cast(*it++); if (is_integral_type(arg.type())) { // Normalize type. switch (type) { case 'i': case 'u': type = 'd'; break; case 'c': arg.visit(char_converter>(arg)); break; } } bool upper = false; specs.set_type(parse_printf_presentation_type(type, arg.type(), upper)); if (specs.type() == presentation_type::none) report_error("invalid format specifier"); if (upper) specs.set_upper(); start = it; // Format argument. arg.visit(printf_arg_formatter(out, specs, context)); } write(out, basic_string_view(start, to_unsigned(it - start))); } } // namespace detail using printf_context = basic_printf_context; using wprintf_context = basic_printf_context; using printf_args = basic_format_args; using wprintf_args = basic_format_args; /// Constructs an `format_arg_store` object that contains references to /// arguments and can be implicitly converted to `printf_args`. template inline auto make_printf_args(T&... args) -> decltype(fmt::make_format_args>(args...)) { return fmt::make_format_args>(args...); } template struct vprintf_args { using type = basic_format_args>; }; template inline auto vsprintf(basic_string_view fmt, typename vprintf_args::type args) -> std::basic_string { auto buf = basic_memory_buffer(); detail::vprintf(buf, fmt, args); return {buf.data(), buf.size()}; } /** * Formats `args` according to specifications in `fmt` and returns the result * as as string. * * **Example**: * * std::string message = fmt::sprintf("The answer is %d", 42); */ template inline auto sprintf(string_view fmt, const T&... args) -> std::string { return vsprintf(fmt, make_printf_args(args...)); } template FMT_DEPRECATED auto sprintf(basic_string_view fmt, const T&... args) -> std::wstring { return vsprintf(fmt, make_printf_args(args...)); } template auto vfprintf(std::FILE* f, basic_string_view fmt, typename vprintf_args::type args) -> int { auto buf = basic_memory_buffer(); detail::vprintf(buf, fmt, args); size_t size = buf.size(); return std::fwrite(buf.data(), sizeof(Char), size, f) < size ? -1 : static_cast(size); } /** * Formats `args` according to specifications in `fmt` and writes the output * to `f`. * * **Example**: * * fmt::fprintf(stderr, "Don't %s!", "panic"); */ template inline auto fprintf(std::FILE* f, string_view fmt, const T&... args) -> int { return vfprintf(f, fmt, make_printf_args(args...)); } template FMT_DEPRECATED auto fprintf(std::FILE* f, basic_string_view fmt, const T&... args) -> int { return vfprintf(f, fmt, make_printf_args(args...)); } /** * Formats `args` according to specifications in `fmt` and writes the output * to `stdout`. * * **Example**: * * fmt::printf("Elapsed time: %.2f seconds", 1.23); */ template inline auto printf(string_view fmt, const T&... args) -> int { return vfprintf(stdout, fmt, make_printf_args(args...)); } FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_PRINTF_H_ btop-1.4.5/include/fmt/ranges.h000066400000000000000000000670061506333644200163450ustar00rootroot00000000000000// Formatting library for C++ - range and tuple support // // Copyright (c) 2012 - present, Victor Zverovich and {fmt} contributors // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_RANGES_H_ #define FMT_RANGES_H_ #ifndef FMT_MODULE # include # include # include # include # include #endif #include "format.h" FMT_BEGIN_NAMESPACE FMT_EXPORT enum class range_format { disabled, map, set, sequence, string, debug_string }; namespace detail { template class is_map { template static auto check(U*) -> typename U::mapped_type; template static void check(...); public: static constexpr bool value = !std::is_void(nullptr))>::value; }; template class is_set { template static auto check(U*) -> typename U::key_type; template static void check(...); public: static constexpr bool value = !std::is_void(nullptr))>::value && !is_map::value; }; // C array overload template auto range_begin(const T (&arr)[N]) -> const T* { return arr; } template auto range_end(const T (&arr)[N]) -> const T* { return arr + N; } template struct has_member_fn_begin_end_t : std::false_type {}; template struct has_member_fn_begin_end_t().begin()), decltype(std::declval().end())>> : std::true_type {}; // Member function overloads. template auto range_begin(T&& rng) -> decltype(static_cast(rng).begin()) { return static_cast(rng).begin(); } template auto range_end(T&& rng) -> decltype(static_cast(rng).end()) { return static_cast(rng).end(); } // ADL overloads. Only participate in overload resolution if member functions // are not found. template auto range_begin(T&& rng) -> enable_if_t::value, decltype(begin(static_cast(rng)))> { return begin(static_cast(rng)); } template auto range_end(T&& rng) -> enable_if_t::value, decltype(end(static_cast(rng)))> { return end(static_cast(rng)); } template struct has_const_begin_end : std::false_type {}; template struct has_mutable_begin_end : std::false_type {}; template struct has_const_begin_end< T, void_t&>())), decltype(detail::range_end( std::declval&>()))>> : std::true_type {}; template struct has_mutable_begin_end< T, void_t())), decltype(detail::range_end(std::declval())), // the extra int here is because older versions of MSVC don't // SFINAE properly unless there are distinct types int>> : std::true_type {}; template struct is_range_ : std::false_type {}; template struct is_range_ : std::integral_constant::value || has_mutable_begin_end::value)> {}; // tuple_size and tuple_element check. template class is_tuple_like_ { template ::type> static auto check(U* p) -> decltype(std::tuple_size::value, 0); template static void check(...); public: static constexpr bool value = !std::is_void(nullptr))>::value; }; // Check for integer_sequence #if defined(__cpp_lib_integer_sequence) || FMT_MSC_VERSION >= 1900 template using integer_sequence = std::integer_sequence; template using index_sequence = std::index_sequence; template using make_index_sequence = std::make_index_sequence; #else template struct integer_sequence { using value_type = T; static FMT_CONSTEXPR auto size() -> size_t { return sizeof...(N); } }; template using index_sequence = integer_sequence; template struct make_integer_sequence : make_integer_sequence {}; template struct make_integer_sequence : integer_sequence {}; template using make_index_sequence = make_integer_sequence; #endif template using tuple_index_sequence = make_index_sequence::value>; template ::value> class is_tuple_formattable_ { public: static constexpr bool value = false; }; template class is_tuple_formattable_ { template static auto all_true(index_sequence, integer_sequence= 0)...>) -> std::true_type; static auto all_true(...) -> std::false_type; template static auto check(index_sequence) -> decltype(all_true( index_sequence{}, integer_sequence::type, C>::value)...>{})); public: static constexpr bool value = decltype(check(tuple_index_sequence{}))::value; }; template FMT_CONSTEXPR void for_each(index_sequence, Tuple&& t, F&& f) { using std::get; // Using a free function get(Tuple) now. const int unused[] = {0, ((void)f(get(t)), 0)...}; ignore_unused(unused); } template FMT_CONSTEXPR void for_each(Tuple&& t, F&& f) { for_each(tuple_index_sequence>(), std::forward(t), std::forward(f)); } template void for_each2(index_sequence, Tuple1&& t1, Tuple2&& t2, F&& f) { using std::get; const int unused[] = {0, ((void)f(get(t1), get(t2)), 0)...}; ignore_unused(unused); } template void for_each2(Tuple1&& t1, Tuple2&& t2, F&& f) { for_each2(tuple_index_sequence>(), std::forward(t1), std::forward(t2), std::forward(f)); } namespace tuple { // Workaround a bug in MSVC 2019 (v140). template using result_t = std::tuple, Char>...>; using std::get; template auto get_formatters(index_sequence) -> result_t(std::declval()))...>; } // namespace tuple #if FMT_MSC_VERSION && FMT_MSC_VERSION < 1920 // Older MSVC doesn't get the reference type correctly for arrays. template struct range_reference_type_impl { using type = decltype(*detail::range_begin(std::declval())); }; template struct range_reference_type_impl { using type = T&; }; template using range_reference_type = typename range_reference_type_impl::type; #else template using range_reference_type = decltype(*detail::range_begin(std::declval())); #endif // We don't use the Range's value_type for anything, but we do need the Range's // reference type, with cv-ref stripped. template using uncvref_type = remove_cvref_t>; template FMT_CONSTEXPR auto maybe_set_debug_format(Formatter& f, bool set) -> decltype(f.set_debug_format(set)) { f.set_debug_format(set); } template FMT_CONSTEXPR void maybe_set_debug_format(Formatter&, ...) {} template struct range_format_kind_ : std::integral_constant, T>::value ? range_format::disabled : is_map::value ? range_format::map : is_set::value ? range_format::set : range_format::sequence> {}; template using range_format_constant = std::integral_constant; // These are not generic lambdas for compatibility with C++11. template struct parse_empty_specs { template FMT_CONSTEXPR void operator()(Formatter& f) { f.parse(ctx); detail::maybe_set_debug_format(f, true); } parse_context& ctx; }; template struct format_tuple_element { using char_type = typename FormatContext::char_type; template void operator()(const formatter& f, const T& v) { if (i > 0) ctx.advance_to(detail::copy(separator, ctx.out())); ctx.advance_to(f.format(v, ctx)); ++i; } int i; FormatContext& ctx; basic_string_view separator; }; } // namespace detail FMT_EXPORT template struct is_tuple_like { static constexpr bool value = detail::is_tuple_like_::value && !detail::is_range_::value; }; FMT_EXPORT template struct is_tuple_formattable { static constexpr bool value = detail::is_tuple_formattable_::value; }; template struct formatter::value && fmt::is_tuple_formattable::value>> { private: decltype(detail::tuple::get_formatters( detail::tuple_index_sequence())) formatters_; basic_string_view separator_ = detail::string_literal{}; basic_string_view opening_bracket_ = detail::string_literal{}; basic_string_view closing_bracket_ = detail::string_literal{}; public: FMT_CONSTEXPR formatter() {} FMT_CONSTEXPR void set_separator(basic_string_view sep) { separator_ = sep; } FMT_CONSTEXPR void set_brackets(basic_string_view open, basic_string_view close) { opening_bracket_ = open; closing_bracket_ = close; } FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(); auto end = ctx.end(); if (it != end && detail::to_ascii(*it) == 'n') { ++it; set_brackets({}, {}); set_separator({}); } if (it != end && *it != '}') report_error("invalid format specifier"); ctx.advance_to(it); detail::for_each(formatters_, detail::parse_empty_specs{ctx}); return it; } template auto format(const Tuple& value, FormatContext& ctx) const -> decltype(ctx.out()) { ctx.advance_to(detail::copy(opening_bracket_, ctx.out())); detail::for_each2( formatters_, value, detail::format_tuple_element{0, ctx, separator_}); return detail::copy(closing_bracket_, ctx.out()); } }; FMT_EXPORT template struct is_range { static constexpr bool value = detail::is_range_::value && !detail::has_to_string_view::value; }; namespace detail { template using range_formatter_type = formatter, Char>; template using maybe_const_range = conditional_t::value, const R, R>; template struct is_formattable_delayed : is_formattable>, Char> {}; } // namespace detail template struct conjunction : std::true_type {}; template struct conjunction

: P {}; template struct conjunction : conditional_t, P1> {}; FMT_EXPORT template struct range_formatter; template struct range_formatter< T, Char, enable_if_t>, is_formattable>::value>> { private: detail::range_formatter_type underlying_; basic_string_view separator_ = detail::string_literal{}; basic_string_view opening_bracket_ = detail::string_literal{}; basic_string_view closing_bracket_ = detail::string_literal{}; bool is_debug = false; template ::value)> auto write_debug_string(Output& out, It it, Sentinel end) const -> Output { auto buf = basic_memory_buffer(); for (; it != end; ++it) buf.push_back(*it); auto specs = format_specs(); specs.set_type(presentation_type::debug); return detail::write( out, basic_string_view(buf.data(), buf.size()), specs); } template ::value)> auto write_debug_string(Output& out, It, Sentinel) const -> Output { return out; } public: FMT_CONSTEXPR range_formatter() {} FMT_CONSTEXPR auto underlying() -> detail::range_formatter_type& { return underlying_; } FMT_CONSTEXPR void set_separator(basic_string_view sep) { separator_ = sep; } FMT_CONSTEXPR void set_brackets(basic_string_view open, basic_string_view close) { opening_bracket_ = open; closing_bracket_ = close; } FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(); auto end = ctx.end(); detail::maybe_set_debug_format(underlying_, true); if (it == end) return underlying_.parse(ctx); switch (detail::to_ascii(*it)) { case 'n': set_brackets({}, {}); ++it; break; case '?': is_debug = true; set_brackets({}, {}); ++it; if (it == end || *it != 's') report_error("invalid format specifier"); FMT_FALLTHROUGH; case 's': if (!std::is_same::value) report_error("invalid format specifier"); if (!is_debug) { set_brackets(detail::string_literal{}, detail::string_literal{}); set_separator({}); detail::maybe_set_debug_format(underlying_, false); } ++it; return it; } if (it != end && *it != '}') { if (*it != ':') report_error("invalid format specifier"); detail::maybe_set_debug_format(underlying_, false); ++it; } ctx.advance_to(it); return underlying_.parse(ctx); } template auto format(R&& range, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); auto it = detail::range_begin(range); auto end = detail::range_end(range); if (is_debug) return write_debug_string(out, std::move(it), end); out = detail::copy(opening_bracket_, out); int i = 0; for (; it != end; ++it) { if (i > 0) out = detail::copy(separator_, out); ctx.advance_to(out); auto&& item = *it; // Need an lvalue out = underlying_.format(item, ctx); ++i; } out = detail::copy(closing_bracket_, out); return out; } }; FMT_EXPORT template struct range_format_kind : conditional_t< is_range::value, detail::range_format_kind_, std::integral_constant> {}; template struct formatter< R, Char, enable_if_t::value != range_format::disabled && range_format_kind::value != range_format::map && range_format_kind::value != range_format::string && range_format_kind::value != range_format::debug_string>, detail::is_formattable_delayed>::value>> { private: using range_type = detail::maybe_const_range; range_formatter, Char> range_formatter_; public: using nonlocking = void; FMT_CONSTEXPR formatter() { if (detail::const_check(range_format_kind::value != range_format::set)) return; range_formatter_.set_brackets(detail::string_literal{}, detail::string_literal{}); } FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return range_formatter_.parse(ctx); } template auto format(range_type& range, FormatContext& ctx) const -> decltype(ctx.out()) { return range_formatter_.format(range, ctx); } }; // A map formatter. template struct formatter< R, Char, enable_if_t::value == range_format::map>, detail::is_formattable_delayed>::value>> { private: using map_type = detail::maybe_const_range; using element_type = detail::uncvref_type; decltype(detail::tuple::get_formatters( detail::tuple_index_sequence())) formatters_; bool no_delimiters_ = false; public: FMT_CONSTEXPR formatter() {} FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { auto it = ctx.begin(); auto end = ctx.end(); if (it != end) { if (detail::to_ascii(*it) == 'n') { no_delimiters_ = true; ++it; } if (it != end && *it != '}') { if (*it != ':') report_error("invalid format specifier"); ++it; } ctx.advance_to(it); } detail::for_each(formatters_, detail::parse_empty_specs{ctx}); return it; } template auto format(map_type& map, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); basic_string_view open = detail::string_literal{}; if (!no_delimiters_) out = detail::copy(open, out); int i = 0; basic_string_view sep = detail::string_literal{}; for (auto&& value : map) { if (i > 0) out = detail::copy(sep, out); ctx.advance_to(out); detail::for_each2(formatters_, value, detail::format_tuple_element{ 0, ctx, detail::string_literal{}}); ++i; } basic_string_view close = detail::string_literal{}; if (!no_delimiters_) out = detail::copy(close, out); return out; } }; // A (debug_)string formatter. template struct formatter< R, Char, enable_if_t::value == range_format::string || range_format_kind::value == range_format::debug_string>> { private: using range_type = detail::maybe_const_range; using string_type = conditional_t, decltype(detail::range_begin(std::declval())), decltype(detail::range_end(std::declval()))>::value, detail::std_string_view, std::basic_string>; formatter underlying_; public: FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return underlying_.parse(ctx); } template auto format(range_type& range, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); if (detail::const_check(range_format_kind::value == range_format::debug_string)) *out++ = '"'; out = underlying_.format( string_type{detail::range_begin(range), detail::range_end(range)}, ctx); if (detail::const_check(range_format_kind::value == range_format::debug_string)) *out++ = '"'; return out; } }; template struct join_view : detail::view { It begin; Sentinel end; basic_string_view sep; join_view(It b, Sentinel e, basic_string_view s) : begin(std::move(b)), end(e), sep(s) {} }; template struct formatter, Char> { private: using value_type = #ifdef __cpp_lib_ranges std::iter_value_t; #else typename std::iterator_traits::value_type; #endif formatter, Char> value_formatter_; using view = conditional_t::value, const join_view, join_view>; public: using nonlocking = void; FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return value_formatter_.parse(ctx); } template auto format(view& value, FormatContext& ctx) const -> decltype(ctx.out()) { using iter = conditional_t::value, It, It&>; iter it = value.begin; auto out = ctx.out(); if (it == value.end) return out; out = value_formatter_.format(*it, ctx); ++it; while (it != value.end) { out = detail::copy(value.sep.begin(), value.sep.end(), out); ctx.advance_to(out); out = value_formatter_.format(*it, ctx); ++it; } return out; } }; FMT_EXPORT template struct tuple_join_view : detail::view { const Tuple& tuple; basic_string_view sep; tuple_join_view(const Tuple& t, basic_string_view s) : tuple(t), sep{s} {} }; // Define FMT_TUPLE_JOIN_SPECIFIERS to enable experimental format specifiers // support in tuple_join. It is disabled by default because of issues with // the dynamic width and precision. #ifndef FMT_TUPLE_JOIN_SPECIFIERS # define FMT_TUPLE_JOIN_SPECIFIERS 0 #endif template struct formatter, Char, enable_if_t::value>> { FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return do_parse(ctx, std::tuple_size()); } template auto format(const tuple_join_view& value, FormatContext& ctx) const -> typename FormatContext::iterator { return do_format(value, ctx, std::tuple_size()); } private: decltype(detail::tuple::get_formatters( detail::tuple_index_sequence())) formatters_; FMT_CONSTEXPR auto do_parse(parse_context& ctx, std::integral_constant) -> const Char* { return ctx.begin(); } template FMT_CONSTEXPR auto do_parse(parse_context& ctx, std::integral_constant) -> const Char* { auto end = ctx.begin(); #if FMT_TUPLE_JOIN_SPECIFIERS end = std::get::value - N>(formatters_).parse(ctx); if (N > 1) { auto end1 = do_parse(ctx, std::integral_constant()); if (end != end1) report_error("incompatible format specs for tuple elements"); } #endif return end; } template auto do_format(const tuple_join_view&, FormatContext& ctx, std::integral_constant) const -> typename FormatContext::iterator { return ctx.out(); } template auto do_format(const tuple_join_view& value, FormatContext& ctx, std::integral_constant) const -> typename FormatContext::iterator { using std::get; auto out = std::get::value - N>(formatters_) .format(get::value - N>(value.tuple), ctx); if (N <= 1) return out; out = detail::copy(value.sep, out); ctx.advance_to(out); return do_format(value, ctx, std::integral_constant()); } }; namespace detail { // Check if T has an interface like a container adaptor (e.g. std::stack, // std::queue, std::priority_queue). template class is_container_adaptor_like { template static auto check(U* p) -> typename U::container_type; template static void check(...); public: static constexpr bool value = !std::is_void(nullptr))>::value; }; template struct all { const Container& c; auto begin() const -> typename Container::const_iterator { return c.begin(); } auto end() const -> typename Container::const_iterator { return c.end(); } }; } // namespace detail template struct formatter< T, Char, enable_if_t, bool_constant::value == range_format::disabled>>::value>> : formatter, Char> { using all = detail::all; template auto format(const T& value, FormatContext& ctx) const -> decltype(ctx.out()) { struct getter : T { static auto get(const T& v) -> all { return {v.*(&getter::c)}; // Access c through the derived class. } }; return formatter::format(getter::get(value), ctx); } }; FMT_BEGIN_EXPORT /// Returns a view that formats the iterator range `[begin, end)` with elements /// separated by `sep`. template auto join(It begin, Sentinel end, string_view sep) -> join_view { return {std::move(begin), end, sep}; } /** * Returns a view that formats `range` with elements separated by `sep`. * * **Example**: * * auto v = std::vector{1, 2, 3}; * fmt::print("{}", fmt::join(v, ", ")); * // Output: 1, 2, 3 * * `fmt::join` applies passed format specifiers to the range elements: * * fmt::print("{:02}", fmt::join(v, ", ")); * // Output: 01, 02, 03 */ template ::value)> auto join(Range&& r, string_view sep) -> join_view { return {detail::range_begin(r), detail::range_end(r), sep}; } /** * Returns an object that formats `std::tuple` with elements separated by `sep`. * * **Example**: * * auto t = std::tuple{1, 'a'}; * fmt::print("{}", fmt::join(t, ", ")); * // Output: 1, a */ template ::value)> FMT_CONSTEXPR auto join(const Tuple& tuple, string_view sep) -> tuple_join_view { return {tuple, sep}; } /** * Returns an object that formats `std::initializer_list` with elements * separated by `sep`. * * **Example**: * * fmt::print("{}", fmt::join({1, 2, 3}, ", ")); * // Output: "1, 2, 3" */ template auto join(std::initializer_list list, string_view sep) -> join_view { return join(std::begin(list), std::end(list), sep); } FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_RANGES_H_ btop-1.4.5/include/fmt/std.h000066400000000000000000000536211506333644200156560ustar00rootroot00000000000000// Formatting library for C++ - formatters for standard library types // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_STD_H_ #define FMT_STD_H_ #include "format.h" #include "ostream.h" #ifndef FMT_MODULE # include # include # include # include # include // std::reference_wrapper # include # include # include # include // std::type_info # include // std::make_index_sequence // Check FMT_CPLUSPLUS to suppress a bogus warning in MSVC. # if FMT_CPLUSPLUS >= 201703L # if FMT_HAS_INCLUDE() && \ (!defined(FMT_CPP_LIB_FILESYSTEM) || FMT_CPP_LIB_FILESYSTEM != 0) # include # endif # if FMT_HAS_INCLUDE() # include # endif # if FMT_HAS_INCLUDE() # include # endif # endif // Use > instead of >= in the version check because may be // available after C++17 but before C++20 is marked as implemented. # if FMT_CPLUSPLUS > 201703L && FMT_HAS_INCLUDE() # include # endif # if FMT_CPLUSPLUS > 202002L && FMT_HAS_INCLUDE() # include # endif #endif // FMT_MODULE #if FMT_HAS_INCLUDE() # include #endif // GCC 4 does not support FMT_HAS_INCLUDE. #if FMT_HAS_INCLUDE() || defined(__GLIBCXX__) # include // Android NDK with gabi++ library on some architectures does not implement // abi::__cxa_demangle(). # ifndef __GABIXX_CXXABI_H__ # define FMT_HAS_ABI_CXA_DEMANGLE # endif #endif #ifdef FMT_CPP_LIB_FILESYSTEM // Use the provided definition. #elif defined(__cpp_lib_filesystem) # define FMT_CPP_LIB_FILESYSTEM __cpp_lib_filesystem #else # define FMT_CPP_LIB_FILESYSTEM 0 #endif #ifdef FMT_CPP_LIB_VARIANT // Use the provided definition. #elif defined(__cpp_lib_variant) # define FMT_CPP_LIB_VARIANT __cpp_lib_variant #else # define FMT_CPP_LIB_VARIANT 0 #endif FMT_BEGIN_NAMESPACE namespace detail { #if FMT_CPP_LIB_FILESYSTEM template auto get_path_string(const std::filesystem::path& p, const std::basic_string& native) { if constexpr (std::is_same_v && std::is_same_v) return to_utf8(native, to_utf8_error_policy::replace); else return p.string(); } template void write_escaped_path(basic_memory_buffer& quoted, const std::filesystem::path& p, const std::basic_string& native) { if constexpr (std::is_same_v && std::is_same_v) { auto buf = basic_memory_buffer(); write_escaped_string(std::back_inserter(buf), native); bool valid = to_utf8::convert(quoted, {buf.data(), buf.size()}); FMT_ASSERT(valid, "invalid utf16"); } else if constexpr (std::is_same_v) { write_escaped_string( std::back_inserter(quoted), native); } else { write_escaped_string(std::back_inserter(quoted), p.string()); } } #endif // FMT_CPP_LIB_FILESYSTEM #if defined(__cpp_lib_expected) || FMT_CPP_LIB_VARIANT template auto write_escaped_alternative(OutputIt out, const T& v) -> OutputIt { if constexpr (has_to_string_view::value) return write_escaped_string(out, detail::to_string_view(v)); if constexpr (std::is_same_v) return write_escaped_char(out, v); return write(out, v); } #endif #if FMT_CPP_LIB_VARIANT template struct is_variant_like_ : std::false_type {}; template struct is_variant_like_> : std::true_type {}; template class is_variant_formattable { template static auto check(std::index_sequence) -> std::conjunction< is_formattable, Char>...>; public: static constexpr bool value = decltype(check( std::make_index_sequence::value>()))::value; }; #endif // FMT_CPP_LIB_VARIANT #if FMT_USE_RTTI template auto write_demangled_name(OutputIt out, const std::type_info& ti) -> OutputIt { # ifdef FMT_HAS_ABI_CXA_DEMANGLE int status = 0; size_t size = 0; std::unique_ptr demangled_name_ptr( abi::__cxa_demangle(ti.name(), nullptr, &size, &status), &std::free); string_view demangled_name_view; if (demangled_name_ptr) { demangled_name_view = demangled_name_ptr.get(); // Normalization of stdlib inline namespace names. // libc++ inline namespaces. // std::__1::* -> std::* // std::__1::__fs::* -> std::* // libstdc++ inline namespaces. // std::__cxx11::* -> std::* // std::filesystem::__cxx11::* -> std::filesystem::* if (demangled_name_view.starts_with("std::")) { char* begin = demangled_name_ptr.get(); char* to = begin + 5; // std:: for (char *from = to, *end = begin + demangled_name_view.size(); from < end;) { // This is safe, because demangled_name is NUL-terminated. if (from[0] == '_' && from[1] == '_') { char* next = from + 1; while (next < end && *next != ':') next++; if (next[0] == ':' && next[1] == ':') { from = next + 2; continue; } } *to++ = *from++; } demangled_name_view = {begin, detail::to_unsigned(to - begin)}; } } else { demangled_name_view = string_view(ti.name()); } return detail::write_bytes(out, demangled_name_view); # elif FMT_MSC_VERSION const string_view demangled_name(ti.name()); for (size_t i = 0; i < demangled_name.size(); ++i) { auto sub = demangled_name; sub.remove_prefix(i); if (sub.starts_with("enum ")) { i += 4; continue; } if (sub.starts_with("class ") || sub.starts_with("union ")) { i += 5; continue; } if (sub.starts_with("struct ")) { i += 6; continue; } if (*sub.begin() != ' ') *out++ = *sub.begin(); } return out; # else return detail::write_bytes(out, string_view(ti.name())); # endif } #endif // FMT_USE_RTTI template struct has_flip : std::false_type {}; template struct has_flip().flip())>> : std::true_type {}; template struct is_bit_reference_like { static constexpr bool value = std::is_convertible::value && std::is_nothrow_assignable::value && has_flip::value; }; // Workaround for libc++ incompatibility with C++ standard. // According to the Standard, `bitset::operator[] const` returns bool. #if defined(_LIBCPP_VERSION) && !defined(FMT_IMPORT_STD) template struct is_bit_reference_like> { static constexpr bool value = true; }; #endif template struct has_format_as : std::false_type {}; template struct has_format_as()))>> : std::true_type {}; template struct has_format_as_member : std::false_type {}; template struct has_format_as_member< T, void_t::format_as(std::declval()))>> : std::true_type {}; } // namespace detail template auto ptr(const std::unique_ptr& p) -> const void* { return p.get(); } template auto ptr(const std::shared_ptr& p) -> const void* { return p.get(); } #if FMT_CPP_LIB_FILESYSTEM class path : public std::filesystem::path { public: auto display_string() const -> std::string { const std::filesystem::path& base = *this; return fmt::format(FMT_STRING("{}"), base); } auto system_string() const -> std::string { return string(); } auto generic_display_string() const -> std::string { const std::filesystem::path& base = *this; return fmt::format(FMT_STRING("{:g}"), base); } auto generic_system_string() const -> std::string { return generic_string(); } }; template struct formatter { private: format_specs specs_; detail::arg_ref width_ref_; bool debug_ = false; char path_type_ = 0; public: FMT_CONSTEXPR void set_debug_format(bool set = true) { debug_ = set; } FMT_CONSTEXPR auto parse(parse_context& ctx) { auto it = ctx.begin(), end = ctx.end(); if (it == end) return it; it = detail::parse_align(it, end, specs_); if (it == end) return it; Char c = *it; if ((c >= '0' && c <= '9') || c == '{') it = detail::parse_width(it, end, specs_, width_ref_, ctx); if (it != end && *it == '?') { debug_ = true; ++it; } if (it != end && (*it == 'g')) path_type_ = detail::to_ascii(*it++); return it; } template auto format(const std::filesystem::path& p, FormatContext& ctx) const { auto specs = specs_; auto path_string = !path_type_ ? p.native() : p.generic_string(); detail::handle_dynamic_spec(specs.dynamic_width(), specs.width, width_ref_, ctx); if (!debug_) { auto s = detail::get_path_string(p, path_string); return detail::write(ctx.out(), basic_string_view(s), specs); } auto quoted = basic_memory_buffer(); detail::write_escaped_path(quoted, p, path_string); return detail::write(ctx.out(), basic_string_view(quoted.data(), quoted.size()), specs); } }; #endif // FMT_CPP_LIB_FILESYSTEM template struct formatter, Char> : nested_formatter, Char> { private: // This is a functor because C++11 doesn't support generic lambdas. struct writer { const std::bitset& bs; template FMT_CONSTEXPR auto operator()(OutputIt out) -> OutputIt { for (auto pos = N; pos > 0; --pos) out = detail::write(out, bs[pos - 1] ? Char('1') : Char('0')); return out; } }; public: template auto format(const std::bitset& bs, FormatContext& ctx) const -> decltype(ctx.out()) { return this->write_padded(ctx, writer{bs}); } }; template struct formatter : basic_ostream_formatter {}; #ifdef __cpp_lib_optional template struct formatter, Char, std::enable_if_t::value>> { private: formatter underlying_; static constexpr basic_string_view optional = detail::string_literal{}; static constexpr basic_string_view none = detail::string_literal{}; template FMT_CONSTEXPR static auto maybe_set_debug_format(U& u, bool set) -> decltype(u.set_debug_format(set)) { u.set_debug_format(set); } template FMT_CONSTEXPR static void maybe_set_debug_format(U&, ...) {} public: FMT_CONSTEXPR auto parse(parse_context& ctx) { maybe_set_debug_format(underlying_, true); return underlying_.parse(ctx); } template auto format(const std::optional& opt, FormatContext& ctx) const -> decltype(ctx.out()) { if (!opt) return detail::write(ctx.out(), none); auto out = ctx.out(); out = detail::write(out, optional); ctx.advance_to(out); out = underlying_.format(*opt, ctx); return detail::write(out, ')'); } }; #endif // __cpp_lib_optional #ifdef __cpp_lib_expected template struct formatter, Char, std::enable_if_t<(std::is_void::value || is_formattable::value) && is_formattable::value>> { FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return ctx.begin(); } template auto format(const std::expected& value, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); if (value.has_value()) { out = detail::write(out, "expected("); if constexpr (!std::is_void::value) out = detail::write_escaped_alternative(out, *value); } else { out = detail::write(out, "unexpected("); out = detail::write_escaped_alternative(out, value.error()); } *out++ = ')'; return out; } }; #endif // __cpp_lib_expected #ifdef __cpp_lib_source_location template <> struct formatter { FMT_CONSTEXPR auto parse(parse_context<>& ctx) { return ctx.begin(); } template auto format(const std::source_location& loc, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); out = detail::write(out, loc.file_name()); out = detail::write(out, ':'); out = detail::write(out, loc.line()); out = detail::write(out, ':'); out = detail::write(out, loc.column()); out = detail::write(out, ": "); out = detail::write(out, loc.function_name()); return out; } }; #endif #if FMT_CPP_LIB_VARIANT template struct is_variant_like { static constexpr bool value = detail::is_variant_like_::value; }; template struct formatter { FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return ctx.begin(); } template auto format(const std::monostate&, FormatContext& ctx) const -> decltype(ctx.out()) { return detail::write(ctx.out(), "monostate"); } }; template struct formatter, detail::is_variant_formattable>>> { FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { return ctx.begin(); } template auto format(const Variant& value, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); out = detail::write(out, "variant("); FMT_TRY { std::visit( [&](const auto& v) { out = detail::write_escaped_alternative(out, v); }, value); } FMT_CATCH(const std::bad_variant_access&) { detail::write(out, "valueless by exception"); } *out++ = ')'; return out; } }; #endif // FMT_CPP_LIB_VARIANT template <> struct formatter { private: format_specs specs_; detail::arg_ref width_ref_; bool debug_ = false; public: FMT_CONSTEXPR auto parse(parse_context<>& ctx) -> const char* { auto it = ctx.begin(), end = ctx.end(); if (it == end) return it; it = detail::parse_align(it, end, specs_); char c = *it; if (it != end && ((c >= '0' && c <= '9') || c == '{')) it = detail::parse_width(it, end, specs_, width_ref_, ctx); if (it != end && *it == '?') { debug_ = true; ++it; } if (it != end && *it == 's') { specs_.set_type(presentation_type::string); ++it; } return it; } template FMT_CONSTEXPR20 auto format(const std::error_code& ec, FormatContext& ctx) const -> decltype(ctx.out()) { auto specs = specs_; detail::handle_dynamic_spec(specs.dynamic_width(), specs.width, width_ref_, ctx); auto buf = memory_buffer(); if (specs_.type() == presentation_type::string) { buf.append(ec.message()); } else { buf.append(string_view(ec.category().name())); buf.push_back(':'); detail::write(appender(buf), ec.value()); } auto quoted = memory_buffer(); auto str = string_view(buf.data(), buf.size()); if (debug_) { detail::write_escaped_string(std::back_inserter(quoted), str); str = string_view(quoted.data(), quoted.size()); } return detail::write(ctx.out(), str, specs); } }; #if FMT_USE_RTTI template <> struct formatter { public: FMT_CONSTEXPR auto parse(parse_context<>& ctx) -> const char* { return ctx.begin(); } template auto format(const std::type_info& ti, Context& ctx) const -> decltype(ctx.out()) { return detail::write_demangled_name(ctx.out(), ti); } }; #endif // FMT_USE_RTTI template struct formatter< T, char, typename std::enable_if::value>::type> { private: bool with_typename_ = false; public: FMT_CONSTEXPR auto parse(parse_context<>& ctx) -> const char* { auto it = ctx.begin(); auto end = ctx.end(); if (it == end || *it == '}') return it; if (*it == 't') { ++it; with_typename_ = FMT_USE_RTTI != 0; } return it; } template auto format(const std::exception& ex, Context& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); #if FMT_USE_RTTI if (with_typename_) { out = detail::write_demangled_name(out, typeid(ex)); *out++ = ':'; *out++ = ' '; } #endif return detail::write_bytes(out, string_view(ex.what())); } }; // We can't use std::vector::reference and // std::bitset::reference because the compiler can't deduce Allocator and N // in partial specialization. template struct formatter::value>> : formatter { template FMT_CONSTEXPR auto format(const BitRef& v, FormatContext& ctx) const -> decltype(ctx.out()) { return formatter::format(v, ctx); } }; template struct formatter, Char, enable_if_t::value>> : formatter { template auto format(const std::atomic& v, FormatContext& ctx) const -> decltype(ctx.out()) { return formatter::format(v.load(), ctx); } }; #ifdef __cpp_lib_atomic_flag_test template struct formatter : formatter { template auto format(const std::atomic_flag& v, FormatContext& ctx) const -> decltype(ctx.out()) { return formatter::format(v.test(), ctx); } }; #endif // __cpp_lib_atomic_flag_test template struct formatter, Char> { private: detail::dynamic_format_specs specs_; template FMT_CONSTEXPR auto do_format(const std::complex& c, detail::dynamic_format_specs& specs, FormatContext& ctx, OutputIt out) const -> OutputIt { if (c.real() != 0) { *out++ = Char('('); out = detail::write(out, c.real(), specs, ctx.locale()); specs.set_sign(sign::plus); out = detail::write(out, c.imag(), specs, ctx.locale()); if (!detail::isfinite(c.imag())) *out++ = Char(' '); *out++ = Char('i'); *out++ = Char(')'); return out; } out = detail::write(out, c.imag(), specs, ctx.locale()); if (!detail::isfinite(c.imag())) *out++ = Char(' '); *out++ = Char('i'); return out; } public: FMT_CONSTEXPR auto parse(parse_context& ctx) -> const Char* { if (ctx.begin() == ctx.end() || *ctx.begin() == '}') return ctx.begin(); return parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx, detail::type_constant::value); } template auto format(const std::complex& c, FormatContext& ctx) const -> decltype(ctx.out()) { auto specs = specs_; if (specs.dynamic()) { detail::handle_dynamic_spec(specs.dynamic_width(), specs.width, specs.width_ref, ctx); detail::handle_dynamic_spec(specs.dynamic_precision(), specs.precision, specs.precision_ref, ctx); } if (specs.width == 0) return do_format(c, specs, ctx, ctx.out()); auto buf = basic_memory_buffer(); auto outer_specs = format_specs(); outer_specs.width = specs.width; outer_specs.copy_fill_from(specs); outer_specs.set_align(specs.align()); specs.width = 0; specs.set_fill({}); specs.set_align(align::none); do_format(c, specs, ctx, basic_appender(buf)); return detail::write(ctx.out(), basic_string_view(buf.data(), buf.size()), outer_specs); } }; template struct formatter, Char, // Guard against format_as because reference_wrapper is // implicitly convertible to T&. enable_if_t, Char>::value && !detail::has_format_as::value && !detail::has_format_as_member::value>> : formatter, Char> { template auto format(std::reference_wrapper ref, FormatContext& ctx) const -> decltype(ctx.out()) { return formatter, Char>::format(ref.get(), ctx); } }; FMT_END_NAMESPACE #endif // FMT_STD_H_ btop-1.4.5/include/fmt/xchar.h000066400000000000000000000314521506333644200161670ustar00rootroot00000000000000// Formatting library for C++ - optional wchar_t and exotic character support // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_XCHAR_H_ #define FMT_XCHAR_H_ #include "color.h" #include "format.h" #include "ostream.h" #include "ranges.h" #ifndef FMT_MODULE # include # if FMT_USE_LOCALE # include # endif #endif FMT_BEGIN_NAMESPACE namespace detail { template using is_exotic_char = bool_constant::value>; template struct format_string_char {}; template struct format_string_char< S, void_t())))>> { using type = char_t; }; template struct format_string_char< S, enable_if_t::value>> { using type = typename S::char_type; }; template using format_string_char_t = typename format_string_char::type; inline auto write_loc(basic_appender out, loc_value value, const format_specs& specs, locale_ref loc) -> bool { #if FMT_USE_LOCALE auto& numpunct = std::use_facet>(loc.get()); auto separator = std::wstring(); auto grouping = numpunct.grouping(); if (!grouping.empty()) separator = std::wstring(1, numpunct.thousands_sep()); return value.visit(loc_writer{out, specs, separator, grouping, {}}); #endif return false; } template void vformat_to(buffer& buf, basic_string_view fmt, basic_format_args> args, locale_ref loc = {}) { static_assert(!std::is_same::value, ""); auto out = basic_appender(buf); parse_format_string( fmt, format_handler{parse_context(fmt), {out, args, loc}}); } } // namespace detail FMT_BEGIN_EXPORT using wstring_view = basic_string_view; using wformat_parse_context = parse_context; using wformat_context = buffered_context; using wformat_args = basic_format_args; using wmemory_buffer = basic_memory_buffer; template struct basic_fstring { private: basic_string_view str_; static constexpr int num_static_named_args = detail::count_static_named_args(); using checker = detail::format_string_checker< Char, static_cast(sizeof...(T)), num_static_named_args, num_static_named_args != detail::count_named_args()>; using arg_pack = detail::arg_pack; public: using t = basic_fstring; template >::value)> FMT_CONSTEVAL FMT_ALWAYS_INLINE basic_fstring(const S& s) : str_(s) { if (FMT_USE_CONSTEVAL) detail::parse_format_string(s, checker(s, arg_pack())); } template ::value&& std::is_same::value)> FMT_ALWAYS_INLINE basic_fstring(const S&) : str_(S()) { FMT_CONSTEXPR auto sv = basic_string_view(S()); FMT_CONSTEXPR int ignore = (parse_format_string(sv, checker(sv, arg_pack())), 0); detail::ignore_unused(ignore); } basic_fstring(runtime_format_string fmt) : str_(fmt.str) {} operator basic_string_view() const { return str_; } auto get() const -> basic_string_view { return str_; } }; template using basic_format_string = basic_fstring; template using wformat_string = typename basic_format_string::t; inline auto runtime(wstring_view s) -> runtime_format_string { return {{s}}; } template constexpr auto make_wformat_args(T&... args) -> decltype(fmt::make_format_args(args...)) { return fmt::make_format_args(args...); } #if !FMT_USE_NONTYPE_TEMPLATE_ARGS inline namespace literals { inline auto operator""_a(const wchar_t* s, size_t) -> detail::udl_arg { return {s}; } } // namespace literals #endif template auto join(It begin, Sentinel end, wstring_view sep) -> join_view { return {begin, end, sep}; } template ::value)> auto join(Range&& range, wstring_view sep) -> join_view { return join(std::begin(range), std::end(range), sep); } template auto join(std::initializer_list list, wstring_view sep) -> join_view { return join(std::begin(list), std::end(list), sep); } template ::value)> auto join(const Tuple& tuple, basic_string_view sep) -> tuple_join_view { return {tuple, sep}; } template ::value)> auto vformat(basic_string_view fmt, basic_format_args> args) -> std::basic_string { auto buf = basic_memory_buffer(); detail::vformat_to(buf, fmt, args); return {buf.data(), buf.size()}; } template auto format(wformat_string fmt, T&&... args) -> std::wstring { return vformat(fmt::wstring_view(fmt), fmt::make_wformat_args(args...)); } template auto format_to(OutputIt out, wformat_string fmt, T&&... args) -> OutputIt { return vformat_to(out, fmt::wstring_view(fmt), fmt::make_wformat_args(args...)); } // Pass char_t as a default template parameter instead of using // std::basic_string> to reduce the symbol size. template , FMT_ENABLE_IF(!std::is_same::value && !std::is_same::value)> auto format(const S& fmt, T&&... args) -> std::basic_string { return vformat(detail::to_string_view(fmt), fmt::make_format_args>(args...)); } template , FMT_ENABLE_IF(detail::is_exotic_char::value)> inline auto vformat(locale_ref loc, const S& fmt, basic_format_args> args) -> std::basic_string { auto buf = basic_memory_buffer(); detail::vformat_to(buf, detail::to_string_view(fmt), args, loc); return {buf.data(), buf.size()}; } template , FMT_ENABLE_IF(detail::is_exotic_char::value)> inline auto format(locale_ref loc, const S& fmt, T&&... args) -> std::basic_string { return vformat(loc, detail::to_string_view(fmt), fmt::make_format_args>(args...)); } template , FMT_ENABLE_IF(detail::is_output_iterator::value&& detail::is_exotic_char::value)> auto vformat_to(OutputIt out, const S& fmt, basic_format_args> args) -> OutputIt { auto&& buf = detail::get_buffer(out); detail::vformat_to(buf, detail::to_string_view(fmt), args); return detail::get_iterator(buf, out); } template , FMT_ENABLE_IF(detail::is_output_iterator::value && !std::is_same::value && !std::is_same::value)> inline auto format_to(OutputIt out, const S& fmt, T&&... args) -> OutputIt { return vformat_to(out, detail::to_string_view(fmt), fmt::make_format_args>(args...)); } template , FMT_ENABLE_IF(detail::is_output_iterator::value&& detail::is_exotic_char::value)> inline auto vformat_to(OutputIt out, locale_ref loc, const S& fmt, basic_format_args> args) -> OutputIt { auto&& buf = detail::get_buffer(out); vformat_to(buf, detail::to_string_view(fmt), args, loc); return detail::get_iterator(buf, out); } template , bool enable = detail::is_output_iterator::value && detail::is_exotic_char::value> inline auto format_to(OutputIt out, locale_ref loc, const S& fmt, T&&... args) -> typename std::enable_if::type { return vformat_to(out, loc, detail::to_string_view(fmt), fmt::make_format_args>(args...)); } template ::value&& detail::is_exotic_char::value)> inline auto vformat_to_n(OutputIt out, size_t n, basic_string_view fmt, basic_format_args> args) -> format_to_n_result { using traits = detail::fixed_buffer_traits; auto buf = detail::iterator_buffer(out, n); detail::vformat_to(buf, fmt, args); return {buf.out(), buf.count()}; } template , FMT_ENABLE_IF(detail::is_output_iterator::value&& detail::is_exotic_char::value)> inline auto format_to_n(OutputIt out, size_t n, const S& fmt, T&&... args) -> format_to_n_result { return vformat_to_n(out, n, fmt::basic_string_view(fmt), fmt::make_format_args>(args...)); } template , FMT_ENABLE_IF(detail::is_exotic_char::value)> inline auto formatted_size(const S& fmt, T&&... args) -> size_t { auto buf = detail::counting_buffer(); detail::vformat_to(buf, detail::to_string_view(fmt), fmt::make_format_args>(args...)); return buf.count(); } inline void vprint(std::FILE* f, wstring_view fmt, wformat_args args) { auto buf = wmemory_buffer(); detail::vformat_to(buf, fmt, args); buf.push_back(L'\0'); if (std::fputws(buf.data(), f) == -1) FMT_THROW(system_error(errno, FMT_STRING("cannot write to file"))); } inline void vprint(wstring_view fmt, wformat_args args) { vprint(stdout, fmt, args); } template void print(std::FILE* f, wformat_string fmt, T&&... args) { return vprint(f, wstring_view(fmt), fmt::make_wformat_args(args...)); } template void print(wformat_string fmt, T&&... args) { return vprint(wstring_view(fmt), fmt::make_wformat_args(args...)); } template void println(std::FILE* f, wformat_string fmt, T&&... args) { return print(f, L"{}\n", fmt::format(fmt, std::forward(args)...)); } template void println(wformat_string fmt, T&&... args) { return print(L"{}\n", fmt::format(fmt, std::forward(args)...)); } inline auto vformat(text_style ts, wstring_view fmt, wformat_args args) -> std::wstring { auto buf = wmemory_buffer(); detail::vformat_to(buf, ts, fmt, args); return {buf.data(), buf.size()}; } template inline auto format(text_style ts, wformat_string fmt, T&&... args) -> std::wstring { return fmt::vformat(ts, fmt, fmt::make_wformat_args(args...)); } inline void vprint(std::wostream& os, wstring_view fmt, wformat_args args) { auto buffer = basic_memory_buffer(); detail::vformat_to(buffer, fmt, args); detail::write_buffer(os, buffer); } template void print(std::wostream& os, wformat_string fmt, T&&... args) { vprint(os, fmt, fmt::make_format_args>(args...)); } template void println(std::wostream& os, wformat_string fmt, T&&... args) { print(os, L"{}\n", fmt::format(fmt, std::forward(args)...)); } /// Converts `value` to `std::wstring` using the default format for type `T`. template inline auto to_wstring(const T& value) -> std::wstring { return format(FMT_STRING(L"{}"), value); } FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_XCHAR_H_ btop-1.4.5/include/widechar_width.hpp000066400000000000000000001073611506333644200176240ustar00rootroot00000000000000/** * widechar_width.h, generated on 2022-02-11. * See https://github.com/ridiculousfish/widecharwidth/ * * SHA1 file hashes: * UnicodeData.txt: 8a5c26bfb27df8cfab23cf2c34c62d8d3075ae4d * EastAsianWidth.txt: 8ec36ccac3852bf0c2f02e37c6151551cd14db72 * emoji-data.txt: 3f0ec08c001c4bc6df0b07d01068fc73808bfb4c */ #ifndef WIDECHAR_WIDTH_H #define WIDECHAR_WIDTH_H #include #include #include #include namespace utf8 { /* Special width values */ enum { widechar_nonprint = 0, // The character is not printable. widechar_combining = 0, // The character is a zero-width combiner. widechar_ambiguous = 1, // The character is East-Asian ambiguous width. widechar_private_use = 1, // The character is for private use. widechar_unassigned = 0, // The character is unassigned. widechar_widened_in_9 = 2, // Width is 1 in Unicode 8, 2 in Unicode 9+. widechar_non_character = 0 // The character is a noncharacter. }; /* An inclusive range of characters. */ struct widechar_range { uint32_t lo; uint32_t hi; }; /* Simple ASCII characters - used a lot, so we check them first. */ static const struct widechar_range widechar_ascii_table[] = { {0x00020, 0x0007E} }; /* Private usage range. */ static const struct widechar_range widechar_private_table[] = { {0x0E000, 0x0F8FF}, {0xF0000, 0xFFFFD}, {0x100000, 0x10FFFD} }; /* Nonprinting characters. */ static const struct widechar_range widechar_nonprint_table[] = { {0x00000, 0x0001F}, {0x0007F, 0x0009F}, {0x000AD, 0x000AD}, {0x00600, 0x00605}, {0x0061C, 0x0061C}, {0x006DD, 0x006DD}, {0x0070F, 0x0070F}, {0x00890, 0x00891}, {0x008E2, 0x008E2}, {0x0180E, 0x0180E}, {0x0200B, 0x0200F}, {0x02028, 0x0202E}, {0x02060, 0x02064}, {0x02066, 0x0206F}, {0x0D800, 0x0DFFF}, {0x0FEFF, 0x0FEFF}, {0x0FFF9, 0x0FFFB}, {0x110BD, 0x110BD}, {0x110CD, 0x110CD}, {0x13430, 0x13438}, {0x1BCA0, 0x1BCA3}, {0x1D173, 0x1D17A}, {0xE0001, 0xE0001}, {0xE0020, 0xE007F} }; /* Width 0 combining marks. */ static const struct widechar_range widechar_combining_table[] = { {0x00300, 0x0036F}, {0x00483, 0x00489}, {0x00591, 0x005BD}, {0x005BF, 0x005BF}, {0x005C1, 0x005C2}, {0x005C4, 0x005C5}, {0x005C7, 0x005C7}, {0x00610, 0x0061A}, {0x0064B, 0x0065F}, {0x00670, 0x00670}, {0x006D6, 0x006DC}, {0x006DF, 0x006E4}, {0x006E7, 0x006E8}, {0x006EA, 0x006ED}, {0x00711, 0x00711}, {0x00730, 0x0074A}, {0x007A6, 0x007B0}, {0x007EB, 0x007F3}, {0x007FD, 0x007FD}, {0x00816, 0x00819}, {0x0081B, 0x00823}, {0x00825, 0x00827}, {0x00829, 0x0082D}, {0x00859, 0x0085B}, {0x00898, 0x0089F}, {0x008CA, 0x008E1}, {0x008E3, 0x00903}, {0x0093A, 0x0093C}, {0x0093E, 0x0094F}, {0x00951, 0x00957}, {0x00962, 0x00963}, {0x00981, 0x00983}, {0x009BC, 0x009BC}, {0x009BE, 0x009C4}, {0x009C7, 0x009C8}, {0x009CB, 0x009CD}, {0x009D7, 0x009D7}, {0x009E2, 0x009E3}, {0x009FE, 0x009FE}, {0x00A01, 0x00A03}, {0x00A3C, 0x00A3C}, {0x00A3E, 0x00A42}, {0x00A47, 0x00A48}, {0x00A4B, 0x00A4D}, {0x00A51, 0x00A51}, {0x00A70, 0x00A71}, {0x00A75, 0x00A75}, {0x00A81, 0x00A83}, {0x00ABC, 0x00ABC}, {0x00ABE, 0x00AC5}, {0x00AC7, 0x00AC9}, {0x00ACB, 0x00ACD}, {0x00AE2, 0x00AE3}, {0x00AFA, 0x00AFF}, {0x00B01, 0x00B03}, {0x00B3C, 0x00B3C}, {0x00B3E, 0x00B44}, {0x00B47, 0x00B48}, {0x00B4B, 0x00B4D}, {0x00B55, 0x00B57}, {0x00B62, 0x00B63}, {0x00B82, 0x00B82}, {0x00BBE, 0x00BC2}, {0x00BC6, 0x00BC8}, {0x00BCA, 0x00BCD}, {0x00BD7, 0x00BD7}, {0x00C00, 0x00C04}, {0x00C3C, 0x00C3C}, {0x00C3E, 0x00C44}, {0x00C46, 0x00C48}, {0x00C4A, 0x00C4D}, {0x00C55, 0x00C56}, {0x00C62, 0x00C63}, {0x00C81, 0x00C83}, {0x00CBC, 0x00CBC}, {0x00CBE, 0x00CC4}, {0x00CC6, 0x00CC8}, {0x00CCA, 0x00CCD}, {0x00CD5, 0x00CD6}, {0x00CE2, 0x00CE3}, {0x00D00, 0x00D03}, {0x00D3B, 0x00D3C}, {0x00D3E, 0x00D44}, {0x00D46, 0x00D48}, {0x00D4A, 0x00D4D}, {0x00D57, 0x00D57}, {0x00D62, 0x00D63}, {0x00D81, 0x00D83}, {0x00DCA, 0x00DCA}, {0x00DCF, 0x00DD4}, {0x00DD6, 0x00DD6}, {0x00DD8, 0x00DDF}, {0x00DF2, 0x00DF3}, {0x00E31, 0x00E31}, {0x00E34, 0x00E3A}, {0x00E47, 0x00E4E}, {0x00EB1, 0x00EB1}, {0x00EB4, 0x00EBC}, {0x00EC8, 0x00ECD}, {0x00F18, 0x00F19}, {0x00F35, 0x00F35}, {0x00F37, 0x00F37}, {0x00F39, 0x00F39}, {0x00F3E, 0x00F3F}, {0x00F71, 0x00F84}, {0x00F86, 0x00F87}, {0x00F8D, 0x00F97}, {0x00F99, 0x00FBC}, {0x00FC6, 0x00FC6}, {0x0102B, 0x0103E}, {0x01056, 0x01059}, {0x0105E, 0x01060}, {0x01062, 0x01064}, {0x01067, 0x0106D}, {0x01071, 0x01074}, {0x01082, 0x0108D}, {0x0108F, 0x0108F}, {0x0109A, 0x0109D}, {0x0135D, 0x0135F}, {0x01712, 0x01715}, {0x01732, 0x01734}, {0x01752, 0x01753}, {0x01772, 0x01773}, {0x017B4, 0x017D3}, {0x017DD, 0x017DD}, {0x0180B, 0x0180D}, {0x0180F, 0x0180F}, {0x01885, 0x01886}, {0x018A9, 0x018A9}, {0x01920, 0x0192B}, {0x01930, 0x0193B}, {0x01A17, 0x01A1B}, {0x01A55, 0x01A5E}, {0x01A60, 0x01A7C}, {0x01A7F, 0x01A7F}, {0x01AB0, 0x01ACE}, {0x01B00, 0x01B04}, {0x01B34, 0x01B44}, {0x01B6B, 0x01B73}, {0x01B80, 0x01B82}, {0x01BA1, 0x01BAD}, {0x01BE6, 0x01BF3}, {0x01C24, 0x01C37}, {0x01CD0, 0x01CD2}, {0x01CD4, 0x01CE8}, {0x01CED, 0x01CED}, {0x01CF4, 0x01CF4}, {0x01CF7, 0x01CF9}, {0x01DC0, 0x01DFF}, {0x020D0, 0x020F0}, {0x02CEF, 0x02CF1}, {0x02D7F, 0x02D7F}, {0x02DE0, 0x02DFF}, {0x0302A, 0x0302F}, {0x03099, 0x0309A}, {0x0A66F, 0x0A672}, {0x0A674, 0x0A67D}, {0x0A69E, 0x0A69F}, {0x0A6F0, 0x0A6F1}, {0x0A802, 0x0A802}, {0x0A806, 0x0A806}, {0x0A80B, 0x0A80B}, {0x0A823, 0x0A827}, {0x0A82C, 0x0A82C}, {0x0A880, 0x0A881}, {0x0A8B4, 0x0A8C5}, {0x0A8E0, 0x0A8F1}, {0x0A8FF, 0x0A8FF}, {0x0A926, 0x0A92D}, {0x0A947, 0x0A953}, {0x0A980, 0x0A983}, {0x0A9B3, 0x0A9C0}, {0x0A9E5, 0x0A9E5}, {0x0AA29, 0x0AA36}, {0x0AA43, 0x0AA43}, {0x0AA4C, 0x0AA4D}, {0x0AA7B, 0x0AA7D}, {0x0AAB0, 0x0AAB0}, {0x0AAB2, 0x0AAB4}, {0x0AAB7, 0x0AAB8}, {0x0AABE, 0x0AABF}, {0x0AAC1, 0x0AAC1}, {0x0AAEB, 0x0AAEF}, {0x0AAF5, 0x0AAF6}, {0x0ABE3, 0x0ABEA}, {0x0ABEC, 0x0ABED}, {0x0FB1E, 0x0FB1E}, {0x0FE00, 0x0FE0F}, {0x0FE20, 0x0FE2F}, {0x101FD, 0x101FD}, {0x102E0, 0x102E0}, {0x10376, 0x1037A}, {0x10A01, 0x10A03}, {0x10A05, 0x10A06}, {0x10A0C, 0x10A0F}, {0x10A38, 0x10A3A}, {0x10A3F, 0x10A3F}, {0x10AE5, 0x10AE6}, {0x10D24, 0x10D27}, {0x10EAB, 0x10EAC}, {0x10F46, 0x10F50}, {0x10F82, 0x10F85}, {0x11000, 0x11002}, {0x11038, 0x11046}, {0x11070, 0x11070}, {0x11073, 0x11074}, {0x1107F, 0x11082}, {0x110B0, 0x110BA}, {0x110C2, 0x110C2}, {0x11100, 0x11102}, {0x11127, 0x11134}, {0x11145, 0x11146}, {0x11173, 0x11173}, {0x11180, 0x11182}, {0x111B3, 0x111C0}, {0x111C9, 0x111CC}, {0x111CE, 0x111CF}, {0x1122C, 0x11237}, {0x1123E, 0x1123E}, {0x112DF, 0x112EA}, {0x11300, 0x11303}, {0x1133B, 0x1133C}, {0x1133E, 0x11344}, {0x11347, 0x11348}, {0x1134B, 0x1134D}, {0x11357, 0x11357}, {0x11362, 0x11363}, {0x11366, 0x1136C}, {0x11370, 0x11374}, {0x11435, 0x11446}, {0x1145E, 0x1145E}, {0x114B0, 0x114C3}, {0x115AF, 0x115B5}, {0x115B8, 0x115C0}, {0x115DC, 0x115DD}, {0x11630, 0x11640}, {0x116AB, 0x116B7}, {0x1171D, 0x1172B}, {0x1182C, 0x1183A}, {0x11930, 0x11935}, {0x11937, 0x11938}, {0x1193B, 0x1193E}, {0x11940, 0x11940}, {0x11942, 0x11943}, {0x119D1, 0x119D7}, {0x119DA, 0x119E0}, {0x119E4, 0x119E4}, {0x11A01, 0x11A0A}, {0x11A33, 0x11A39}, {0x11A3B, 0x11A3E}, {0x11A47, 0x11A47}, {0x11A51, 0x11A5B}, {0x11A8A, 0x11A99}, {0x11C2F, 0x11C36}, {0x11C38, 0x11C3F}, {0x11C92, 0x11CA7}, {0x11CA9, 0x11CB6}, {0x11D31, 0x11D36}, {0x11D3A, 0x11D3A}, {0x11D3C, 0x11D3D}, {0x11D3F, 0x11D45}, {0x11D47, 0x11D47}, {0x11D8A, 0x11D8E}, {0x11D90, 0x11D91}, {0x11D93, 0x11D97}, {0x11EF3, 0x11EF6}, {0x16AF0, 0x16AF4}, {0x16B30, 0x16B36}, {0x16F4F, 0x16F4F}, {0x16F51, 0x16F87}, {0x16F8F, 0x16F92}, {0x16FE4, 0x16FE4}, {0x16FF0, 0x16FF1}, {0x1BC9D, 0x1BC9E}, {0x1CF00, 0x1CF2D}, {0x1CF30, 0x1CF46}, {0x1D165, 0x1D169}, {0x1D16D, 0x1D172}, {0x1D17B, 0x1D182}, {0x1D185, 0x1D18B}, {0x1D1AA, 0x1D1AD}, {0x1D242, 0x1D244}, {0x1DA00, 0x1DA36}, {0x1DA3B, 0x1DA6C}, {0x1DA75, 0x1DA75}, {0x1DA84, 0x1DA84}, {0x1DA9B, 0x1DA9F}, {0x1DAA1, 0x1DAAF}, {0x1E000, 0x1E006}, {0x1E008, 0x1E018}, {0x1E01B, 0x1E021}, {0x1E023, 0x1E024}, {0x1E026, 0x1E02A}, {0x1E130, 0x1E136}, {0x1E2AE, 0x1E2AE}, {0x1E2EC, 0x1E2EF}, {0x1E8D0, 0x1E8D6}, {0x1E944, 0x1E94A}, {0xE0100, 0xE01EF} }; /* Width 0 combining letters. */ static const struct widechar_range widechar_combiningletters_table[] = { {0x01160, 0x011FF}, {0x0D7B0, 0x0D7FF} }; /* Width 2 characters. */ static const struct widechar_range widechar_doublewide_table[] = { {0x01100, 0x0115F}, {0x02329, 0x0232A}, {0x02E80, 0x02E99}, {0x02E9B, 0x02EF3}, {0x02F00, 0x02FD5}, {0x02FF0, 0x02FFB}, {0x03000, 0x0303E}, {0x03041, 0x03096}, {0x03099, 0x030FF}, {0x03105, 0x0312F}, {0x03131, 0x0318E}, {0x03190, 0x031E3}, {0x031F0, 0x0321E}, {0x03220, 0x03247}, {0x03250, 0x04DBF}, {0x04E00, 0x0A48C}, {0x0A490, 0x0A4C6}, {0x0A960, 0x0A97C}, {0x0AC00, 0x0D7A3}, {0x0F900, 0x0FAFF}, {0x0FE10, 0x0FE19}, {0x0FE30, 0x0FE52}, {0x0FE54, 0x0FE66}, {0x0FE68, 0x0FE6B}, {0x0FF01, 0x0FF60}, {0x0FFE0, 0x0FFE6}, {0x16FE0, 0x16FE4}, {0x16FF0, 0x16FF1}, {0x17000, 0x187F7}, {0x18800, 0x18CD5}, {0x18D00, 0x18D08}, {0x1AFF0, 0x1AFF3}, {0x1AFF5, 0x1AFFB}, {0x1AFFD, 0x1AFFE}, {0x1B000, 0x1B122}, {0x1B150, 0x1B152}, {0x1B164, 0x1B167}, {0x1B170, 0x1B2FB}, {0x1F200, 0x1F200}, {0x1F202, 0x1F202}, {0x1F210, 0x1F219}, {0x1F21B, 0x1F22E}, {0x1F230, 0x1F231}, {0x1F237, 0x1F237}, {0x1F23B, 0x1F23B}, {0x1F240, 0x1F248}, {0x1F260, 0x1F265}, {0x1F57A, 0x1F57A}, {0x1F5A4, 0x1F5A4}, {0x1F6D1, 0x1F6D2}, {0x1F6D5, 0x1F6D7}, {0x1F6DD, 0x1F6DF}, {0x1F6F4, 0x1F6FC}, {0x1F7E0, 0x1F7EB}, {0x1F7F0, 0x1F7F0}, {0x1F90C, 0x1F90F}, {0x1F919, 0x1F93A}, {0x1F93C, 0x1F945}, {0x1F947, 0x1F97F}, {0x1F985, 0x1F9BF}, {0x1F9C1, 0x1F9FF}, {0x1FA70, 0x1FA74}, {0x1FA78, 0x1FA7C}, {0x1FA80, 0x1FA86}, {0x1FA90, 0x1FAAC}, {0x1FAB0, 0x1FABA}, {0x1FAC0, 0x1FAC5}, {0x1FAD0, 0x1FAD9}, {0x1FAE0, 0x1FAE7}, {0x1FAF0, 0x1FAF6}, {0x20000, 0x2FFFD}, {0x30000, 0x3FFFD} }; /* Ambiguous-width characters. */ static const struct widechar_range widechar_ambiguous_table[] = { {0x000A1, 0x000A1}, {0x000A4, 0x000A4}, {0x000A7, 0x000A8}, {0x000AA, 0x000AA}, {0x000AD, 0x000AE}, {0x000B0, 0x000B4}, {0x000B6, 0x000BA}, {0x000BC, 0x000BF}, {0x000C6, 0x000C6}, {0x000D0, 0x000D0}, {0x000D7, 0x000D8}, {0x000DE, 0x000E1}, {0x000E6, 0x000E6}, {0x000E8, 0x000EA}, {0x000EC, 0x000ED}, {0x000F0, 0x000F0}, {0x000F2, 0x000F3}, {0x000F7, 0x000FA}, {0x000FC, 0x000FC}, {0x000FE, 0x000FE}, {0x00101, 0x00101}, {0x00111, 0x00111}, {0x00113, 0x00113}, {0x0011B, 0x0011B}, {0x00126, 0x00127}, {0x0012B, 0x0012B}, {0x00131, 0x00133}, {0x00138, 0x00138}, {0x0013F, 0x00142}, {0x00144, 0x00144}, {0x00148, 0x0014B}, {0x0014D, 0x0014D}, {0x00152, 0x00153}, {0x00166, 0x00167}, {0x0016B, 0x0016B}, {0x001CE, 0x001CE}, {0x001D0, 0x001D0}, {0x001D2, 0x001D2}, {0x001D4, 0x001D4}, {0x001D6, 0x001D6}, {0x001D8, 0x001D8}, {0x001DA, 0x001DA}, {0x001DC, 0x001DC}, {0x00251, 0x00251}, {0x00261, 0x00261}, {0x002C4, 0x002C4}, {0x002C7, 0x002C7}, {0x002C9, 0x002CB}, {0x002CD, 0x002CD}, {0x002D0, 0x002D0}, {0x002D8, 0x002DB}, {0x002DD, 0x002DD}, {0x002DF, 0x002DF}, {0x00300, 0x0036F}, {0x00391, 0x003A1}, {0x003A3, 0x003A9}, {0x003B1, 0x003C1}, {0x003C3, 0x003C9}, {0x00401, 0x00401}, {0x00410, 0x0044F}, {0x00451, 0x00451}, {0x02010, 0x02010}, {0x02013, 0x02016}, {0x02018, 0x02019}, {0x0201C, 0x0201D}, {0x02020, 0x02022}, {0x02024, 0x02027}, {0x02030, 0x02030}, {0x02032, 0x02033}, {0x02035, 0x02035}, {0x0203B, 0x0203B}, {0x0203E, 0x0203E}, {0x02074, 0x02074}, {0x0207F, 0x0207F}, {0x02081, 0x02084}, {0x020AC, 0x020AC}, {0x02103, 0x02103}, {0x02105, 0x02105}, {0x02109, 0x02109}, {0x02113, 0x02113}, {0x02116, 0x02116}, {0x02121, 0x02122}, {0x02126, 0x02126}, {0x0212B, 0x0212B}, {0x02153, 0x02154}, {0x0215B, 0x0215E}, {0x02160, 0x0216B}, {0x02170, 0x02179}, {0x02189, 0x02189}, {0x02190, 0x02199}, {0x021B8, 0x021B9}, {0x021D2, 0x021D2}, {0x021D4, 0x021D4}, {0x021E7, 0x021E7}, {0x02200, 0x02200}, {0x02202, 0x02203}, {0x02207, 0x02208}, {0x0220B, 0x0220B}, {0x0220F, 0x0220F}, {0x02211, 0x02211}, {0x02215, 0x02215}, {0x0221A, 0x0221A}, {0x0221D, 0x02220}, {0x02223, 0x02223}, {0x02225, 0x02225}, {0x02227, 0x0222C}, {0x0222E, 0x0222E}, {0x02234, 0x02237}, {0x0223C, 0x0223D}, {0x02248, 0x02248}, {0x0224C, 0x0224C}, {0x02252, 0x02252}, {0x02260, 0x02261}, {0x02264, 0x02267}, {0x0226A, 0x0226B}, {0x0226E, 0x0226F}, {0x02282, 0x02283}, {0x02286, 0x02287}, {0x02295, 0x02295}, {0x02299, 0x02299}, {0x022A5, 0x022A5}, {0x022BF, 0x022BF}, {0x02312, 0x02312}, {0x02460, 0x024E9}, {0x024EB, 0x0254B}, {0x02550, 0x02573}, {0x02580, 0x0258F}, {0x02592, 0x02595}, {0x025A0, 0x025A1}, {0x025A3, 0x025A9}, {0x025B2, 0x025B3}, {0x025B6, 0x025B7}, {0x025BC, 0x025BD}, {0x025C0, 0x025C1}, {0x025C6, 0x025C8}, {0x025CB, 0x025CB}, {0x025CE, 0x025D1}, {0x025E2, 0x025E5}, {0x025EF, 0x025EF}, {0x02605, 0x02606}, {0x02609, 0x02609}, {0x0260E, 0x0260F}, {0x0261C, 0x0261C}, {0x0261E, 0x0261E}, {0x02640, 0x02640}, {0x02642, 0x02642}, {0x02660, 0x02661}, {0x02663, 0x02665}, {0x02667, 0x0266A}, {0x0266C, 0x0266D}, {0x0266F, 0x0266F}, {0x0269E, 0x0269F}, {0x026BF, 0x026BF}, {0x026C6, 0x026CD}, {0x026CF, 0x026D3}, {0x026D5, 0x026E1}, {0x026E3, 0x026E3}, {0x026E8, 0x026E9}, {0x026EB, 0x026F1}, {0x026F4, 0x026F4}, {0x026F6, 0x026F9}, {0x026FB, 0x026FC}, {0x026FE, 0x026FF}, {0x0273D, 0x0273D}, {0x02776, 0x0277F}, {0x02B56, 0x02B59}, {0x03248, 0x0324F}, {0x0E000, 0x0F8FF}, {0x0FE00, 0x0FE0F}, {0x0FFFD, 0x0FFFD}, {0x1F100, 0x1F10A}, {0x1F110, 0x1F12D}, {0x1F130, 0x1F169}, {0x1F170, 0x1F18D}, {0x1F18F, 0x1F190}, {0x1F19B, 0x1F1AC}, {0xE0100, 0xE01EF}, {0xF0000, 0xFFFFD}, {0x100000, 0x10FFFD} }; /* Unassigned characters. */ static const struct widechar_range widechar_unassigned_table[] = { {0x00378, 0x00379}, {0x00380, 0x00383}, {0x0038B, 0x0038B}, {0x0038D, 0x0038D}, {0x003A2, 0x003A2}, {0x00530, 0x00530}, {0x00557, 0x00558}, {0x0058B, 0x0058C}, {0x00590, 0x00590}, {0x005C8, 0x005CF}, {0x005EB, 0x005EE}, {0x005F5, 0x005FF}, {0x0070E, 0x0070E}, {0x0074B, 0x0074C}, {0x007B2, 0x007BF}, {0x007FB, 0x007FC}, {0x0082E, 0x0082F}, {0x0083F, 0x0083F}, {0x0085C, 0x0085D}, {0x0085F, 0x0085F}, {0x0086B, 0x0086F}, {0x0088F, 0x0088F}, {0x00892, 0x00897}, {0x00984, 0x00984}, {0x0098D, 0x0098E}, {0x00991, 0x00992}, {0x009A9, 0x009A9}, {0x009B1, 0x009B1}, {0x009B3, 0x009B5}, {0x009BA, 0x009BB}, {0x009C5, 0x009C6}, {0x009C9, 0x009CA}, {0x009CF, 0x009D6}, {0x009D8, 0x009DB}, {0x009DE, 0x009DE}, {0x009E4, 0x009E5}, {0x009FF, 0x00A00}, {0x00A04, 0x00A04}, {0x00A0B, 0x00A0E}, {0x00A11, 0x00A12}, {0x00A29, 0x00A29}, {0x00A31, 0x00A31}, {0x00A34, 0x00A34}, {0x00A37, 0x00A37}, {0x00A3A, 0x00A3B}, {0x00A3D, 0x00A3D}, {0x00A43, 0x00A46}, {0x00A49, 0x00A4A}, {0x00A4E, 0x00A50}, {0x00A52, 0x00A58}, {0x00A5D, 0x00A5D}, {0x00A5F, 0x00A65}, {0x00A77, 0x00A80}, {0x00A84, 0x00A84}, {0x00A8E, 0x00A8E}, {0x00A92, 0x00A92}, {0x00AA9, 0x00AA9}, {0x00AB1, 0x00AB1}, {0x00AB4, 0x00AB4}, {0x00ABA, 0x00ABB}, {0x00AC6, 0x00AC6}, {0x00ACA, 0x00ACA}, {0x00ACE, 0x00ACF}, {0x00AD1, 0x00ADF}, {0x00AE4, 0x00AE5}, {0x00AF2, 0x00AF8}, {0x00B00, 0x00B00}, {0x00B04, 0x00B04}, {0x00B0D, 0x00B0E}, {0x00B11, 0x00B12}, {0x00B29, 0x00B29}, {0x00B31, 0x00B31}, {0x00B34, 0x00B34}, {0x00B3A, 0x00B3B}, {0x00B45, 0x00B46}, {0x00B49, 0x00B4A}, {0x00B4E, 0x00B54}, {0x00B58, 0x00B5B}, {0x00B5E, 0x00B5E}, {0x00B64, 0x00B65}, {0x00B78, 0x00B81}, {0x00B84, 0x00B84}, {0x00B8B, 0x00B8D}, {0x00B91, 0x00B91}, {0x00B96, 0x00B98}, {0x00B9B, 0x00B9B}, {0x00B9D, 0x00B9D}, {0x00BA0, 0x00BA2}, {0x00BA5, 0x00BA7}, {0x00BAB, 0x00BAD}, {0x00BBA, 0x00BBD}, {0x00BC3, 0x00BC5}, {0x00BC9, 0x00BC9}, {0x00BCE, 0x00BCF}, {0x00BD1, 0x00BD6}, {0x00BD8, 0x00BE5}, {0x00BFB, 0x00BFF}, {0x00C0D, 0x00C0D}, {0x00C11, 0x00C11}, {0x00C29, 0x00C29}, {0x00C3A, 0x00C3B}, {0x00C45, 0x00C45}, {0x00C49, 0x00C49}, {0x00C4E, 0x00C54}, {0x00C57, 0x00C57}, {0x00C5B, 0x00C5C}, {0x00C5E, 0x00C5F}, {0x00C64, 0x00C65}, {0x00C70, 0x00C76}, {0x00C8D, 0x00C8D}, {0x00C91, 0x00C91}, {0x00CA9, 0x00CA9}, {0x00CB4, 0x00CB4}, {0x00CBA, 0x00CBB}, {0x00CC5, 0x00CC5}, {0x00CC9, 0x00CC9}, {0x00CCE, 0x00CD4}, {0x00CD7, 0x00CDC}, {0x00CDF, 0x00CDF}, {0x00CE4, 0x00CE5}, {0x00CF0, 0x00CF0}, {0x00CF3, 0x00CFF}, {0x00D0D, 0x00D0D}, {0x00D11, 0x00D11}, {0x00D45, 0x00D45}, {0x00D49, 0x00D49}, {0x00D50, 0x00D53}, {0x00D64, 0x00D65}, {0x00D80, 0x00D80}, {0x00D84, 0x00D84}, {0x00D97, 0x00D99}, {0x00DB2, 0x00DB2}, {0x00DBC, 0x00DBC}, {0x00DBE, 0x00DBF}, {0x00DC7, 0x00DC9}, {0x00DCB, 0x00DCE}, {0x00DD5, 0x00DD5}, {0x00DD7, 0x00DD7}, {0x00DE0, 0x00DE5}, {0x00DF0, 0x00DF1}, {0x00DF5, 0x00E00}, {0x00E3B, 0x00E3E}, {0x00E5C, 0x00E80}, {0x00E83, 0x00E83}, {0x00E85, 0x00E85}, {0x00E8B, 0x00E8B}, {0x00EA4, 0x00EA4}, {0x00EA6, 0x00EA6}, {0x00EBE, 0x00EBF}, {0x00EC5, 0x00EC5}, {0x00EC7, 0x00EC7}, {0x00ECE, 0x00ECF}, {0x00EDA, 0x00EDB}, {0x00EE0, 0x00EFF}, {0x00F48, 0x00F48}, {0x00F6D, 0x00F70}, {0x00F98, 0x00F98}, {0x00FBD, 0x00FBD}, {0x00FCD, 0x00FCD}, {0x00FDB, 0x00FFF}, {0x010C6, 0x010C6}, {0x010C8, 0x010CC}, {0x010CE, 0x010CF}, {0x01249, 0x01249}, {0x0124E, 0x0124F}, {0x01257, 0x01257}, {0x01259, 0x01259}, {0x0125E, 0x0125F}, {0x01289, 0x01289}, {0x0128E, 0x0128F}, {0x012B1, 0x012B1}, {0x012B6, 0x012B7}, {0x012BF, 0x012BF}, {0x012C1, 0x012C1}, {0x012C6, 0x012C7}, {0x012D7, 0x012D7}, {0x01311, 0x01311}, {0x01316, 0x01317}, {0x0135B, 0x0135C}, {0x0137D, 0x0137F}, {0x0139A, 0x0139F}, {0x013F6, 0x013F7}, {0x013FE, 0x013FF}, {0x0169D, 0x0169F}, {0x016F9, 0x016FF}, {0x01716, 0x0171E}, {0x01737, 0x0173F}, {0x01754, 0x0175F}, {0x0176D, 0x0176D}, {0x01771, 0x01771}, {0x01774, 0x0177F}, {0x017DE, 0x017DF}, {0x017EA, 0x017EF}, {0x017FA, 0x017FF}, {0x0181A, 0x0181F}, {0x01879, 0x0187F}, {0x018AB, 0x018AF}, {0x018F6, 0x018FF}, {0x0191F, 0x0191F}, {0x0192C, 0x0192F}, {0x0193C, 0x0193F}, {0x01941, 0x01943}, {0x0196E, 0x0196F}, {0x01975, 0x0197F}, {0x019AC, 0x019AF}, {0x019CA, 0x019CF}, {0x019DB, 0x019DD}, {0x01A1C, 0x01A1D}, {0x01A5F, 0x01A5F}, {0x01A7D, 0x01A7E}, {0x01A8A, 0x01A8F}, {0x01A9A, 0x01A9F}, {0x01AAE, 0x01AAF}, {0x01ACF, 0x01AFF}, {0x01B4D, 0x01B4F}, {0x01B7F, 0x01B7F}, {0x01BF4, 0x01BFB}, {0x01C38, 0x01C3A}, {0x01C4A, 0x01C4C}, {0x01C89, 0x01C8F}, {0x01CBB, 0x01CBC}, {0x01CC8, 0x01CCF}, {0x01CFB, 0x01CFF}, {0x01F16, 0x01F17}, {0x01F1E, 0x01F1F}, {0x01F46, 0x01F47}, {0x01F4E, 0x01F4F}, {0x01F58, 0x01F58}, {0x01F5A, 0x01F5A}, {0x01F5C, 0x01F5C}, {0x01F5E, 0x01F5E}, {0x01F7E, 0x01F7F}, {0x01FB5, 0x01FB5}, {0x01FC5, 0x01FC5}, {0x01FD4, 0x01FD5}, {0x01FDC, 0x01FDC}, {0x01FF0, 0x01FF1}, {0x01FF5, 0x01FF5}, {0x01FFF, 0x01FFF}, {0x02065, 0x02065}, {0x02072, 0x02073}, {0x0208F, 0x0208F}, {0x0209D, 0x0209F}, {0x020C1, 0x020CF}, {0x020F1, 0x020FF}, {0x0218C, 0x0218F}, {0x02427, 0x0243F}, {0x0244B, 0x0245F}, {0x02B74, 0x02B75}, {0x02B96, 0x02B96}, {0x02CF4, 0x02CF8}, {0x02D26, 0x02D26}, {0x02D28, 0x02D2C}, {0x02D2E, 0x02D2F}, {0x02D68, 0x02D6E}, {0x02D71, 0x02D7E}, {0x02D97, 0x02D9F}, {0x02DA7, 0x02DA7}, {0x02DAF, 0x02DAF}, {0x02DB7, 0x02DB7}, {0x02DBF, 0x02DBF}, {0x02DC7, 0x02DC7}, {0x02DCF, 0x02DCF}, {0x02DD7, 0x02DD7}, {0x02DDF, 0x02DDF}, {0x02E5E, 0x02E7F}, {0x02E9A, 0x02E9A}, {0x02EF4, 0x02EFF}, {0x02FD6, 0x02FEF}, {0x02FFC, 0x02FFF}, {0x03040, 0x03040}, {0x03097, 0x03098}, {0x03100, 0x03104}, {0x03130, 0x03130}, {0x0318F, 0x0318F}, {0x031E4, 0x031EF}, {0x0321F, 0x0321F}, {0x03401, 0x04DBE}, {0x04E01, 0x09FFE}, {0x0A48D, 0x0A48F}, {0x0A4C7, 0x0A4CF}, {0x0A62C, 0x0A63F}, {0x0A6F8, 0x0A6FF}, {0x0A7CB, 0x0A7CF}, {0x0A7D2, 0x0A7D2}, {0x0A7D4, 0x0A7D4}, {0x0A7DA, 0x0A7F1}, {0x0A82D, 0x0A82F}, {0x0A83A, 0x0A83F}, {0x0A878, 0x0A87F}, {0x0A8C6, 0x0A8CD}, {0x0A8DA, 0x0A8DF}, {0x0A954, 0x0A95E}, {0x0A97D, 0x0A97F}, {0x0A9CE, 0x0A9CE}, {0x0A9DA, 0x0A9DD}, {0x0A9FF, 0x0A9FF}, {0x0AA37, 0x0AA3F}, {0x0AA4E, 0x0AA4F}, {0x0AA5A, 0x0AA5B}, {0x0AAC3, 0x0AADA}, {0x0AAF7, 0x0AB00}, {0x0AB07, 0x0AB08}, {0x0AB0F, 0x0AB10}, {0x0AB17, 0x0AB1F}, {0x0AB27, 0x0AB27}, {0x0AB2F, 0x0AB2F}, {0x0AB6C, 0x0AB6F}, {0x0ABEE, 0x0ABEF}, {0x0ABFA, 0x0ABFF}, {0x0AC01, 0x0D7A2}, {0x0D7A4, 0x0D7AF}, {0x0D7C7, 0x0D7CA}, {0x0D7FC, 0x0D7FF}, {0x0FA6E, 0x0FA6F}, {0x0FADA, 0x0FAFF}, {0x0FB07, 0x0FB12}, {0x0FB18, 0x0FB1C}, {0x0FB37, 0x0FB37}, {0x0FB3D, 0x0FB3D}, {0x0FB3F, 0x0FB3F}, {0x0FB42, 0x0FB42}, {0x0FB45, 0x0FB45}, {0x0FBC3, 0x0FBD2}, {0x0FD90, 0x0FD91}, {0x0FDC8, 0x0FDCE}, {0x0FE1A, 0x0FE1F}, {0x0FE53, 0x0FE53}, {0x0FE67, 0x0FE67}, {0x0FE6C, 0x0FE6F}, {0x0FE75, 0x0FE75}, {0x0FEFD, 0x0FEFE}, {0x0FF00, 0x0FF00}, {0x0FFBF, 0x0FFC1}, {0x0FFC8, 0x0FFC9}, {0x0FFD0, 0x0FFD1}, {0x0FFD8, 0x0FFD9}, {0x0FFDD, 0x0FFDF}, {0x0FFE7, 0x0FFE7}, {0x0FFEF, 0x0FFF8}, {0x1000C, 0x1000C}, {0x10027, 0x10027}, {0x1003B, 0x1003B}, {0x1003E, 0x1003E}, {0x1004E, 0x1004F}, {0x1005E, 0x1007F}, {0x100FB, 0x100FF}, {0x10103, 0x10106}, {0x10134, 0x10136}, {0x1018F, 0x1018F}, {0x1019D, 0x1019F}, {0x101A1, 0x101CF}, {0x101FE, 0x1027F}, {0x1029D, 0x1029F}, {0x102D1, 0x102DF}, {0x102FC, 0x102FF}, {0x10324, 0x1032C}, {0x1034B, 0x1034F}, {0x1037B, 0x1037F}, {0x1039E, 0x1039E}, {0x103C4, 0x103C7}, {0x103D6, 0x103FF}, {0x1049E, 0x1049F}, {0x104AA, 0x104AF}, {0x104D4, 0x104D7}, {0x104FC, 0x104FF}, {0x10528, 0x1052F}, {0x10564, 0x1056E}, {0x1057B, 0x1057B}, {0x1058B, 0x1058B}, {0x10593, 0x10593}, {0x10596, 0x10596}, {0x105A2, 0x105A2}, {0x105B2, 0x105B2}, {0x105BA, 0x105BA}, {0x105BD, 0x105FF}, {0x10737, 0x1073F}, {0x10756, 0x1075F}, {0x10768, 0x1077F}, {0x10786, 0x10786}, {0x107B1, 0x107B1}, {0x107BB, 0x107FF}, {0x10806, 0x10807}, {0x10809, 0x10809}, {0x10836, 0x10836}, {0x10839, 0x1083B}, {0x1083D, 0x1083E}, {0x10856, 0x10856}, {0x1089F, 0x108A6}, {0x108B0, 0x108DF}, {0x108F3, 0x108F3}, {0x108F6, 0x108FA}, {0x1091C, 0x1091E}, {0x1093A, 0x1093E}, {0x10940, 0x1097F}, {0x109B8, 0x109BB}, {0x109D0, 0x109D1}, {0x10A04, 0x10A04}, {0x10A07, 0x10A0B}, {0x10A14, 0x10A14}, {0x10A18, 0x10A18}, {0x10A36, 0x10A37}, {0x10A3B, 0x10A3E}, {0x10A49, 0x10A4F}, {0x10A59, 0x10A5F}, {0x10AA0, 0x10ABF}, {0x10AE7, 0x10AEA}, {0x10AF7, 0x10AFF}, {0x10B36, 0x10B38}, {0x10B56, 0x10B57}, {0x10B73, 0x10B77}, {0x10B92, 0x10B98}, {0x10B9D, 0x10BA8}, {0x10BB0, 0x10BFF}, {0x10C49, 0x10C7F}, {0x10CB3, 0x10CBF}, {0x10CF3, 0x10CF9}, {0x10D28, 0x10D2F}, {0x10D3A, 0x10E5F}, {0x10E7F, 0x10E7F}, {0x10EAA, 0x10EAA}, {0x10EAE, 0x10EAF}, {0x10EB2, 0x10EFF}, {0x10F28, 0x10F2F}, {0x10F5A, 0x10F6F}, {0x10F8A, 0x10FAF}, {0x10FCC, 0x10FDF}, {0x10FF7, 0x10FFF}, {0x1104E, 0x11051}, {0x11076, 0x1107E}, {0x110C3, 0x110CC}, {0x110CE, 0x110CF}, {0x110E9, 0x110EF}, {0x110FA, 0x110FF}, {0x11135, 0x11135}, {0x11148, 0x1114F}, {0x11177, 0x1117F}, {0x111E0, 0x111E0}, {0x111F5, 0x111FF}, {0x11212, 0x11212}, {0x1123F, 0x1127F}, {0x11287, 0x11287}, {0x11289, 0x11289}, {0x1128E, 0x1128E}, {0x1129E, 0x1129E}, {0x112AA, 0x112AF}, {0x112EB, 0x112EF}, {0x112FA, 0x112FF}, {0x11304, 0x11304}, {0x1130D, 0x1130E}, {0x11311, 0x11312}, {0x11329, 0x11329}, {0x11331, 0x11331}, {0x11334, 0x11334}, {0x1133A, 0x1133A}, {0x11345, 0x11346}, {0x11349, 0x1134A}, {0x1134E, 0x1134F}, {0x11351, 0x11356}, {0x11358, 0x1135C}, {0x11364, 0x11365}, {0x1136D, 0x1136F}, {0x11375, 0x113FF}, {0x1145C, 0x1145C}, {0x11462, 0x1147F}, {0x114C8, 0x114CF}, {0x114DA, 0x1157F}, {0x115B6, 0x115B7}, {0x115DE, 0x115FF}, {0x11645, 0x1164F}, {0x1165A, 0x1165F}, {0x1166D, 0x1167F}, {0x116BA, 0x116BF}, {0x116CA, 0x116FF}, {0x1171B, 0x1171C}, {0x1172C, 0x1172F}, {0x11747, 0x117FF}, {0x1183C, 0x1189F}, {0x118F3, 0x118FE}, {0x11907, 0x11908}, {0x1190A, 0x1190B}, {0x11914, 0x11914}, {0x11917, 0x11917}, {0x11936, 0x11936}, {0x11939, 0x1193A}, {0x11947, 0x1194F}, {0x1195A, 0x1199F}, {0x119A8, 0x119A9}, {0x119D8, 0x119D9}, {0x119E5, 0x119FF}, {0x11A48, 0x11A4F}, {0x11AA3, 0x11AAF}, {0x11AF9, 0x11BFF}, {0x11C09, 0x11C09}, {0x11C37, 0x11C37}, {0x11C46, 0x11C4F}, {0x11C6D, 0x11C6F}, {0x11C90, 0x11C91}, {0x11CA8, 0x11CA8}, {0x11CB7, 0x11CFF}, {0x11D07, 0x11D07}, {0x11D0A, 0x11D0A}, {0x11D37, 0x11D39}, {0x11D3B, 0x11D3B}, {0x11D3E, 0x11D3E}, {0x11D48, 0x11D4F}, {0x11D5A, 0x11D5F}, {0x11D66, 0x11D66}, {0x11D69, 0x11D69}, {0x11D8F, 0x11D8F}, {0x11D92, 0x11D92}, {0x11D99, 0x11D9F}, {0x11DAA, 0x11EDF}, {0x11EF9, 0x11FAF}, {0x11FB1, 0x11FBF}, {0x11FF2, 0x11FFE}, {0x1239A, 0x123FF}, {0x1246F, 0x1246F}, {0x12475, 0x1247F}, {0x12544, 0x12F8F}, {0x12FF3, 0x12FFF}, {0x1342F, 0x1342F}, {0x13439, 0x143FF}, {0x14647, 0x167FF}, {0x16A39, 0x16A3F}, {0x16A5F, 0x16A5F}, {0x16A6A, 0x16A6D}, {0x16ABF, 0x16ABF}, {0x16ACA, 0x16ACF}, {0x16AEE, 0x16AEF}, {0x16AF6, 0x16AFF}, {0x16B46, 0x16B4F}, {0x16B5A, 0x16B5A}, {0x16B62, 0x16B62}, {0x16B78, 0x16B7C}, {0x16B90, 0x16E3F}, {0x16E9B, 0x16EFF}, {0x16F4B, 0x16F4E}, {0x16F88, 0x16F8E}, {0x16FA0, 0x16FDF}, {0x16FE5, 0x16FEF}, {0x16FF2, 0x16FFF}, {0x17001, 0x187F6}, {0x187F8, 0x187FF}, {0x18CD6, 0x18CFF}, {0x18D01, 0x18D07}, {0x18D09, 0x1AFEF}, {0x1AFF4, 0x1AFF4}, {0x1AFFC, 0x1AFFC}, {0x1AFFF, 0x1AFFF}, {0x1B123, 0x1B14F}, {0x1B153, 0x1B163}, {0x1B168, 0x1B16F}, {0x1B2FC, 0x1BBFF}, {0x1BC6B, 0x1BC6F}, {0x1BC7D, 0x1BC7F}, {0x1BC89, 0x1BC8F}, {0x1BC9A, 0x1BC9B}, {0x1BCA4, 0x1CEFF}, {0x1CF2E, 0x1CF2F}, {0x1CF47, 0x1CF4F}, {0x1CFC4, 0x1CFFF}, {0x1D0F6, 0x1D0FF}, {0x1D127, 0x1D128}, {0x1D1EB, 0x1D1FF}, {0x1D246, 0x1D2DF}, {0x1D2F4, 0x1D2FF}, {0x1D357, 0x1D35F}, {0x1D379, 0x1D3FF}, {0x1D455, 0x1D455}, {0x1D49D, 0x1D49D}, {0x1D4A0, 0x1D4A1}, {0x1D4A3, 0x1D4A4}, {0x1D4A7, 0x1D4A8}, {0x1D4AD, 0x1D4AD}, {0x1D4BA, 0x1D4BA}, {0x1D4BC, 0x1D4BC}, {0x1D4C4, 0x1D4C4}, {0x1D506, 0x1D506}, {0x1D50B, 0x1D50C}, {0x1D515, 0x1D515}, {0x1D51D, 0x1D51D}, {0x1D53A, 0x1D53A}, {0x1D53F, 0x1D53F}, {0x1D545, 0x1D545}, {0x1D547, 0x1D549}, {0x1D551, 0x1D551}, {0x1D6A6, 0x1D6A7}, {0x1D7CC, 0x1D7CD}, {0x1DA8C, 0x1DA9A}, {0x1DAA0, 0x1DAA0}, {0x1DAB0, 0x1DEFF}, {0x1DF1F, 0x1DFFF}, {0x1E007, 0x1E007}, {0x1E019, 0x1E01A}, {0x1E022, 0x1E022}, {0x1E025, 0x1E025}, {0x1E02B, 0x1E0FF}, {0x1E12D, 0x1E12F}, {0x1E13E, 0x1E13F}, {0x1E14A, 0x1E14D}, {0x1E150, 0x1E28F}, {0x1E2AF, 0x1E2BF}, {0x1E2FA, 0x1E2FE}, {0x1E300, 0x1E7DF}, {0x1E7E7, 0x1E7E7}, {0x1E7EC, 0x1E7EC}, {0x1E7EF, 0x1E7EF}, {0x1E7FF, 0x1E7FF}, {0x1E8C5, 0x1E8C6}, {0x1E8D7, 0x1E8FF}, {0x1E94C, 0x1E94F}, {0x1E95A, 0x1E95D}, {0x1E960, 0x1EC70}, {0x1ECB5, 0x1ED00}, {0x1ED3E, 0x1EDFF}, {0x1EE04, 0x1EE04}, {0x1EE20, 0x1EE20}, {0x1EE23, 0x1EE23}, {0x1EE25, 0x1EE26}, {0x1EE28, 0x1EE28}, {0x1EE33, 0x1EE33}, {0x1EE38, 0x1EE38}, {0x1EE3A, 0x1EE3A}, {0x1EE3C, 0x1EE41}, {0x1EE43, 0x1EE46}, {0x1EE48, 0x1EE48}, {0x1EE4A, 0x1EE4A}, {0x1EE4C, 0x1EE4C}, {0x1EE50, 0x1EE50}, {0x1EE53, 0x1EE53}, {0x1EE55, 0x1EE56}, {0x1EE58, 0x1EE58}, {0x1EE5A, 0x1EE5A}, {0x1EE5C, 0x1EE5C}, {0x1EE5E, 0x1EE5E}, {0x1EE60, 0x1EE60}, {0x1EE63, 0x1EE63}, {0x1EE65, 0x1EE66}, {0x1EE6B, 0x1EE6B}, {0x1EE73, 0x1EE73}, {0x1EE78, 0x1EE78}, {0x1EE7D, 0x1EE7D}, {0x1EE7F, 0x1EE7F}, {0x1EE8A, 0x1EE8A}, {0x1EE9C, 0x1EEA0}, {0x1EEA4, 0x1EEA4}, {0x1EEAA, 0x1EEAA}, {0x1EEBC, 0x1EEEF}, {0x1EEF2, 0x1EFFF}, {0x1F02C, 0x1F02F}, {0x1F094, 0x1F09F}, {0x1F0AF, 0x1F0B0}, {0x1F0C0, 0x1F0C0}, {0x1F0D0, 0x1F0D0}, {0x1F0F6, 0x1F0FF}, {0x1F1AE, 0x1F1E5}, {0x1F203, 0x1F20F}, {0x1F23C, 0x1F23F}, {0x1F249, 0x1F24F}, {0x1F252, 0x1F25F}, {0x1F266, 0x1F2FF}, {0x1F6D8, 0x1F6DC}, {0x1F6ED, 0x1F6EF}, {0x1F6FD, 0x1F6FF}, {0x1F774, 0x1F77F}, {0x1F7D9, 0x1F7DF}, {0x1F7EC, 0x1F7EF}, {0x1F7F1, 0x1F7FF}, {0x1F80C, 0x1F80F}, {0x1F848, 0x1F84F}, {0x1F85A, 0x1F85F}, {0x1F888, 0x1F88F}, {0x1F8AE, 0x1F8AF}, {0x1F8B2, 0x1F8FF}, {0x1FA54, 0x1FA5F}, {0x1FA6E, 0x1FA6F}, {0x1FA75, 0x1FA77}, {0x1FA7D, 0x1FA7F}, {0x1FA87, 0x1FA8F}, {0x1FAAD, 0x1FAAF}, {0x1FABB, 0x1FABF}, {0x1FAC6, 0x1FACF}, {0x1FADA, 0x1FADF}, {0x1FAE8, 0x1FAEF}, {0x1FAF7, 0x1FAFF}, {0x1FB93, 0x1FB93}, {0x1FBCB, 0x1FBEF}, {0x1FBFA, 0x1FFFD}, {0x20001, 0x2A6DE}, {0x2A6E0, 0x2A6FF}, {0x2A701, 0x2B737}, {0x2B739, 0x2B73F}, {0x2B741, 0x2B81C}, {0x2B81E, 0x2B81F}, {0x2B821, 0x2CEA0}, {0x2CEA2, 0x2CEAF}, {0x2CEB1, 0x2EBDF}, {0x2EBE1, 0x2F7FF}, {0x2FA1E, 0x2FFFD}, {0x30001, 0x31349}, {0x3134B, 0x3FFFD}, {0x40000, 0x4FFFD}, {0x50000, 0x5FFFD}, {0x60000, 0x6FFFD}, {0x70000, 0x7FFFD}, {0x80000, 0x8FFFD}, {0x90000, 0x9FFFD}, {0xA0000, 0xAFFFD}, {0xB0000, 0xBFFFD}, {0xC0000, 0xCFFFD}, {0xD0000, 0xDFFFD}, {0xE0000, 0xE0000}, {0xE0002, 0xE001F}, {0xE0080, 0xE00FF}, {0xE01F0, 0xEFFFD} }; /* Non-characters. */ static const struct widechar_range widechar_nonchar_table[] = { {0x0FDD0, 0x0FDEF}, {0x0FFFE, 0x0FFFF}, {0x1FFFE, 0x1FFFF}, {0x2FFFE, 0x2FFFF}, {0x3FFFE, 0x3FFFF}, {0x4FFFE, 0x4FFFF}, {0x5FFFE, 0x5FFFF}, {0x6FFFE, 0x6FFFF}, {0x7FFFE, 0x7FFFF}, {0x8FFFE, 0x8FFFF}, {0x9FFFE, 0x9FFFF}, {0xAFFFE, 0xAFFFF}, {0xBFFFE, 0xBFFFF}, {0xCFFFE, 0xCFFFF}, {0xDFFFE, 0xDFFFF}, {0xEFFFE, 0xEFFFF}, {0xFFFFE, 0xFFFFF}, {0x10FFFE, 0x10FFFF} }; /* Characters that were widened from width 1 to 2 in Unicode 9. */ static const struct widechar_range widechar_widened_table[] = { {0x0231A, 0x0231B}, {0x023E9, 0x023EC}, {0x023F0, 0x023F0}, {0x023F3, 0x023F3}, {0x025FD, 0x025FE}, {0x02614, 0x02615}, {0x02648, 0x02653}, {0x0267F, 0x0267F}, {0x02693, 0x02693}, {0x026A1, 0x026A1}, {0x026AA, 0x026AB}, {0x026BD, 0x026BE}, {0x026C4, 0x026C5}, {0x026CE, 0x026CE}, {0x026D4, 0x026D4}, {0x026EA, 0x026EA}, {0x026F2, 0x026F3}, {0x026F5, 0x026F5}, {0x026FA, 0x026FA}, {0x026FD, 0x026FD}, {0x02705, 0x02705}, {0x0270A, 0x0270B}, {0x02728, 0x02728}, {0x0274C, 0x0274C}, {0x0274E, 0x0274E}, {0x02753, 0x02755}, {0x02757, 0x02757}, {0x02795, 0x02797}, {0x027B0, 0x027B0}, {0x027BF, 0x027BF}, {0x02B1B, 0x02B1C}, {0x02B50, 0x02B50}, {0x02B55, 0x02B55}, {0x1F004, 0x1F004}, {0x1F0CF, 0x1F0CF}, {0x1F18E, 0x1F18E}, {0x1F191, 0x1F19A}, {0x1F201, 0x1F201}, {0x1F21A, 0x1F21A}, {0x1F22F, 0x1F22F}, {0x1F232, 0x1F236}, {0x1F238, 0x1F23A}, {0x1F250, 0x1F251}, {0x1F300, 0x1F320}, {0x1F32D, 0x1F335}, {0x1F337, 0x1F37C}, {0x1F37E, 0x1F393}, {0x1F3A0, 0x1F3CA}, {0x1F3CF, 0x1F3D3}, {0x1F3E0, 0x1F3F0}, {0x1F3F4, 0x1F3F4}, {0x1F3F8, 0x1F43E}, {0x1F440, 0x1F440}, {0x1F442, 0x1F4FC}, {0x1F4FF, 0x1F53D}, {0x1F54B, 0x1F54E}, {0x1F550, 0x1F567}, {0x1F595, 0x1F596}, {0x1F5FB, 0x1F64F}, {0x1F680, 0x1F6C5}, {0x1F6CC, 0x1F6CC}, {0x1F6D0, 0x1F6D0}, {0x1F6EB, 0x1F6EC}, {0x1F910, 0x1F918}, {0x1F980, 0x1F984}, {0x1F9C0, 0x1F9C0} }; template bool widechar_in_table(const Collection &arr, uint32_t c) { auto where = std::lower_bound(std::begin(arr), std::end(arr), c, [](widechar_range p, uint32_t c) { return p.hi < c; }); return where != std::end(arr) && where->lo <= c; } /* Return the width of character c, or a special negative value. */ int wcwidth(uint32_t c) { if (widechar_in_table(widechar_ascii_table, c)) return 1; if (widechar_in_table(widechar_private_table, c)) return widechar_private_use; if (widechar_in_table(widechar_nonprint_table, c)) return widechar_nonprint; if (widechar_in_table(widechar_nonchar_table, c)) return widechar_non_character; if (widechar_in_table(widechar_combining_table, c)) return widechar_combining; if (widechar_in_table(widechar_combiningletters_table, c)) return widechar_combining; if (widechar_in_table(widechar_doublewide_table, c)) return 2; if (widechar_in_table(widechar_ambiguous_table, c)) return widechar_ambiguous; if (widechar_in_table(widechar_unassigned_table, c)) return widechar_unassigned; if (widechar_in_table(widechar_widened_table, c)) return widechar_widened_in_9; return 1; } } // namespace #endif // WIDECHAR_WIDTH_H btop-1.4.5/manpage.md000066400000000000000000000027761506333644200144410ustar00rootroot00000000000000% btop(1) | User Commands % % 2025-05-01 # NAME btop - Resource monitor that shows usage and stats for processor, memory, disks, network, and processes. # SYNOPSIS **btop** [**-c**] [**-d**] [**-l**] [**-t**] [**-p** _id_] [**-u** _ms_] [**\-\-force-utf**] **btop** [{**-h** | **\-\-help**} | {**-V** | **\-\-version**}] # DESCRIPTION **btop** is a program that shows usage and stats for processor, memory, disks, network, and processes. # OPTIONS The program follows the usual GNU command line syntax, with long options starting with two dashes ('-'). A summary of options is included below. **-c**, **\-\-config _file_** : Path to a config file. **-d**, **\-\-debug** : Start in debug mode with additional logs and metrics. **-f**, **\-\-filter _filter_** : Set an initial process filter. **\-\-force-utf** : Force start even if no UTF-8 locale was detected. **-l**, **\-\-low-color** : Disable true color, 256 colors only. **-p**, **\-\-preset _id_** : Start with a preset (0-9). **-t**, **\-\-tty-on** : Force tty mode with ANSI graph symbols and 16 colors only. **\-\-tty-off** : Force disable tty mode. **-u**, **\-\-update _ms_** : Set an initial update rate in milliseconds. **-h**, **\-\-help** : Show summary of options. **-V**, **\-\-version** : Show version of program. # BUGS The upstream bug tracker can be found at https://github.com/aristocratos/btop/issues. # SEE ALSO **top**(1), **htop**(1) # AUTHOR **btop** was written by Jakob P. Liljenberg a.k.a. "Aristocratos". btop-1.4.5/renovate.json000066400000000000000000000001621506333644200152100ustar00rootroot00000000000000{ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" ] } btop-1.4.5/snap/000077500000000000000000000000001506333644200134345ustar00rootroot00000000000000btop-1.4.5/snap/snapcraft.yaml000066400000000000000000000026431506333644200163060ustar00rootroot00000000000000name: btop adopt-info: btop summary: Resource monitor that shows usage and stats description: | Resource monitor that shows usage and stats for processor, memory, disks, network and processes. C++ version and continuation of bashtop and bpytop. license: Apache-2.0 base: core22 grade: stable confinement: strict compression: lzo architectures: - build-on: amd64 - build-on: arm64 - build-on: armhf - build-on: ppc64el - build-on: s390x package-repositories: - type: apt ppa: ubuntu-toolchain-r/test apps: btop: command: usr/local/bin/btop environment: LC_ALL: C.UTF-8 LANG: C.UTF-8 plugs: - mount-observe - process-control - system-observe - hardware-observe - network - network-observe - home - removable-media - opengl parts: btop: source: https://github.com/aristocratos/btop source-type: git plugin: make make-parameters: - CXX=g++-11 - PREFIX=/usr/local - STATIC=true - ADDFLAGS="-D SNAPPED" # Add 'lowdown' to build dependencies as soon at Snap builder updates from # Ubuntu 20.04 "Focal" to something newer that has Lowdown included build-packages: - coreutils - sed - git - build-essential - gcc-11 - g++-11 override-pull: | snapcraftctl pull snapcraftctl set-version "$(git describe --tags | sed 's/^v//' | cut -d "-" -f1)" btop-1.4.5/src/000077500000000000000000000000001506333644200132625ustar00rootroot00000000000000btop-1.4.5/src/btop.cpp000066400000000000000000001031111506333644200147270ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #ifdef __FreeBSD__ #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef __APPLE__ #include #include #include #endif #include "btop_cli.hpp" #include "btop_shared.hpp" #include "btop_tools.hpp" #include "btop_config.hpp" #include "btop_input.hpp" #include "btop_theme.hpp" #include "btop_draw.hpp" #include "btop_menu.hpp" #include "fmt/core.h" #include "fmt/ostream.h" using std::atomic; using std::cout; using std::flush; using std::min; using std::string; using std::string_view; using std::to_string; using std::vector; namespace fs = std::filesystem; using namespace Tools; using namespace std::chrono_literals; using namespace std::literals; namespace Global { const vector> Banner_src = { {"#E62525", "██████╗ ████████╗ ██████╗ ██████╗"}, {"#CD2121", "██╔â•â•██╗╚â•â•██╔â•â•â•██╔â•â•â•██╗██╔â•â•██╗ ██╗ ██╗"}, {"#B31D1D", "██████╔╠██║ ██║ ██║██████╔╠██████╗██████╗"}, {"#9A1919", "██╔â•â•██╗ ██║ ██║ ██║██╔â•â•â•╠╚â•██╔â•â•╚â•██╔â•â•"}, {"#801414", "██████╔╠██║ ╚██████╔â•██║ ╚â•╠╚â•â•"}, {"#000000", "╚â•â•â•â•â•╠╚â•╠╚â•â•â•â•â•╠╚â•â•"}, }; const string Version = "1.4.5"; int coreCount; string overlay; string clock; string bg_black = "\x1b[0;40m"; string fg_white = "\x1b[1;97m"; string fg_green = "\x1b[1;92m"; string fg_red = "\x1b[0;91m"; uid_t real_uid, set_uid; fs::path self_path; string exit_error_msg; atomic thread_exception (false); bool debug{}; uint64_t start_time; atomic resized (false); atomic quitting (false); atomic should_quit (false); atomic should_sleep (false); atomic _runner_started (false); atomic init_conf (false); atomic reload_conf (false); } //* Handler for SIGWINCH and general resizing events, does nothing if terminal hasn't been resized unless force=true void term_resize(bool force) { static atomic resizing (false); if (Input::polling) { Global::resized = true; Input::interrupt(); return; } atomic_lock lck(resizing, true); if (auto refreshed = Term::refresh(true); refreshed or force) { if (force and refreshed) force = false; } else return; #ifdef GPU_SUPPORT static const array all_boxes = {"gpu5", "cpu", "mem", "net", "proc", "gpu0", "gpu1", "gpu2", "gpu3", "gpu4"}; #else static const array all_boxes = {"", "cpu", "mem", "net", "proc"}; #endif Global::resized = true; if (Runner::active) Runner::stop(); Term::refresh(); Config::unlock(); auto boxes = Config::getS("shown_boxes"); auto min_size = Term::get_min_size(boxes); auto minWidth = min_size.at(0), minHeight = min_size.at(1); while (not force or (Term::width < minWidth or Term::height < minHeight)) { sleep_ms(100); if (Term::width < minWidth or Term::height < minHeight) { int width = Term::width, height = Term::height; cout << fmt::format("{clear}{bg_black}{fg_white}" "{mv1}Terminal size too small:" "{mv2} Width = {fg_width}{width} {fg_white}Height = {fg_height}{height}" "{mv3}{fg_white}Needed for current config:" "{mv4}Width = {minWidth} Height = {minHeight}", "clear"_a = Term::clear, "bg_black"_a = Global::bg_black, "fg_white"_a = Global::fg_white, "mv1"_a = Mv::to((height / 2) - 2, (width / 2) - 11), "mv2"_a = Mv::to((height / 2) - 1, (width / 2) - 10), "fg_width"_a = (width < minWidth ? Global::fg_red : Global::fg_green), "width"_a = width, "fg_height"_a = (height < minHeight ? Global::fg_red : Global::fg_green), "height"_a = height, "mv3"_a = Mv::to((height / 2) + 1, (width / 2) - 12), "mv4"_a = Mv::to((height / 2) + 2, (width / 2) - 10), "minWidth"_a = minWidth, "minHeight"_a = minHeight ) << std::flush; bool got_key = false; for (; not Term::refresh() and not got_key; got_key = Input::poll(10)); if (got_key) { auto key = Input::get(); if (key == "q") clean_quit(0); else if (key.size() == 1 and isint(key)) { auto intKey = stoi(key); #ifdef GPU_SUPPORT if ((intKey == 0 and Gpu::count >= 5) or (intKey >= 5 and intKey - 4 <= Gpu::count)) { #else if (intKey > 0 and intKey < 5) { #endif const auto& box = all_boxes.at(intKey); Config::current_preset = -1; Config::toggle_box(box); boxes = Config::getS("shown_boxes"); } } } min_size = Term::get_min_size(boxes); minWidth = min_size.at(0); minHeight = min_size.at(1); } else if (not Term::refresh()) break; } Input::interrupt(); } //* Exit handler; stops threads, restores terminal and saves config changes void clean_quit(int sig) { if (Global::quitting) return; Global::quitting = true; Runner::stop(); if (Global::_runner_started) { #if defined __APPLE__ || defined __OpenBSD__ || defined __NetBSD__ if (pthread_join(Runner::runner_id, nullptr) != 0) { Logger::warning("Failed to join _runner thread on exit!"); pthread_cancel(Runner::runner_id); } #else constexpr struct timespec ts { .tv_sec = 5, .tv_nsec = 0 }; if (pthread_timedjoin_np(Runner::runner_id, nullptr, &ts) != 0) { Logger::warning("Failed to join _runner thread on exit!"); pthread_cancel(Runner::runner_id); } #endif } #ifdef GPU_SUPPORT Gpu::Nvml::shutdown(); Gpu::Rsmi::shutdown(); #endif Config::write(); if (Term::initialized) { Input::clear(); Term::restore(); } if (not Global::exit_error_msg.empty()) { sig = 1; Logger::error(Global::exit_error_msg); fmt::println(std::cerr, "{}ERROR: {}{}{}", Global::fg_red, Global::fg_white, Global::exit_error_msg, Fx::reset); } Logger::info("Quitting! Runtime: " + sec_to_dhms(time_s() - Global::start_time)); const auto excode = (sig != -1 ? sig : 0); #if defined __APPLE__ || defined __OpenBSD__ || defined __NetBSD__ _Exit(excode); #else quick_exit(excode); #endif } //* Handler for SIGTSTP; stops threads, restores terminal and sends SIGSTOP static void _sleep() { Runner::stop(); Term::restore(); std::raise(SIGSTOP); } //* Handler for SIGCONT; re-initialize terminal and force a resize event static void _resume() { Term::init(); term_resize(true); } static void _exit_handler() { clean_quit(-1); } static void _signal_handler(const int sig) { switch (sig) { case SIGINT: if (Runner::active) { Global::should_quit = true; Runner::stopping = true; Input::interrupt(); } else { clean_quit(0); } break; case SIGTSTP: if (Runner::active) { Global::should_sleep = true; Runner::stopping = true; Input::interrupt(); } else { _sleep(); } break; case SIGCONT: _resume(); break; case SIGWINCH: term_resize(); break; case SIGUSR1: // Input::poll interrupt break; case SIGUSR2: Global::reload_conf = true; Input::interrupt(); break; } } //* Config init void init_config(bool low_color, std::optional& filter) { atomic_lock lck(Global::init_conf); vector load_warnings; Config::load(Config::conf_file, load_warnings); Config::set("lowcolor", (low_color ? true : not Config::getB("truecolor"))); static bool first_init = true; if (Global::debug and first_init) { Logger::set("DEBUG"); Logger::debug("Running in DEBUG mode!"); } else Logger::set(Config::getS("log_level")); if (filter.has_value()) { Config::set("proc_filter", filter.value()); } static string log_level; if (const string current_level = Config::getS("log_level"); log_level != current_level) { log_level = current_level; Logger::info("Logger set to " + (Global::debug ? "DEBUG" : log_level)); } for (const auto& err_str : load_warnings) Logger::warning(err_str); first_init = false; } //* Manages secondary thread for collection and drawing of boxes namespace Runner { atomic active (false); atomic stopping (false); atomic waiting (false); atomic redraw (false); atomic coreNum_reset (false); //* Setup semaphore for triggering thread to do work // TODO: This can be made a local without too much effort. std::binary_semaphore do_work { 0 }; inline void thread_wait() { do_work.acquire(); } inline void thread_trigger() { do_work.release(); } //* RAII wrapper for pthread_mutex locking class thread_lock { pthread_mutex_t& pt_mutex; public: int status; explicit thread_lock(pthread_mutex_t& mtx) : pt_mutex(mtx) { pthread_mutex_init(&pt_mutex, nullptr); status = pthread_mutex_lock(&pt_mutex); } ~thread_lock() noexcept { if (status == 0) pthread_mutex_unlock(&pt_mutex); } thread_lock(const thread_lock& other) = delete; thread_lock& operator=(const thread_lock& other) = delete; thread_lock(thread_lock&& other) = delete; thread_lock& operator=(thread_lock&& other) = delete; }; //* Wrapper for raising privileges when using SUID bit class gain_priv { int status = -1; public: gain_priv() { if (Global::real_uid != Global::set_uid) this->status = seteuid(Global::set_uid); } ~gain_priv() noexcept { if (status == 0) status = seteuid(Global::real_uid); } gain_priv(const gain_priv& other) = delete; gain_priv& operator=(const gain_priv& other) = delete; gain_priv(gain_priv&& other) = delete; gain_priv& operator=(gain_priv&& other) = delete; }; string output; string empty_bg; bool pause_output{}; sigset_t mask; pthread_t runner_id; pthread_mutex_t mtx; enum debug_actions { collect_begin, collect_done, draw_begin, draw_begin_only, draw_done }; enum debug_array { collect, draw }; string debug_bg; std::unordered_map> debug_times; class MyNumPunct : public std::numpunct { protected: virtual char do_thousands_sep() const override { return '\''; } virtual std::string do_grouping() const override { return "\03"; } }; struct runner_conf { vector boxes; bool no_update; bool force_redraw; bool background_update; string overlay; string clock; }; struct runner_conf current_conf; static void debug_timer(const char* name, const int action) { switch (action) { case collect_begin: debug_times[name].at(collect) = time_micros(); return; case collect_done: debug_times[name].at(collect) = time_micros() - debug_times[name].at(collect); debug_times["total"].at(collect) += debug_times[name].at(collect); return; case draw_begin_only: debug_times[name].at(draw) = time_micros(); return; case draw_begin: debug_times[name].at(draw) = time_micros(); debug_times[name].at(collect) = debug_times[name].at(draw) - debug_times[name].at(collect); debug_times["total"].at(collect) += debug_times[name].at(collect); return; case draw_done: debug_times[name].at(draw) = time_micros() - debug_times[name].at(draw); debug_times["total"].at(draw) += debug_times[name].at(draw); return; } } //? ------------------------------- Secondary thread: async launcher and drawing ---------------------------------- static void * _runner(void *) { //? Block some signals in this thread to avoid deadlock from any signal handlers trying to stop this thread sigemptyset(&mask); // sigaddset(&mask, SIGINT); // sigaddset(&mask, SIGTSTP); sigaddset(&mask, SIGWINCH); sigaddset(&mask, SIGTERM); pthread_sigmask(SIG_BLOCK, &mask, nullptr); //? pthread_mutex_lock to lock thread and monitor health from main thread thread_lock pt_lck(mtx); if (pt_lck.status != 0) { Global::exit_error_msg = "Exception in runner thread -> pthread_mutex_lock error id: " + to_string(pt_lck.status); Global::thread_exception = true; Input::interrupt(); stopping = true; } //* ----------------------------------------------- THREAD LOOP ----------------------------------------------- while (not Global::quitting) { thread_wait(); atomic_wait_for(active, true, 5000); if (active) { Global::exit_error_msg = "Runner thread failed to get active lock!"; Global::thread_exception = true; Input::interrupt(); stopping = true; } if (stopping or Global::resized) { sleep_ms(1); continue; } //? Atomic lock used for blocking non thread-safe actions in main thread atomic_lock lck(active); //? Set effective user if SUID bit is set gain_priv powers{}; auto& conf = current_conf; //! DEBUG stats if (Global::debug) { if (debug_bg.empty() or redraw) Runner::debug_bg = Draw::createBox(2, 2, 33, #ifdef GPU_SUPPORT 9, #else 8, #endif "", true, "μs"); debug_times.clear(); debug_times["total"] = {0, 0}; } output.clear(); //* Run collection and draw functions for all boxes try { #ifdef GPU_SUPPORT //? GPU data collection const bool gpu_in_cpu_panel = Gpu::gpu_names.size() > 0 and ( Config::getS("cpu_graph_lower").starts_with("gpu-") or Config::getS("cpu_graph_upper").starts_with("gpu-") or (Gpu::shown == 0 and Config::getS("show_gpu_info") != "Off") ); vector gpu_panels = {}; for (auto& box : conf.boxes) if (box.starts_with("gpu")) gpu_panels.push_back(box.back()-'0'); vector gpus; if (gpu_in_cpu_panel or not gpu_panels.empty()) { if (Global::debug) debug_timer("gpu", collect_begin); gpus = Gpu::collect(conf.no_update); if (Global::debug) debug_timer("gpu", collect_done); } auto& gpus_ref = gpus; #else vector gpus_ref{}; #endif //? CPU if (v_contains(conf.boxes, "cpu")) { try { if (Global::debug) debug_timer("cpu", collect_begin); //? Start collect auto cpu = Cpu::collect(conf.no_update); if (coreNum_reset) { coreNum_reset = false; Cpu::core_mapping = Cpu::get_core_mapping(); Global::resized = true; Input::interrupt(); continue; } if (Global::debug) debug_timer("cpu", draw_begin); //? Draw box if (not pause_output) output += Cpu::draw(cpu, gpus_ref, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("cpu", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Cpu:: -> " + string{e.what()}); } } #ifdef GPU_SUPPORT //? GPU if (not gpu_panels.empty() and not gpus_ref.empty()) { try { if (Global::debug) debug_timer("gpu", draw_begin_only); //? Draw box if (not pause_output) for (unsigned long i = 0; i < gpu_panels.size(); ++i) output += Gpu::draw(gpus_ref[gpu_panels[i]], i, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("gpu", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Gpu:: -> " + string{e.what()}); } } #endif //? MEM if (v_contains(conf.boxes, "mem")) { try { if (Global::debug) debug_timer("mem", collect_begin); //? Start collect auto mem = Mem::collect(conf.no_update); if (Global::debug) debug_timer("mem", draw_begin); //? Draw box if (not pause_output) output += Mem::draw(mem, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("mem", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Mem:: -> " + string{e.what()}); } } //? NET if (v_contains(conf.boxes, "net")) { try { if (Global::debug) debug_timer("net", collect_begin); //? Start collect auto net = Net::collect(conf.no_update); if (Global::debug) debug_timer("net", draw_begin); //? Draw box if (not pause_output) output += Net::draw(net, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("net", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Net:: -> " + string{e.what()}); } } //? PROC if (v_contains(conf.boxes, "proc")) { try { if (Global::debug) debug_timer("proc", collect_begin); //? Start collect auto proc = Proc::collect(conf.no_update); if (Global::debug) debug_timer("proc", draw_begin); //? Draw box if (not pause_output) output += Proc::draw(proc, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("proc", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Proc:: -> " + string{e.what()}); } } } catch (const std::exception& e) { Global::exit_error_msg = "Exception in runner thread -> " + string{e.what()}; Global::thread_exception = true; Input::interrupt(); stopping = true; } if (stopping) { continue; } if (redraw or conf.force_redraw) { empty_bg.clear(); redraw = false; } if (not pause_output) output += conf.clock; if (not conf.overlay.empty() and not conf.background_update) pause_output = true; if (output.empty() and not pause_output) { if (empty_bg.empty()) { const int x = Term::width / 2 - 10, y = Term::height / 2 - 10; output += Term::clear; empty_bg = fmt::format( "{banner}" "{mv1}{titleFg}{b}No boxes shown!" "{mv2}{hiFg}1 {mainFg}| Show CPU box" "{mv3}{hiFg}2 {mainFg}| Show MEM box" "{mv4}{hiFg}3 {mainFg}| Show NET box" "{mv5}{hiFg}4 {mainFg}| Show PROC box" "{mv6}{hiFg}5-0 {mainFg}| Show GPU boxes" "{mv7}{hiFg}esc {mainFg}| Show menu" "{mv8}{hiFg}q {mainFg}| Quit", "banner"_a = Draw::banner_gen(y, 0, true), "titleFg"_a = Theme::c("title"), "b"_a = Fx::b, "hiFg"_a = Theme::c("hi_fg"), "mainFg"_a = Theme::c("main_fg"), "mv1"_a = Mv::to(y+6, x), "mv2"_a = Mv::to(y+8, x), "mv3"_a = Mv::to(y+9, x), "mv4"_a = Mv::to(y+10, x), "mv5"_a = Mv::to(y+11, x), "mv6"_a = Mv::to(y+12, x-2), "mv7"_a = Mv::to(y+13, x-2), "mv8"_a = Mv::to(y+14, x) ); } output += empty_bg; } //! DEBUG stats --> if (Global::debug and not Menu::active) { output += fmt::format("{pre}{box:5.5} {collect:>12.12} {draw:>12.12}{post}", "pre"_a = debug_bg + Theme::c("title") + Fx::b, "box"_a = "box", "collect"_a = "collect", "draw"_a = "draw", "post"_a = Theme::c("main_fg") + Fx::ub ); static auto loc = std::locale(std::locale::classic(), new MyNumPunct); #ifdef GPU_SUPPORT for (const string name : {"cpu", "mem", "net", "proc", "gpu", "total"}) { #else for (const string name : {"cpu", "mem", "net", "proc", "total"}) { #endif if (not debug_times.contains(name)) debug_times[name] = {0,0}; const auto& [time_collect, time_draw] = debug_times.at(name); if (name == "total") output += Fx::b; output += fmt::format(loc, "{mvLD}{name:5.5} {collect:12L} {draw:12L}", "mvLD"_a = Mv::l(31) + Mv::d(1), "name"_a = name, "collect"_a = time_collect, "draw"_a = time_draw ); } } //? If overlay isn't empty, print output without color and then print overlay on top cout << Term::sync_start << (conf.overlay.empty() ? output : (output.empty() ? "" : Fx::ub + Theme::c("inactive_fg") + Fx::uncolor(output)) + conf.overlay) << Term::sync_end << flush; } //* ----------------------------------------------- THREAD LOOP ----------------------------------------------- return {}; } //? ------------------------------------------ Secondary thread end ----------------------------------------------- //* Runs collect and draw in a secondary thread, unlocks and locks config to update cached values void run(const string& box, bool no_update, bool force_redraw) { atomic_wait_for(active, true, 5000); if (active) { Logger::error("Stall in Runner thread, restarting!"); active = false; // exit(1); pthread_cancel(Runner::runner_id); if (pthread_create(&Runner::runner_id, nullptr, &Runner::_runner, nullptr) != 0) { Global::exit_error_msg = "Failed to re-create _runner thread!"; clean_quit(1); } } if (stopping or Global::resized) return; if (box == "overlay") { cout << Term::sync_start << Global::overlay << Term::sync_end << flush; } else if (box == "clock") { cout << Term::sync_start << Global::clock << Term::sync_end << flush; } else { Config::unlock(); Config::lock(); current_conf = { (box == "all" ? Config::current_boxes : vector{box}), no_update, force_redraw, (not Config::getB("tty_mode") and Config::getB("background_update")), Global::overlay, Global::clock }; if (Menu::active and not current_conf.background_update) Global::overlay.clear(); thread_trigger(); atomic_wait_for(active, false, 10); } } //* Stops any work being done in runner thread and checks for thread errors void stop() { stopping = true; int ret = pthread_mutex_trylock(&mtx); if (ret != EBUSY and not Global::quitting) { if (active) active = false; Global::exit_error_msg = "Runner thread died unexpectedly!"; clean_quit(1); } else if (ret == EBUSY) { atomic_wait_for(active, true, 5000); if (active) { active = false; if (Global::quitting) { return; } else { Global::exit_error_msg = "No response from Runner thread, quitting!"; clean_quit(1); } } thread_trigger(); atomic_wait_for(active, false, 100); atomic_wait_for(active, true, 100); } stopping = false; } } static auto configure_tty_mode(std::optional force_tty) { if (force_tty.has_value()) { Config::set("tty_mode", force_tty.value()); Logger::debug("TTY mode set via command line"); } #if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__NetBSD__) else if (Term::current_tty.starts_with("/dev/tty")) { Config::set("tty_mode", true); Logger::debug("Auto detect real TTY"); } #endif Logger::debug(fmt::format("TTY mode enabled: {}", Config::getB("tty_mode"))); } //* --------------------------------------------- Main starts here! --------------------------------------------------- int main(const int argc, const char** argv) { //? ------------------------------------------------ INIT --------------------------------------------------------- Global::start_time = time_s(); //? Save real and effective userid's and drop privileges until needed if running with SUID bit set Global::real_uid = getuid(); Global::set_uid = geteuid(); if (Global::real_uid != Global::set_uid) { if (seteuid(Global::real_uid) != 0) { Global::real_uid = Global::set_uid; Global::exit_error_msg = "Failed to change effective user ID. Unset btop SUID bit to ensure security on this system. Quitting!"; clean_quit(1); } } Cli::Cli cli; { // Wrap the command line arguments in a vector, ignoring the first element, which is the basename (executable name) const std::vector args { std::next(argv, std::ptrdiff_t { 1 }), std::next(argv, static_cast(argc)) }; // Get the cli options or return with an exit code auto cli_or_ret = Cli::parse(args); if (std::holds_alternative(cli_or_ret)) { cli = std::get(cli_or_ret); } else { auto ret = std::get(cli_or_ret); if (ret != 0) { Cli::usage(); Cli::help_hint(); } return ret; } } Global::debug = cli.debug; { const auto config_dir = Config::get_config_dir(); if (config_dir.has_value()) { Config::conf_dir = config_dir.value(); if (cli.config_file.has_value()) { Config::conf_file = cli.config_file.value(); } else { Config::conf_file = Config::conf_dir / "btop.conf"; } Logger::logfile = Config::get_log_file(); Theme::user_theme_dir = Config::conf_dir / "themes"; // If necessary create the user theme directory std::error_code error; if (not fs::exists(Theme::user_theme_dir, error) and not fs::create_directories(Theme::user_theme_dir, error)) { Theme::user_theme_dir.clear(); Logger::warning("Failed to create user theme directory: " + error.message()); } } } //? Try to find global btop theme path relative to binary path #ifdef __linux__ { std::error_code ec; Global::self_path = fs::read_symlink("/proc/self/exe", ec).remove_filename(); } #elif __APPLE__ { char buf [PATH_MAX]; uint32_t bufsize = PATH_MAX; if(!_NSGetExecutablePath(buf, &bufsize)) Global::self_path = fs::path(buf).remove_filename(); } #endif if (std::error_code ec; not Global::self_path.empty()) { Theme::theme_dir = fs::canonical(Global::self_path / "../share/btop/themes", ec); if (ec or not fs::is_directory(Theme::theme_dir) or access(Theme::theme_dir.c_str(), R_OK) == -1) Theme::theme_dir.clear(); } //? If relative path failed, check two most common absolute paths if (Theme::theme_dir.empty()) { for (auto theme_path : {"/usr/local/share/btop/themes", "/usr/share/btop/themes"}) { if (fs::is_directory(fs::path(theme_path)) and access(theme_path, R_OK) != -1) { Theme::theme_dir = fs::path(theme_path); break; } } } //? Config init init_config(cli.low_color, cli.filter); //? Try to find and set a UTF-8 locale if (std::setlocale(LC_ALL, "") != nullptr and not s_contains((string)std::setlocale(LC_ALL, ""), ";") and str_to_upper(s_replace((string)std::setlocale(LC_ALL, ""), "-", "")).ends_with("UTF8")) { Logger::debug("Using locale " + std::locale().name()); } else { string found; bool set_failure{}; for (const auto loc_env : array{"LANG", "LC_ALL", "LC_CTYPE"}) { if (std::getenv(loc_env) != nullptr and str_to_upper(s_replace((string)std::getenv(loc_env), "-", "")).ends_with("UTF8")) { found = std::getenv(loc_env); if (std::setlocale(LC_ALL, found.c_str()) == nullptr) { set_failure = true; Logger::warning("Failed to set locale " + found + " continuing anyway."); } } } if (found.empty()) { if (setenv("LC_ALL", "", 1) == 0 and setenv("LANG", "", 1) == 0) { try { if (const auto loc = std::locale("").name(); not loc.empty() and loc != "*") { for (auto& l : ssplit(loc, ';')) { if (str_to_upper(s_replace(l, "-", "")).ends_with("UTF8")) { found = l.substr(l.find('=') + 1); if (std::setlocale(LC_ALL, found.c_str()) != nullptr) { break; } } } } } catch (...) { found.clear(); } } } // #ifdef __APPLE__ if (found.empty()) { CFLocaleRef cflocale = CFLocaleCopyCurrent(); CFStringRef id_value = (CFStringRef)CFLocaleGetValue(cflocale, kCFLocaleIdentifier); auto loc_id = CFStringGetCStringPtr(id_value, kCFStringEncodingUTF8); CFRelease(cflocale); std::string cur_locale = (loc_id != nullptr ? loc_id : ""); if (cur_locale.empty()) { Logger::warning("No UTF-8 locale detected! Some symbols might not display correctly."); } else if (std::setlocale(LC_ALL, string(cur_locale + ".UTF-8").c_str()) != nullptr) { Logger::debug("Setting LC_ALL=" + cur_locale + ".UTF-8"); } else if(std::setlocale(LC_ALL, "en_US.UTF-8") != nullptr) { Logger::debug("Setting LC_ALL=en_US.UTF-8"); } else { Logger::warning("Failed to set macos locale, continuing anyway."); } } #else if (found.empty() and cli.force_utf) { Logger::warning("No UTF-8 locale detected! Forcing start with --force-utf argument."); } else if (found.empty()) { Global::exit_error_msg = "No UTF-8 locale detected!\nUse --force-utf argument to force start if you're sure your terminal can handle it."; clean_quit(1); } #endif else if (not set_failure) { Logger::debug("Setting LC_ALL=" + found); } } //? Initialize terminal and set options if (not Term::init()) { Global::exit_error_msg = "No tty detected!\nbtop++ needs an interactive shell to run."; clean_quit(1); } if (Term::current_tty != "unknown") { Logger::info("Running on " + Term::current_tty); } configure_tty_mode(cli.force_tty); //? Check for valid terminal dimensions { int t_count = 0; while (Term::width <= 0 or Term::width > 10000 or Term::height <= 0 or Term::height > 10000) { sleep_ms(10); Term::refresh(); if (++t_count == 100) { Global::exit_error_msg = "Failed to get size of terminal!"; clean_quit(1); } } } //? Platform dependent init and error check try { Shared::init(); } catch (const std::exception& e) { Global::exit_error_msg = "Exception in Shared::init() -> " + string{e.what()}; clean_quit(1); } if (not Config::set_boxes(Config::getS("shown_boxes"))) { Config::set_boxes("cpu mem net proc"); Config::set("shown_boxes", "cpu mem net proc"s); } //? Update list of available themes and generate the selected theme Theme::updateThemes(); Theme::setTheme(); //? Setup signal handlers for CTRL-C, CTRL-Z, resume and terminal resize std::atexit(_exit_handler); std::signal(SIGINT, _signal_handler); std::signal(SIGTSTP, _signal_handler); std::signal(SIGCONT, _signal_handler); std::signal(SIGWINCH, _signal_handler); std::signal(SIGUSR1, _signal_handler); std::signal(SIGUSR2, _signal_handler); sigset_t mask; sigemptyset(&mask); sigaddset(&mask, SIGUSR1); pthread_sigmask(SIG_BLOCK, &mask, &Input::signal_mask); if (pthread_create(&Runner::runner_id, nullptr, &Runner::_runner, nullptr) != 0) { Global::exit_error_msg = "Failed to create _runner thread!"; clean_quit(1); } else { Global::_runner_started = true; } //? Calculate sizes of all boxes Config::presetsValid(Config::getS("presets")); if (cli.preset.has_value()) { Config::current_preset = min(static_cast(cli.preset.value()), static_cast(Config::preset_list.size() - 1)); Config::apply_preset(Config::preset_list.at(Config::current_preset)); } { const auto [x, y] = Term::get_min_size(Config::getS("shown_boxes")); if (Term::height < y or Term::width < x) { pthread_sigmask(SIG_SETMASK, &Input::signal_mask, &mask); term_resize(true); pthread_sigmask(SIG_SETMASK, &mask, nullptr); Global::resized = false; } } Draw::calcSizes(); //? Print out box outlines cout << Term::sync_start << Cpu::box << Mem::box << Net::box << Proc::box << Term::sync_end << flush; //? ------------------------------------------------ MAIN LOOP ---------------------------------------------------- if (cli.updates.has_value()) { Config::set("update_ms", static_cast(cli.updates.value())); } uint64_t update_ms = Config::getI("update_ms"); auto future_time = time_ms(); try { while (not true not_eq not false) { //? Check for exceptions in secondary thread and exit with fail signal if true if (Global::thread_exception) { clean_quit(1); } else if (Global::should_quit) { clean_quit(0); } else if (Global::should_sleep) { Global::should_sleep = false; _sleep(); } //? Hot reload config from CTRL + R or SIGUSR2 else if (Global::reload_conf) { Global::reload_conf = false; if (Runner::active) Runner::stop(); Config::unlock(); init_config(cli.low_color, cli.filter); Theme::updateThemes(); Theme::setTheme(); Draw::banner_gen(0, 0, false, true); Global::resized = true; } //? Make sure terminal size hasn't changed (in case of SIGWINCH not working properly) term_resize(Global::resized); //? Trigger secondary thread to redraw if terminal has been resized if (Global::resized) { Draw::calcSizes(); Draw::update_clock(true); Global::resized = false; if (Menu::active) Menu::process(); else Runner::run("all", true, true); atomic_wait_for(Runner::active, true, 1000); } //? Update clock if needed if (Draw::update_clock() and not Menu::active) { Runner::run("clock"); } //? Start secondary collect & draw thread at the interval set by config value if (time_ms() >= future_time and not Global::resized) { Runner::run("all"); update_ms = Config::getI("update_ms"); future_time = time_ms() + update_ms; } //? Loop over input polling and input action processing for (auto current_time = time_ms(); current_time < future_time; current_time = time_ms()) { //? Check for external clock changes and for changes to the update timer if (std::cmp_not_equal(update_ms, Config::getI("update_ms"))) { update_ms = Config::getI("update_ms"); future_time = time_ms() + update_ms; } else if (future_time - current_time > update_ms) { future_time = current_time; } //? Poll for input and process any input detected else if (Input::poll(min((uint64_t)1000, future_time - current_time))) { if (not Runner::active) Config::unlock(); if (Menu::active) Menu::process(Input::get()); else Input::process(Input::get()); } //? Break the loop at 1000ms intervals or if input polling was interrupted else break; } } } catch (const std::exception& e) { Global::exit_error_msg = "Exception in main loop -> " + string{e.what()}; clean_quit(1); } } btop-1.4.5/src/btop_cli.cpp000066400000000000000000000126471506333644200155730ustar00rootroot00000000000000// SPDX-License-Identifier: Apache-2.0 #include "btop_cli.hpp" #include #include #include #include #include #include #include #include #include #include "btop_shared.hpp" #include "config.h" using namespace std::string_view_literals; static constexpr auto BOLD = "\033[1m"sv; static constexpr auto BOLD_UNDERLINE = "\033[1;4m"sv; static constexpr auto BOLD_RED = "\033[1;31m"sv; static constexpr auto YELLOW = "\033[33m"sv; static constexpr auto RESET = "\033[0m"sv; static void version() noexcept { if constexpr (GIT_COMMIT.empty()) { fmt::println("btop version: {}{}{}", BOLD, Global::Version, RESET); } else { fmt::println("btop version: {}{}+{}{}", BOLD, Global::Version, GIT_COMMIT, RESET); } } static void build_info() noexcept { fmt::println("Compiled with: {} ({})", COMPILER, COMPILER_VERSION); fmt::println("Configured with: {}", CONFIGURE_COMMAND); } static void error(std::string_view msg) noexcept { fmt::println("{}error:{} {}\n", BOLD_RED, RESET, msg); } namespace Cli { [[nodiscard]] auto parse(const std::span args) noexcept -> OrRetCode { Cli cli {}; for (auto it = args.begin(); it != args.end(); ++it) { auto arg = *it; if (arg == "-h" || arg == "--help") { usage(); help(); return OrRetCode { 0 }; } if (arg == "-v" || arg == "-V") { version(); return OrRetCode { 0 }; } if (arg == "--version") { version(); build_info(); return OrRetCode { 0 }; } if (arg == "-d" || arg == "--debug") { cli.debug = true; continue; } if (arg == "--force-utf") { cli.force_utf = true; continue; } if (arg == "-l" || arg == "--low-color") { cli.low_color = true; continue; } if (arg == "-t" || arg == "--tty") { if (cli.force_tty.has_value()) { error("tty mode can't be set twice"); return OrRetCode { 1 }; } cli.force_tty = std::make_optional(true); continue; } if (arg == "--no-tty") { if (cli.force_tty.has_value()) { error("tty mode can't be set twice"); return OrRetCode { 1 }; } cli.force_tty = std::make_optional(false); continue; } if (arg == "-c" || arg == "--config") { // This flag requires an argument. if (++it == args.end()) { error("Config requires an argument"); return OrRetCode { 1 }; } auto arg = *it; auto config_file = stdfs::path { arg }; if (stdfs::is_directory(config_file)) { error("Config file can't be a directory"); return OrRetCode { 1 }; } cli.config_file = std::make_optional(config_file); continue; } if (arg == "-f" || arg == "--filter") { // This flag requires an argument. if (++it == args.end()) { error("Filter requires an argument"); return OrRetCode { 1 }; } auto arg = *it; cli.filter = std::make_optional(arg); continue; } if (arg == "-p" || arg == "--preset") { // This flag requires an argument. if (++it == args.end()) { error("Preset requires an argument"); return OrRetCode { 1 }; } auto arg = *it; try { auto preset_id = std::clamp(std::stoi(arg.data()), 0, 9); cli.preset = std::make_optional(preset_id); } catch (std::invalid_argument& e) { error("Preset must be a positive number"); return OrRetCode { 1 }; } catch (std::out_of_range& e) { error(fmt::format("Preset argument is out of range: {}", arg.data())); return OrRetCode { 1 }; } continue; } if (arg == "-u" || arg == "--update") { // This flag requires an argument. if (++it == args.end()) { error("Update requires an argument"); return OrRetCode { 1 }; } auto arg = *it; try { auto refresh_rate = std::max(std::stoul(arg.data()), 100UL); cli.updates = refresh_rate; } catch (std::invalid_argument& e) { error("Update must be a positive number"); return OrRetCode { 1 }; } catch(std::out_of_range& e) { error(fmt::format("Update argument is out of range: {}", arg.data())); return OrRetCode { 1 }; } continue; } error(fmt::format("Unknown argument '{}{}{}'", YELLOW, arg, RESET)); return OrRetCode { 1 }; } return OrRetCode { cli }; } void usage() noexcept { fmt::println("{0}Usage:{1} {2}btop{1} [OPTIONS]\n", BOLD_UNDERLINE, RESET, BOLD); } void help() noexcept { fmt::print( "{0}Options:{1}\n" " {2}-c, --config{1} Path to a config file\n" " {2}-d, --debug{1} Start in debug mode with additional logs and metrics\n" " {2}-f, --filter{1} Set an initial process filter\n" " {2} --force-utf{1} Override automatic UTF locale detection\n" " {2}-l, --low-color{1} Disable true color, 256 colors only\n" " {2}-p, --preset{1} Start with a preset (0-9)\n" " {2}-t, --tty{1} Force tty mode with ANSI graph symbols and 16 colors only\n" " {2} --no-tty{1} Force disable tty mode\n" " {2}-u, --update{1} Set an initial update rate in milliseconds\n" " {2}-h, --help{1} Show this help message and exit\n" " {2}-V, --version{1} Show a version message and exit (more with --version)\n", BOLD_UNDERLINE, RESET, BOLD ); } void help_hint() noexcept { fmt::println("For more information, try '{}--help{}'", BOLD, RESET); } } // namespace Cli btop-1.4.5/src/btop_cli.hpp000066400000000000000000000025441506333644200155730ustar00rootroot00000000000000// SPDX-License-Identifier: Apache-2.0 #pragma once #include #include #include #include #include #include namespace Cli { namespace stdfs = std::filesystem; // Configuration options set via the command line. struct Cli { // Alternate path to a configuration file std::optional config_file; // Enable debug mode with additional logs and metrics bool debug {}; // Set an initial process filter. std::optional filter; // Only use ANSI supported graph symbols and colors std::optional force_tty; // Use UTF-8 locale even if not detected bool force_utf {}; // Disable true color and only use 256 color mode bool low_color {}; // Start with one of the provided presets std::optional preset; // The initial refresh rate std::optional updates; }; // A variant holding either a `Cli` struct filled with the parsed command line options or a return code using OrRetCode = std::variant; // Parse the command line arguments [[nodiscard]] auto parse(std::span args) noexcept -> OrRetCode; // Print a usage header void usage() noexcept; // Print a help message void help() noexcept; // Print a hint on how to show more help void help_hint() noexcept; } // namespace Cli btop-1.4.5/src/btop_config.cpp000066400000000000000000000712441506333644200162670ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include #include #include #include "btop_config.hpp" #include "btop_shared.hpp" #include "btop_tools.hpp" using std::array; using std::atomic; using std::string_view; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace std::literals; using namespace Tools; //* Functions and variables for reading and writing the btop config file namespace Config { atomic locked (false); atomic writelock (false); bool write_new; const vector> descriptions = { {"color_theme", "#* Name of a btop++/bpytop/bashtop formatted \".theme\" file, \"Default\" and \"TTY\" for builtin themes.\n" "#* Themes should be placed in \"../share/btop/themes\" relative to binary or \"$HOME/.config/btop/themes\""}, {"theme_background", "#* If the theme set background should be shown, set to False if you want terminal background transparency."}, {"truecolor", "#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false."}, {"force_tty", "#* Set to true to force tty mode regardless if a real tty has been detected or not.\n" "#* Will force 16-color mode and TTY theme, set all graph symbols to \"tty\" and swap out other non tty friendly symbols."}, {"presets", "#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets.\n" "#* Format: \"box_name:P:G,box_name:P:G\" P=(0 or 1) for alternate positions, G=graph symbol to use for box.\n" "#* Use whitespace \" \" as separator between different presets.\n" "#* Example: \"cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty\""}, {"vim_keys", "#* Set to True to enable \"h,j,k,l,g,G\" keys for directional control in lists.\n" "#* Conflicting keys for h:\"help\" and k:\"kill\" is accessible while holding shift."}, {"rounded_corners", "#* Rounded corners on boxes, is ignored if TTY mode is ON."}, {"graph_symbol", "#* Default symbols to use for graph creation, \"braille\", \"block\" or \"tty\".\n" "#* \"braille\" offers the highest resolution but might not be included in all fonts.\n" "#* \"block\" has half the resolution of braille but uses more common characters.\n" "#* \"tty\" uses only 3 different symbols but will work with most fonts and should work in a real TTY.\n" "#* Note that \"tty\" only has half the horizontal resolution of the other two, so will show a shorter historical view."}, {"graph_symbol_cpu", "# Graph symbol to use for graphs in cpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, #ifdef GPU_SUPPORT {"graph_symbol_gpu", "# Graph symbol to use for graphs in gpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, #endif {"graph_symbol_mem", "# Graph symbol to use for graphs in cpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, {"graph_symbol_net", "# Graph symbol to use for graphs in cpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, {"graph_symbol_proc", "# Graph symbol to use for graphs in cpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, {"shown_boxes", "#* Manually set which boxes to show. Available values are \"cpu mem net proc\" and \"gpu0\" through \"gpu5\", separate values with whitespace."}, {"update_ms", "#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs."}, {"proc_sorting", "#* Processes sorting, \"pid\" \"program\" \"arguments\" \"threads\" \"user\" \"memory\" \"cpu lazy\" \"cpu direct\",\n" "#* \"cpu lazy\" sorts top process over time (easier to follow), \"cpu direct\" updates top process directly."}, {"proc_reversed", "#* Reverse sorting order, True or False."}, {"proc_tree", "#* Show processes as a tree."}, {"proc_colors", "#* Use the cpu graph colors in the process list."}, {"proc_gradient", "#* Use a darkening gradient in the process list."}, {"proc_per_core", "#* If process cpu usage should be of the core it's running on or usage of the total available cpu power."}, {"proc_mem_bytes", "#* Show process memory as bytes instead of percent."}, {"proc_cpu_graphs", "#* Show cpu graph for each process."}, {"proc_info_smaps", "#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate)"}, {"proc_left", "#* Show proc box on left side of screen instead of right."}, {"proc_filter_kernel", "#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop)."}, {"proc_aggregate", "#* In tree-view, always accumulate child process resources in the parent process."}, {"cpu_graph_upper", "#* Sets the CPU stat shown in upper half of the CPU graph, \"total\" is always available.\n" "#* Select from a list of detected attributes from the options menu."}, {"cpu_graph_lower", "#* Sets the CPU stat shown in lower half of the CPU graph, \"total\" is always available.\n" "#* Select from a list of detected attributes from the options menu."}, #ifdef GPU_SUPPORT {"show_gpu_info", "#* If gpu info should be shown in the cpu box. Available values = \"Auto\", \"On\" and \"Off\"."}, #endif {"cpu_invert_lower", "#* Toggles if the lower CPU graph should be inverted."}, {"cpu_single_graph", "#* Set to True to completely disable the lower CPU graph."}, {"cpu_bottom", "#* Show cpu box at bottom of screen instead of top."}, {"show_uptime", "#* Shows the system uptime in the CPU box."}, {"show_cpu_watts", "#* Shows the CPU package current power consumption in watts. Requires running `make setcap` or `make setuid` or running with sudo."}, {"check_temp", "#* Show cpu temperature."}, {"cpu_sensor", "#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors."}, {"show_coretemp", "#* Show temperatures for cpu cores also if check_temp is True and sensors has been found."}, {"cpu_core_map", "#* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core.\n" "#* Use lm-sensors or similar to see which cores are reporting temperatures on your machine.\n" "#* Format \"x:y\" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries.\n" "#* Example: \"4:0 5:1 6:3\""}, {"temp_scale", "#* Which temperature scale to use, available values: \"celsius\", \"fahrenheit\", \"kelvin\" and \"rankine\"."}, {"base_10_sizes", "#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024."}, {"show_cpu_freq", "#* Show CPU frequency."}, {"clock_format", "#* Draw a clock at top of screen, formatting according to strftime, empty string to disable.\n" "#* Special formatting: /host = hostname | /user = username | /uptime = system uptime"}, {"background_update", "#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort."}, {"custom_cpu_name", "#* Custom cpu model name, empty string to disable."}, {"disks_filter", "#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace \" \".\n" "#* Only disks matching the filter will be shown. Prepend exclude= to only show disks not matching the filter. Examples: disk_filter=\"/boot /home/user\", disks_filter=\"exclude=/boot /home/user\""}, {"mem_graphs", "#* Show graphs instead of meters for memory values."}, {"mem_below_net", "#* Show mem box below net box instead of above."}, {"zfs_arc_cached", "#* Count ZFS ARC in cached and available memory."}, {"show_swap", "#* If swap memory should be shown in memory box."}, {"swap_disk", "#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk."}, {"show_disks", "#* If mem box should be split to also show disks info."}, {"only_physical", "#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar."}, {"use_fstab", "#* Read disks list from /etc/fstab. This also disables only_physical."}, {"zfs_hide_datasets", "#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool)"}, {"disk_free_priv", "#* Set to true to show available disk space for privileged users."}, {"show_io_stat", "#* Toggles if io activity % (disk busy time) should be shown in regular disk usage view."}, {"io_mode", "#* Toggles io mode for disks, showing big graphs for disk read/write speeds."}, {"io_graph_combined", "#* Set to True to show combined read/write io graphs in io mode."}, {"io_graph_speeds", "#* Set the top speed for the io graphs in MiB/s (100 by default), use format \"mountpoint:speed\" separate disks with whitespace \" \".\n" "#* Example: \"/mnt/media:100 /:20 /boot:1\"."}, {"net_download", "#* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False."}, {"net_upload", ""}, {"net_auto", "#* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest."}, {"net_sync", "#* Sync the auto scaling for download and upload to whichever currently has the highest scale."}, {"net_iface", "#* Starts with the Network Interface specified here."}, {"base_10_bitrate", "#* \"True\" shows bitrates in base 10 (Kbps, Mbps). \"False\" shows bitrates in binary sizes (Kibps, Mibps, etc.). \"Auto\" uses base_10_sizes."}, {"show_battery", "#* Show battery stats in top right if battery is present."}, {"selected_battery", "#* Which battery to use if multiple are present. \"Auto\" for auto detection."}, {"show_battery_watts", "#* Show power stats of battery next to charge indicator."}, {"log_level", "#* Set loglevel for \"~/.config/btop/btop.log\" levels are: \"ERROR\" \"WARNING\" \"INFO\" \"DEBUG\".\n" "#* The level set includes all lower levels, i.e. \"DEBUG\" will show all logging info."}, #ifdef GPU_SUPPORT {"nvml_measure_pcie_speeds", "#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards."}, {"rsmi_measure_pcie_speeds", "#* Measure PCIe throughput on AMD cards, may impact performance on certain cards."}, {"gpu_mirror_graph", "#* Horizontally mirror the GPU graph."}, {"custom_gpu_name0", "#* Custom gpu0 model name, empty string to disable."}, {"custom_gpu_name1", "#* Custom gpu1 model name, empty string to disable."}, {"custom_gpu_name2", "#* Custom gpu2 model name, empty string to disable."}, {"custom_gpu_name3", "#* Custom gpu3 model name, empty string to disable."}, {"custom_gpu_name4", "#* Custom gpu4 model name, empty string to disable."}, {"custom_gpu_name5", "#* Custom gpu5 model name, empty string to disable."}, #endif }; std::unordered_map strings = { {"color_theme", "Default"}, {"shown_boxes", "cpu mem net proc"}, {"graph_symbol", "braille"}, {"presets", "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty"}, {"graph_symbol_cpu", "default"}, {"graph_symbol_gpu", "default"}, {"graph_symbol_mem", "default"}, {"graph_symbol_net", "default"}, {"graph_symbol_proc", "default"}, {"proc_sorting", "cpu lazy"}, {"cpu_graph_upper", "Auto"}, {"cpu_graph_lower", "Auto"}, {"cpu_sensor", "Auto"}, {"selected_battery", "Auto"}, {"cpu_core_map", ""}, {"temp_scale", "celsius"}, {"clock_format", "%X"}, {"custom_cpu_name", ""}, {"disks_filter", ""}, {"io_graph_speeds", ""}, {"net_iface", ""}, {"base_10_bitrate", "Auto"}, {"log_level", "WARNING"}, {"proc_filter", ""}, {"proc_command", ""}, {"selected_name", ""}, #ifdef GPU_SUPPORT {"custom_gpu_name0", ""}, {"custom_gpu_name1", ""}, {"custom_gpu_name2", ""}, {"custom_gpu_name3", ""}, {"custom_gpu_name4", ""}, {"custom_gpu_name5", ""}, {"show_gpu_info", "Auto"} #endif }; std::unordered_map stringsTmp; std::unordered_map bools = { {"theme_background", true}, {"truecolor", true}, {"rounded_corners", true}, {"proc_reversed", false}, {"proc_tree", false}, {"proc_colors", true}, {"proc_gradient", true}, {"proc_per_core", false}, {"proc_mem_bytes", true}, {"proc_cpu_graphs", true}, {"proc_info_smaps", false}, {"proc_left", false}, {"proc_filter_kernel", false}, {"cpu_invert_lower", true}, {"cpu_single_graph", false}, {"cpu_bottom", false}, {"show_uptime", true}, {"show_cpu_watts", true}, {"check_temp", true}, {"show_coretemp", true}, {"show_cpu_freq", true}, {"background_update", true}, {"mem_graphs", true}, {"mem_below_net", false}, {"zfs_arc_cached", true}, {"show_swap", true}, {"swap_disk", true}, {"show_disks", true}, {"only_physical", true}, {"use_fstab", true}, {"zfs_hide_datasets", false}, {"show_io_stat", true}, {"io_mode", false}, {"base_10_sizes", false}, {"io_graph_combined", false}, {"net_auto", true}, {"net_sync", true}, {"show_battery", true}, {"show_battery_watts", true}, {"vim_keys", false}, {"tty_mode", false}, {"disk_free_priv", false}, {"force_tty", false}, {"lowcolor", false}, {"show_detailed", false}, {"proc_filtering", false}, {"proc_aggregate", false}, #ifdef GPU_SUPPORT {"nvml_measure_pcie_speeds", true}, {"rsmi_measure_pcie_speeds", true}, {"gpu_mirror_graph", true} #endif }; std::unordered_map boolsTmp; std::unordered_map ints = { {"update_ms", 2000}, {"net_download", 100}, {"net_upload", 100}, {"detailed_pid", 0}, {"selected_pid", 0}, {"selected_depth", 0}, {"proc_start", 0}, {"proc_selected", 0}, {"proc_last_selected", 0} }; std::unordered_map intsTmp; // Returns a valid config dir or an empty optional // The config dir might be read only, a warning is printed, but a path is returned anyway [[nodiscard]] std::optional get_config_dir() noexcept { fs::path config_dir; { std::error_code error; if (const auto xdg_config_home = std::getenv("XDG_CONFIG_HOME"); xdg_config_home != nullptr) { if (fs::exists(xdg_config_home, error)) { config_dir = fs::path(xdg_config_home) / "btop"; } } else if (const auto home = std::getenv("HOME"); home != nullptr) { error.clear(); if (fs::exists(home, error)) { config_dir = fs::path(home) / ".config" / "btop"; } if (error) { fmt::print(stderr, "\033[0;31mWarning: \033[0m{} could not be accessed: {}\n", config_dir.string(), error.message()); config_dir = ""; } } } // FIXME: This warnings can be noisy if the user deliberately has a non-writable config dir // offer an alternative | disable messages by default | disable messages if config dir is not writable | disable messages with a flag // FIXME: Make happy path not branch if (not config_dir.empty()) { std::error_code error; if (fs::exists(config_dir, error)) { if (fs::is_directory(config_dir, error)) { struct statvfs stats {}; if ((fs::status(config_dir, error).permissions() & fs::perms::owner_write) == fs::perms::owner_write and statvfs(config_dir.c_str(), &stats) == 0 and (stats.f_flag & ST_RDONLY) == 0) { return config_dir; } else { fmt::print(stderr, "\033[0;31mWarning: \033[0m`{}` is not writable\n", fs::absolute(config_dir).string()); // If the config is readable we can still use the provided config, but changes will not be persistent if ((fs::status(config_dir, error).permissions() & fs::perms::owner_read) == fs::perms::owner_read) { fmt::print(stderr, "\033[0;31mWarning: \033[0mLogging is disabled, config changes are not persistent\n"); return config_dir; } } } else { fmt::print(stderr, "\033[0;31mWarning: \033[0m`{}` is not a directory\n", fs::absolute(config_dir).string()); } } else { // Doesn't exist if (fs::create_directories(config_dir, error)) { return config_dir; } else { fmt::print(stderr, "\033[0;31mWarning: \033[0m`{}` could not be created: {}\n", fs::absolute(config_dir).string(), error.message()); } } } else { fmt::print(stderr, "\033[0;31mWarning: \033[0mCould not determine config path: Make sure `$XDG_CONFIG_HOME` or `$HOME` is set\n"); } fmt::print(stderr, "\033[0;31mWarning: \033[0mLogging is disabled, config changes are not persistent\n"); return {}; } bool _locked(const std::string_view name) { atomic_wait(writelock, true); if (not write_new and rng::find_if(descriptions, [&name](const auto& a) { return a.at(0) == name; }) != descriptions.end()) write_new = true; return locked.load(); } fs::path conf_dir; fs::path conf_file; vector available_batteries = {"Auto"}; vector current_boxes; vector preset_list = {"cpu:0:default,mem:0:default,net:0:default,proc:0:default"}; int current_preset = -1; bool presetsValid(const string& presets) { vector new_presets = {preset_list.at(0)}; for (int x = 0; const auto& preset : ssplit(presets)) { if (++x > 9) { validError = "Too many presets entered!"; return false; } for (int y = 0; const auto& box : ssplit(preset, ',')) { if (++y > 4) { validError = "Too many boxes entered for preset!"; return false; } const auto& vals = ssplit(box, ':'); if (vals.size() != 3) { validError = "Malformatted preset in config value presets!"; return false; } if (not is_in(vals.at(0), "cpu", "mem", "net", "proc", "gpu0", "gpu1", "gpu2", "gpu3", "gpu4", "gpu5")) { validError = "Invalid box name in config value presets!"; return false; } if (not is_in(vals.at(1), "0", "1")) { validError = "Invalid position value in config value presets!"; return false; } if (not v_contains(valid_graph_symbols_def, vals.at(2))) { validError = "Invalid graph name in config value presets!"; return false; } } new_presets.push_back(preset); } preset_list = std::move(new_presets); return true; } //* Apply selected preset bool apply_preset(const string& preset) { string boxes; for (const auto& box : ssplit(preset, ',')) { const auto& vals = ssplit(box, ':'); boxes += vals.at(0) + ' '; } if (not boxes.empty()) boxes.pop_back(); auto min_size = Term::get_min_size(boxes); if (Term::width < min_size.at(0) or Term::height < min_size.at(1)) { return false; } for (const auto& box : ssplit(preset, ',')) { const auto& vals = ssplit(box, ':'); if (vals.at(0) == "cpu") { set("cpu_bottom", (vals.at(1) != "0")); } else if (vals.at(0) == "mem") { set("mem_below_net", (vals.at(1) != "0")); } else if (vals.at(0) == "proc") { set("proc_left", (vals.at(1) != "0")); } if (vals.at(0).starts_with("gpu")) { set("graph_symbol_gpu", vals.at(2)); } else { set("graph_symbol_" + vals.at(0), vals.at(2)); } } if (set_boxes(boxes)) { set("shown_boxes", boxes); return true; } return false; } void lock() { atomic_wait(writelock); locked = true; } string validError; bool intValid(const std::string_view name, const string& value) { int i_value; try { i_value = stoi(value); } catch (const std::invalid_argument&) { validError = "Invalid numerical value!"; return false; } catch (const std::out_of_range&) { validError = "Value out of range!"; return false; } catch (const std::exception& e) { validError = string{e.what()}; return false; } if (name == "update_ms" and i_value < 100) validError = "Config value update_ms set too low (<100)."; else if (name == "update_ms" and i_value > ONE_DAY_MILLIS) validError = fmt::format("Config value update_ms set too high (>{}).", ONE_DAY_MILLIS); else return true; return false; } bool validBoxSizes(const string& boxes) { auto min_size = Term::get_min_size(boxes); return (Term::width >= min_size.at(0) and Term::height >= min_size.at(1)); } bool stringValid(const std::string_view name, const string& value) { if (name == "log_level" and not v_contains(Logger::log_levels, value)) validError = "Invalid log_level: " + value; else if (name == "graph_symbol" and not v_contains(valid_graph_symbols, value)) validError = "Invalid graph symbol identifier: " + value; else if (name.starts_with("graph_symbol_") and (value != "default" and not v_contains(valid_graph_symbols, value))) validError = fmt::format("Invalid graph symbol identifier for {}: {}", name, value); else if (name == "shown_boxes" and not Global::init_conf) { if (value.empty()) validError = "No boxes selected!"; else if (not validBoxSizes(value)) validError = "Terminal too small to display entered boxes!"; else if (not set_boxes(value)) validError = "Invalid box name(s) in shown_boxes!"; else return true; } #ifdef GPU_SUPPORT else if (name == "show_gpu_info" and not v_contains(show_gpu_values, value)) validError = "Invalid value for show_gpu_info: " + value; #endif else if (name == "presets" and not presetsValid(value)) return false; else if (name == "cpu_core_map") { const auto maps = ssplit(value); bool all_good = true; for (const auto& map : maps) { const auto map_split = ssplit(map, ':'); if (map_split.size() != 2) all_good = false; else if (not isint(map_split.at(0)) or not isint(map_split.at(1))) all_good = false; if (not all_good) { validError = "Invalid formatting of cpu_core_map!"; return false; } } return true; } else if (name == "io_graph_speeds") { const auto maps = ssplit(value); bool all_good = true; for (const auto& map : maps) { const auto map_split = ssplit(map, ':'); if (map_split.size() != 2) all_good = false; else if (map_split.at(0).empty() or not isint(map_split.at(1))) all_good = false; if (not all_good) { validError = "Invalid formatting of io_graph_speeds!"; return false; } } return true; } else return true; return false; } string getAsString(const std::string_view name) { if (auto it = bools.find(name); it != bools.end()) return it->second ? "True" : "False"; if (auto it = ints.find(name); it != ints.end()) return to_string(it->second); if (auto it = strings.find(name); it != strings.end()) return it->second; return ""; } void flip(const std::string_view name) { if (_locked(name)) { if (boolsTmp.contains(name)) boolsTmp.at(name) = not boolsTmp.at(name); else boolsTmp.insert_or_assign(name, (not bools.at(name))); } else bools.at(name) = not bools.at(name); } void unlock() { if (not locked) return; atomic_wait(Runner::active); atomic_lock lck(writelock, true); try { if (Proc::shown) { ints.at("selected_pid") = Proc::selected_pid; strings.at("selected_name") = Proc::selected_name; ints.at("proc_start") = Proc::start; ints.at("proc_selected") = Proc::selected; ints.at("selected_depth") = Proc::selected_depth; } for (auto& item : stringsTmp) { strings.at(item.first) = item.second; } stringsTmp.clear(); for (auto& item : intsTmp) { ints.at(item.first) = item.second; } intsTmp.clear(); for (auto& item : boolsTmp) { bools.at(item.first) = item.second; } boolsTmp.clear(); } catch (const std::exception& e) { Global::exit_error_msg = "Exception during Config::unlock() : " + string{e.what()}; clean_quit(1); } locked = false; } bool set_boxes(const string& boxes) { auto new_boxes = ssplit(boxes); for (auto& box : new_boxes) { if (not v_contains(valid_boxes, box)) return false; #ifdef GPU_SUPPORT if (box.starts_with("gpu")) { int gpu_num = stoi(box.substr(3)) + 1; if (gpu_num > Gpu::count) return false; } #endif } current_boxes = std::move(new_boxes); return true; } bool toggle_box(const string& box) { auto old_boxes = current_boxes; auto box_pos = rng::find(current_boxes, box); if (box_pos == current_boxes.end()) current_boxes.push_back(box); else current_boxes.erase(box_pos); string new_boxes; if (not current_boxes.empty()) { for (const auto& b : current_boxes) new_boxes += b + ' '; new_boxes.pop_back(); } auto min_size = Term::get_min_size(new_boxes); if (Term::width < min_size.at(0) or Term::height < min_size.at(1)) { current_boxes = old_boxes; return false; } Config::set("shown_boxes", new_boxes); return true; } void load(const fs::path& conf_file, vector& load_warnings) { std::error_code error; if (conf_file.empty()) return; else if (not fs::exists(conf_file, error)) { write_new = true; return; } if (error) { return; } std::ifstream cread(conf_file); if (cread.good()) { vector valid_names; valid_names.reserve(descriptions.size()); for (const auto &n : descriptions) valid_names.push_back(n[0]); if (string v_string; cread.peek() != '#' or (getline(cread, v_string, '\n') and not s_contains(v_string, Global::Version))) write_new = true; while (not cread.eof()) { cread >> std::ws; if (cread.peek() == '#') { cread.ignore(SSmax, '\n'); continue; } string name, value; getline(cread, name, '='); if (name.ends_with(' ')) name = trim(name); if (not v_contains(valid_names, name)) { cread.ignore(SSmax, '\n'); continue; } cread >> std::ws; if (bools.contains(name)) { cread >> value; if (not isbool(value)) load_warnings.push_back("Got an invalid bool value for config name: " + name); else bools.at(name) = stobool(value); } else if (ints.contains(name)) { cread >> value; if (not isint(value)) load_warnings.push_back("Got an invalid integer value for config name: " + name); else if (not intValid(name, value)) { load_warnings.push_back(validError); } else ints.at(name) = stoi(value); } else if (strings.contains(name)) { if (cread.peek() == '"') { cread.ignore(1); getline(cread, value, '"'); } else cread >> value; if (not stringValid(name, value)) load_warnings.push_back(validError); else strings.at(name) = value; } cread.ignore(SSmax, '\n'); } if (not load_warnings.empty()) write_new = true; } } void write() { if (conf_file.empty() or not write_new) return; Logger::debug("Writing new config file"); if (geteuid() != Global::real_uid and seteuid(Global::real_uid) != 0) return; std::ofstream cwrite(conf_file, std::ios::trunc); cwrite.imbue(std::locale::classic()); if (cwrite.good()) { cwrite << "#? Config file for btop v. " << Global::Version << "\n"; for (const auto& [name, description] : descriptions) { cwrite << "\n" << (description.empty() ? "" : description + "\n") << name << " = "; if (strings.contains(name)) cwrite << "\"" << strings.at(name) << "\""; else if (ints.contains(name)) cwrite << ints.at(name); else if (bools.contains(name)) cwrite << (bools.at(name) ? "True" : "False"); cwrite << "\n"; } } } static auto get_xdg_state_dir() -> std::optional { std::optional xdg_state_home; { const auto xdg_state_home_ptr = std::getenv("XDG_STATE_HOME"); if (xdg_state_home_ptr != nullptr) { xdg_state_home = std::make_optional(fs::path(xdg_state_home_ptr)); } else { const auto home_ptr = std::getenv("HOME"); if (home_ptr != nullptr) { xdg_state_home = std::make_optional(std::filesystem::path(home_ptr) / ".local" / "state"); } } } if (xdg_state_home.has_value()) { std::error_code err; std::filesystem::create_directories(xdg_state_home.value(), err); if (err) { return std::nullopt; } return std::make_optional(xdg_state_home.value()); } return std::nullopt; } auto get_log_file() -> std::optional { auto xdg_state_home = get_xdg_state_dir(); if (xdg_state_home.has_value()) { return std::make_optional(std::filesystem::path(xdg_state_home.value()) / "btop.log"); } return std::nullopt; } } btop-1.4.5/src/btop_config.hpp000066400000000000000000000103001506333644200162560ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include using std::string; using std::vector; //* Functions and variables for reading and writing the btop config file namespace Config { extern std::filesystem::path conf_dir; extern std::filesystem::path conf_file; extern std::unordered_map strings; extern std::unordered_map stringsTmp; extern std::unordered_map bools; extern std::unordered_map boolsTmp; extern std::unordered_map ints; extern std::unordered_map intsTmp; const vector valid_graph_symbols = { "braille", "block", "tty" }; const vector valid_graph_symbols_def = { "default", "braille", "block", "tty" }; const vector valid_boxes = { "cpu", "mem", "net", "proc" #ifdef GPU_SUPPORT ,"gpu0", "gpu1", "gpu2", "gpu3", "gpu4", "gpu5" #endif }; const vector temp_scales = { "celsius", "fahrenheit", "kelvin", "rankine" }; #ifdef GPU_SUPPORT const vector show_gpu_values = { "Auto", "On", "Off" }; #endif const vector base_10_bitrate_values = { "Auto", "True", "False" }; extern vector current_boxes; extern vector preset_list; extern vector available_batteries; extern int current_preset; constexpr int ONE_DAY_MILLIS = 1000 * 60 * 60 * 24; [[nodiscard]] std::optional get_config_dir() noexcept; //* Check if string only contains space separated valid names for boxes and set current_boxes bool set_boxes(const string& boxes); bool validBoxSizes(const string& boxes); //* Toggle box and update config string shown_boxes bool toggle_box(const string& box); //* Parse and setup config value presets bool presetsValid(const string& presets); //* Apply selected preset bool apply_preset(const string& preset); bool _locked(const std::string_view name); //* Return bool for config key inline bool getB(const std::string_view name) { return bools.at(name); } //* Return integer for config key inline const int& getI(const std::string_view name) { return ints.at(name); } //* Return string for config key inline const string& getS(const std::string_view name) { return strings.at(name); } string getAsString(const std::string_view name); extern string validError; bool intValid(const std::string_view name, const string& value); bool stringValid(const std::string_view name, const string& value); //* Set config key to bool inline void set(const std::string_view name, bool value) { if (_locked(name)) boolsTmp.insert_or_assign(name, value); else bools.at(name) = value; } //* Set config key to int inline void set(const std::string_view name, const int value) { if (_locked(name)) intsTmp.insert_or_assign(name, value); else ints.at(name) = value; } //* Set config key to string inline void set(const std::string_view name, const string& value) { if (_locked(name)) stringsTmp.insert_or_assign(name, value); else strings.at(name) = value; } //* Flip config key bool void flip(const std::string_view name); //* Lock config and cache changes until unlocked void lock(); //* Unlock config and write any cached values to config void unlock(); //* Load the config file from disk void load(const std::filesystem::path& conf_file, vector& load_warnings); //* Write the config file to disk void write(); auto get_log_file() -> std::optional; } btop-1.4.5/src/btop_draw.cpp000066400000000000000000003004251506333644200157530ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include "btop_draw.hpp" #include "btop_config.hpp" #include "btop_theme.hpp" #include "btop_shared.hpp" #include "btop_tools.hpp" #include "btop_input.hpp" #include "btop_menu.hpp" #include using std::array; using std::clamp; using std::cmp_equal; using std::cmp_greater; using std::cmp_less; using std::cmp_less_equal; using std::floor; using std::max; using std::min; using std::round; using std::to_string; using std::views::iota; using namespace Tools; using namespace std::literals; // for operator""s namespace rng = std::ranges; namespace Symbols { const string meter = "â– "; const array superscript = { "â°", "¹", "²", "³", "â´", "âµ", "â¶", "â·", "â¸", "â¹" }; const std::unordered_map> graph_symbols = { { "braille_up", { " ", "⢀", "⢠", "⢰", "⢸", "â¡€", "⣀", "⣠", "⣰", "⣸", "â¡„", "⣄", "⣤", "⣴", "⣼", "⡆", "⣆", "⣦", "⣶", "⣾", "⡇", "⣇", "⣧", "⣷", "⣿" }}, {"braille_down", { " ", "â ˆ", "â ˜", "â ¸", "⢸", "â ", "â ‰", "â ™", "â ¹", "⢹", "â ƒ", "â ‹", "â ›", "â »", "⢻", "â ‡", "â ", "â Ÿ", "â ¿", "⢿", "⡇", "â¡", "⡟", "â¡¿", "⣿" }}, {"block_up", { " ", "â–—", "â–—", "â–", "â–", "â––", "â–„", "â–„", "â–Ÿ", "â–Ÿ", "â––", "â–„", "â–„", "â–Ÿ", "â–Ÿ", "â–Œ", "â–™", "â–™", "â–ˆ", "â–ˆ", "â–Œ", "â–™", "â–™", "â–ˆ", "â–ˆ" }}, {"block_down", { " ", "â–", "â–", "â–", "â–", "â–˜", "â–€", "â–€", "â–œ", "â–œ", "â–˜", "â–€", "â–€", "â–œ", "â–œ", "â–Œ", "â–›", "â–›", "â–ˆ", "â–ˆ", "â–Œ", "â–›", "â–›", "â–ˆ", "â–ˆ" }}, {"tty_up", { " ", "â–‘", "â–‘", "â–’", "â–’", "â–‘", "â–‘", "â–’", "â–’", "â–ˆ", "â–‘", "â–’", "â–’", "â–’", "â–ˆ", "â–’", "â–’", "â–’", "â–ˆ", "â–ˆ", "â–’", "â–ˆ", "â–ˆ", "â–ˆ", "â–ˆ" }}, {"tty_down", { " ", "â–‘", "â–‘", "â–’", "â–’", "â–‘", "â–‘", "â–’", "â–’", "â–ˆ", "â–‘", "â–’", "â–’", "â–’", "â–ˆ", "â–’", "â–’", "â–’", "â–ˆ", "â–ˆ", "â–’", "â–ˆ", "â–ˆ", "â–ˆ", "â–ˆ" }} }; } namespace Draw { string banner_gen(int y, int x, bool centered, bool redraw) { static string banner; static size_t width = 0; if (redraw) banner.clear(); if (banner.empty()) { string b_color, bg, fg, oc, letter; auto lowcolor = Config::getB("lowcolor"); auto tty_mode = Config::getB("tty_mode"); for (size_t z = 0; const auto& line : Global::Banner_src) { if (const auto w = ulen(line[1]); w > width) width = w; if (tty_mode) { fg = (z > 2) ? "\x1b[31m" : "\x1b[91m"; bg = (z > 2) ? "\x1b[90m" : "\x1b[37m"; } else { fg = Theme::hex_to_color(line[0], lowcolor); int bg_i = 120 - z * 12; bg = Theme::dec_to_color(bg_i, bg_i, bg_i, lowcolor); } for (size_t i = 0; i < line[1].size(); i += 3) { if (line[1][i] == ' ') { letter = Mv::r(1); i -= 2; } else letter = line[1].substr(i, 3); b_color = (letter == "â–ˆ") ? fg : bg; if (b_color != oc) banner += b_color; banner += letter; oc = b_color; } if (++z < Global::Banner_src.size()) banner += Mv::l(ulen(line[1])) + Mv::d(1); } banner += Mv::r(18 - Global::Version.size()) + Theme::c("main_fg") + Fx::b + Fx::i + "v" + Global::Version + Fx::reset; } if (redraw) return ""; return (centered ? Mv::to(y, Term::width / 2 - width / 2) : Mv::to(y, x)) + banner; } TextEdit::TextEdit() {} TextEdit::TextEdit(string text, bool numeric) : numeric(numeric), text(std::move(text)) { pos = this->text.size(); upos = ulen(this->text); } bool TextEdit::command(const std::string_view key) { if (key == "left" and upos > 0) { upos--; pos = uresize(text, upos).size(); } else if (key == "right" and pos < text.size()) { upos++; pos = uresize(text, upos).size(); } else if (key == "home" and not text.empty() and pos > 0) { pos = upos = 0; } else if (key == "end" and not text.empty() and pos < text.size()) { pos = text.size(); upos = ulen(text); } else if (key == "backspace" and pos > 0) { if (pos == text.size()) { text = uresize(text, --upos); pos = text.size(); } else { const string first = uresize(text, --upos); pos = first.size(); text = first + luresize(text.substr(pos), ulen(text) - upos - 1); } } else if (key == "delete" and pos < text.size()) { const string first = uresize(text, upos + 1); text = uresize(first, ulen(first) - 1) + text.substr(first.size()); } else if (key == "space" and not numeric) { text.insert(pos++, 1, ' '); upos++; } else if (ulen(key) == 1 and text.size() < text.max_size() - 20) { if (numeric and not isint(key)) return false; if (key.size() == 1) { text.insert(pos++, 1, key.at(0)); upos++; } else { const auto first = fmt::format("{}{}", uresize(text, upos), key); text = first + text.substr(pos); upos++; pos = first.size(); } } else return false; return true; } string TextEdit::operator()(const size_t limit) { string out; size_t c_upos = upos; if (text.empty()) return Fx::ul + " " + Fx::uul; if (limit > 0 and ulen(text) + 1 > limit) { try { const size_t half = (size_t)round((double)limit / 2); string first; if (upos + half > ulen(text)) first = luresize(text.substr(0, pos), limit - (ulen(text) - upos)); else if (upos - half < 1) first = text.substr(0, pos); else first = luresize(text.substr(0, pos), half); out = first + uresize(text.substr(pos), limit - ulen(first)); c_upos = ulen(first); } catch (const std::exception& e) { Logger::error("In TextEdit::operator() : " + string{e.what()}); return ""; } } else out = text; if (c_upos == 0) return Fx::ul + uresize(out, 1) + Fx::uul + luresize(out, ulen(out) - 1); else if (c_upos == ulen(out)) return out + Fx::ul + " " + Fx::uul; else return uresize(out, c_upos) + Fx::ul + luresize(uresize(out, c_upos + 1), 1) + Fx::uul + luresize(out, ulen(out) - c_upos - 1); } void TextEdit::clear() { this->text.clear(); } string createBox( const int x, const int y, const int width, const int height, string line_color, bool fill, const std::string_view title, const std::string_view title2, const int num ) { string out; if (line_color.empty()) line_color = Theme::c("div_line"); auto tty_mode = Config::getB("tty_mode"); auto rounded = Config::getB("rounded_corners"); const string numbering = (num == 0) ? "" : Theme::c("hi_fg") + (tty_mode ? std::to_string(num) : Symbols::superscript.at(clamp(num, 0, 9))); const auto& right_up = (tty_mode or not rounded ? Symbols::right_up : Symbols::round_right_up); const auto& left_up = (tty_mode or not rounded ? Symbols::left_up : Symbols::round_left_up); const auto& right_down = (tty_mode or not rounded ? Symbols::right_down : Symbols::round_right_down); const auto& left_down = (tty_mode or not rounded ? Symbols::left_down : Symbols::round_left_down); out = Fx::reset + line_color; //? Draw horizontal lines for (const int& hpos : {y, y + height - 1}) { out += Mv::to(hpos, x) + Symbols::h_line * (width - 1); } //? Draw vertical lines and fill if enabled for (const int& hpos : iota(y + 1, y + height - 1)) { out += Mv::to(hpos, x) + Symbols::v_line + ((fill) ? string(width - 2, ' ') : Mv::r(width - 2)) + Symbols::v_line; } //? Draw corners out += Mv::to(y, x) + left_up + Mv::to(y, x + width - 1) + right_up + Mv::to(y + height - 1, x) +left_down + Mv::to(y + height - 1, x + width - 1) + right_down; //? Draw titles if defined if (not title.empty()) { out += fmt::format( "{}{}{}{}{}{}{}{}{}", Mv::to(y, x + 2), Symbols::title_left, Fx::b, numbering, Theme::c("title"), title, Fx::ub, line_color, Symbols::title_right ); } if (not title2.empty()) { out += fmt::format( "{}{}{}{}{}{}{}{}{}", Mv::to(y + height - 1, x + 2), Symbols::title_left_down, Fx::b, numbering, Theme::c("title"), title2, Fx::ub, line_color, Symbols::title_right_down ); } return out + Fx::reset + Mv::to(y + 1, x + 1); } bool update_clock(bool force) { const auto& clock_format = Config::getS("clock_format"); if (not Cpu::shown or clock_format.empty()) { if (clock_format.empty() and not Global::clock.empty()) Global::clock.clear(); return false; } static const std::unordered_map clock_custom_format = { {"/user", Tools::username()}, {"/host", Tools::hostname()}, {"/uptime", ""} }; static time_t c_time{}; static size_t clock_len{}; static string clock_str; if (auto n_time = time(nullptr); not force and n_time == c_time) return false; else { c_time = n_time; const auto new_clock = Tools::strf_time(clock_format); if (not force and new_clock == clock_str) return false; clock_str = new_clock; } auto& out = Global::clock; auto cpu_bottom = Config::getB("cpu_bottom"); const auto& x = Cpu::x; const auto y = (cpu_bottom ? Cpu::y + Cpu::height - 1 : Cpu::y); const auto& width = Cpu::width; const auto& title_left = (cpu_bottom ? Symbols::title_left_down : Symbols::title_left); const auto& title_right = (cpu_bottom ? Symbols::title_right_down : Symbols::title_right); for (const auto& [c_format, replacement] : clock_custom_format) { if (s_contains(clock_str, c_format)) { if (c_format == "/uptime") { string upstr = sec_to_dhms(system_uptime()); if (upstr.size() > 8) upstr.resize(upstr.size() - 3); clock_str = s_replace(clock_str, c_format, upstr); } else { clock_str = s_replace(clock_str, c_format, replacement); } } } clock_str = uresize(clock_str, std::max(10, width - 66 - (Term::width >= 100 and Config::getB("show_battery") and Cpu::has_battery ? 22 : 0))); out.clear(); if (clock_str.size() != clock_len) { if (not Global::resized and clock_len > 0) out = Mv::to(y, x+(width / 2)-(clock_len / 2)) + Fx::ub + Theme::c("cpu_box") + Symbols::h_line * clock_len; clock_len = clock_str.size(); } out += Mv::to(y, x+(width / 2)-(clock_len / 2)) + Fx::ub + Theme::c("cpu_box") + title_left + Theme::c("title") + Fx::b + clock_str + Theme::c("cpu_box") + Fx::ub + title_right; return true; } //* Meter class ------------------------------------------------------------------------------------------------------------> Meter::Meter() {} Meter::Meter(const int width, string color_gradient, bool invert) : width(width), color_gradient(std::move(color_gradient)), invert(invert) {} string Meter::operator()(int value) { if (width < 1) return ""; value = clamp(value, 0, 100); if (not cache.at(value).empty()) return cache.at(value); auto& out = cache.at(value); for (const int& i : iota(1, width + 1)) { int y = round((double)i * 100.0 / width); if (value >= y) out += Theme::g(color_gradient).at(invert ? 100 - y : y) + Symbols::meter; else { out += Theme::c("meter_bg") + Symbols::meter * (width + 1 - i); break; } } out += Fx::reset; return out; } //* Graph class ------------------------------------------------------------------------------------------------------------> void Graph::_create(const deque& data, int data_offset) { bool mult = (data.size() - data_offset > 1); const auto& graph_symbol = Symbols::graph_symbols.at(symbol + '_' + (invert ? "down" : "up")); array result; const float mod = (height == 1) ? 0.3 : 0.1; long long data_value = 0; if (mult and data_offset > 0) { last = data.at(data_offset - 1); if (max_value > 0) last = clamp((last + offset) * 100 / max_value, 0ll, 100ll); } //? Horizontal iteration over values in for (const int& i : iota(data_offset, (int)data.size())) { // if (tty_mode and mult and i % 2 != 0) continue; if (not tty_mode and mult) current = not current; if (i < 0) { data_value = 0; last = 0; } else { data_value = data.at(i); if (max_value > 0) data_value = clamp((data_value + offset) * 100 / max_value, 0ll, 100ll); } //? Vertical iteration over height of graph for (const int& horizon : iota(0, height)) { const int cur_high = (height > 1) ? round(100.0 * (height - horizon) / height) : 100; const int cur_low = (height > 1) ? round(100.0 * (height - (horizon + 1)) / height) : 0; //? Calculate previous + current value to fit two values in 1 braille character for (int ai = 0; const auto& value : {last, data_value}) { const int clamp_min = (no_zero and horizon == height - 1 and not (mult and i == data_offset and ai == 0)) ? 1 : 0; if (value >= cur_high) result[ai++] = 4; else if (value <= cur_low) result[ai++] = clamp_min; else { result[ai++] = clamp((int)round((float)(value - cur_low) * 4 / (cur_high - cur_low) + mod), clamp_min, 4); } } //? Generate graph symbol from 5x5 2D vector if (height == 1) { if (result.at(0) + result.at(1) == 0) graphs.at(current).at(horizon) += Mv::r(1); else { if (not color_gradient.empty()) graphs.at(current).at(horizon) += Theme::g(color_gradient).at(clamp(max(last, data_value), 0ll, 100ll)); graphs.at(current).at(horizon) += graph_symbol.at((result.at(0) * 5 + result.at(1))); } } else graphs.at(current).at(horizon) += graph_symbol.at((result.at(0) * 5 + result.at(1))); } if (mult and i >= 0) last = data_value; } last = data_value; out.clear(); if (height == 1) { //if (not color_gradient.empty()) // out += (last < 1 ? Theme::c("inactive_fg") : Theme::g(color_gradient).at(clamp(last, 0ll, 100ll))); out += graphs.at(current).at(0); } else { for (const int& i : iota(1, height + 1)) { if (i > 1) out += Mv::d(1) + Mv::l(width); if (not color_gradient.empty()) out += (invert) ? Theme::g(color_gradient).at(i * 100 / height) : Theme::g(color_gradient).at(100 - ((i - 1) * 100 / height)); out += (invert) ? graphs.at(current).at(height - i) : graphs.at(current).at(i-1); } } if (not color_gradient.empty()) out += Fx::reset; } Graph::Graph() {} Graph::Graph(int width, int height, const string& color_gradient, const deque& data, const string& symbol, bool invert, bool no_zero, long long max_value, long long offset) : width(width), height(height), color_gradient(color_gradient), invert(invert), no_zero(no_zero), offset(offset) { if (Config::getB("tty_mode") or symbol == "tty") this->symbol = "tty"; else if (symbol != "default") this->symbol = symbol; else this->symbol = Config::getS("graph_symbol"); if (this->symbol == "tty") tty_mode = true; if (max_value == 0 and offset > 0) max_value = 100; this->max_value = max_value; const int value_width = (tty_mode ? data.size() : ceil((double)data.size() / 2)); int data_offset = (value_width > width) ? data.size() - width * (tty_mode ? 1 : 2) : 0; if (not tty_mode and (data.size() - data_offset) % 2 != 0) { data_offset--; } //? Populate the two switching graph vectors and fill empty space if data size < width for (const int& i : iota(0, height * 2)) { if (tty_mode and i % 2 != current) continue; graphs[(i % 2 != 0)].push_back((value_width < width) ? ((height == 1) ? Mv::r(1) : " "s) * (width - value_width) : ""); } if (data.size() == 0) return; this->_create(data, data_offset); } string& Graph::operator()(const deque& data, bool data_same) { if (data_same) return out; //? Make room for new characters on graph if (not tty_mode) current = not current; for (const int& i : iota(0, height)) { if (height == 1 and graphs.at(current).at(i).at(1) == '[') { if (graphs.at(current).at(i).at(3) == 'C') graphs.at(current).at(i).erase(0, 4); else graphs.at(current).at(i).erase(0, graphs.at(current).at(i).find_first_of('m') + 4); } else if (graphs.at(current).at(i).at(0) == ' ') graphs.at(current).at(i).erase(0, 1); else graphs.at(current).at(i).erase(0, 3); } this->_create(data, (int)data.size() - 1); return out; } string& Graph::operator()() { return out; } //*-------------------------------------------------------------------------------------------------------------------------> } namespace Cpu { int width_p = 100, height_p = 32; int min_width = 60, min_height = 8; int x = 1, y = 1, width = 20, height; int b_columns, b_column_size; int b_x, b_y, b_width, b_height; float max_observed_pwr = 1.0f; int graph_up_height, graph_low_height; int graph_up_width, graph_low_width; int gpu_meter_width; bool shown = true, redraw = true, mid_line = false; string box; vector graphs_upper; vector graphs_lower; Draw::Meter cpu_meter; vector gpu_meters; vector core_graphs; vector temp_graphs; vector gpu_temp_graphs; vector gpu_mem_graphs; string draw(const cpu_info& cpu, const vector& gpus, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; if (force_redraw) redraw = true; bool show_temps = (Config::getB("check_temp") and got_sensors); bool show_watts = (Config::getB("show_cpu_watts") and supports_watts); auto single_graph = Config::getB("cpu_single_graph"); bool hide_cores = show_temps and (cpu_temp_only or not Config::getB("show_coretemp")); const int extra_width = (hide_cores ? max(6, 6 * b_column_size) : 0); #ifdef GPU_SUPPORT const auto& show_gpu_info = Config::getS("show_gpu_info"); const bool gpu_always = show_gpu_info == "On"; const bool gpu_auto = show_gpu_info == "Auto"; const bool show_gpu = (gpus.size() > 0 and (gpu_always or (gpu_auto and Gpu::shown < Gpu::count))); #else (void)gpus; #endif auto graph_up_field = Config::getS("cpu_graph_upper"); if (graph_up_field == "Auto" or not v_contains(Cpu::available_fields, graph_up_field)) graph_up_field = "total"; auto graph_lo_field = Config::getS("cpu_graph_lower"); if (graph_lo_field == "Auto" or not v_contains(Cpu::available_fields, graph_lo_field)) { #ifdef GPU_SUPPORT graph_lo_field = show_gpu ? "gpu-totals" : graph_up_field; #else graph_lo_field = graph_up_field; #endif } auto tty_mode = Config::getB("tty_mode"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_cpu")); auto& graph_bg = Symbols::graph_symbols.at((graph_symbol == "default" ? Config::getS("graph_symbol") + "_up" : graph_symbol + "_up")).at(6); auto& temp_scale = Config::getS("temp_scale"); auto cpu_bottom = Config::getB("cpu_bottom"); const string& title_left = Theme::c("cpu_box") + (cpu_bottom ? Symbols::title_left_down : Symbols::title_left); const string& title_right = Theme::c("cpu_box") + (cpu_bottom ? Symbols::title_right_down : Symbols::title_right); static int bat_pos = 0, bat_len = 0; if (safeVal(cpu.cpu_percent, "total"s).empty() or safeVal(cpu.core_percent, 0).empty() or (show_temps and safeVal(cpu.temp, 0).empty())) return ""; if (safeVal(cpu.cpu_percent, "total"s).empty() or safeVal(cpu.core_percent, 0).empty() or (show_temps and safeVal(cpu.temp, 0).empty())) return ""; string out; out.reserve(width * height); //* Redraw elements not needed to be updated every cycle if (redraw) { mid_line = (not single_graph and graph_up_field != graph_lo_field); graph_up_height = (single_graph ? height - 2 : ceil((double)(height - 2) / 2) - (mid_line and height % 2 != 0)); graph_low_height = height - 2 - graph_up_height - mid_line; const int button_y = cpu_bottom ? y + height - 1 : y; out += box; //? Buttons on title out += Mv::to(button_y, x + 10) + title_left + Theme::c("hi_fg") + Fx::b + 'm' + Theme::c("title") + "enu" + Fx::ub + title_right; Input::mouse_mappings["m"] = {button_y, x + 11, 1, 4}; out += Mv::to(button_y, x + 16) + title_left + Theme::c("hi_fg") + Fx::b + 'p' + Theme::c("title") + "reset " + (Config::current_preset < 0 ? "*" : to_string(Config::current_preset)) + Fx::ub + title_right; Input::mouse_mappings["p"] = {button_y, x + 17, 1, 8}; const string update = to_string(Config::getI("update_ms")) + "ms"; out += Mv::to(button_y, x + width - update.size() - 8) + title_left + Fx::b + Theme::c("hi_fg") + "- " + Theme::c("title") + update + Theme::c("hi_fg") + " +" + Fx::ub + title_right; Input::mouse_mappings["-"] = {button_y, x + width - (int)update.size() - 7, 1, 2}; Input::mouse_mappings["+"] = {button_y, x + width - 5, 1, 2}; //? Graphs & meters const int graph_default_width = x + width - b_width - 3; auto init_graphs = [&](vector& graphs, const int graph_height, int& graph_width, const string& graph_field, bool invert) { #ifdef GPU_SUPPORT if (graph_field.starts_with("gpu")) { if (graph_field.find("totals") != string::npos) { graphs.resize(gpus.size()); gpu_temp_graphs.resize(gpus.size()); gpu_mem_graphs.resize(gpus.size()); gpu_meters.resize(gpus.size()); const int gpu_draw_count = gpu_always ? Gpu::count : Gpu::count - Gpu::shown; graph_width = gpu_draw_count <= 0 ? graph_default_width : graph_default_width/gpu_draw_count - gpu_draw_count + 1 + graph_default_width%gpu_draw_count; for (size_t i = 0; i < gpus.size(); i++) { if (gpu_auto and v_contains(Gpu::shown_panels, i)) continue; auto& gpu = gpus[i]; auto& graph = graphs[i]; //? GPU graphs if (gpu.supported_functions.gpu_utilization) { if (i + 1 < gpus.size()) { graph = Draw::Graph{graph_width, graph_height, "cpu", safeVal(gpu.gpu_percent, graph_field), graph_symbol, invert, true}; } else { graph = Draw::Graph{ graph_width + graph_default_width%graph_width - (int)gpus.size() + 1, graph_height, "cpu", safeVal(gpu.gpu_percent, graph_field), graph_symbol, invert, true }; } } } } else { graphs.resize(1); graph_width = graph_default_width; graphs[0] = Draw::Graph{ graph_width, graph_height, "cpu", safeVal(Gpu::shared_gpu_percent, graph_field), graph_symbol, invert, true }; } } else { #endif graphs.resize(1); graph_width = graph_default_width; graphs[0] = Draw::Graph{ graph_width, graph_height, "cpu", safeVal(cpu.cpu_percent, graph_field), graph_symbol, invert, true }; #ifdef GPU_SUPPORT } #endif }; init_graphs(graphs_upper, graph_up_height, graph_up_width, graph_up_field, false); if (not single_graph) init_graphs(graphs_lower, graph_low_height, graph_low_width, graph_lo_field, Config::getB("cpu_invert_lower")); #ifdef GPU_SUPPORT if (show_gpu and b_columns > 1) { gpu_temp_graphs.resize(gpus.size()); gpu_mem_graphs.resize(gpus.size()); gpu_meters.resize(gpus.size()); for (size_t i = 0; i < gpus.size(); i++) { if (gpu_auto and v_contains(Gpu::shown_panels, i)) continue; auto& gpu = gpus[i]; //? GPU graphs/meters auto width_left = b_width - 10 - (gpus.size() > 9 ? 2 : gpus.size() > 1 ? 1 : 0); if (gpu.supported_functions.temp_info and show_temps) { gpu_temp_graphs[i] = Draw::Graph{ 5, 1, "temp", gpu.temp, graph_symbol, false, false, gpu.temp_max, -23 }; width_left -= 11; } if (gpu.supported_functions.mem_used and gpu.supported_functions.mem_total and b_columns > 1) { gpu_mem_graphs[i] = Draw::Graph{ 5, 1, "used", safeVal(gpu.gpu_percent, "gpu-vram-totals"s), graph_symbol }; width_left -= 5; } width_left -= (gpu.supported_functions.mem_used ? 5 : 0); width_left -= (gpu.supported_functions.mem_total ? 6 : 0); width_left -= (gpu.supported_functions.pwr_usage ? 6 : 0); if (gpu.supported_functions.gpu_utilization) { gpu_meters[i] = Draw::Meter{width_left, "cpu" }; } } } #endif int cpu_meter_width = b_width - (show_temps ? 23 - (b_column_size <= 1 and b_columns == 1 ? 6 : 0) : 11); if (show_watts) { cpu_meter_width -= 6; } cpu_meter = Draw::Meter{cpu_meter_width, "cpu"}; if (mid_line) { out += Mv::to(y + graph_up_height + 1, x) + Fx::ub + Theme::c("cpu_box") + Symbols::div_left + Theme::c("div_line") + Symbols::h_line * (width - b_width - 2) + Symbols::div_right + Mv::to(y + graph_up_height + 1, x + ((width - b_width) / 2) - ((graph_up_field.size() + graph_lo_field.size()) / 2) - 4) + Theme::c("main_fg") + graph_up_field + Mv::r(1) + "▲▼" + Mv::r(1) + graph_lo_field; } if (b_column_size > 0 or extra_width > 0) { core_graphs.clear(); for (const auto& core_data : cpu.core_percent) { core_graphs.emplace_back(5 * b_column_size + extra_width, 1, "cpu", core_data, graph_symbol); } } if (show_temps) { temp_graphs.clear(); temp_graphs.emplace_back(5, 1, "temp", safeVal(cpu.temp, 0), graph_symbol, false, false, cpu.temp_max, -23); if (not hide_cores and b_column_size > 1) { for (const auto& i : iota((size_t)1, cpu.temp.size())) { temp_graphs.emplace_back(5, 1, "temp", safeVal(cpu.temp, i), graph_symbol, false, false, cpu.temp_max, -23); } } } } //? Draw battery if enabled and present if (Config::getB("show_battery") and has_battery) { static int old_percent{}; // defaults to = 0 static long old_seconds{}; // defaults to = 0 static float old_watts{}; // defaults to = 0 static string old_status; static Draw::Meter bat_meter {10, "cpu", true}; static const std::unordered_map bat_symbols = { {"charging", "â–²"}, {"discharging", "â–¼"}, {"full", "â– "}, {"unknown", "â—‹"} }; const auto& [percent, watts, seconds, status] = current_bat; if (redraw or percent != old_percent or (watts != old_watts and Config::getB("show_battery_watts")) or seconds != old_seconds or status != old_status) { old_percent = percent; old_watts = watts; old_seconds = seconds; old_status = status; const string str_time = (seconds > 0 ? sec_to_dhms(seconds, false, true) : ""); const string str_percent = to_string(percent) + '%'; const string str_watts = (watts != -1 and Config::getB("show_battery_watts") ? fmt::format("{:.2f}", watts) + 'W' : ""); const auto& bat_symbol = bat_symbols.at((bat_symbols.contains(status) ? status : "unknown")); const int current_len = (Term::width >= 100 ? 11 : 0) + str_time.size() + str_percent.size() + str_watts.size() + to_string(Config::getI("update_ms")).size(); const int current_pos = Term::width - current_len - 17; if ((bat_pos != current_pos or bat_len != current_len) and bat_pos > 0 and not redraw) out += Mv::to(y, bat_pos) + Fx::ub + Theme::c("cpu_box") + Symbols::h_line * (bat_len + 4); bat_pos = current_pos; bat_len = current_len; out += Mv::to(y, bat_pos) + title_left + Theme::c("title") + Fx::b + "BAT" + bat_symbol + ' ' + str_percent + (Term::width >= 100 ? Fx::ub + ' ' + bat_meter(percent) + Fx::b : "") + (not str_time.empty() ? ' ' + Theme::c("title") + str_time : "") + (not str_watts.empty() ? " " + Theme::c("title") + Fx::b + str_watts : "") + Fx::ub + title_right; } } else if (bat_pos > 0) { out += Mv::to(y, bat_pos) + Fx::ub + Theme::c("cpu_box") + Symbols::h_line * (bat_len + 4); bat_pos = bat_len = 0; } try { //? Cpu/Gpu graphs out += Fx::ub + Mv::to(y + 1, x + 1); auto draw_graphs = [&](vector& graphs, const int graph_height, const int graph_width, const string& graph_field) { #ifdef GPU_SUPPORT if (graph_field.starts_with("gpu")) if (graph_field.ends_with("totals")) { int gpu_drawn = 0; for (size_t i = 0; i < gpus.size(); i++) { if (gpu_auto and v_contains(Gpu::shown_panels, i)) { continue; } try { const auto& gpu_percent = gpus[i].gpu_percent; out += graphs[i](safeVal(gpu_percent, graph_field), (data_same or redraw)); } catch (std::out_of_range& /* unused */) { continue; } if (Gpu::count - (gpu_auto ? Gpu::shown : 0) > 1) { auto i_str = to_string(i); out += Mv::l(graph_width-1) + Mv::u(graph_height/2) + (graph_width > 5 ? "GPU" : "") + i_str + Mv::d(graph_height/2) + Mv::r(graph_width - 1 - (graph_width > 5)*3 - i_str.size()); } if (++gpu_drawn < Gpu::count - (gpu_auto ? Gpu::shown : 0)) out += Theme::c("div_line") + (Symbols::v_line + Mv::l(1) + Mv::u(1))*graph_height + Mv::r(1) + Mv::d(1); } } else out += graphs[0](safeVal(Gpu::shared_gpu_percent, graph_field), (data_same or redraw)); else #else (void)graph_height; (void)graph_width; #endif out += graphs[0](safeVal(cpu.cpu_percent, graph_field), (data_same or redraw)); }; draw_graphs(graphs_upper, graph_up_height, graph_up_width, graph_up_field); if (not single_graph) { out += Mv::to(y + graph_up_height + 1 + mid_line, x + 1); draw_graphs(graphs_lower, graph_low_height, graph_low_width, graph_lo_field); } //? Uptime if (Config::getB("show_uptime")) { string upstr = sec_to_dhms(system_uptime()); if (upstr.size() > 8) { upstr.resize(upstr.size() - 3); upstr = trans(upstr); } out += Mv::to(y + (single_graph or not Config::getB("cpu_invert_lower") ? 1 : height - 2), x + 2) + Theme::c("graph_text") + "up" + Mv::r(1) + upstr; } //? Cpu clock and cpu meter if (Config::getB("show_cpu_freq") and not cpuHz.empty()) out += Mv::to(b_y, b_x + b_width - 10) + Fx::ub + Theme::c("div_line") + Symbols::h_line * (7 - cpuHz.size()) + Symbols::title_left + Fx::b + Theme::c("title") + cpuHz + Fx::ub + Theme::c("div_line") + Symbols::title_right; out += Mv::to(b_y + 1, b_x + 1) + Theme::c("main_fg") + Fx::b + "CPU " + cpu_meter(safeVal(cpu.cpu_percent, "total"s).back()) + Theme::g("cpu").at(clamp(safeVal(cpu.cpu_percent, "total"s).back(), 0ll, 100ll)) + rjust(to_string(safeVal(cpu.cpu_percent, "total"s).back()), 4) + Theme::c("main_fg") + '%'; if (show_temps) { const auto [temp, unit] = celsius_to(safeVal(cpu.temp, 0).back(), temp_scale); const auto temp_color = Theme::g("temp").at(clamp(safeVal(cpu.temp, 0).back() * 100 / cpu.temp_max, 0ll, 100ll)); if ((b_column_size > 1 or b_columns > 1) and temp_graphs.size() >= 1ll) out += ' ' + Theme::c("inactive_fg") + graph_bg * 5 + Mv::l(5) + temp_color + temp_graphs.at(0)(safeVal(cpu.temp, 0), data_same or redraw); out += rjust(to_string(temp), 4) + Theme::c("main_fg") + unit; } if (show_watts) { string cwatts = fmt::format(" {:>4.{}f}", cpu.usage_watts, cpu.usage_watts < 10.0f ? 2 : cpu.usage_watts < 100.0f ? 1 : 0); string cwatts_post = "W"; max_observed_pwr = max(max_observed_pwr, cpu.usage_watts); out += Theme::g("cached").at(clamp(cpu.usage_watts / max_observed_pwr * 100.0f, 0.0f, 100.0f)) + cwatts + Theme::c("main_fg") + cwatts_post; } out += Theme::c("div_line") + Symbols::v_line; } catch (const std::exception& e) { throw std::runtime_error("graphs, clock, meter : " + string{e.what()}); } int max_row = b_height - 3; // Subtracting one extra row for the load average (and power if enabled) int n_gpus_to_show = 0; #ifdef GPU_SUPPORT n_gpus_to_show = show_gpu ? (gpus.size() - (gpu_always ? 0 : Gpu::shown)) : 0; #endif max_row -= n_gpus_to_show; //? Core text and graphs int cx = 0, cy = 1, cc = 0, core_width = (b_column_size == 0 ? 2 : 3); if (Shared::coreCount >= 100) core_width++; for (const auto& n : iota(0, Shared::coreCount)) { out += Mv::to(b_y + cy + 1, b_x + cx + 1) + Theme::c("main_fg") + (Shared::coreCount < 100 ? Fx::b + 'C' + Fx::ub : "") + ljust(to_string(n), core_width); if ((b_column_size > 0 or extra_width > 0) and cmp_less(n, core_graphs.size())) out += Theme::c("inactive_fg") + graph_bg * (5 * b_column_size + extra_width) + Mv::l(5 * b_column_size + extra_width) + core_graphs.at(n)(safeVal(cpu.core_percent, n), data_same or redraw); out += Theme::g("cpu").at(clamp(safeVal(cpu.core_percent, n).back(), 0ll, 100ll)); out += rjust(to_string(safeVal(cpu.core_percent, n).back()), (b_column_size < 2 ? 3 : 4)) + Theme::c("main_fg") + '%'; if (show_temps and not hide_cores) { const auto [temp, unit] = celsius_to(safeVal(cpu.temp, n+1).back(), temp_scale); const auto temp_color = Theme::g("temp").at(clamp(safeVal(cpu.temp, n+1).back() * 100 / cpu.temp_max, 0ll, 100ll)); if (b_column_size > 1 and std::cmp_greater_equal(temp_graphs.size(), n)) out += ' ' + Theme::c("inactive_fg") + graph_bg * 5 + Mv::l(5) + temp_graphs.at(n+1)(safeVal(cpu.temp, n+1), data_same or redraw); out += temp_color + rjust(to_string(temp), 4) + Theme::c("main_fg") + unit; } out += Theme::c("div_line") + Symbols::v_line; if ((++cy > ceil((double)Shared::coreCount / b_columns) or cy == max_row) and n != Shared::coreCount - 1) { if (++cc >= b_columns) break; cy = 1; cx = (b_width / b_columns) * cc; } } //? Load average if (cy < b_height - 1 and cc <= b_columns) { cy = b_height - 2 - n_gpus_to_show; string load_avg_pre = "Load avg:"; string load_avg; for (const auto& val : cpu.load_avg) { load_avg += fmt::format(" {:.2f}", val); } int len = load_avg_pre.size() + load_avg.size(); out += Mv::to(b_y + cy, b_x + 1) + string(max(b_width - len - 2, 0), ' ') + Theme::c("main_fg") + Fx::b + load_avg_pre + Fx::ub + load_avg; } #ifdef GPU_SUPPORT //? Gpu brief info if (show_gpu) { for (unsigned long i = 0; i < gpus.size(); ++i) { if (gpu_auto and v_contains(Gpu::shown_panels, i)) continue; out += Mv::to(b_y + ++cy, b_x + 1) + Theme::c("main_fg") + Fx::b + "GPU"; if (gpus.size() > 1) out += rjust(to_string(i), 1 + (gpus.size() > 9)); if (gpus[i].supported_functions.gpu_utilization) { out += ' '; if (b_columns > 1) { out += gpu_meters[i](safeVal(gpus[i].gpu_percent, "gpu-totals"s).back()) + Theme::g("cpu").at(clamp(safeVal(gpus[i].gpu_percent, "gpu-totals"s).back(), 0ll, 100ll)); } out += rjust(to_string(safeVal(gpus[i].gpu_percent, "gpu-totals"s).back()), 3) + Theme::c("main_fg") + '%'; if (b_columns == 1) out += ' '; } if (gpus[i].supported_functions.mem_used and gpus[i].supported_functions.mem_total and b_columns > 1) { out += ' ' + Theme::c("inactive_fg") + graph_bg * 5 + Mv::l(5) + Theme::g("used").at(safeVal(gpus[i].gpu_percent, "gpu-vram-totals"s).back()) + gpu_mem_graphs[i](safeVal(gpus[i].gpu_percent, "gpu-vram-totals"s), data_same or redraw); } if (gpus[i].supported_functions.mem_used) { out += Theme::c("main_fg") + rjust(floating_humanizer(gpus[i].mem_used, true), 5); } if (gpus[i].supported_functions.mem_total) { out += Theme::c("inactive_fg") + '/' + Theme::c("main_fg") + ljust(floating_humanizer(gpus[i].mem_total, true), 4); } if (show_temps and gpus[i].supported_functions.temp_info) { const auto [temp, unit] = celsius_to(gpus[i].temp.back(), temp_scale); out += ' '; if (b_columns > 1) out += Theme::c("inactive_fg") + graph_bg * 5 + Mv::l(5) + Theme::g("temp").at(clamp(gpus[i].temp.back() * 100 / gpus[i].temp_max, 0ll, 100ll)) + gpu_temp_graphs[i](gpus[i].temp, data_same or redraw); else out += Theme::g("temp").at(clamp(gpus[i].temp.back() * 100 / gpus[i].temp_max, 0ll, 100ll)); out += rjust(to_string(temp), 3) + Theme::c("main_fg") + unit; } if (gpus[i].supported_functions.pwr_usage) { out += ' ' + Theme::g("cached").at(clamp(safeVal(gpus[i].gpu_percent, "gpu-pwr-totals"s).back(), 0ll, 100ll)) + fmt::format("{:>4.{}f}", gpus[i].pwr_usage / 1000.0, gpus[i].pwr_usage < 10'000 ? 2 : gpus[i].pwr_usage < 100'000 ? 1 : 0) + Theme::c("main_fg") + 'W'; } if (cy > b_height - 1) break; } } #endif redraw = false; return out + Fx::reset; } } #ifdef GPU_SUPPORT namespace Gpu { int width_p = 100, height_p = 32; int min_width = 41, min_height = 11; int width = 41, height; vector x_vec = {}, y_vec = {}, b_height_vec = {}; int b_width; vector b_x_vec = {}, b_y_vec = {}; vector redraw = {}; int shown = 0; int count = 0; vector shown_panels = {}; int graph_up_height; vector graph_upper_vec = {}, graph_lower_vec = {}; vector temp_graph_vec = {}; vector mem_used_graph_vec = {}, mem_util_graph_vec = {}; vector gpu_meter_vec = {}; vector pwr_meter_vec = {}; vector enc_meter_vec = {}; vector box = {}; string draw(const gpu_info& gpu, unsigned long index, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; auto& b_x = b_x_vec[index]; auto& b_y = b_y_vec[index]; auto& x = x_vec[index]; auto& y = y_vec[index]; auto& graph_upper = graph_upper_vec[index]; auto& graph_lower = graph_lower_vec[index]; auto& temp_graph = temp_graph_vec[index]; auto& mem_used_graph = mem_used_graph_vec[index]; auto& mem_util_graph = mem_util_graph_vec[index]; auto& gpu_meter = gpu_meter_vec[index]; auto& pwr_meter = pwr_meter_vec[index]; auto& enc_meter = enc_meter_vec[index]; if (force_redraw) redraw[index] = true; bool show_temps = gpu.supported_functions.temp_info and (Config::getB("check_temp")); auto tty_mode = Config::getB("tty_mode"); auto& temp_scale = Config::getS("temp_scale"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_gpu")); auto& graph_bg = Symbols::graph_symbols.at((graph_symbol == "default" ? Config::getS("graph_symbol") + "_up" : graph_symbol + "_up")).at(6); auto single_graph = !Config::getB("gpu_mirror_graph"); string out; out.reserve(width * height); //* Redraw elements not needed to be updated every cycle if (redraw[index]) { graph_up_height = single_graph ? height - 2 : ceil((double)(height - 2) / 2); const int graph_low_height = height - 2 - graph_up_height; out += box[index]; if (gpu.supported_functions.gpu_utilization) { graph_upper = Draw::Graph{x + width - b_width - 3, graph_up_height, "cpu", safeVal(gpu.gpu_percent, "gpu-totals"s), graph_symbol, false, true}; // TODO cpu -> gpu if (not single_graph) { graph_lower = Draw::Graph{ x + width - b_width - 3, graph_low_height, "cpu", safeVal(gpu.gpu_percent, "gpu-totals"s), graph_symbol, Config::getB("cpu_invert_lower"), true }; } gpu_meter = Draw::Meter{b_width - (show_temps ? 25 : 12), "cpu"}; } if (gpu.supported_functions.temp_info) temp_graph = Draw::Graph{6, 1, "temp", gpu.temp, graph_symbol, false, false, gpu.temp_max, -23}; if (gpu.supported_functions.pwr_usage) pwr_meter = Draw::Meter{b_width - (gpu.supported_functions.pwr_state and gpu.pwr_state != 32 ? 25 : 12), "cached"}; if (gpu.supported_functions.mem_utilization) mem_util_graph = Draw::Graph{b_width/2 - 1, 2, "free", gpu.mem_utilization_percent, graph_symbol, 0, 0, 100, 4}; // offset so the graph isn't empty at 0-5% utilization if (gpu.supported_functions.mem_used and gpu.supported_functions.mem_total) mem_used_graph = Draw::Graph{b_width/2 - 2, 2 + 2*(gpu.supported_functions.mem_utilization), "used", safeVal(gpu.gpu_percent, "gpu-vram-totals"s), graph_symbol}; if (gpu.supported_functions.encoder_utilization) enc_meter = Draw::Meter{b_width/2 - 10, "cpu"}; } //* General GPU info //? Gpu graph, meter & clock speed if (gpu.supported_functions.gpu_utilization) { out += Fx::ub + Mv::to(y + 1, x + 1) + graph_upper(safeVal(gpu.gpu_percent, "gpu-totals"s), (data_same or redraw[index])); if (not single_graph) out += Mv::to(y + graph_up_height + 1, x + 1) + graph_lower(safeVal(gpu.gpu_percent, "gpu-totals"s), (data_same or redraw[index])); out += Mv::to(b_y + 1, b_x + 1) + Theme::c("main_fg") + Fx::b + "GPU " + gpu_meter(safeVal(gpu.gpu_percent, "gpu-totals"s).back()) + Theme::g("cpu").at(clamp(safeVal(gpu.gpu_percent, "gpu-totals"s).back(), 0ll, 100ll)) + rjust(to_string(safeVal(gpu.gpu_percent, "gpu-totals"s).back()), 5) + Theme::c("main_fg") + '%'; //? Temperature graph, I assume the device supports utilization if it supports temperature if (show_temps) { const auto [temp, unit] = celsius_to(gpu.temp.back(), temp_scale); out += ' ' + Theme::c("inactive_fg") + graph_bg * 6 + Mv::l(6) + Theme::g("temp").at(clamp(gpu.temp.back() * 100 / gpu.temp_max, 0ll, 100ll)) + temp_graph(gpu.temp, data_same or redraw[index]); out += rjust(to_string(temp), 4) + Theme::c("main_fg") + unit; } out += Theme::c("div_line") + Symbols::v_line; } if (gpu.supported_functions.gpu_clock) { string clock_speed_string = to_string(gpu.gpu_clock_speed); out += Mv::to(b_y, b_x + b_width - 12) + Theme::c("div_line") + Symbols::h_line*(5-clock_speed_string.size()) + Symbols::title_left + Fx::b + Theme::c("title") + clock_speed_string + " MHz" + Fx::ub + Theme::c("div_line") + Symbols::title_right; } //? Power usage meter, power state if (gpu.supported_functions.pwr_usage) { out += Mv::to(b_y + 2, b_x + 1) + Theme::c("main_fg") + Fx::b + "PWR " + pwr_meter(safeVal(gpu.gpu_percent, "gpu-pwr-totals"s).back()) + Theme::g("cached").at(clamp(safeVal(gpu.gpu_percent, "gpu-pwr-totals"s).back(), 0ll, 100ll)) + fmt::format("{:>5.{}f}", gpu.pwr_usage / 1000.0, gpu.pwr_usage < 10'000 ? 2 : gpu.pwr_usage < 100'000 ? 1 : 0) + Theme::c("main_fg") + 'W'; if (gpu.supported_functions.pwr_state and gpu.pwr_state != 32) // NVML_PSTATE_UNKNOWN; unsupported or non-nvidia card out += std::string(" P-state: ") + (gpu.pwr_state > 9 ? "" : " ") + 'P' + Theme::g("cached").at(clamp(gpu.pwr_state, 0ll, 100ll)) + to_string(gpu.pwr_state); } //? Encode and Decode meters bool drawnEncDec = gpu.supported_functions.encoder_utilization and gpu.supported_functions.decoder_utilization; if (drawnEncDec) { out += Mv::to(b_y + 3, b_x +1) + Theme::c("main_fg") + Fx::b + "ENC " + enc_meter(gpu.encoder_utilization) + Theme::g("cpu").at(clamp(gpu.encoder_utilization, 0ll, 100ll)) + rjust(to_string(gpu.encoder_utilization), 4) + Theme::c("main_fg") + '%' + Theme::c("div_line") + Symbols::v_line + Theme::c("main_fg") + Fx::b + "DEC " + enc_meter(gpu.decoder_utilization) + Theme::g("cpu").at(clamp(gpu.decoder_utilization, 0ll, 100ll)) + rjust(to_string(gpu.decoder_utilization), 4) + Theme::c("main_fg") + '%'; } if (gpu.supported_functions.mem_total or gpu.supported_functions.mem_used) { out += Mv::to(b_y + (drawnEncDec ? 4 : 3), b_x); if (gpu.supported_functions.mem_total and gpu.supported_functions.mem_used) { string used_memory_string = floating_humanizer(gpu.mem_used); auto offset = (gpu.supported_functions.mem_total or gpu.supported_functions.mem_used) * (1 + 2*(gpu.supported_functions.mem_total and gpu.supported_functions.mem_used) + 2*gpu.supported_functions.mem_utilization); //? Used graph, memory section header, total vram out += Theme::c("div_line") + Symbols::div_left + Symbols::h_line + Symbols::title_left + Fx::b + Theme::c("title") + "vram" + Theme::c("div_line") + Fx::ub + Symbols::title_right + Symbols::h_line*(b_width/2-8) + Symbols::div_up + Mv::d(offset)+Mv::l(1) + Symbols::div_down + Mv::l(1)+Mv::u(1) + (Symbols::v_line + Mv::l(1)+Mv::u(1))*(offset-1) + Symbols::div_up + Symbols::h_line + Theme::c("title") + "Used:" + Theme::c("div_line") + Symbols::h_line*(b_width/2+b_width%2-9-used_memory_string.size()) + Theme::c("title") + used_memory_string + Theme::c("div_line") + Symbols::h_line + Symbols::div_right + Mv::d(1) + Mv::l(b_width/2-1) + mem_used_graph(safeVal(gpu.gpu_percent, "gpu-vram-totals"s), (data_same or redraw[index])) + Mv::l(b_width-3) + Mv::u(1+2*gpu.supported_functions.mem_utilization) + Theme::c("main_fg") + Fx::b + "Total:" + rjust(floating_humanizer(gpu.mem_total), b_width/2-9) + Fx::ub + Mv::r(3) + rjust(to_string(safeVal(gpu.gpu_percent, "gpu-vram-totals"s).back()), 3) + '%'; //? Memory utilization if (gpu.supported_functions.mem_utilization) out += Mv::l(b_width/2+6) + Mv::d(1) + Theme::c("div_line") + Symbols::div_left+Symbols::h_line + Theme::c("title") + "Utilization:" + Theme::c("div_line") + Symbols::h_line*(b_width/2-14) + Symbols::div_right + Mv::l(b_width/2) + Mv::d(1) + mem_util_graph(gpu.mem_utilization_percent, (data_same or redraw[index])) + Mv::l(b_width/2-1) + Mv::u(1) + rjust(to_string(gpu.mem_utilization_percent.back()), 3) + '%'; //? Memory clock speed if (gpu.supported_functions.mem_clock) { string clock_speed_string = to_string(gpu.mem_clock_speed); out += Mv::to(b_y + (drawnEncDec ? 4 : 3), b_x + b_width/2 - 11) + Theme::c("div_line") + Symbols::h_line*(5-clock_speed_string.size()) + Symbols::title_left + Fx::b + Theme::c("title") + clock_speed_string + " MHz" + Fx::ub + Theme::c("div_line") + Symbols::title_right; } } else { out += Theme::c("main_fg") + Mv::r(1); if (gpu.supported_functions.mem_total) out += "VRAM total:" + rjust(floating_humanizer(gpu.mem_total), b_width/(1 + gpu.supported_functions.mem_clock)-14); else out += "VRAM usage:" + rjust(floating_humanizer(gpu.mem_used), b_width/(1 + gpu.supported_functions.mem_clock)-14); if (gpu.supported_functions.mem_clock) out += " VRAM clock:" + rjust(to_string(gpu.mem_clock_speed) + " MHz", b_width/2-13); } } //? Processes section header //out += Mv::to(b_y+8, b_x) + Theme::c("div_line") + Symbols::div_left + Symbols::h_line + Symbols::title_left + Theme::c("main_fg") + Fx::b + "gpu-proc" + Fx::ub + Theme::c("div_line") // + Symbols::title_right + Symbols::h_line*(b_width/2-12) + Symbols::div_down + Symbols::h_line*(b_width/2-2) + Symbols::div_right; //? PCIe link throughput if (gpu.supported_functions.pcie_txrx and Config::getB("nvml_measure_pcie_speeds")) { string tx_string = floating_humanizer(gpu.pcie_tx, 0, 1, 0, 1); string rx_string = floating_humanizer(gpu.pcie_rx, 0, 1, 0, 1); out += Mv::to(b_y + b_height_vec[index] - 1, b_x+2) + Theme::c("div_line") + Symbols::title_left_down + Theme::c("title") + Fx::b + "TX:" + Fx::ub + Theme::c("div_line") + Symbols::title_right_down + Symbols::h_line*(b_width/2-9-tx_string.size()) + Symbols::title_left_down + Theme::c("title") + Fx::b + tx_string + Fx::ub + Theme::c("div_line") + Symbols::title_right_down + (gpu.supported_functions.mem_total and gpu.supported_functions.mem_used ? Symbols::div_down : Symbols::h_line) + Symbols::title_left_down + Theme::c("title") + Fx::b + "RX:" + Fx::ub + Theme::c("div_line") + Symbols::title_right_down + Symbols::h_line*(b_width/2+b_width%2-9-rx_string.size()) + Symbols::title_left_down + Theme::c("title") + Fx::b + rx_string + Fx::ub + Theme::c("div_line") + Symbols::title_right_down + Symbols::round_right_down; } redraw[index] = false; return out + Fx::reset; } } #endif namespace Mem { int width_p = 45, height_p = 36; int min_width = 36, min_height = 10; int x = 1, y, width = 20, height; int mem_width, disks_width, divider, item_height, mem_size, mem_meter, graph_height, disk_meter; int disks_io_h = 0; int disks_io_half = 0; bool shown = true, redraw = true; string box; std::unordered_map mem_meters; std::unordered_map mem_graphs; std::unordered_map disk_meters_used; std::unordered_map disk_meters_free; std::unordered_map io_graphs; string draw(const mem_info& mem, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; if (force_redraw) redraw = true; auto show_swap = Config::getB("show_swap"); auto swap_disk = Config::getB("swap_disk"); auto show_disks = Config::getB("show_disks"); auto show_io_stat = Config::getB("show_io_stat"); auto io_mode = Config::getB("io_mode"); auto io_graph_combined = Config::getB("io_graph_combined"); auto use_graphs = Config::getB("mem_graphs"); auto tty_mode = Config::getB("tty_mode"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_mem")); auto& graph_bg = Symbols::graph_symbols.at((graph_symbol == "default" ? Config::getS("graph_symbol") + "_up" : graph_symbol + "_up")).at(6); auto totalMem = Mem::get_totalMem(); string out; out.reserve(height * width); //* Redraw elements not needed to be updated every cycle if (redraw) { out += box; mem_meters.clear(); mem_graphs.clear(); disk_meters_free.clear(); disk_meters_used.clear(); io_graphs.clear(); //? Mem graphs and meters for (const auto& name : mem_names) { if (use_graphs) mem_graphs[name] = Draw::Graph{mem_meter, graph_height, name, safeVal(mem.percent, name), graph_symbol}; else mem_meters[name] = Draw::Meter{mem_meter, name}; } if (show_swap and has_swap) { for (const auto& name : swap_names) { if (use_graphs) mem_graphs[name] = Draw::Graph{mem_meter, graph_height, name.substr(5), safeVal(mem.percent, name), graph_symbol}; else mem_meters[name] = Draw::Meter{mem_meter, name.substr(5)}; } } //? Disk meters and io graphs if (show_disks) { if (show_io_stat or io_mode) { std::unordered_map custom_speeds; int half_height = 0; if (io_mode) { disks_io_h = max((int)floor((double)(height - 2 - (disk_ios * 2)) / max(1, disk_ios)), (io_graph_combined ? 1 : 2)); half_height = ceil((double)disks_io_h / 2); if (not Config::getS("io_graph_speeds").empty()) { auto split = ssplit(Config::getS("io_graph_speeds")); for (const auto& entry : split) { auto vals = ssplit(entry, ':'); if (vals.size() == 2 and mem.disks.contains(vals.at(0)) and isint(vals.at(1))) try { custom_speeds[vals.at(0)] = std::stoi(vals.at(1)); } catch (const std::out_of_range&) { continue; } } } } for (const auto& [name, disk] : mem.disks) { if (disk.io_read.empty()) continue; io_graphs[name + "_activity"] = Draw::Graph{disks_width - 6, 1, "available", disk.io_activity, graph_symbol}; if (io_mode) { //? Create one combined graph for IO read/write if enabled long long speed = (custom_speeds.contains(name) ? custom_speeds.at(name) : 100) << 20; if (io_graph_combined) { deque combined(disk.io_read.size(), 0); rng::transform(disk.io_read, disk.io_write, combined.begin(), std::plus()); io_graphs[name] = Draw::Graph{ disks_width, disks_io_h, "available", combined, graph_symbol, false, true, speed}; } else { io_graphs[name + "_read"] = Draw::Graph{ disks_width, half_height, "free", disk.io_read, graph_symbol, false, true, speed}; io_graphs[name + "_write"] = Draw::Graph{ disks_width, disks_io_h - half_height, "used", disk.io_write, graph_symbol, true, true, speed}; } } } } for (int i = 0; const auto& [name, ignored] : mem.disks) { if (i * 2 > height - 2) break; disk_meters_used[name] = Draw::Meter{disk_meter, "used"}; if (cmp_less_equal(mem.disks.size() * 3, height - 1)) disk_meters_free[name] = Draw::Meter{disk_meter, "free"}; } out += Mv::to(y, x + width - 6) + Fx::ub + Theme::c("mem_box") + Symbols::title_left + (io_mode ? Fx::b : "") + Theme::c("hi_fg") + 'i' + Theme::c("title") + 'o' + Fx::ub + Theme::c("mem_box") + Symbols::title_right; Input::mouse_mappings["i"] = {y, x + width - 5, 1, 2}; } } //? Mem and swap int cx = 1, cy = 1; string divider = (graph_height > 0 ? Mv::l(2) + Theme::c("mem_box") + Symbols::div_left + Theme::c("div_line") + Symbols::h_line * (mem_width - 1) + (show_disks ? "" : Theme::c("mem_box")) + Symbols::div_right + Mv::l(mem_width - 1) + Theme::c("main_fg") : ""); string up = (graph_height >= 2 ? Mv::l(mem_width - 2) + Mv::u(graph_height - 1) : ""); bool big_mem = mem_width > 21; out += Mv::to(y + 1, x + 2) + Theme::c("title") + Fx::b + "Total:" + rjust(floating_humanizer(totalMem), mem_width - 9) + Fx::ub + Theme::c("main_fg"); vector comb_names (mem_names.begin(), mem_names.end()); if (show_swap and has_swap and not swap_disk) comb_names.insert(comb_names.end(), swap_names.begin(), swap_names.end()); for (const auto& name : comb_names) { if (cy > height - 4) break; string title; if (name == "swap_used") { if (cy > height - 5) break; if (height - cy > 6) { if (graph_height > 0) out += Mv::to(y+1+cy, x+1+cx) + divider; cy += 1; } out += Mv::to(y+1+cy, x+1+cx) + Theme::c("title") + Fx::b + "Swap:" + rjust(floating_humanizer(safeVal(mem.stats, "swap_total"s)), mem_width - 8) + Theme::c("main_fg") + Fx::ub; cy += 1; title = "Used"; } else if (name == "swap_free") title = "Free"; if (title.empty()) title = capitalize(name); const string humanized = floating_humanizer(safeVal(mem.stats, name)); const int offset = max(0, divider.empty() ? 9 - (int)humanized.size() : 0); const string graphics = ( use_graphs and mem_graphs.contains(name) ? mem_graphs.at(name)(safeVal(mem.percent, name), redraw or data_same) : mem_meters.contains(name) ? mem_meters.at(name)(safeVal(mem.percent, name).back()) : ""); if (mem_size > 2) { out += Mv::to(y+1+cy, x+1+cx) + divider + title.substr(0, big_mem ? 10 : 5) + ":" + Mv::to(y+1+cy, x+cx + mem_width - 2 - humanized.size()) + (divider.empty() ? Mv::l(offset) + string(" ") * offset + humanized : trans(humanized)) + Mv::to(y+2+cy, x+cx + (graph_height >= 2 ? 0 : 1)) + graphics + up + rjust(to_string(safeVal(mem.percent, name).back()) + "%", 4); cy += (graph_height == 0 ? 2 : graph_height + 1); } else { out += Mv::to(y+1+cy, x+1+cx) + ljust(title, (mem_size > 1 ? 5 : 1)) + (graph_height >= 2 ? "" : " ") + graphics + Theme::c("title") + rjust(humanized, (mem_size > 1 ? 9 : 7)); cy += (graph_height == 0 ? 1 : graph_height); } } if (graph_height > 0 and cy < height - 2) out += Mv::to(y+1+cy, x+1+cx) + divider; //? Disks if (show_disks) { const auto& disks = mem.disks; cx = mem_width; cy = 0; bool big_disk = disks_width >= 25; divider = Mv::l(1) + Theme::c("div_line") + Symbols::div_left + Symbols::h_line * disks_width + Theme::c("mem_box") + Fx::ub + Symbols::div_right + Mv::l(disks_width); const string hu_div = Theme::c("div_line") + Symbols::h_line + Theme::c("main_fg"); if (io_mode) { for (const auto& mount : mem.disks_order) { if (not disks.contains(mount)) continue; if (cy > height - 3) break; const auto disk = safeVal(disks, mount); if (disk.io_read.empty()) continue; const string total = floating_humanizer(disk.total, not big_disk); out += Mv::to(y+1+cy, x+1+cx) + divider + Theme::c("title") + Fx::b + uresize(disk.name, disks_width - 8) + Mv::to(y+1+cy, x+cx + disks_width - total.size()) + trans(total) + Fx::ub; if (big_disk) { const string used_percent = to_string(disk.used_percent); out += Mv::to(y+1+cy, x+1+cx + round((double)disks_width / 2) - round((double)used_percent.size() / 2) - 1) + hu_div + used_percent + '%' + hu_div; } if (io_graphs.contains(mount + "_activity")) { out += Mv::to(y+2+cy++, x+1+cx) + (big_disk ? " IO% " : " IO " + Mv::l(2)) + Theme::c("inactive_fg") + graph_bg * (disks_width - 6) + Mv::l(disks_width - 6) + io_graphs.at(mount + "_activity")(disk.io_activity, redraw or data_same) + Theme::c("main_fg"); } if (++cy > height - 3) break; if (io_graph_combined) { if (not io_graphs.contains(mount)) continue; auto comb_val = disk.io_read.back() + disk.io_write.back(); const string humanized = (disk.io_write.back() > 0 ? "â–¼"s : ""s) + (disk.io_read.back() > 0 ? "â–²"s : ""s) + (comb_val > 0 ? Mv::r(1) + floating_humanizer(comb_val, true) : "RW"); if (disks_io_h == 1) out += Mv::to(y+1+cy, x+1+cx) + string(5, ' '); out += Mv::to(y+1+cy, x+1+cx) + io_graphs.at(mount)({comb_val}, redraw or data_same) + Mv::to(y+1+cy, x+1+cx) + Theme::c("main_fg") + humanized; cy += disks_io_h; } else { if (not io_graphs.contains(mount + "_read") or not io_graphs.contains(mount + "_write")) continue; const string human_read = (disk.io_read.back() > 0 ? "â–²" + floating_humanizer(disk.io_read.back(), true) : "R"); const string human_write = (disk.io_write.back() > 0 ? "â–¼" + floating_humanizer(disk.io_write.back(), true) : "W"); if (disks_io_h <= 3) out += Mv::to(y+1+cy, x+1+cx) + string(5, ' ') + Mv::to(y+cy + disks_io_h, x+1+cx) + string(5, ' '); out += Mv::to(y+1+cy, x+1+cx) + io_graphs.at(mount + "_read")(disk.io_read, redraw or data_same) + Mv::l(disks_width) + Mv::d(1) + io_graphs.at(mount + "_write")(disk.io_write, redraw or data_same) + Mv::to(y+1+cy, x+1+cx) + human_read + Mv::to(y+cy + disks_io_h, x+1+cx) + human_write; cy += disks_io_h; } } } else { for (const auto& mount : mem.disks_order) { if (not disks.contains(mount)) continue; if (cy > height - 3) break; const auto disk = safeVal(disks, mount); if (disk.name.empty() or not disk_meters_used.contains(mount)) continue; auto comb_val = (not disk.io_read.empty() ? disk.io_read.back() + disk.io_write.back() : 0ll); const string human_io = (comb_val > 0 ? (disk.io_write.back() > 0 and big_disk ? "â–¼"s : ""s) + (disk.io_read.back() > 0 and big_disk ? "â–²"s : ""s) + floating_humanizer(comb_val, true) : ""); const string human_total = floating_humanizer(disk.total, not big_disk); const string human_used = floating_humanizer(disk.used, not big_disk); const string human_free = floating_humanizer(disk.free, not big_disk); out += Mv::to(y+1+cy, x+1+cx) + divider + Theme::c("title") + Fx::b + uresize(disk.name, disks_width - 8) + Mv::to(y+1+cy, x+cx + disks_width - human_total.size()) + trans(human_total) + Fx::ub + Theme::c("main_fg"); if (big_disk and not human_io.empty()) out += Mv::to(y+1+cy, x+1+cx + round((double)disks_width / 2) - round((double)human_io.size() / 2) - 1) + hu_div + human_io + hu_div; if (++cy > height - 3) break; if (show_io_stat and io_graphs.contains(mount + "_activity")) { out += Mv::to(y+1+cy, x+1+cx) + (big_disk ? " IO% " : " IO " + Mv::l(2)) + Theme::c("inactive_fg") + graph_bg * (disks_width - 6) + Theme::g("available").at(clamp(disk.io_activity.back(), 50ll, 100ll)) + Mv::l(disks_width - 6) + io_graphs.at(mount + "_activity")(disk.io_activity, redraw or data_same) + Theme::c("main_fg"); if (not big_disk) out += Mv::to(y+1+cy, x+cx+1) + Theme::c("main_fg") + human_io; if (++cy > height - 3) break; } out += Mv::to(y+1+cy, x+1+cx) + (big_disk ? " Used:" + rjust(to_string(disk.used_percent) + '%', 4) : "U") + ' ' + disk_meters_used.at(mount)(disk.used_percent) + rjust(human_used, (big_disk ? 9 : 5)); if (++cy > height - 3) break; if (disk_meters_free.contains(mount) and cmp_less_equal(disks.size() * 3 + (show_io_stat ? disk_ios : 0), height - 1)) { out += Mv::to(y+1+cy, x+1+cx) + (big_disk ? " Free:" + rjust(to_string(disk.free_percent) + '%', 4) : "F") + ' ' + disk_meters_free.at(mount)(disk.free_percent) + rjust(human_free, (big_disk ? 9 : 5)); cy++; if (cmp_less_equal(disks.size() * 4 + (show_io_stat ? disk_ios : 0), height - 1)) cy++; } } } if (cy < height - 2) out += Mv::to(y+1+cy, x+1+cx) + divider; } redraw = false; return out + Fx::reset; } } namespace Net { int width_p = 45, height_p = 32; int min_width = 36, min_height = 6; int x = 1, y, width = 20, height; int b_x, b_y, b_width, b_height, d_graph_height, u_graph_height; bool shown = true, redraw = true; const int MAX_IFNAMSIZ = 15; string old_ip; std::unordered_map graphs; string box; string draw(const net_info& net, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; if (force_redraw) redraw = true; auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto tty_mode = Config::getB("tty_mode"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_net")); string ip_addr = (net.ipv4.empty() ? net.ipv6 : net.ipv4); if (old_ip != ip_addr) { old_ip = ip_addr; redraw = true; } string out; out.reserve(width * height); const string title_left = Theme::c("net_box") + Fx::ub + Symbols::title_left; const string title_right = Theme::c("net_box") + Fx::ub + Symbols::title_right; const int i_size = min((int)selected_iface.size(), MAX_IFNAMSIZ); const long long down_max = (net_auto ? safeVal(graph_max, "download"s) : ((long long)(Config::getI("net_download")) << 20) / 8); const long long up_max = (net_auto ? safeVal(graph_max, "upload"s) : ((long long)(Config::getI("net_upload")) << 20) / 8); //* Redraw elements not needed to be updated every cycle if (redraw) { out = box; //? Graphs graphs.clear(); if (safeVal(net.bandwidth, "download"s).empty() or safeVal(net.bandwidth, "upload"s).empty()) return out + Fx::reset; graphs["download"] = Draw::Graph{ width - b_width - 2, u_graph_height, "download", net.bandwidth.at("download"), graph_symbol, false, true, down_max}; graphs["upload"] = Draw::Graph{ width - b_width - 2, d_graph_height, "upload", net.bandwidth.at("upload"), graph_symbol, true, true, up_max}; //? Interface selector and buttons out += Mv::to(y, x+width - i_size - 9) + title_left + Fx::b + Theme::c("hi_fg") + Symbols::left + "b " + Theme::c("title") + uresize(selected_iface, MAX_IFNAMSIZ) + Theme::c("hi_fg") + " n" + Symbols::right + title_right + Mv::to(y, x+width - i_size - 15) + title_left + Theme::c("hi_fg") + (safeVal(net.stat, "download"s).offset + safeVal(net.stat, "upload"s).offset > 0 ? Fx::b : "") + 'z' + Theme::c("title") + "ero" + title_right; Input::mouse_mappings["b"] = {y, x+width - i_size - 8, 1, 3}; Input::mouse_mappings["n"] = {y, x+width - 6, 1, 3}; Input::mouse_mappings["z"] = {y, x+width - i_size - 14, 1, 4}; if (width - i_size - 20 > 6) { out += Mv::to(y, x+width - i_size - 21) + title_left + Theme::c("hi_fg") + (net_auto ? Fx::b : "") + 'a' + Theme::c("title") + "uto" + title_right; Input::mouse_mappings["a"] = {y, x+width - i_size - 20, 1, 4}; } if (width - i_size - 20 > 13) { out += Mv::to(y, x+width - i_size - 27) + title_left + Theme::c("title") + (net_sync ? Fx::b : "") + 's' + Theme::c("hi_fg") + 'y' + Theme::c("title") + "nc" + title_right; Input::mouse_mappings["y"] = {y, x+width - i_size - 26, 1, 4}; } } //? IP or device address if (not ip_addr.empty() and cmp_greater(width - i_size - 36, ip_addr.size())) { out += Mv::to(y, x + 8) + title_left + Theme::c("title") + Fx::b + ip_addr + title_right; } //? Graphs and stats int cy = 0; for (const string dir : {"download", "upload"}) { out += Mv::to(y+1 + (dir == "upload" ? u_graph_height : 0), x + 1) + graphs.at(dir)(safeVal(net.bandwidth, dir), redraw or data_same or not net.connected) + Mv::to(y+1 + (dir == "upload" ? height - 3: 0), x + 1) + Fx::ub + Theme::c("graph_text") + floating_humanizer((dir == "upload" ? up_max : down_max), true); const string speed = floating_humanizer(safeVal(net.stat, dir).speed, false, 0, false, true); const string speed_bits = (b_width >= 20 ? floating_humanizer(safeVal(net.stat, dir).speed, false, 0, true, true) : ""); const string top = floating_humanizer(safeVal(net.stat, dir).top, false, 0, true, true); const string total = floating_humanizer(safeVal(net.stat, dir).total); const string symbol = (dir == "upload" ? "â–²" : "â–¼"); out += Mv::to(b_y+1+cy, b_x+1) + Fx::ub + Theme::c("main_fg") + symbol + ' ' + ljust(speed, 10) + (b_width >= 20 ? rjust('(' + speed_bits + ')', 13) : ""); cy += (b_height == 5 ? 2 : 1); if (b_height >= 8) { out += Mv::to(b_y+1+cy, b_x+1) + symbol + ' ' + "Top: " + rjust('(' + top, (b_width >= 20 ? 17 : 9)) + ')'; cy++; } if (b_height >= 6) { out += Mv::to(b_y+1+cy, b_x+1) + symbol + ' ' + "Total: " + rjust(total, (b_width >= 20 ? 16 : 8)); cy += (b_height > 6 and b_height % 2 ? 2 : 1); } } redraw = false; return out + Fx::reset; } } namespace Proc { int width_p = 55, height_p = 68; int min_width = 44, min_height = 16; int x, y, width = 20, height; int start, selected, select_max; bool shown = true, redraw = true; int selected_pid = 0, selected_depth = 0; string selected_name; std::unordered_map p_graphs; std::unordered_map p_wide_cmd; std::unordered_map p_counters; int counter = 0; Draw::TextEdit filter; Draw::Graph detailed_cpu_graph; Draw::Graph detailed_mem_graph; int user_size, thread_size, prog_size, cmd_size, tree_size; int dgraph_x, dgraph_width, d_width, d_x, d_y; string box; int selection(const std::string_view cmd_key) { auto start = Config::getI("proc_start"); auto selected = Config::getI("proc_selected"); auto last_selected = Config::getI("proc_last_selected"); const int select_max = (Config::getB("show_detailed") ? Proc::select_max - 8 : Proc::select_max); auto vim_keys = Config::getB("vim_keys"); int numpids = Proc::numpids; if ((cmd_key == "up" or (vim_keys and cmd_key == "k")) and selected > 0) { if (start > 0 and selected == 1) start--; else selected--; if (Config::getI("proc_last_selected") > 0) Config::set("proc_last_selected", 0); } else if (cmd_key == "mouse_scroll_up" and start > 0) { start = max(0, start - 3); } else if (cmd_key == "mouse_scroll_down" and start < numpids - select_max) { start = min(numpids - select_max, start + 3); } else if (cmd_key == "down" or (vim_keys and cmd_key == "j")) { if (start < numpids - select_max and selected == select_max) start++; else if (selected == 0 and last_selected > 0) { selected = last_selected; Config::set("proc_last_selected", 0); } else selected++; } else if (cmd_key == "page_up") { if (selected > 0 and start == 0) selected = 0; else start = max(0, start - select_max); } else if (cmd_key == "page_down") { if (selected > 0 and start >= numpids - select_max) selected = select_max; else start = clamp(start + select_max, 0, max(0, numpids - select_max)); } else if (cmd_key == "home" or (vim_keys and cmd_key == "g")) { start = 0; if (selected > 0) selected = 1; } else if (cmd_key == "end" or (vim_keys and cmd_key == "G")) { start = max(0, numpids - select_max); if (selected > 0) selected = select_max; } else if (cmd_key.starts_with("mousey")) { int mouse_y = std::atoi(cmd_key.substr(6).data()); start = clamp((int)round((double)mouse_y * (numpids - select_max - 2) / (select_max - 2)), 0, max(0, numpids - select_max)); } bool changed = false; if (start != Config::getI("proc_start")) { Config::set("proc_start", start); changed = true; } if (selected != Config::getI("proc_selected")) { Config::set("proc_selected", selected); changed = true; } return (not changed ? -1 : selected); } string draw(const vector& plist, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; auto proc_tree = Config::getB("proc_tree"); bool show_detailed = (Config::getB("show_detailed") and cmp_equal(Proc::detailed.last_pid, Config::getI("detailed_pid"))); bool proc_gradient = (Config::getB("proc_gradient") and not Config::getB("lowcolor") and Theme::gradients.contains("proc")); auto proc_colors = Config::getB("proc_colors"); auto tty_mode = Config::getB("tty_mode"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_proc")); auto& graph_bg = Symbols::graph_symbols.at((graph_symbol == "default" ? Config::getS("graph_symbol") + "_up" : graph_symbol + "_up")).at(6); auto mem_bytes = Config::getB("proc_mem_bytes"); auto vim_keys = Config::getB("vim_keys"); auto show_graphs = Config::getB("proc_cpu_graphs"); start = Config::getI("proc_start"); selected = Config::getI("proc_selected"); const int y = show_detailed ? Proc::y + 8 : Proc::y; const int height = show_detailed ? Proc::height - 8 : Proc::height; const int select_max = show_detailed ? Proc::select_max - 8 : Proc::select_max; auto totalMem = Mem::get_totalMem(); int numpids = Proc::numpids; if (force_redraw) redraw = true; string out; out.reserve(width * height); //* Redraw elements not needed to be updated every cycle if (redraw) { out = box; const string title_left = Theme::c("proc_box") + Symbols::title_left; const string title_right = Theme::c("proc_box") + Symbols::title_right; const string title_left_down = Theme::c("proc_box") + Symbols::title_left_down; const string title_right_down = Theme::c("proc_box") + Symbols::title_right_down; for (const auto& key : {"T", "K", "S", "enter"}) if (Input::mouse_mappings.contains(key)) Input::mouse_mappings.erase(key); //? Adapt sizes of text fields user_size = (width < 75 ? 5 : 10); thread_size = (width < 75 ? - 1 : 4); prog_size = (width > 70 ? 16 : ( width > 55 ? 8 : width - user_size - thread_size - 33)); cmd_size = (width > 55 ? width - prog_size - user_size - thread_size - 33 : -1); tree_size = width - user_size - thread_size - 23; if (not show_graphs) { cmd_size += 5; tree_size += 5; } //? Detailed box if (show_detailed) { bool alive = detailed.status != "Dead"; dgraph_x = x; dgraph_width = max(width / 3, width - 121); d_width = width - dgraph_width - 1; d_x = x + dgraph_width + 1; d_y = Proc::y; //? Create cpu and mem graphs if process is alive if (alive) { detailed_cpu_graph = Draw::Graph{dgraph_width - 1, 7, "cpu", detailed.cpu_percent, graph_symbol, false, true}; detailed_mem_graph = Draw::Graph{d_width / 3, 1, "", detailed.mem_bytes, graph_symbol, false, false, detailed.first_mem}; } //? Draw structure of details box const string pid_str = to_string(detailed.entry.pid); out += Mv::to(y, x) + Theme::c("proc_box") + Symbols::div_left + Symbols::h_line + title_left + Theme::c("hi_fg") + Fx::b + (tty_mode ? "4" : Symbols::superscript.at(4)) + Theme::c("title") + "proc" + Fx::ub + title_right + Symbols::h_line * (width - 10) + Symbols::div_right + Mv::to(d_y, dgraph_x + 2) + title_left + Fx::b + Theme::c("title") + pid_str + Fx::ub + title_right + title_left + Fx::b + Theme::c("title") + uresize(detailed.entry.name, dgraph_width - pid_str.size() - 7, true) + Fx::ub + title_right; out += Mv::to(d_y, d_x - 1) + Theme::c("proc_box") + Symbols::div_up + Mv::to(y, d_x - 1) + Symbols::div_down + Theme::c("div_line"); for (const int& i : iota(1, 8)) out += Mv::to(d_y + i, d_x - 1) + Symbols::v_line; const string t_color = (not alive or selected > 0 ? Theme::c("inactive_fg") : Theme::c("title")); const string hi_color = (not alive or selected > 0 ? t_color : Theme::c("hi_fg")); const string hide = (selected > 0 ? t_color + "hide " : Theme::c("title") + "hide " + Theme::c("hi_fg")); int mouse_x = d_x + 2; out += Mv::to(d_y, d_x + 1); if (width > 55) { out += Fx::ub + title_left + hi_color + Fx::b + 't' + t_color + "erminate" + Fx::ub + title_right; if (alive and selected == 0) Input::mouse_mappings["t"] = {d_y, mouse_x, 1, 9}; mouse_x += 11; } out += title_left + hi_color + Fx::b + (vim_keys ? 'K' : 'k') + t_color + "ill" + Fx::ub + title_right + title_left + hi_color + Fx::b + 's' + t_color + "ignals" + Fx::ub + title_right + Mv::to(d_y, d_x + d_width - 10) + title_left + t_color + Fx::b + hide + Symbols::enter + Fx::ub + title_right; if (alive and selected == 0) { Input::mouse_mappings["k"] = {d_y, mouse_x, 1, 4}; mouse_x += 6; Input::mouse_mappings["s"] = {d_y, mouse_x, 1, 7}; } if (selected == 0) Input::mouse_mappings["enter"] = {d_y, d_x + d_width - 9, 1, 6}; //? Labels const int item_fit = floor((double)(d_width - 2) / 10); const int item_width = floor((double)(d_width - 2) / min(item_fit, 8)); out += Mv::to(d_y + 1, d_x + 1) + Fx::b + Theme::c("title") + cjust("Status:", item_width) + cjust("Elapsed:", item_width); if (item_fit >= 3) out += cjust("IO/R:", item_width); if (item_fit >= 4) out += cjust("IO/W:", item_width); if (item_fit >= 5) out += cjust("Parent:", item_width); if (item_fit >= 6) out += cjust("User:", item_width); if (item_fit >= 7) out += cjust("Threads:", item_width); if (item_fit >= 8) out += cjust("Nice:", item_width); //? Command line for (int i = 0; const auto& l : {'C', 'M', 'D'}) out += Mv::to(d_y + 5 + i++, d_x + 1) + l; out += Theme::c("main_fg") + Fx::ub; const auto san_cmd = replace_ascii_control(detailed.entry.cmd); const int cmd_size = ulen(san_cmd, true); for (int num_lines = min(3, (int)ceil((double)cmd_size / (d_width - 5))), i = 0; i < num_lines; i++) { out += Mv::to(d_y + 5 + (num_lines == 1 ? 1 : i), d_x + 3) + cjust(luresize(san_cmd, cmd_size - (d_width - 5) * i, true), d_width - 5, true, true); } } //? Filter auto filtering = Config::getB("proc_filtering"); // ? filter(20) : Config::getS("proc_filter")) const auto filter_text = (filtering) ? filter(max(6, width - 58)) : uresize(Config::getS("proc_filter"), max(6, width - 58)); out += Mv::to(y, x+9) + title_left + (not filter_text.empty() ? Fx::b : "") + Theme::c("hi_fg") + 'f' + Theme::c("title") + (not filter_text.empty() ? ' ' + filter_text : "ilter") + (not filtering and not filter_text.empty() ? Theme::c("hi_fg") + " del" : "") + (filtering ? Theme::c("hi_fg") + ' ' + Symbols::enter : "") + Fx::ub + title_right; if (not filtering) { int f_len = (filter_text.empty() ? 6 : ulen(filter_text) + 2); Input::mouse_mappings["f"] = {y, x + 10, 1, f_len}; if (filter_text.empty() and Input::mouse_mappings.contains("delete")) Input::mouse_mappings.erase("delete"); else if (not filter_text.empty()) Input::mouse_mappings["delete"] = {y, x + 11 + f_len, 1, 3}; } //? per-core, reverse, tree and sorting const auto& sorting = Config::getS("proc_sorting"); const int sort_len = sorting.size(); const int sort_pos = x + width - sort_len - 8; if (width > 55 + sort_len) { out += Mv::to(y, sort_pos - 25) + title_left + (Config::getB("proc_per_core") ? Fx::b : "") + Theme::c("title") + "per-" + Theme::c("hi_fg") + 'c' + Theme::c("title") + "ore" + Fx::ub + title_right; Input::mouse_mappings["c"] = {y, sort_pos - 24, 1, 8}; } if (width > 45 + sort_len) { out += Mv::to(y, sort_pos - 15) + title_left + (Config::getB("proc_reversed") ? Fx::b : "") + Theme::c("hi_fg") + 'r' + Theme::c("title") + "everse" + Fx::ub + title_right; Input::mouse_mappings["r"] = {y, sort_pos - 14, 1, 7}; } if (width > 35 + sort_len) { out += Mv::to(y, sort_pos - 6) + title_left + (Config::getB("proc_tree") ? Fx::b : "") + Theme::c("title") + "tre" + Theme::c("hi_fg") + 'e' + Fx::ub + title_right; Input::mouse_mappings["e"] = {y, sort_pos - 5, 1, 4}; } out += Mv::to(y, sort_pos) + title_left + Fx::b + Theme::c("hi_fg") + Symbols::left + " " + Theme::c("title") + sorting + " " + Theme::c("hi_fg") + Symbols::right + Fx::ub + title_right; Input::mouse_mappings["left"] = {y, sort_pos + 1, 1, 2}; Input::mouse_mappings["right"] = {y, sort_pos + sort_len + 3, 1, 2}; //? select, info and signal buttons const string down_button = (selected == select_max and start == numpids - select_max ? Theme::c("inactive_fg") : Theme::c("hi_fg")) + Symbols::down; const string t_color = (selected == 0 ? Theme::c("inactive_fg") : Theme::c("title")); const string hi_color = (selected == 0 ? Theme::c("inactive_fg") : Theme::c("hi_fg")); int mouse_x = x + 14; out += Mv::to(y + height - 1, x + 1) + title_left_down + Fx::b + hi_color + Symbols::up + Theme::c("title") + " select " + down_button + Fx::ub + title_right_down + title_left_down + Fx::b + t_color + "info " + hi_color + Symbols::enter + Fx::ub + title_right_down; if (selected > 0) Input::mouse_mappings["enter"] = {y + height - 1, mouse_x, 1, 6}; mouse_x += 8; if (width > 60) { out += title_left_down + Fx::b + hi_color + 't' + t_color + "erminate" + Fx::ub + title_right_down; if (selected > 0) Input::mouse_mappings["t"] = {y + height - 1, mouse_x, 1, 9}; mouse_x += 11; } if (width > 55) { out += title_left_down + Fx::b + hi_color + (vim_keys ? 'K' : 'k') + t_color + "ill" + Fx::ub + title_right_down; if (selected > 0) Input::mouse_mappings["k"] = {y + height - 1, mouse_x, 1, 4}; mouse_x += 6; } out += title_left_down + Fx::b + hi_color + 's' + t_color + "ignals" + Fx::ub + title_right_down; if (selected > 0) Input::mouse_mappings["s"] = {y + height - 1, mouse_x, 1, 7}; //? Labels for fields in list if (not proc_tree) out += Mv::to(y+1, x+1) + Theme::c("title") + Fx::b + rjust("Pid:", 8) + ' ' + ljust("Program:", prog_size) + ' ' + (cmd_size > 0 ? ljust("Command:", cmd_size) : "") + ' '; else out += Mv::to(y+1, x+1) + Theme::c("title") + Fx::b + ljust("Tree:", tree_size) + ' '; out += (thread_size > 0 ? Mv::l(4) + "Threads: " : "") + ljust("User:", user_size) + ' ' + rjust((mem_bytes ? "MemB" : "Mem%"), 5) + ' ' + rjust("Cpu%", (show_graphs ? 10 : 5)) + Fx::ub; } //* End of redraw block //? Draw details box if shown if (show_detailed) { bool alive = detailed.status != "Dead"; const int item_fit = floor((double)(d_width - 2) / 10); const int item_width = floor((double)(d_width - 2) / min(item_fit, 8)); //? Graph part of box string cpu_str = (alive ? fmt::format("{:.2f}", detailed.entry.cpu_p) : ""); if (alive) { cpu_str.resize(4); if (cpu_str.ends_with('.')) { cpu_str.pop_back(); cpu_str.pop_back(); } } out += Mv::to(d_y + 1, dgraph_x + 1) + Fx::ub + detailed_cpu_graph(detailed.cpu_percent, (redraw or data_same or not alive)) + Mv::to(d_y + 1, dgraph_x + 1) + Theme::c("title") + Fx::b + rjust(cpu_str, 4) + "%"; for (int i = 0; const auto& l : {'C', 'P', 'U'}) out += Mv::to(d_y + 3 + i++, dgraph_x + 1) + l; //? Info part of box const string stat_color = (not alive ? Theme::c("inactive_fg") : (detailed.status == "Running" ? Theme::c("proc_misc") : Theme::c("main_fg"))); out += Mv::to(d_y + 2, d_x + 1) + stat_color + Fx::ub + cjust(detailed.status, item_width) + Theme::c("main_fg") + cjust(detailed.elapsed, item_width); if (item_fit >= 3) out += cjust(detailed.io_read, item_width); if (item_fit >= 4) out += cjust(detailed.io_write, item_width); if (item_fit >= 5) out += cjust(detailed.parent, item_width, true); if (item_fit >= 6) out += cjust(detailed.entry.user, item_width, true); if (item_fit >= 7) out += cjust(to_string(detailed.entry.threads), item_width); if (item_fit >= 8) out += cjust(to_string(detailed.entry.p_nice), item_width); const double mem_p = detailed.mem_bytes.back() * 100.0 / totalMem; string mem_str = fmt::format("{:.2f}", mem_p); mem_str.resize(4); if (mem_str.ends_with('.')) mem_str.pop_back(); out += Mv::to(d_y + 4, d_x + 1) + Theme::c("title") + Fx::b + rjust((item_fit > 4 ? "Memory: " : "M:") + rjust(mem_str, 4) + "% ", (d_width / 3) - 2) + Theme::c("inactive_fg") + Fx::ub + graph_bg * (d_width / 3) + Mv::l(d_width / 3) + Theme::c("proc_misc") + detailed_mem_graph(detailed.mem_bytes, (redraw or data_same or not alive)) + ' ' + Theme::c("title") + Fx::b + detailed.memory; } //? Check bounds of current selection and view if (start > 0 and numpids <= select_max) start = 0; if (start > numpids - select_max) start = max(0, numpids - select_max); if (selected > select_max) selected = select_max; if (selected > numpids) selected = numpids; //* Iteration over processes int lc = 0; for (int n=0; auto& p : plist) { if (p.filtered or (proc_tree and p.tree_index == plist.size()) or n++ < start) continue; bool is_selected = (lc + 1 == selected); if (is_selected) { selected_pid = (int)p.pid; selected_name = p.name; selected_depth = p.depth; } //? Update graphs for processes with above 0.0% cpu usage, delete if below 0.1% 10x times bool has_graph = show_graphs ? p_counters.contains(p.pid) : false; if (show_graphs and ((p.cpu_p > 0 and not has_graph) or (not data_same and has_graph))) { if (not has_graph) { p_graphs[p.pid] = Draw::Graph{5, 1, "", {}, graph_symbol}; p_counters[p.pid] = 0; } else if (p.cpu_p < 0.1 and ++p_counters[p.pid] >= 10) { if (p_graphs.contains(p.pid)) p_graphs.erase(p.pid); p_counters.erase(p.pid); } else p_counters[p.pid] = 0; } out += Fx::reset; //? Set correct gradient colors if enabled string c_color, m_color, t_color, g_color, end; if (is_selected) { c_color = m_color = t_color = g_color = Fx::b; end = Fx::ub; out += Theme::c("selected_bg") + Theme::c("selected_fg") + Fx::b; } else { int calc = (selected > lc) ? selected - lc : lc - selected; if (proc_colors) { end = Theme::c("main_fg") + Fx::ub; array colors; for (int i = 0; int v : {(int)round(p.cpu_p), (int)round(p.mem * 100 / totalMem), (int)p.threads / 3}) { if (proc_gradient) { int val = (min(v, 100) + 100) - calc * 100 / select_max; if (val < 100) colors[i++] = Theme::g("proc_color").at(max(0, val)); else colors[i++] = Theme::g("process").at(clamp(val - 100, 0, 100)); } else colors[i++] = Theme::g("process").at(clamp(v, 0, 100)); } c_color = colors.at(0); m_color = colors.at(1); t_color = colors.at(2); } else { c_color = m_color = t_color = Fx::b; end = Fx::ub; } if (proc_gradient) { g_color = Theme::g("proc").at(clamp(calc * 100 / select_max, 0, 100)); } } const auto san_cmd = replace_ascii_control(p.cmd); if (not p_wide_cmd.contains(p.pid)) p_wide_cmd[p.pid] = ulen(san_cmd) != ulen(san_cmd, true); //? Normal view line if (not proc_tree) { out += Mv::to(y+2+lc, x+1) + g_color + rjust(to_string(p.pid), 8) + ' ' + c_color + ljust(p.name, prog_size, true) + ' ' + end + (cmd_size > 0 ? g_color + ljust(san_cmd, cmd_size, true, p_wide_cmd[p.pid]) + Mv::to(y+2+lc, x+11+prog_size+cmd_size) + ' ' : ""); } //? Tree view line else { const string prefix_pid = p.prefix + to_string(p.pid); int width_left = tree_size; out += Mv::to(y+2+lc, x+1) + g_color + uresize(prefix_pid, width_left) + ' '; width_left -= ulen(prefix_pid); if (width_left > 0) { out += c_color + uresize(p.name, width_left - 1) + end + ' '; width_left -= (ulen(p.name) + 1); } if (width_left > 7) { const string_view cmd = width_left > 40 ? rtrim(san_cmd) : p.short_cmd; if (not cmd.empty() and cmd != p.name) { out += g_color + '(' + uresize(string{cmd}, width_left - 3, p_wide_cmd[p.pid]) + ") "; width_left -= (ulen(string{cmd}, true) + 3); } } out += string(max(0, width_left), ' ') + Mv::to(y+2+lc, x+2+tree_size); } //? Common end of line string cpu_str = fmt::format("{:.2f}", p.cpu_p); if (p.cpu_p < 10 or (p.cpu_p >= 100 and p.cpu_p < 1000)) cpu_str.resize(3); else if (p.cpu_p >= 10'000) { cpu_str = fmt::format("{:.2f}", p.cpu_p / 1000); cpu_str.resize(3); if (cpu_str.ends_with('.')) cpu_str.pop_back(); cpu_str += "k"; } string mem_str = (mem_bytes ? floating_humanizer(p.mem, true) : ""); if (not mem_bytes) { double mem_p = clamp((double)p.mem * 100 / totalMem, 0.0, 100.0); mem_str = mem_p < 0.01 ? "0" : fmt::format("{:.1f}", mem_p); if (mem_str.size() > 3) mem_str.resize(3); if (mem_str.ends_with('.')) mem_str.pop_back(); mem_str += '%'; } // Shorten process thread representation when larger than 5 digits: 10000 -> 10K ... const std::string proc_threads_string = [&] { if (p.threads > 9999) { return std::to_string(p.threads / 1000) + 'K'; } else { return std::to_string(p.threads); } }(); out += (thread_size > 0 ? t_color + rjust(proc_threads_string, thread_size) + ' ' + end : "" ) + g_color + ljust((cmp_greater(p.user.size(), user_size) ? p.user.substr(0, user_size - 1) + '+' : p.user), user_size) + ' ' + m_color + rjust(mem_str, 5) + end + ' ' + (is_selected ? "" : Theme::c("inactive_fg")) + (show_graphs ? graph_bg * 5: "") + (p_graphs.contains(p.pid) ? Mv::l(5) + c_color + p_graphs.at(p.pid)({(p.cpu_p >= 0.1 and p.cpu_p < 5 ? 5ll : (long long)round(p.cpu_p))}, data_same) : "") + end + ' ' + c_color + rjust(cpu_str, 4) + " " + end; if (lc++ > height - 5) break; } out += Fx::reset; while (lc++ < height - 5) out += Mv::to(y+lc+1, x+1) + string(width - 2, ' '); //? Draw scrollbar if needed if (numpids > select_max) { const int scroll_pos = clamp((int)round((double)start * select_max / (numpids - select_max)), 0, height - 5); out += Mv::to(y + 1, x + width - 2) + Fx::b + Theme::c("main_fg") + Symbols::up + Mv::to(y + height - 2, x + width - 2) + Symbols::down; for (int i = y + 2; i < y + height - 2; i++) { out += Mv::to(i, x + width - 2) + ((i == y + 2 + scroll_pos) ? "â–ˆ" : " "); } } //? Current selection and number of processes string location = to_string(start + selected) + '/' + to_string(numpids); string loc_clear = Symbols::h_line * max((size_t)0, 9 - location.size()); out += Mv::to(y + height - 1, x+width - 3 - max(9, (int)location.size())) + Fx::ub + Theme::c("proc_box") + loc_clear + Symbols::title_left_down + Theme::c("title") + Fx::b + location + Fx::ub + Theme::c("proc_box") + Symbols::title_right_down; //? Clear out left over graphs from dead processes at a regular interval if (not data_same and ++counter >= 100) { counter = 0; std::erase_if(p_graphs, [&](const auto& pair) { return rng::find(plist, pair.first, &proc_info::pid) == plist.end(); }); std::erase_if(p_counters, [&](const auto& pair) { return rng::find(plist, pair.first, &proc_info::pid) == plist.end(); }); std::erase_if(p_wide_cmd, [&](const auto& pair) { return rng::find(plist, pair.first, &proc_info::pid) == plist.end(); }); } if (selected == 0 and selected_pid != 0) { selected_pid = 0; selected_name.clear(); } redraw = false; return out + Fx::reset; } } namespace Draw { void calcSizes() { atomic_wait(Runner::active); Config::unlock(); auto boxes = Config::getS("shown_boxes"); auto cpu_bottom = Config::getB("cpu_bottom"); auto mem_below_net = Config::getB("mem_below_net"); auto proc_left = Config::getB("proc_left"); Cpu::box.clear(); Mem::box.clear(); Net::box.clear(); Proc::box.clear(); Global::clock.clear(); Global::overlay.clear(); Runner::pause_output = false; Runner::redraw = true; Proc::p_counters.clear(); Proc::p_graphs.clear(); if (Menu::active) Menu::redraw = true; Input::mouse_mappings.clear(); Cpu::x = Mem::x = Net::x = Proc::x = 1; Cpu::y = Mem::y = Net::y = Proc::y = 1; Cpu::width = Mem::width = Net::width = Proc::width = 0; Cpu::height = Mem::height = Net::height = Proc::height = 0; Cpu::redraw = Mem::redraw = Net::redraw = Proc::redraw = true; Cpu::shown = s_contains(boxes, "cpu"); #ifdef GPU_SUPPORT Gpu::box.clear(); Gpu::width = 0; Gpu::shown_panels.clear(); if (Gpu::count > 0) { std::istringstream iss(boxes, std::istringstream::in); string current; while (iss >> current) { if (current.starts_with("gpu")) Gpu::shown_panels.push_back(current.back()-'0'); } } Gpu::shown = Gpu::shown_panels.size(); #endif Mem::shown = s_contains(boxes, "mem"); Net::shown = s_contains(boxes, "net"); Proc::shown = s_contains(boxes, "proc"); //* Calculate and draw cpu box outlines if (Cpu::shown) { using namespace Cpu; #ifdef GPU_SUPPORT int gpus_extra_height = Config::getS("show_gpu_info") == "On" ? Gpu::count : Config::getS("show_gpu_info") == "Auto" ? Gpu::count - Gpu::shown : 0; #endif const bool show_temp = (Config::getB("check_temp") and got_sensors); width = round((double)Term::width * width_p / 100); #ifdef GPU_SUPPORT if (Gpu::shown != 0 and not (Mem::shown or Net::shown or Proc::shown)) { height = Term::height - Gpu::min_height*Gpu::shown - gpus_extra_height; } else { height = max(8, (int)ceil((double)Term::height * (trim(boxes) == "cpu" ? 100 : height_p/(Gpu::shown+1) + (Gpu::shown != 0)*5) / 100)); } if (height <= Term::height-gpus_extra_height) height += gpus_extra_height; #else height = max(8, (int)ceil((double)Term::height * (trim(boxes) == "cpu" ? 100 : height_p) / 100)); #endif x = 1; y = cpu_bottom ? Term::height - height + 1 : 1; #ifdef GPU_SUPPORT b_columns = max(2, (int)ceil((double)(Shared::coreCount + 1) / (height - gpus_extra_height - 5))); #else b_columns = max(1, (int)ceil((double)(Shared::coreCount + 1) / (height - 5))); #endif if (b_columns * (21 + 12 * show_temp) < width - (width / 3)) { b_column_size = 2; b_width = (21 + 12 * show_temp) * b_columns - (b_columns - 1); } else if (b_columns * (15 + 6 * show_temp) < width - (width / 3)) { b_column_size = 1; b_width = (15 + 6 * show_temp) * b_columns - (b_columns - 1); } else if (b_columns * (8 + 6 * show_temp) < width - (width / 3)) { b_column_size = 0; } else { b_columns = (width - width / 3) / (8 + 6 * show_temp); b_column_size = 0; } if (b_column_size == 0) b_width = (8 + 6 * show_temp) * b_columns + 1; #ifdef GPU_SUPPORT //gpus_extra_height = max(0, gpus_extra_height - 1); b_height = min(height - 2, (int)ceil((double)Shared::coreCount / b_columns) + 4 + gpus_extra_height); #else b_height = min(height - 2, (int)ceil((double)Shared::coreCount / b_columns) + 4); #endif b_x = x + width - b_width - 1; b_y = y + ceil((double)(height - 2) / 2) - ceil((double)b_height / 2) + 1; box = createBox(x, y, width, height, Theme::c("cpu_box"), true, (cpu_bottom ? "" : "cpu"), (cpu_bottom ? "cpu" : ""), 1); auto& custom = Config::getS("custom_cpu_name"); static const bool hasCpuHz = not Cpu::get_cpuHz().empty(); const string cpu_title = uresize( (custom.empty() ? Cpu::cpuName : custom), b_width - (Config::getB("show_cpu_freq") and hasCpuHz ? 14 : 4) ); box += createBox(b_x, b_y, b_width, b_height, "", false, cpu_title); } #ifdef GPU_SUPPORT //* Calculate and draw gpu box outlines if (Gpu::shown != 0) { using namespace Gpu; x_vec.resize(shown); y_vec.resize(shown); b_x_vec.resize(shown); b_y_vec.resize(shown); b_height_vec.resize(shown); box.resize(shown); graph_upper_vec.resize(shown); graph_lower_vec.resize(shown); temp_graph_vec.resize(shown); mem_used_graph_vec.resize(shown); mem_util_graph_vec.resize(shown); gpu_meter_vec.resize(shown); pwr_meter_vec.resize(shown); enc_meter_vec.resize(shown); redraw.resize(shown); for (auto i = 0; i < shown; ++i) { redraw[i] = true; width = Term::width; if (Cpu::shown) if (not (Mem::shown or Net::shown or Proc::shown)) height = min_height; else height = Cpu::height; else if (not (Mem::shown or Net::shown or Proc::shown)) height = Term::height/Gpu::shown + (i == 0)*(Term::height%Gpu::shown); else height = max(min_height, (int)ceil((double)Term::height * height_p/Gpu::shown / 100)); height += (height+Cpu::height == Term::height-1); x_vec[i] = 1; y_vec[i] = 1 + i*height + (not Config::getB("cpu_bottom"))*Cpu::shown*Cpu::height; box[i] = createBox(x_vec[i], y_vec[i], width, height, Theme::c("cpu_box"), true, std::string("gpu") + (char)(shown_panels[i]+'0'), "", (shown_panels[i]+5)%10); // TODO gpu_box b_height_vec[i] = 2 + gpu_b_height_offsets[shown_panels[i]]; b_width = clamp(width/2, min_width, 65); //? Main statistics box b_x_vec[i] = x_vec[i] + width - b_width - 1; b_y_vec[i] = y_vec[i] + ceil((double)(height - 2) / 2) - ceil((double)(b_height_vec[i]) / 2) + 1; string name = Config::getS(std::string("custom_gpu_name") + (char)(shown_panels[i]+'0')); if (name.empty()) name = gpu_names[shown_panels[i]]; box[i] += createBox(b_x_vec[i], b_y_vec[i], b_width, b_height_vec[i], "", false, name.substr(0, b_width-5)); } } #endif //* Calculate and draw mem box outlines if (Mem::shown) { using namespace Mem; auto show_disks = Config::getB("show_disks"); auto swap_disk = Config::getB("swap_disk"); auto mem_graphs = Config::getB("mem_graphs"); width = round((double)Term::width * (Proc::shown ? width_p : 100) / 100); #ifdef GPU_SUPPORT height = ceil((double)Term::height * (100 - Net::height_p * Net::shown*4 / ((Gpu::shown != 0 and Cpu::shown) + 4)) / 100) - Cpu::height - Gpu::height*Gpu::shown; #else height = ceil((double)Term::height * (100 - Cpu::height_p * Cpu::shown - Net::height_p * Net::shown) / 100) + 1; #endif x = (proc_left and Proc::shown) ? Term::width - width + 1: 1; if (mem_below_net and Net::shown) #ifdef GPU_SUPPORT y = Term::height - height + 1 - (cpu_bottom ? Cpu::height + Gpu::height*Gpu::shown : 0); else y = cpu_bottom ? 1 : Cpu::height + Gpu::height*Gpu::shown + 1; #else y = Term::height - height + 1 - (cpu_bottom ? Cpu::height : 0); else y = cpu_bottom ? 1 : Cpu::height + 1; #endif if (show_disks) { mem_width = ceil((double)(width - 3) / 2); mem_width += mem_width % 2; disks_width = width - mem_width - 2; divider = x + mem_width; } else mem_width = width - 1; item_height = has_swap and not swap_disk ? 6 : 4; if (height - (has_swap and not swap_disk ? 3 : 2) > 2 * item_height) mem_size = 3; else if (mem_width > 25) mem_size = 2; else mem_size = 1; mem_meter = max(0, mem_width - (mem_size > 2 ? 7 : 17)); if (mem_size == 1) mem_meter += 6; if (mem_graphs) { graph_height = max(1, (int)round((double)((height - (has_swap and not swap_disk ? 2 : 1)) - (mem_size == 3 ? 2 : 1) * item_height) / item_height)); if (graph_height > 1) mem_meter += 6; } else graph_height = 0; if (show_disks) { disk_meter = max(-14, width - mem_width - 23); if (disks_width < 25) disk_meter += 14; } box = createBox(x, y, width, height, Theme::c("mem_box"), true, "mem", "", 2); box += Mv::to(y, (show_disks ? divider + 2 : x + width - 9)) + Theme::c("mem_box") + Symbols::title_left + (show_disks ? Fx::b : "") + Theme::c("hi_fg") + 'd' + Theme::c("title") + "isks" + Fx::ub + Theme::c("mem_box") + Symbols::title_right; Input::mouse_mappings["d"] = {y, (show_disks ? divider + 3 : x + width - 8), 1, 5}; if (show_disks) { box += Mv::to(y, divider) + Symbols::div_up + Mv::to(y + height - 1, divider) + Symbols::div_down + Theme::c("div_line"); for (auto i : iota(1, height - 1)) box += Mv::to(y + i, divider) + Symbols::v_line; } } //* Calculate and draw net box outlines if (Net::shown) { using namespace Net; width = round((double)Term::width * (Proc::shown ? width_p : 100) / 100); #ifdef GPU_SUPPORT height = Term::height - Cpu::height - Gpu::height*Gpu::shown - Mem::height; #else height = Term::height - Cpu::height - Mem::height; #endif x = (proc_left and Proc::shown) ? Term::width - width + 1 : 1; if (mem_below_net and Mem::shown) #ifdef GPU_SUPPORT y = cpu_bottom ? 1 : Cpu::height + Gpu::height*Gpu::shown + 1; #else y = cpu_bottom ? 1 : Cpu::height + 1; #endif else y = Term::height - height + 1 - (cpu_bottom ? Cpu::height : 0); b_width = (width > 45) ? 27 : 19; b_height = (height > 10) ? 9 : height - 2; b_x = x + width - b_width - 1; b_y = y + ((height - 2) / 2) - b_height / 2 + 1; d_graph_height = round((double)(height - 2) / 2); u_graph_height = height - 2 - d_graph_height; box = createBox(x, y, width, height, Theme::c("net_box"), true, "net", "", 3); box += createBox(b_x, b_y, b_width, b_height, "", false, "download", "upload"); } //* Calculate and draw proc box outlines if (Proc::shown) { using namespace Proc; width = Term::width - (Mem::shown ? Mem::width : (Net::shown ? Net::width : 0)); #ifdef GPU_SUPPORT height = Term::height - Cpu::height - Gpu::height*Gpu::shown; #else height = Term::height - Cpu::height; #endif x = proc_left ? 1 : Term::width - width + 1; #ifdef GPU_SUPPORT y = (cpu_bottom and Cpu::shown) ? 1 : Cpu::height + Gpu::height*Gpu::shown + 1; #else y = (cpu_bottom and Cpu::shown) ? 1 : Cpu::height + 1; #endif select_max = height - 3; box = createBox(x, y, width, height, Theme::c("proc_box"), true, "proc", "", 4); } } } btop-1.4.5/src/btop_draw.hpp000066400000000000000000000076751506333644200157730ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include #include using std::array; using std::deque; using std::string; using std::vector; namespace Symbols { const string h_line = "─"; const string v_line = "│"; const string dotted_v_line = "╎"; const string left_up = "┌"; const string right_up = "â”"; const string left_down = "â””"; const string right_down = "┘"; const string round_left_up = "â•­"; const string round_right_up = "â•®"; const string round_left_down = "â•°"; const string round_right_down = "╯"; const string title_left_down = "┘"; const string title_right_down = "â””"; const string title_left = "â”"; const string title_right = "┌"; const string div_right = "┤"; const string div_left = "├"; const string div_up = "┬"; const string div_down = "â”´"; const string up = "↑"; const string down = "↓"; const string left = "â†"; const string right = "→"; const string enter = "↵"; } namespace Draw { //* Generate if needed and return the btop++ banner string banner_gen(int y=0, int x=0, bool centered=false, bool redraw=false); //* An editable text field class TextEdit { size_t pos{}; size_t upos{}; bool numeric = false; public: string text; TextEdit(); explicit TextEdit(string text, bool numeric=false); bool command(const std::string_view key); string operator()(const size_t limit=0); void clear(); }; //* Create a box and return as a string string createBox( const int x, const int y, const int width, const int height, string line_color = "", bool fill = false, const std::string_view title = "", const std::string_view title2 = "", const int num = 0 ); bool update_clock(bool force = false); //* Class holding a percentage meter class Meter { int width; string color_gradient; bool invert; array cache; public: Meter(); Meter(const int width, string color_gradient, bool invert = false); //* Return a string representation of the meter with given value string operator()(int value); }; //* Class holding a percentage graph class Graph { int width, height; string color_gradient; string out, symbol = "default"; bool invert, no_zero; long long offset; long long last = 0, max_value = 0; bool current = true, tty_mode = false; std::unordered_map> graphs = { {true, {}}, {false, {}}}; //* Create two representations of the graph to switch between to represent two values for each braille character void _create(const deque& data, int data_offset); public: Graph(); Graph(int width, int height, const string& color_gradient, const deque& data, const string& symbol="default", bool invert=false, bool no_zero=false, long long max_value=0, long long offset=0); //* Add last value from back of and return string representation of graph string& operator()(const deque& data, bool data_same=false); //* Return string representation of graph string& operator()(); }; //* Calculate sizes of boxes, draw outlines and save to enabled boxes namespaces void calcSizes(); } namespace Proc { extern Draw::TextEdit filter; extern std::unordered_map p_graphs; extern std::unordered_map p_counters; } btop-1.4.5/src/btop_input.cpp000066400000000000000000000400431506333644200161520ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include #include "btop_input.hpp" #include "btop_tools.hpp" #include "btop_config.hpp" #include "btop_shared.hpp" #include "btop_menu.hpp" #include "btop_draw.hpp" using namespace Tools; using namespace std::literals; // for operator""s namespace rng = std::ranges; namespace Input { //* Map for translating key codes to readable values const std::unordered_map Key_escapes = { {"\033", "escape"}, {"\x12", "ctrl_r"}, {"\n", "enter"}, {" ", "space"}, {"\x7f", "backspace"}, {"\x08", "backspace"}, {"[A", "up"}, {"OA", "up"}, {"[B", "down"}, {"OB", "down"}, {"[D", "left"}, {"OD", "left"}, {"[C", "right"}, {"OC", "right"}, {"[2~", "insert"}, {"[4h", "insert"}, {"[3~", "delete"}, {"[P", "delete"}, {"[H", "home"}, {"[1~", "home"}, {"[F", "end"}, {"[4~", "end"}, {"[5~", "page_up"}, {"[6~", "page_down"}, {"\t", "tab"}, {"[Z", "shift_tab"}, {"OP", "f1"}, {"OQ", "f2"}, {"OR", "f3"}, {"OS", "f4"}, {"[15~", "f5"}, {"[17~", "f6"}, {"[18~", "f7"}, {"[19~", "f8"}, {"[20~", "f9"}, {"[21~", "f10"}, {"[23~", "f11"}, {"[24~", "f12"} }; sigset_t signal_mask; std::atomic polling (false); array mouse_pos; std::unordered_map mouse_mappings; deque history(50, ""); string old_filter; string input; bool poll(const uint64_t timeout) { atomic_lock lck(polling); fd_set fds; FD_ZERO(&fds); FD_SET(STDIN_FILENO, &fds); struct timespec wait; struct timespec *waitptr = nullptr; if(timeout != std::numeric_limits::max()) { wait.tv_sec = timeout / 1000; wait.tv_nsec = (timeout % 1000) * 1000000; waitptr = &wait; } if(pselect(STDIN_FILENO + 1, &fds, nullptr, nullptr, waitptr, &signal_mask) > 0) { input.clear(); char buf[1024]; ssize_t count = 0; while((count = read(STDIN_FILENO, buf, sizeof(buf))) > 0) { input.append(std::string_view(buf, count)); } return true; } return false; } string get() { string key = input; if (not key.empty()) { //? Remove escape code prefix if present if (key.substr(0, 2) == Fx::e) { key.erase(0, 1); } //? Detect if input is an mouse event if (key.starts_with("[<")) { std::string_view key_view = key; string mouse_event; if (key_view.starts_with("[<0;") and key_view.find('M') != std::string_view::npos) { mouse_event = "mouse_click"; key_view.remove_prefix(4); } // else if (key_view.starts_with("[<0;") and key_view.ends_with('m')) { // mouse_event = "mouse_release"; // key_view.remove_prefix(4); // } else if (key_view.starts_with("[<64;")) { mouse_event = "mouse_scroll_up"; key_view.remove_prefix(5); } else if (key_view.starts_with("[<65;")) { mouse_event = "mouse_scroll_down"; key_view.remove_prefix(5); } else key.clear(); if (Config::getB("proc_filtering")) { if (mouse_event == "mouse_click") return mouse_event; else return ""; } //? Get column and line position of mouse and check for any actions mapped to current position if (not key.empty()) { try { const auto delim = key_view.find(';'); mouse_pos[0] = stoi((string)key_view.substr(0, delim)); mouse_pos[1] = stoi((string)key_view.substr(delim + 1, key_view.find('M', delim))); } catch (const std::invalid_argument&) { mouse_event.clear(); } catch (const std::out_of_range&) { mouse_event.clear(); } key = mouse_event; if (key == "mouse_click") { const auto& [col, line] = mouse_pos; for (const auto& [mapped_key, pos] : (Menu::active ? Menu::mouse_mappings : mouse_mappings)) { if (col >= pos.col and col < pos.col + pos.width and line >= pos.line and line < pos.line + pos.height) { key = mapped_key; break; } } } } } else if (auto it = Key_escapes.find(key); it != Key_escapes.end()) key = it->second; else if (ulen(key) > 1) key.clear(); if (not key.empty()) { history.push_back(key); history.pop_front(); } } return key; } string wait() { while(not poll(std::numeric_limits::max())) {} return get(); } void interrupt() { kill(getpid(), SIGUSR1); } void clear() { // do not need it, actually } void process(const std::string_view key) { if (key.empty()) return; try { auto filtering = Config::getB("proc_filtering"); auto vim_keys = Config::getB("vim_keys"); auto help_key = (vim_keys ? "H" : "h"); auto kill_key = (vim_keys ? "K" : "k"); //? Global input actions if (not filtering) { bool keep_going = false; if (key == "q") { clean_quit(0); } else if (is_in(key, "escape", "m")) { Menu::show(Menu::Menus::Main); return; } else if (is_in(key, "F1", "?", help_key)) { Menu::show(Menu::Menus::Help); return; } else if (is_in(key, "F2", "o")) { Menu::show(Menu::Menus::Options); return; } else if (key.size() == 1 and isint(key)) { auto intKey = std::atoi(key.data()); #ifdef GPU_SUPPORT static const array boxes = {"gpu5", "cpu", "mem", "net", "proc", "gpu0", "gpu1", "gpu2", "gpu3", "gpu4"}; if ((intKey == 0 and Gpu::count < 5) or (intKey >= 5 and intKey - 4 > Gpu::count)) return; #else static const array boxes = {"", "cpu", "mem", "net", "proc"}; if (intKey == 0 or intKey > 4) return; #endif atomic_wait(Runner::active); if (not Config::toggle_box(boxes.at(intKey))) { Menu::show(Menu::Menus::SizeError); return; } Config::current_preset = -1; Draw::calcSizes(); Runner::run("all", false, true); return; } else if (is_in(key, "p", "P") and Config::preset_list.size() > 1) { const auto old_preset = Config::current_preset; if (key == "p") { if (++Config::current_preset >= (int)Config::preset_list.size()) Config::current_preset = 0; } else { if (--Config::current_preset < 0) Config::current_preset = Config::preset_list.size() - 1; } atomic_wait(Runner::active); if (not Config::apply_preset(Config::preset_list.at(Config::current_preset))) { Menu::show(Menu::Menus::SizeError); Config::current_preset = old_preset; return; } Draw::calcSizes(); Runner::run("all", false, true); return; } else if (is_in(key, "ctrl_r")) { kill(getpid(), SIGUSR2); return; } else keep_going = true; if (not keep_going) return; } //? Input actions for proc box if (Proc::shown) { bool keep_going = false; bool no_update = true; bool redraw = true; if (filtering) { if (key == "enter" or key == "down") { Config::set("proc_filter", Proc::filter.text); Config::set("proc_filtering", false); old_filter.clear(); if(key == "down"){ Config::unlock(); Config::lock(); process("down"); return; } } else if (key == "escape" or key == "mouse_click") { Config::set("proc_filter", old_filter); Config::set("proc_filtering", false); old_filter.clear(); } else if (Proc::filter.command(key)) { if (Config::getS("proc_filter") != Proc::filter.text) Config::set("proc_filter", Proc::filter.text); } else return; } else if (key == "left" or (vim_keys and key == "h")) { int cur_i = v_index(Proc::sort_vector, Config::getS("proc_sorting")); if (--cur_i < 0) cur_i = Proc::sort_vector.size() - 1; Config::set("proc_sorting", Proc::sort_vector.at(cur_i)); } else if (key == "right" or (vim_keys and key == "l")) { int cur_i = v_index(Proc::sort_vector, Config::getS("proc_sorting")); if (std::cmp_greater(++cur_i, Proc::sort_vector.size() - 1)) cur_i = 0; Config::set("proc_sorting", Proc::sort_vector.at(cur_i)); } else if (is_in(key, "f", "/")) { Config::flip("proc_filtering"); Proc::filter = Draw::TextEdit{Config::getS("proc_filter")}; old_filter = Proc::filter.text; } else if (key == "e") { Config::flip("proc_tree"); no_update = false; } else if (key == "r") Config::flip("proc_reversed"); else if (key == "c") Config::flip("proc_per_core"); else if (key == "%") Config::flip("proc_mem_bytes"); else if (key == "delete" and not Config::getS("proc_filter").empty()) Config::set("proc_filter", ""s); else if (key.starts_with("mouse_")) { redraw = false; const auto& [col, line] = mouse_pos; const int y = (Config::getB("show_detailed") ? Proc::y + 8 : Proc::y); const int height = (Config::getB("show_detailed") ? Proc::height - 8 : Proc::height); if (col >= Proc::x + 1 and col < Proc::x + Proc::width and line >= y + 1 and line < y + height - 1) { if (key == "mouse_click") { if (col < Proc::x + Proc::width - 2) { const auto& current_selection = Config::getI("proc_selected"); if (current_selection == line - y - 1) { redraw = true; if (Config::getB("proc_tree")) { const int x_pos = col - Proc::x; const int offset = Config::getI("selected_depth") * 3; if (x_pos > offset and x_pos < 4 + offset) { process("space"); return; } } process("enter"); return; } else if (current_selection == 0 or line - y - 1 == 0) redraw = true; Config::set("proc_selected", line - y - 1); } else if (line == y + 1) { if (Proc::selection("page_up") == -1) return; } else if (line == y + height - 2) { if (Proc::selection("page_down") == -1) return; } else if (Proc::selection("mousey" + to_string(line - y - 2)) == -1) return; } else goto proc_mouse_scroll; } else if (key == "mouse_click" and Config::getI("proc_selected") > 0) { Config::set("proc_selected", 0); redraw = true; } else keep_going = true; } else if (key == "enter") { if (Config::getI("proc_selected") == 0 and not Config::getB("show_detailed")) { return; } else if (Config::getI("proc_selected") > 0 and Config::getI("detailed_pid") != Config::getI("selected_pid")) { Config::set("detailed_pid", Config::getI("selected_pid")); Config::set("proc_last_selected", Config::getI("proc_selected")); Config::set("proc_selected", 0); Config::set("show_detailed", true); } else if (Config::getB("show_detailed")) { if (Config::getI("proc_last_selected") > 0) Config::set("proc_selected", Config::getI("proc_last_selected")); Config::set("proc_last_selected", 0); Config::set("detailed_pid", 0); Config::set("show_detailed", false); } } else if (is_in(key, "+", "-", "space") and Config::getB("proc_tree") and Config::getI("proc_selected") > 0) { atomic_wait(Runner::active); auto& pid = Config::getI("selected_pid"); if (key == "+" or key == "space") Proc::expand = pid; if (key == "-" or key == "space") Proc::collapse = pid; no_update = false; } else if (is_in(key, "t", kill_key) and (Config::getB("show_detailed") or Config::getI("selected_pid") > 0)) { atomic_wait(Runner::active); if (Config::getB("show_detailed") and Config::getI("proc_selected") == 0 and Proc::detailed.status == "Dead") return; Menu::show(Menu::Menus::SignalSend, (key == "t" ? SIGTERM : SIGKILL)); return; } else if (key == "s" and (Config::getB("show_detailed") or Config::getI("selected_pid") > 0)) { atomic_wait(Runner::active); if (Config::getB("show_detailed") and Config::getI("proc_selected") == 0 and Proc::detailed.status == "Dead") return; Menu::show(Menu::Menus::SignalChoose); return; } else if (is_in(key, "up", "down", "page_up", "page_down", "home", "end") or (vim_keys and is_in(key, "j", "k", "g", "G"))) { proc_mouse_scroll: redraw = false; auto old_selected = Config::getI("proc_selected"); auto new_selected = Proc::selection(key); if (new_selected == -1) return; else if (old_selected != new_selected and (old_selected == 0 or new_selected == 0)) redraw = true; } else keep_going = true; if (not keep_going) { Runner::run("proc", no_update, redraw); return; } } //? Input actions for cpu box if (Cpu::shown) { bool keep_going = false; bool no_update = true; bool redraw = true; static uint64_t last_press = 0; if (key == "+" and Config::getI("update_ms") <= 86399900) { int add = (Config::getI("update_ms") <= 86399000 and last_press >= time_ms() - 200 and rng::all_of(Input::history, [](const auto& str){ return str == "+"; }) ? 1000 : 100); Config::set("update_ms", Config::getI("update_ms") + add); last_press = time_ms(); redraw = true; } else if (key == "-" and Config::getI("update_ms") >= 200) { int sub = (Config::getI("update_ms") >= 2000 and last_press >= time_ms() - 200 and rng::all_of(Input::history, [](const auto& str){ return str == "-"; }) ? 1000 : 100); Config::set("update_ms", Config::getI("update_ms") - sub); last_press = time_ms(); redraw = true; } else keep_going = true; if (not keep_going) { Runner::run("cpu", no_update, redraw); return; } } //? Input actions for mem box if (Mem::shown) { bool keep_going = false; bool no_update = true; bool redraw = true; if (key == "i") { Config::flip("io_mode"); } else if (key == "d") { Config::flip("show_disks"); no_update = false; Draw::calcSizes(); } else keep_going = true; if (not keep_going) { Runner::run("mem", no_update, redraw); return; } } //? Input actions for net box if (Net::shown) { bool keep_going = false; bool no_update = true; bool redraw = true; if (is_in(key, "b", "n")) { atomic_wait(Runner::active); int c_index = v_index(Net::interfaces, Net::selected_iface); if (c_index != (int)Net::interfaces.size()) { if (key == "b") { if (--c_index < 0) c_index = Net::interfaces.size() - 1; } else if (key == "n") { if (++c_index == (int)Net::interfaces.size()) c_index = 0; } Net::selected_iface = Net::interfaces.at(c_index); Net::rescale = true; } } else if (key == "y") { Config::flip("net_sync"); Net::rescale = true; } else if (key == "a") { Config::flip("net_auto"); Net::rescale = true; } else if (key == "z") { atomic_wait(Runner::active); auto& ndev = Net::current_net.at(Net::selected_iface); if (ndev.stat.at("download").offset + ndev.stat.at("upload").offset > 0) { ndev.stat.at("download").offset = 0; ndev.stat.at("upload").offset = 0; } else { ndev.stat.at("download").offset = ndev.stat.at("download").last + ndev.stat.at("download").rollover; ndev.stat.at("upload").offset = ndev.stat.at("upload").last + ndev.stat.at("upload").rollover; } no_update = false; } else keep_going = true; if (not keep_going) { Runner::run("net", no_update, redraw); return; } } } catch (const std::exception& e) { throw std::runtime_error { fmt::format(R"(Input::process("{}"))", e.what()) }; } } } btop-1.4.5/src/btop_input.hpp000066400000000000000000000036531506333644200161650ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include #include using std::array; using std::atomic; using std::deque; using std::string; /* The input functions rely on the following termios parameters being set: Non-canonical mode (c_lflags & ~(ICANON)) VMIN and VTIME (c_cc) set to 0 These will automatically be set when running Term::init() from btop_tools.cpp */ //* Functions and variables for handling keyboard and mouse input namespace Input { struct Mouse_loc { int line, col, height, width; }; //? line, col, height, width extern std::unordered_map mouse_mappings; //* Signal mask used during polling read extern sigset_t signal_mask; extern atomic polling; //* Mouse column and line position extern array mouse_pos; //* Last entered key extern deque history; //* Poll keyboard & mouse input for ms and return input availability as a bool bool poll(const uint64_t timeout=0); //* Get a key or mouse action from input string get(); //* Wait until input is available and return key string wait(); //* Interrupt poll/wait void interrupt(); //* Clears last entered key void clear(); //* Process actions for input void process(const std::string_view key); } btop-1.4.5/src/btop_menu.cpp000066400000000000000000001510471506333644200157660ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include "btop_menu.hpp" #include "btop_config.hpp" #include "btop_draw.hpp" #include "btop_shared.hpp" #include "btop_theme.hpp" #include "btop_tools.hpp" #include #include #include #include #include #include #include using std::array; using std::ceil; using std::max; using std::min; using std::ref; using std::views::iota; using namespace Tools; namespace fs = std::filesystem; namespace Menu { atomic active (false); string bg; bool redraw{true}; int currentMenu = -1; msgBox messageBox; int signalToSend{}; int signalKillRet{}; const array P_Signals = { "0", #ifdef __linux__ #if defined(__hppa__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGSTKFLT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGXCPU", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGUSR1", "SIGUSR2", "SIGCHLD", "SIGPWR", "SIGVTALRM", "SIGPROF", "SIGIO", "SIGWINCH", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGTTIN", "SIGTTOU", "SIGURG", "SIGXFSZ", "SIGSYS" #elif defined(__mips__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGUSR1", "SIGUSR2", "SIGCHLD", "SIGPWR", "SIGWINCH", "SIGURG", "SIGIO", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGTTIN", "SIGTTOU", "SIGVTALRM", "SIGPROF", "SIGXCPU", "SIGXFSZ" #elif defined(__alpha__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGURG", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", "SIGTTIN", "SIGTTOU", "SIGIO", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGPWR", "SIGUSR1", "SIGUSR2" #elif defined (__sparc__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGURG", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", "SIGTTIN", "SIGTTOU", "SIGIO", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGLOST", "SIGUSR1", "SIGUSR2" #else "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGBUS", "SIGFPE", "SIGKILL", "SIGUSR1", "SIGSEGV", "SIGUSR2", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGSTKFLT", "SIGCHLD", "SIGCONT", "SIGSTOP", "SIGTSTP", "SIGTTIN", "SIGTTOU", "SIGURG", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGIO", "SIGPWR", "SIGSYS" #endif #elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGURG", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", "SIGTTIN", "SIGTTOU", "SIGIO", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGINFO", "SIGUSR1", "SIGUSR2" #else "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "7", "SIGFPE", "SIGKILL", "10", "SIGSEGV", "12", "SIGPIPE", "SIGALRM", "SIGTERM", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31" #endif }; std::unordered_map mouse_mappings; const array, 3> menu_normal = { array{ "┌─â”┌─â”┌┬â”┬┌─â”┌â”┌┌─â”", "│ │├─┘ │ ││ ││││└─â”", "└─┘┴ â”´ ┴└─┘┘└┘└─┘" }, { "┬ ┬┌─â”┬ ┌─â”", "├─┤├┤ │ ├─┘", "â”´ ┴└─┘┴─┘┴ " }, { "┌─┠┬ ┬ ┬┌┬â”", "│─┼â”│ │ │ │ ", "└─┘└└─┘ â”´ â”´ " } }; const array, 3> menu_selected = { array{ "â•”â•â•—â•”â•╗╔╦╗╦╔â•╗╔╗╔╔â•â•—", "â•‘ â•‘â• â•â• â•‘ â•‘â•‘ ║║║║╚â•â•—", "╚â•â•â•© â•© ╩╚â•â•â•╚â•╚â•â•" }, { "╦ ╦╔â•╗╦ â•”â•â•—", "â• â•╣╠╣ â•‘ â• â•â•", "â•© ╩╚â•â•â•©â•â•â•© " }, { "â•”â•â•— ╦ ╦ ╦╔╦╗ ", "â•‘â•╬╗║ â•‘ â•‘ â•‘ ", "╚â•â•╚╚â•â• â•© â•© " } }; const array menu_width = {19, 12, 12}; const vector> help_text = { {"Mouse 1", "Clicks buttons and selects in process list."}, {"Mouse scroll", "Scrolls any scrollable list/text under cursor."}, {"Esc, m", "Toggles main menu."}, {"p", "Cycle view presets forwards."}, {"shift + p", "Cycle view presets backwards."}, {"1", "Toggle CPU box."}, {"2", "Toggle MEM box."}, {"3", "Toggle NET box."}, {"4", "Toggle PROC box."}, {"5", "Toggle GPU box."}, {"d", "Toggle disks view in MEM box."}, {"F2, o", "Shows options."}, {"F1, ?, h", "Shows this window."}, {"ctrl + z", "Sleep program and put in background."}, {"ctrl + r", "Reloads config file from disk."}, {"q, ctrl + c", "Quits program."}, {"+, -", "Add/Subtract 100ms to/from update timer."}, {"Up, Down", "Select in process list."}, {"Enter", "Show detailed information for selected process."}, {"Spacebar", "Expand/collapse the selected process in tree view."}, {"Pg Up, Pg Down", "Jump 1 page in process list."}, {"Home, End", "Jump to first or last page in process list."}, {"Left, Right", "Select previous/next sorting column."}, {"b, n", "Select previous/next network device."}, {"i", "Toggle disks io mode with big graphs."}, {"z", "Toggle totals reset for current network device"}, {"a", "Toggle auto scaling for the network graphs."}, {"y", "Toggle synced scaling mode for network graphs."}, {"f, /", "To enter a process filter. Start with ! for regex."}, {"delete", "Clear any entered filter."}, {"c", "Toggle per-core cpu usage of processes."}, {"r", "Reverse sorting order in processes box."}, {"e", "Toggle processes tree view."}, {"%", "Toggles memory display mode in processes box."}, {"Selected +, -", "Expand/collapse the selected process in tree view."}, {"Selected t", "Terminate selected process with SIGTERM - 15."}, {"Selected k", "Kill selected process with SIGKILL - 9."}, {"Selected s", "Select or enter signal to send to process."}, {"", " "}, {"", "For bug reporting and project updates, visit:"}, {"", "https://github.com/aristocratos/btop"}, }; const vector>> categories = { { {"color_theme", "Set color theme.", "", "Choose from all theme files in (usually)", "\"/usr/[local/]share/btop/themes\" and", "\"~/.config/btop/themes\".", "", "\"Default\" for builtin default theme.", "\"TTY\" for builtin 16-color theme.", "", "For theme updates see:", "https://github.com/aristocratos/btop"}, {"theme_background", "If the theme set background should be shown.", "", "Set to False if you want terminal background", "transparency."}, {"truecolor", "Sets if 24-bit truecolor should be used.", "", "Will convert 24-bit colors to 256 color", "(6x6x6 color cube) if False.", "", "Set to False if your terminal doesn't have", "truecolor support and can't convert to", "256-color."}, {"force_tty", "TTY mode.", "", "Set to true to force tty mode regardless", "if a real tty has been detected or not.", "", "Will force 16-color mode and TTY theme,", "set all graph symbols to \"tty\" and swap", "out other non tty friendly symbols."}, {"vim_keys", "Enable vim keys.", "Set to True to enable \"h,j,k,l\" keys for", "directional control in lists.", "", "Conflicting keys for", "h (help) and k (kill)", "is accessible while holding shift."}, {"presets", "Define presets for the layout of the boxes.", "", "Preset 0 is always all boxes shown with", "default settings.", "Max 9 presets.", "", "Format: \"box_name:P:G,box_name:P:G\"", "P=(0 or 1) for alternate positions.", "G=graph symbol to use for box.", "", "Use whitespace \" \" as separator between", "different presets.", "", "Example:", "\"mem:0:tty,proc:1:default cpu:0:braille\""}, {"shown_boxes", "Manually set which boxes to show.", "", "Available values are \"cpu mem net proc\".", #ifdef GPU_SUPPORT "Or \"gpu0\" through \"gpu5\" for GPU boxes.", #endif "Separate values with whitespace.", "", "Toggle between presets with key \"p\"."}, {"update_ms", "Update time in milliseconds.", "", "Recommended 2000 ms or above for better", "sample times for graphs.", "", "Min value: 100 ms", "Max value: 86400000 ms = 24 hours."}, {"rounded_corners", "Rounded corners on boxes.", "", "True or False", "", "Is always False if TTY mode is ON."}, {"graph_symbol", "Default symbols to use for graph creation.", "", "\"braille\", \"block\" or \"tty\".", "", "\"braille\" offers the highest resolution but", "might not be included in all fonts.", "", "\"block\" has half the resolution of braille", "but uses more common characters.", "", "\"tty\" uses only 3 different symbols but will", "work with most fonts.", "", "Note that \"tty\" only has half the horizontal", "resolution of the other two,", "so will show a shorter historical view."}, {"clock_format", "Draw a clock at top of screen.", "(Only visible if cpu box is enabled!)", "", "Formatting according to strftime, empty", "string to disable.", "", "Custom formatting options:", "\"/host\" = hostname", "\"/user\" = username", "\"/uptime\" = system uptime", "", "Examples of strftime formats:", "\"%X\" = locale HH:MM:SS", "\"%H\" = 24h hour, \"%I\" = 12h hour", "\"%M\" = minute, \"%S\" = second", "\"%d\" = day, \"%m\" = month, \"%y\" = year"}, {"base_10_sizes", "Use base 10 for bits and bytes sizes.", "", "Uses KB = 1000 instead of KiB = 1024,", "MB = 1000KB instead of MiB = 1024KiB,", "and so on.", "", "True or False."}, {"background_update", "Update main ui when menus are showing.", "", "True or False.", "", "Set this to false if the menus is flickering", "too much for a comfortable experience."}, {"show_battery", "Show battery stats.", "(Only visible if cpu box is enabled!)", "", "Show battery stats in the top right corner", "if a battery is present."}, {"selected_battery", "Select battery.", "", "Which battery to use if multiple are present.", "Can be both batteries and UPS.", "", "\"Auto\" for auto detection."}, {"show_battery_watts", "Show battery power.", "", "Show discharge power when discharging.", "Show charging power when charging."}, {"log_level", "Set loglevel for error.log", "", "\"ERROR\", \"WARNING\", \"INFO\" and \"DEBUG\".", "", "The level set includes all lower levels,", "i.e. \"DEBUG\" will show all logging info."} }, { {"cpu_bottom", "Cpu box location.", "", "Show cpu box at bottom of screen instead", "of top."}, {"graph_symbol_cpu", "Graph symbol to use for graphs in cpu box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"cpu_graph_upper", "Cpu upper graph.", "", "Sets the CPU/GPU stat shown in upper half of", "the CPU graph.", "", "CPU:", "\"total\" = Total cpu usage. (Auto)", "\"user\" = User mode cpu usage.", "\"system\" = Kernel mode cpu usage.", "+ more depending on kernel.", #ifdef GPU_SUPPORT "", "GPU:", "\"gpu-totals\" = GPU usage split by device.", "\"gpu-vram-totals\" = VRAM usage split by GPU.", "\"gpu-pwr-totals\" = Power usage split by GPU.", "\"gpu-average\" = Avg usage of all GPUs.", "\"gpu-vram-total\" = VRAM usage of all GPUs.", "\"gpu-pwr-total\" = Power usage of all GPUs.", "Not all stats are supported on all devices." #endif }, {"cpu_graph_lower", "Cpu lower graph.", "", "Sets the CPU/GPU stat shown in lower half of", "the CPU graph.", "", "CPU:", "\"total\" = Total cpu usage.", "\"user\" = User mode cpu usage.", "\"system\" = Kernel mode cpu usage.", "+ more depending on kernel.", #ifdef GPU_SUPPORT "", "GPU:", "\"gpu-totals\" = GPU usage split/device. (Auto)", "\"gpu-vram-totals\" = VRAM usage split by GPU.", "\"gpu-pwr-totals\" = Power usage split by GPU.", "\"gpu-average\" = Avg usage of all GPUs.", "\"gpu-vram-total\" = VRAM usage of all GPUs.", "\"gpu-pwr-total\" = Power usage of all GPUs.", "Not all stats are supported on all devices." #endif }, {"cpu_invert_lower", "Toggles orientation of the lower CPU graph.", "", "True or False."}, {"cpu_single_graph", "Completely disable the lower CPU graph.", "", "Shows only upper CPU graph and resizes it", "to fit to box height.", "", "True or False."}, #ifdef GPU_SUPPORT {"show_gpu_info", "Show gpu info in cpu box.", "", "Toggles gpu stats in cpu box and the", "gpu graph (if \"cpu_graph_lower\" is set to", "\"Auto\").", "", "\"Auto\" to show when no gpu box is shown.", "\"On\" to always show.", "\"Off\" to never show."}, #endif {"check_temp", "Enable cpu temperature reporting.", "", "True or False."}, {"cpu_sensor", "Cpu temperature sensor.", "", "Select the sensor that corresponds to", "your cpu temperature.", "", "Set to \"Auto\" for auto detection."}, {"show_coretemp", "Show temperatures for cpu cores.", "", "Only works if check_temp is True and", "the system is reporting core temps."}, {"cpu_core_map", "Custom mapping between core and coretemp.", "", "Can be needed on certain cpus to get correct", "temperature for correct core.", "", "Use lm-sensors or similar to see which cores", "are reporting temperatures on your machine.", "", "Format: \"X:Y\"", "X=core with wrong temp.", "Y=core with correct temp.", "Use space as separator between multiple", "entries.", "", "Example: \"4:0 5:1 6:3\""}, {"temp_scale", "Which temperature scale to use.", "", "Celsius, default scale.", "", "Fahrenheit, the american one.", "", "Kelvin, 0 = absolute zero, 1 degree change", "equals 1 degree change in Celsius.", "", "Rankine, 0 = absolute zero, 1 degree change", "equals 1 degree change in Fahrenheit."}, {"show_cpu_freq", "Show CPU frequency.", "", "Can cause slowdowns on systems with many", "cores and certain kernel versions."}, {"custom_cpu_name", "Custom cpu model name in cpu percentage box.", "", "Empty string to disable."}, {"show_uptime", "Shows the system uptime in the CPU box.", "", "Can also be shown in the clock by using", "\"/uptime\" in the formatting.", "", "True or False."}, {"show_cpu_watts", "Shows the CPU power consumption in watts.", "", "Requires running `make setcap` or", "`make setuid` or running with sudo.", "", "True or False."}, }, #ifdef GPU_SUPPORT { {"nvml_measure_pcie_speeds", "Measure PCIe throughput on NVIDIA cards.", "", "May impact performance on certain cards.", "", "True or False."}, {"rsmi_measure_pcie_speeds", "Measure PCIe throughput on AMD cards.", "", "May impact performance on certain cards.", "", "True or False."}, {"graph_symbol_gpu", "Graph symbol to use for graphs in gpu box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"gpu_mirror_graph", "Horizontally mirror the GPU graph.", "", "True or False."}, {"custom_gpu_name0", "Custom gpu0 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name1", "Custom gpu1 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name2", "Custom gpu2 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name3", "Custom gpu3 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name4", "Custom gpu4 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name5", "Custom gpu5 model name in gpu stats box.", "", "Empty string to disable."}, }, #endif { {"mem_below_net", "Mem box location.", "", "Show mem box below net box instead of above."}, {"graph_symbol_mem", "Graph symbol to use for graphs in mem box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"mem_graphs", "Show graphs for memory values.", "", "True or False."}, {"show_disks", "Split memory box to also show disks.", "", "True or False."}, {"show_io_stat", "Toggle IO activity graphs.", "", "Show small IO graphs that for disk activity", "(disk busy time) when not in IO mode.", "", "True or False."}, {"io_mode", "Toggles io mode for disks.", "", "Shows big graphs for disk read/write speeds", "instead of used/free percentage meters.", "", "True or False."}, {"io_graph_combined", "Toggle combined read and write graphs.", "", "Only has effect if \"io mode\" is True.", "", "True or False."}, {"io_graph_speeds", "Set top speeds for the io graphs.", "", "Manually set which speed in MiB/s that", "equals 100 percent in the io graphs.", "(100 MiB/s by default).", "", "Format: \"device:speed\" separate disks with", "whitespace \" \".", "", "Example: \"/dev/sda:100, /dev/sdb:20\"."}, {"show_swap", "If swap memory should be shown in memory box.", "", "True or False."}, {"swap_disk", "Show swap as a disk.", "", "Ignores show_swap value above.", "Inserts itself after first disk."}, {"only_physical", "Filter out non physical disks.", "", "Set this to False to include network disks,", "RAM disks and similar.", "", "True or False."}, {"use_fstab", "(Linux) Read disks list from /etc/fstab.", "", "This also disables only_physical.", "", "True or False."}, {"zfs_hide_datasets", "(Linux) Hide ZFS datasets in disks list.", "", "Setting this to True will hide all datasets,", "and only show ZFS pools.", "", "(IO stats will be calculated per-pool)", "", "True or False."}, {"disk_free_priv", "(Linux) Type of available disk space.", "", "Set to true to show how much disk space is", "available for privileged users.", "", "Set to false to show available for normal", "users."}, {"disks_filter", "Optional filter for shown disks.", "", "Should be full path of a mountpoint.", "Separate multiple values with", "whitespace \" \".", "", "Only disks matching the filter will be shown.", "Prepend \033[3mexclude=\033[23m to only show disks ", "not matching the filter.", "", "Examples:", "/boot /home/user", "exclude=/boot /home/user"}, {"zfs_arc_cached", "(Linux) Count ZFS ARC as cached memory.", "", "Add ZFS ARC used to cached memory and", "ZFS ARC available to available memory.", "These are otherwise reported by the Linux", "kernel as used memory.", "", "True or False."}, }, { {"graph_symbol_net", "Graph symbol to use for graphs in net box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"net_download", "Fixed network graph download value.", "", "Value in Mebibits, default \"100\".", "", "Can be toggled with auto button."}, {"net_upload", "Fixed network graph upload value.", "", "Value in Mebibits, default \"100\".", "", "Can be toggled with auto button."}, {"net_auto", "Start in network graphs auto rescaling mode.", "", "Ignores any values set above at start and", "rescales down to 10Kibibytes at the lowest.", "", "True or False."}, {"net_sync", "Network scale sync.", "", "Syncs the scaling for download and upload to", "whichever currently has the highest scale.", "", "True or False."}, {"net_iface", "Network Interface.", "", "Manually set the starting Network Interface.", "", "Will otherwise automatically choose the NIC", "with the highest total download since boot."}, {"base_10_bitrate", "Base 10 bitrate", "", "True: Use SI prefixes for bitrates", " (1000Kbps = 1Mbps)", "False: Use binary prefixes for bitrates", " (1024Kibps = 1Mibps)", "Auto: Use the General -> Base 10 Sizes", " setting for bitrates", "", "True, False, or Auto",}, }, { {"proc_left", "Proc box location.", "", "Show proc box on left side of screen", "instead of right."}, {"graph_symbol_proc", "Graph symbol to use for graphs in proc box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"proc_sorting", "Processes sorting option.", "", "Possible values:", "\"pid\", \"program\", \"arguments\", \"threads\",", "\"user\", \"memory\", \"cpu lazy\" and", "\"cpu direct\".", "", "\"cpu lazy\" updates top process over time.", "\"cpu direct\" updates top process", "directly."}, {"proc_reversed", "Reverse processes sorting order.", "", "True or False."}, {"proc_tree", "Processes tree view.", "", "Set true to show processes grouped by", "parents with lines drawn between parent", "and child process."}, {"proc_aggregate", "Aggregate child's resources in parent.", "", "In tree-view, include all child resources", "with the parent even while expanded."}, {"proc_colors", "Enable colors in process view.", "", "True or False."}, {"proc_gradient", "Enable process view gradient fade.", "", "Fades from top or current selection.", "Max fade value is equal to current themes", "\"inactive_fg\" color value."}, {"proc_per_core", "Process usage per core.", "", "If process cpu usage should be of the core", "it's running on or usage of the total", "available cpu power.", "", "If true and process is multithreaded", "cpu usage can reach over 100%."}, {"proc_mem_bytes", "Show memory as bytes in process list.", " ", "Will show percentage of total memory", "if False."}, {"proc_cpu_graphs", "Show cpu graph for each process.", "", "True or False"}, {"proc_filter_kernel", "(Linux) Filter kernel processes from output.", "", "Set to 'True' to filter out internal", "processes started by the Linux kernel."}, } }; msgBox::msgBox() {} msgBox::msgBox(int width, int boxtype, const vector& content, const std::string_view title) : width(width), boxtype(boxtype) { auto tty_mode = Config::getB("tty_mode"); auto rounded = Config::getB("rounded_corners"); const auto& right_up = (tty_mode or not rounded ? Symbols::right_up : Symbols::round_right_up); const auto& left_up = (tty_mode or not rounded ? Symbols::left_up : Symbols::round_left_up); const auto& right_down = (tty_mode or not rounded ? Symbols::right_down : Symbols::round_right_down); const auto& left_down = (tty_mode or not rounded ? Symbols::left_down : Symbols::round_left_down); height = content.size() + 7; x = Term::width / 2 - width / 2; y = Term::height/2 - height/2; if (boxtype == 2) selected = 1; button_left = left_up + Symbols::h_line * 6 + Mv::l(7) + Mv::d(2) + left_down + Symbols::h_line * 6 + Mv::l(7) + Mv::u(1) + Symbols::v_line; button_right = Symbols::v_line + Mv::l(7) + Mv::u(1) + Symbols::h_line * 6 + right_up + Mv::l(7) + Mv::d(2) + Symbols::h_line * 6 + right_down + Mv::u(2); box_contents = Draw::createBox(x, y, width, height, Theme::c("hi_fg"), true, title) + Mv::d(1); for (const auto& line : content) { box_contents += Mv::save + Mv::r(max((size_t)0, (width / 2) - (Fx::uncolor(line).size() / 2) - 1)) + line + Mv::restore + Mv::d(1); } } string msgBox::operator()() { string out; int pos = width / 2 - (boxtype == 0 ? 6 : 14); const auto first_color = (selected == 0 ? Theme::c("hi_fg") : Theme::c("div_line")); out = Mv::d(1) + Mv::r(pos) + Fx::b + first_color + button_left + (selected == 0 ? Theme::c("title") : Theme::c("main_fg") + Fx::ub) + (boxtype == 0 ? " Ok " : " Yes ") + first_color + button_right; mouse_mappings["button1"] = Input::Mouse_loc{y + height - 4, x + pos + 1, 3, 12 + (boxtype > 0 ? 1 : 0)}; if (boxtype > 0) { const auto second_color = (selected == 1 ? Theme::c("hi_fg") : Theme::c("div_line")); out += Mv::r(2) + second_color + button_left + (selected == 1 ? Theme::c("title") : Theme::c("main_fg") + Fx::ub) + " No " + second_color + button_right; mouse_mappings["button2"] = Input::Mouse_loc{y + height - 4, x + pos + 15 + (boxtype > 0 ? 1 : 0), 3, 12}; } return box_contents + out + Fx::reset; } //? Process input int msgBox::input(const string& key) { if (key.empty()) return Invalid; if (is_in(key, "escape", "backspace", "q") or key == "button2") { return No_Esc; } else if (key == "button1" or (boxtype == 0 and str_to_upper(key) == "O")) { return Ok_Yes; } else if (is_in(key, "enter", "space")) { return selected + 1; } else if (boxtype == 0) { return Invalid; } else if (str_to_upper(key) == "Y") { return Ok_Yes; } else if (str_to_upper(key) == "N") { return No_Esc; } else if (is_in(key, "right", "tab")) { if (++selected > 1) selected = 0; return Select; } else if (is_in(key, "left", "shift_tab")) { if (--selected < 0) selected = 1; return Select; } return Invalid; } void msgBox::clear() { box_contents.clear(); box_contents.shrink_to_fit(); button_left.clear(); button_left.shrink_to_fit(); button_right.clear(); button_right.shrink_to_fit(); mouse_mappings.erase("button1"); mouse_mappings.erase("button2"); } enum menuReturnCodes { NoChange, Changed, Closed, Switch }; static int signalChoose(const string& key) { auto s_pid = (Config::getB("show_detailed") and Config::getI("selected_pid") == 0 ? Config::getI("detailed_pid") : Config::getI("selected_pid")); static int x{}; static int y{}; static int selected_signal = -1; if (bg.empty()) selected_signal = -1; auto& out = Global::overlay; int retval = Changed; if (redraw) { x = Term::width/2 - 40; y = Term::height/2 - 9; bg = Draw::createBox(x + 2, y, 78, 19, Theme::c("hi_fg"), true, "signals"); bg += Mv::to(y+2, x+3) + Theme::c("title") + Fx::b + cjust("Send signal to PID " + to_string(s_pid) + " (" + uresize((s_pid == Config::getI("detailed_pid") ? Proc::detailed.entry.name : Config::getS("selected_name")), 30) + ")", 76); } else if (is_in(key, "escape", "q")) { return Closed; } else if (key.starts_with("button_")) { if (int new_select = stoi(key.substr(7)); new_select == selected_signal) goto ChooseEntering; else selected_signal = new_select; } else if (is_in(key, "enter", "space") and selected_signal >= 0) { ChooseEntering: signalKillRet = 0; if (s_pid < 1) { signalKillRet = ESRCH; menuMask.set(SignalReturn); } else if (kill(s_pid, selected_signal) != 0) { signalKillRet = errno; menuMask.set(SignalReturn); } return Closed; } else if (key.size() == 1 and isdigit(key.at(0)) and selected_signal < 10) { selected_signal = std::min(std::stoi((selected_signal < 1 ? key : to_string(selected_signal) + key)), 64); } else if (key == "backspace" and selected_signal != -1) { selected_signal = (selected_signal < 10 ? -1 : selected_signal / 10); } else if (is_in(key, "up", "k") and selected_signal != 16) { if (selected_signal == 1) selected_signal = 31; else if (selected_signal < 6) selected_signal += 25; else { bool offset = (selected_signal > 16); selected_signal -= 5; if (selected_signal <= 16 and offset) selected_signal--; } } else if (is_in(key, "down", "j")) { if (selected_signal == 31) selected_signal = 1; else if (selected_signal < 1 or selected_signal == 16) selected_signal = 1; else if (selected_signal > 26) selected_signal -= 25; else { bool offset = (selected_signal < 16); selected_signal += 5; if (selected_signal >= 16 and offset) selected_signal++; if (selected_signal > 31) selected_signal = 31; } } else if (is_in(key, "left", "h") and selected_signal > 0 and selected_signal != 16) { if (--selected_signal < 1) selected_signal = 31; else if (selected_signal == 16) selected_signal--; } else if (is_in(key, "right", "l") and selected_signal <= 31 and selected_signal != 16) { if (++selected_signal > 31) selected_signal = 1; else if (selected_signal == 16) selected_signal++; } else { retval = NoChange; } if (retval == Changed) { int cy = y+4, cx = x+4; out = bg + Mv::to(cy++, x+3) + Theme::c("main_fg") + Fx::ub + rjust("Enter signal number: ", 48) + Theme::c("hi_fg") + (selected_signal >= 0 ? to_string(selected_signal) : "") + Theme::c("main_fg") + Fx::bl + "â–ˆ" + Fx::ubl; auto sig_str = to_string(selected_signal); for (int count = 0, i = 0; const auto& sig : P_Signals) { if (count == 0 or count == 16) { count++; continue; } if (i++ % 5 == 0) { ++cy; cx = x+4; } out += Mv::to(cy, cx); if (count == selected_signal) out += Theme::c("selected_bg") + Theme::c("selected_fg") + Fx::b + ljust(to_string(count), 3) + ljust('(' + sig + ')', 12) + Fx::reset; else out += Theme::c("hi_fg") + ljust(to_string(count), 3) + Theme::c("main_fg") + ljust('(' + sig + ')', 12); if (redraw) mouse_mappings["button_" + to_string(count)] = {cy, cx, 1, 15}; count++; cx += 15; } cy++; out += Mv::to(++cy, x+3) + Fx::b + Theme::c("hi_fg") + rjust( "↑ ↓ ↠→", 33, true) + Theme::c("main_fg") + Fx::ub + " | To choose signal."; out += Mv::to(++cy, x+3) + Fx::b + Theme::c("hi_fg") + rjust("0-9", 33) + Theme::c("main_fg") + Fx::ub + " | Enter manually."; out += Mv::to(++cy, x+3) + Fx::b + Theme::c("hi_fg") + rjust("ENTER", 33) + Theme::c("main_fg") + Fx::ub + " | To send signal."; mouse_mappings["enter"] = {cy, x, 1, 73}; out += Mv::to(++cy, x+3) + Fx::b + Theme::c("hi_fg") + rjust("ESC or \"q\"", 33) + Theme::c("main_fg") + Fx::ub + " | To abort."; mouse_mappings["escape"] = {cy, x, 1, 73}; out += Fx::reset; } return (redraw ? Changed : retval); } static int sizeError(const string& key) { if (redraw) { vector cont_vec { Fx::b + Theme::g("used")[100] + "Error:" + Theme::c("main_fg") + Fx::ub, "Terminal size too small to" + Fx::reset, "display menu or box!" + Fx::reset }; messageBox = Menu::msgBox{45, 0, cont_vec, "error"}; Global::overlay = messageBox(); } auto ret = messageBox.input(key); if (ret == msgBox::Ok_Yes or ret == msgBox::No_Esc) { messageBox.clear(); return Closed; } else if (redraw) { return Changed; } return NoChange; } static int signalSend(const string& key) { auto s_pid = (Config::getB("show_detailed") and Config::getI("selected_pid") == 0 ? Config::getI("detailed_pid") : Config::getI("selected_pid")); if (s_pid == 0) return Closed; if (redraw) { atomic_wait(Runner::active); auto& p_name = (s_pid == Config::getI("detailed_pid") ? Proc::detailed.entry.name : Config::getS("selected_name")); vector cont_vec = { Fx::b + Theme::c("main_fg") + "Send signal: " + Fx::ub + Theme::c("hi_fg") + to_string(signalToSend) + (signalToSend > 0 and signalToSend <= 32 ? Theme::c("main_fg") + " (" + P_Signals.at(signalToSend) + ')' : ""), Fx::b + Theme::c("main_fg") + "To PID: " + Fx::ub + Theme::c("hi_fg") + to_string(s_pid) + Theme::c("main_fg") + " (" + uresize(p_name, 16) + ')' + Fx::reset, }; messageBox = Menu::msgBox{50, 1, cont_vec, (signalToSend > 1 and signalToSend <= 32 and signalToSend != 17 ? P_Signals.at(signalToSend) : "signal")}; Global::overlay = messageBox(); } auto ret = messageBox.input(key); if (ret == msgBox::Ok_Yes) { signalKillRet = 0; if (kill(s_pid, signalToSend) != 0) { signalKillRet = errno; menuMask.set(SignalReturn); } messageBox.clear(); return Closed; } else if (ret == msgBox::No_Esc) { messageBox.clear(); return Closed; } else if (ret == msgBox::Select) { Global::overlay = messageBox(); return Changed; } else if (redraw) { return Changed; } return NoChange; } static int signalReturn(const string& key) { if (redraw) { vector cont_vec; cont_vec.push_back(Fx::b + Theme::g("used")[100] + "Failure:" + Theme::c("main_fg") + Fx::ub); if (signalKillRet == EINVAL) { cont_vec.push_back("Unsupported signal!" + Fx::reset); } else if (signalKillRet == EPERM) { cont_vec.push_back("Insufficient permissions to send signal!" + Fx::reset); } else if (signalKillRet == ESRCH) { cont_vec.push_back("Process not found!" + Fx::reset); } else { cont_vec.push_back("Unknown error! (errno: " + to_string(signalKillRet) + ')' + Fx::reset); } messageBox = Menu::msgBox{50, 0, cont_vec, "error"}; Global::overlay = messageBox(); } auto ret = messageBox.input(key); if (ret == msgBox::Ok_Yes or ret == msgBox::No_Esc) { messageBox.clear(); return Closed; } else if (redraw) { return Changed; } return NoChange; } static int mainMenu(const string& key) { enum MenuItems { Options, Help, Quit }; static int y{}; static int selected{}; static vector colors_selected; static vector colors_normal; auto tty_mode = Config::getB("tty_mode"); if (bg.empty()) selected = 0; int retval = Changed; if (redraw) { y = Term::height/2 - 10; bg = Draw::banner_gen(y, 0, true); if (not tty_mode) { colors_selected = { Theme::hex_to_color(Global::Banner_src.at(0).at(0)), Theme::hex_to_color(Global::Banner_src.at(2).at(0)), Theme::hex_to_color(Global::Banner_src.at(4).at(0)) }; colors_normal = { Theme::hex_to_color("#CC"), Theme::hex_to_color("#AA"), Theme::hex_to_color("#80") }; } } else if (is_in(key, "escape", "q", "m", "mouse_click")) { return Closed; } else if (key.starts_with("button_")) { if (int new_select = key.back() - '0'; new_select == selected) goto MainEntering; else selected = new_select; } else if (is_in(key, "enter", "space")) { MainEntering: switch (selected) { case Options: menuMask.set(Menus::Options); currentMenu = Menus::Options; return Switch; case Help: menuMask.set(Menus::Help); currentMenu = Menus::Help; return Switch; case Quit: clean_quit(0); } } else if (is_in(key, "down", "tab", "mouse_scroll_down", "j")) { if (++selected > 2) selected = 0; } else if (is_in(key, "up", "shift_tab", "mouse_scroll_up", "k")) { if (--selected < 0) selected = 2; } else { retval = NoChange; } if (retval == Changed) { auto& out = Global::overlay; out = bg + Fx::reset + Fx::b; auto cy = y + 7; for (const auto& i : iota(0, 3)) { if (tty_mode) out += (i == selected ? Theme::c("hi_fg") : Theme::c("main_fg")); const auto& menu = (not tty_mode and i == selected ? menu_selected[i] : menu_normal[i]); const auto& colors = (i == selected ? colors_selected : colors_normal); if (redraw) mouse_mappings["button_" + to_string(i)] = {cy, Term::width/2 - menu_width[i]/2, 3, menu_width[i]}; for (int ic = 0; const auto& line : menu) { out += Mv::to(cy++, Term::width/2 - menu_width[i]/2) + (tty_mode ? "" : colors[ic++]) + line; } } out += Fx::reset; } return (redraw ? Changed : retval); } static int optionsMenu(const string& key) { enum Predispositions { isBool, isInt, isString, is2D, isBrowsable, isEditable}; static int y{}; static int x{}; static int height{}; static int page{}; static int pages{}; static int selected{}; static int select_max{}; static int item_height{}; static int selected_cat{}; static int max_items{}; static int last_sel{}; static bool editing{}; static Draw::TextEdit editor; static string warnings; static bitset<8> selPred; static const std::unordered_map>> optionsList = { {"color_theme", std::cref(Theme::themes)}, {"log_level", std::cref(Logger::log_levels)}, {"temp_scale", std::cref(Config::temp_scales)}, {"proc_sorting", std::cref(Proc::sort_vector)}, {"graph_symbol", std::cref(Config::valid_graph_symbols)}, {"graph_symbol_cpu", std::cref(Config::valid_graph_symbols_def)}, {"graph_symbol_mem", std::cref(Config::valid_graph_symbols_def)}, {"graph_symbol_net", std::cref(Config::valid_graph_symbols_def)}, {"graph_symbol_proc", std::cref(Config::valid_graph_symbols_def)}, {"cpu_graph_upper", std::cref(Cpu::available_fields)}, {"cpu_graph_lower", std::cref(Cpu::available_fields)}, {"cpu_sensor", std::cref(Cpu::available_sensors)}, {"selected_battery", std::cref(Config::available_batteries)}, {"base_10_bitrate", std::cref(Config::base_10_bitrate_values)}, #ifdef GPU_SUPPORT {"show_gpu_info", std::cref(Config::show_gpu_values)}, {"graph_symbol_gpu", std::cref(Config::valid_graph_symbols_def)}, #endif }; auto tty_mode = Config::getB("tty_mode"); auto vim_keys = Config::getB("vim_keys"); if (max_items == 0) { for (const auto& cat : categories) { if ((int)cat.size() > max_items) max_items = cat.size(); } } if (bg.empty()) { page = selected = selected_cat = last_sel = 0; redraw = true; Theme::updateThemes(); } int retval = Changed; bool recollect{}; bool screen_redraw{}; bool theme_refresh{}; //? Draw background if needed else process input if (redraw) { mouse_mappings.clear(); selPred.reset(); y = max(1, Term::height/2 - 3 - max_items); x = Term::width/2 - 39; height = min(Term::height - 7, max_items * 2 + 4); if (height % 2 != 0) height--; bg = Draw::banner_gen(y, 0, true) + Draw::createBox(x, y + 6, 78, height, Theme::c("hi_fg"), true, "tab" + Symbols::right) + Mv::to(y+8, x) + Theme::c("hi_fg") + Symbols::div_left + Theme::c("div_line") + Symbols::h_line * 29 + Symbols::div_up + Symbols::h_line * (78 - 32) + Theme::c("hi_fg") + Symbols::div_right + Mv::to(y+6+height - 1, x+30) + Symbols::div_down + Theme::c("div_line"); for (const auto& i : iota(0, height - 4)) { bg += Mv::to(y+9 + i, x + 30) + Symbols::v_line; } } else if (not warnings.empty() and not key.empty()) { auto ret = messageBox.input(key); if (ret == msgBox::msgReturn::Ok_Yes or ret == msgBox::msgReturn::No_Esc) { warnings.clear(); messageBox.clear(); } } else if (editing and not key.empty()) { if (is_in(key, "escape", "mouse_click")) { editor.clear(); editing = false; } else if (key == "enter") { const auto& option = categories[selected_cat][item_height * page + selected][0]; if (selPred.test(isString) and Config::stringValid(option, editor.text)) { Config::set(option, editor.text); if (option == "custom_cpu_name" or option.starts_with("custom_gpu_name")) screen_redraw = true; else if (is_in(option, "shown_boxes", "presets")) { screen_redraw = true; Config::current_preset = -1; } else if (option == "clock_format") { Draw::update_clock(true); screen_redraw = true; } else if (option == "cpu_core_map") { atomic_wait(Runner::active); Cpu::core_mapping = Cpu::get_core_mapping(); } } else if (selPred.test(isInt) and Config::intValid(option, editor.text)) { Config::set(option, stoi(editor.text)); } else warnings = Config::validError; editor.clear(); editing = false; } else if (not editor.command(key)) retval = NoChange; } else if (key == "mouse_click") { const auto [mouse_x, mouse_y] = Input::mouse_pos; if (mouse_x < x or mouse_x > x + 80 or mouse_y < y + 6 or mouse_y > y + 6 + height) { return Closed; } else if (mouse_x < x + 30 and mouse_y > y + 8) { auto m_select = ceil((double)(mouse_y - y - 8) / 2) - 1; if (selected != m_select) selected = m_select; else if (selPred.test(isEditable)) goto mouseEnter; else retval = NoChange; } } else if (is_in(key, "enter", "e", "E") and selPred.test(isEditable)) { mouseEnter: const auto& option = categories[selected_cat][item_height * page + selected][0]; editor = Draw::TextEdit{Config::getAsString(option), selPred.test(isInt)}; editing = true; mouse_mappings.clear(); } else if (is_in(key, "escape", "q", "o", "backspace")) { return Closed; } else if (is_in(key, "down", "mouse_scroll_down") or (vim_keys and key == "j")) { if (++selected > select_max or selected >= item_height) { if (page < pages - 1) page++; else if (pages > 1) page = 0; selected = 0; } } else if (is_in(key, "up", "mouse_scroll_up") or (vim_keys and key == "k")) { if (--selected < 0) { if (page > 0) page--; else if (pages > 1) page = pages - 1; selected = item_height - 1; } } else if (pages > 1 and key == "page_down") { if (++page >= pages) page = 0; selected = 0; last_sel = -1; } else if (pages > 1 and key == "page_up") { if (--page < 0) page = pages - 1; selected = 0; last_sel = -1; } else if (key == "tab") { if (++selected_cat >= (int)categories.size()) selected_cat = 0; page = selected = 0; } else if (key == "shift_tab") { if (--selected_cat < 0) selected_cat = (int)categories.size() - 1; page = selected = 0; } #ifdef GPU_SUPPORT else if (is_in(key, "1", "2", "3", "4", "5", "6") or key.starts_with("select_cat_")) { #else else if (is_in(key, "1", "2", "3", "4", "5") or key.starts_with("select_cat_")) { #endif selected_cat = key.back() - '0' - 1; page = selected = 0; } else if (is_in(key, "left", "right") or (vim_keys and is_in(key, "h", "l"))) { const auto& option = categories[selected_cat][item_height * page + selected][0]; if (selPred.test(isInt)) { const int mod = (option == "update_ms" ? 100 : 1); long value = Config::getI(option); if (key == "right" or (vim_keys and key == "l")) value += mod; else value -= mod; if (Config::intValid(option, to_string(value))) Config::set(option, static_cast(value)); else { warnings = Config::validError; } } else if (selPred.test(isBool)) { Config::flip(option); screen_redraw = true; if (option == "truecolor") { theme_refresh = true; Config::flip("lowcolor"); } else if (option == "force_tty") { theme_refresh = true; Config::flip("tty_mode"); } else if (is_in(option, "rounded_corners", "theme_background")) theme_refresh = true; else if (option == "background_update") { Runner::pause_output = false; } else if (option == "base_10_sizes") { recollect = true; } } else if (selPred.test(isBrowsable)) { auto& optList = optionsList.at(option).get(); int i = v_index(optList, Config::getS(option)); if ((key == "right" or (vim_keys and key == "l")) and ++i >= (int)optList.size()) i = 0; else if ((key == "left" or (vim_keys and key == "h")) and --i < 0) i = optList.size() - 1; Config::set(option, optList.at(i)); if (option == "color_theme") theme_refresh = true; else if (option == "log_level") { Logger::set(optList.at(i)); Logger::info("Logger set to " + optList.at(i)); } else if (option == "base_10_bitrate") { recollect = true; } else if (is_in(option, "proc_sorting", "cpu_sensor", "show_gpu_info") or option.starts_with("graph_symbol") or option.starts_with("cpu_graph_")) screen_redraw = true; } else retval = NoChange; } else { retval = NoChange; } //? Draw the menu if (retval == Changed) { Config::unlock(); auto& out = Global::overlay; out = bg; item_height = min((int)categories[selected_cat].size(), (int)floor((double)(height - 4) / 2)); pages = ceil((double)categories[selected_cat].size() / item_height); if (page > pages - 1) page = pages - 1; select_max = min(item_height - 1, (int)categories[selected_cat].size() - 1 - item_height * page); if (selected > select_max) { selected = select_max; } //? Get variable properties for currently selected option if (selPred.none() or last_sel != (selected_cat << 8) + selected) { selPred.reset(); last_sel = (selected_cat << 8) + selected; const auto& selOption = categories[selected_cat][item_height * page + selected][0]; if (Config::ints.contains(selOption)) selPred.set(isInt); else if (Config::bools.contains(selOption)) selPred.set(isBool); else selPred.set(isString); if (not selPred.test(isString)) selPred.set(is2D); else if (optionsList.contains(selOption)) { selPred.set(isBrowsable); } if (not selPred.test(isBrowsable) and (selPred.test(isString) or selPred.test(isInt))) selPred.set(isEditable); } //? Category buttons out += Mv::to(y+7, x+4); #ifdef GPU_SUPPORT for (int i = 0; const auto& m : {"general", "cpu", "gpu", "mem", "net", "proc"}) { #else for (int i = 0; const auto& m : {"general", "cpu", "mem", "net", "proc"}) { #endif out += Fx::b + (i == selected_cat ? Theme::c("hi_fg") + '[' + Theme::c("title") + m + Theme::c("hi_fg") + ']' : Theme::c("hi_fg") + to_string(i + 1) + Theme::c("title") + m + ' ') #ifdef GPU_SUPPORT + Mv::r(7); #else + Mv::r(10); #endif if (string button_name = "select_cat_" + to_string(i + 1); not editing and not mouse_mappings.contains(button_name)) mouse_mappings[button_name] = {y+6, x+2 + 15*i, 3, 15}; i++; } if (pages > 1) { out += Mv::to(y+6 + height - 1, x+2) + Theme::c("hi_fg") + Symbols::title_left_down + Fx::b + Symbols::up + Theme::c("title") + " page " + to_string(page+1) + '/' + to_string(pages) + ' ' + Theme::c("hi_fg") + Symbols::down + Fx::ub + Symbols::title_right_down; } //? Option name and value auto cy = y+9; for (int c = 0, i = max(0, item_height * page); c++ < item_height and i < (int)categories[selected_cat].size(); i++) { const auto& option = categories[selected_cat][i][0]; const auto& value = (option == "color_theme" ? fs::path(Config::getS("color_theme")).stem().string() : Config::getAsString(option)); out += Mv::to(cy++, x + 1) + (c-1 == selected ? Theme::c("selected_bg") + Theme::c("selected_fg") : Theme::c("title")) + Fx::b + cjust(capitalize(s_replace(option, "_", " ")) + (c-1 == selected and selPred.test(isBrowsable) ? ' ' + to_string(v_index(optionsList.at(option).get(), (option == "color_theme" ? Config::getS("color_theme") : value)) + 1) + '/' + to_string(optionsList.at(option).get().size()) : ""), 29); out += Mv::to(cy++, x + 1) + (c-1 == selected ? "" : Theme::c("main_fg")) + Fx::ub + " " + (c-1 == selected and editing ? cjust(editor(24), 34, true) : cjust(value, 25, true)) + " "; if (c-1 == selected) { if (not editing and (selPred.test(is2D) or selPred.test(isBrowsable))) { out += Fx::b + Mv::to(cy-1, x+2) + Symbols::left + Mv::to(cy-1, x+28) + Symbols::right; mouse_mappings["left"] = {cy-2, x, 2, 5}; mouse_mappings["right"] = {cy-2, x+25, 2, 5}; } if (selPred.test(isEditable)) { out += Fx::b + Mv::to(cy-1, x+28 - (not editing and selPred.test(isInt) ? 2 : 0)) + (tty_mode ? "E" : Symbols::enter); } //? Description of selected option out += Fx::reset + Theme::c("title") + Fx::b; for (int cyy = y+7; const auto& desc : categories[selected_cat][i]) { if (cyy++ == y+7) continue; else if (cyy == y+10) out += Theme::c("main_fg") + Fx::ub; else if (cyy > y + height + 4) break; out += Mv::to(cyy, x+32) + desc; } } } if (not warnings.empty()) { messageBox = msgBox{min(78, (int)ulen(warnings) + 10), msgBox::BoxTypes::OK, {uresize(warnings, 74)}, "warning"}; out += messageBox(); } out += Fx::reset; } if (theme_refresh) { Theme::setTheme(); Draw::banner_gen(0, 0, false, true); screen_redraw = true; redraw = true; optionsMenu(""); } if (screen_redraw) { auto overlay_bkp = std::move(Global::overlay); auto clock_bkp = std::move(Global::clock); Draw::calcSizes(); Global::overlay = std::move(overlay_bkp); Global::clock = std::move(clock_bkp); recollect = true; } if (recollect) { Runner::run("all", false, true); retval = NoChange; } return (redraw ? Changed : retval); } static int helpMenu(const string& key) { static int y{}; static int x{}; static int height{}; static int page{}; static int pages{}; if (bg.empty()) page = 0; int retval = Changed; if (redraw) { y = max(1, Term::height/2 - 4 - (int)(help_text.size() / 2)); x = Term::width/2 - 39; height = min(Term::height - 6, (int)help_text.size() + 3); pages = ceil((double)help_text.size() / (height - 3)); page = 0; bg = Draw::banner_gen(y, 0, true); bg += Draw::createBox(x, y + 6, 78, height, Theme::c("hi_fg"), true, "help"); } else if (is_in(key, "escape", "q", "h", "backspace", "space", "enter", "mouse_click")) { return Closed; } else if (pages > 1 and is_in(key, "down", "j", "page_down", "tab", "mouse_scroll_down")) { if (++page >= pages) page = 0; } else if (pages > 1 and is_in(key, "up", "k", "page_up", "shift_tab", "mouse_scroll_up")) { if (--page < 0) page = pages - 1; } else { retval = NoChange; } if (retval == Changed) { auto& out = Global::overlay; out = bg; if (pages > 1) { out += Mv::to(y+height+6, x + 2) + Theme::c("hi_fg") + Symbols::title_left_down + Fx::b + Symbols::up + Theme::c("title") + " page " + to_string(page+1) + '/' + to_string(pages) + ' ' + Theme::c("hi_fg") + Symbols::down + Fx::ub + Symbols::title_right_down; } auto cy = y+7; out += Mv::to(cy++, x + 1) + Theme::c("title") + Fx::b + cjust("Key:", 20) + "Description:"; for (int c = 0, i = max(0, (height - 3) * page); c++ < height - 3 and i < (int)help_text.size(); i++) { out += Mv::to(cy++, x + 1) + Theme::c("hi_fg") + Fx::b + cjust(help_text[i][0], 20) + Theme::c("main_fg") + Fx::ub + help_text[i][1]; } out += Fx::reset; } return (redraw ? Changed : retval); } //* Add menus here and update enum Menus in header const auto menuFunc = vector{ ref(sizeError), ref(signalChoose), ref(signalSend), ref(signalReturn), ref(optionsMenu), ref(helpMenu), ref(mainMenu), }; bitset<8> menuMask; void process(const std::string_view key) { if (menuMask.none()) { Menu::active = false; Global::overlay.clear(); Global::overlay.shrink_to_fit(); Runner::pause_output = false; bg.clear(); bg.shrink_to_fit(); currentMenu = -1; Runner::run("all", true, true); mouse_mappings.clear(); return; } if (currentMenu < 0 or not menuMask.test(currentMenu)) { Menu::active = true; redraw = true; if (((menuMask.test(Main) or menuMask.test(Options) or menuMask.test(Help) or menuMask.test(SignalChoose)) and (Term::width < 80 or Term::height < 24)) or (Term::width < 50 or Term::height < 20)) { menuMask.reset(); menuMask.set(SizeError); } for (const auto& i : iota(0, (int)menuMask.size())) { if (menuMask.test(i)) currentMenu = i; } } auto retCode = menuFunc.at(currentMenu)(key.data()); if (retCode == Closed) { menuMask.reset(currentMenu); mouse_mappings.clear(); bg.clear(); Runner::pause_output = false; process(); } else if (redraw) { redraw = false; Runner::run("all", true, true); } else if (retCode == Changed) Runner::run("overlay"); else if (retCode == Switch) { Runner::pause_output = false; bg.clear(); redraw = true; mouse_mappings.clear(); process(); } } void show(int menu, int signal) { menuMask.set(menu); signalToSend = signal; process(); } } btop-1.4.5/src/btop_menu.hpp000066400000000000000000000044071506333644200157700ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include #include "btop_input.hpp" using std::atomic; using std::bitset; using std::string; using std::vector; namespace Menu { extern atomic active; extern string output; extern int signalToSend; extern bool redraw; //? line, col, height, width extern std::unordered_map mouse_mappings; //* Creates a message box centered on screen //? Height of box is determined by size of content vector //? Boxtypes: 0 = OK button | 1 = YES and NO with YES selected | 2 = Same as 1 but with NO selected //? Strings in content vector is not checked for box width overflow class msgBox { string box_contents, button_left, button_right; int height{}; int width{}; int boxtype{}; int selected{}; int x{}; int y{}; public: enum BoxTypes { OK, YES_NO, NO_YES }; enum msgReturn { Invalid, Ok_Yes, No_Esc, Select }; msgBox(); msgBox(int width, int boxtype, const vector& content, std::string_view title); //? Draw and return box as a string string operator()(); //? Process input and returns value from enum Ret int input(const string& key); //? Clears content vector and private strings void clear(); }; extern bitset<8> menuMask; //* Enum for functions in vector menuFuncs enum Menus { SizeError, SignalChoose, SignalSend, SignalReturn, Options, Help, Main }; //* Handles redirection of input for menu functions and handles return codes void process(const std::string_view key = ""); //* Show a menu from enum Menu::Menus void show(int menu, int signal=-1); } btop-1.4.5/src/btop_shared.cpp000066400000000000000000000233001506333644200162560ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include "btop_config.hpp" #include "btop_shared.hpp" #include "btop_tools.hpp" namespace rng = std::ranges; using namespace Tools; namespace Cpu { string trim_name(string name) { auto name_vec = ssplit(name); if ((s_contains(name, "Xeon"s) or v_contains(name_vec, "Duo"s)) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')')) name = name_vec.at(cpu_pos + 1); else name.clear(); } else if (v_contains(name_vec, "Ryzen"s)) { auto ryz_pos = v_index(name_vec, "Ryzen"s); name = "Ryzen"; int tokens = 0; for (auto i = ryz_pos + 1; i < name_vec.size() && tokens < 2; i++) { const std::string& p = name_vec.at(i); if (p != "AI" && p != "PRO") tokens++; name += " " + p; } } else if (s_contains(name, "Intel"s) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')') and name_vec.at(cpu_pos + 1) != "@") name = name_vec.at(cpu_pos + 1); else name.clear(); } else name.clear(); if (name.empty() and not name_vec.empty()) { for (const auto &n : name_vec) { if (n == "@") break; name += n + ' '; } name.pop_back(); for (const auto& replace : {"Processor", "CPU", "(R)", "(TM)", "Intel", "AMD", "Apple", "Core"}) { name = s_replace(name, replace, ""); name = s_replace(name, " ", " "); } name = trim(name); } return name; } } #ifdef GPU_SUPPORT namespace Gpu { vector gpu_names; vector gpu_b_height_offsets; std::unordered_map> shared_gpu_percent = { {"gpu-average", {}}, {"gpu-vram-total", {}}, {"gpu-pwr-total", {}}, }; long long gpu_pwr_total_max = 0; } #endif namespace Proc { void proc_sorter(vector& proc_vec, const string& sorting, bool reverse, bool tree) { if (reverse) { switch (v_index(sort_vector, sorting)) { case 0: rng::stable_sort(proc_vec, rng::less{}, &proc_info::pid); break; case 1: rng::stable_sort(proc_vec, rng::less{}, &proc_info::name); break; case 2: rng::stable_sort(proc_vec, rng::less{}, &proc_info::cmd); break; case 3: rng::stable_sort(proc_vec, rng::less{}, &proc_info::threads); break; case 4: rng::stable_sort(proc_vec, rng::less{}, &proc_info::user); break; case 5: rng::stable_sort(proc_vec, rng::less{}, &proc_info::mem); break; case 6: rng::stable_sort(proc_vec, rng::less{}, &proc_info::cpu_p); break; case 7: rng::stable_sort(proc_vec, rng::less{}, &proc_info::cpu_c); break; } } else { switch (v_index(sort_vector, sorting)) { case 0: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::pid); break; case 1: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::name); break; case 2: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::cmd); break; case 3: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::threads); break; case 4: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::user); break; case 5: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::mem); break; case 6: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::cpu_p); break; case 7: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::cpu_c); break; } } //* When sorting with "cpu lazy" push processes over threshold cpu usage to the front regardless of cumulative usage if (not tree and not reverse and sorting == "cpu lazy") { double max = 10.0, target = 30.0; for (size_t i = 0, x = 0, offset = 0; i < proc_vec.size(); i++) { if (i <= 5 and proc_vec.at(i).cpu_p > max) max = proc_vec.at(i).cpu_p; else if (i == 6) target = (max > 30.0) ? max : 10.0; if (i == offset and proc_vec.at(i).cpu_p > 30.0) offset++; else if (proc_vec.at(i).cpu_p > target) { rotate(proc_vec.begin() + offset, proc_vec.begin() + i, proc_vec.begin() + i + 1); if (++x > 10) break; } } } } void tree_sort(vector& proc_vec, const string& sorting, bool reverse, int& c_index, const int index_max, bool collapsed) { if (proc_vec.size() > 1) { if (reverse) { switch (v_index(sort_vector, sorting)) { case 3: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().threads < b.entry.get().threads; }); break; case 5: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().mem < b.entry.get().mem; }); break; case 6: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().cpu_p < b.entry.get().cpu_p; }); break; case 7: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().cpu_c < b.entry.get().cpu_c; }); break; } } else { switch (v_index(sort_vector, sorting)) { case 3: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().threads > b.entry.get().threads; }); break; case 5: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().mem > b.entry.get().mem; }); break; case 6: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().cpu_p > b.entry.get().cpu_p; }); break; case 7: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().cpu_c > b.entry.get().cpu_c; }); break; } } } for (auto& r : proc_vec) { r.entry.get().tree_index = (collapsed or r.entry.get().filtered ? index_max : c_index++); if (not r.children.empty()) { tree_sort(r.children, sorting, reverse, c_index, (collapsed or r.entry.get().collapsed or r.entry.get().tree_index == (size_t)index_max)); } } } auto matches_filter(const proc_info& proc, const std::string& filter) -> bool { if (filter.starts_with("!")) { if (filter.size() == 1) { return true; } // An incomplete regex throws, see issue https://github.com/aristocratos/btop/issues/1133 try { std::regex regex { filter.substr(1), std::regex::extended }; return std::regex_search(std::to_string(proc.pid), regex) || std::regex_search(proc.name, regex) || std::regex_match(proc.cmd, regex) || std::regex_search(proc.user, regex); } catch (std::regex_error& /* unused */) { return false; } } return s_contains(std::to_string(proc.pid), filter) || s_contains_ic(proc.name, filter) || s_contains_ic(proc.cmd, filter) || s_contains_ic(proc.user, filter); } void _tree_gen(proc_info& cur_proc, vector& in_procs, vector& out_procs, int cur_depth, bool collapsed, const string& filter, bool found, bool no_update, bool should_filter) { bool filtering = false; //? If filtering, include children of matching processes if (not found and (should_filter or not filter.empty())) { if (!matches_filter(cur_proc, filter)) { filtering = true; cur_proc.filtered = true; filter_found++; } else { found = true; cur_depth = 0; } } else if (cur_proc.filtered) cur_proc.filtered = false; cur_proc.depth = cur_depth; //? Set tree index position for process if not filtered out or currently in a collapsed sub-tree out_procs.push_back({ cur_proc, {} }); if (not collapsed and not filtering) { cur_proc.tree_index = out_procs.size() - 1; //? Try to find name of the binary file and append to program name if not the same if (cur_proc.short_cmd.empty() and not cur_proc.cmd.empty()) { std::string_view cmd_view = cur_proc.cmd; cmd_view = cmd_view.substr((size_t)0, std::min(cmd_view.find(' '), cmd_view.size())); cmd_view = cmd_view.substr(std::min(cmd_view.find_last_of('/') + 1, cmd_view.size())); cur_proc.short_cmd = string{cmd_view}; } } else { cur_proc.tree_index = in_procs.size(); } //? Recursive iteration over all children for (auto& p : rng::equal_range(in_procs, cur_proc.pid, rng::less{}, &proc_info::ppid)) { if (collapsed and not filtering) { cur_proc.filtered = true; } _tree_gen(p, in_procs, out_procs.back().children, cur_depth + 1, (collapsed or cur_proc.collapsed), filter, found, no_update, should_filter); if (not no_update and not filtering and (collapsed or cur_proc.collapsed)) { //auto& parent = cur_proc; cur_proc.cpu_p += p.cpu_p; cur_proc.cpu_c += p.cpu_c; cur_proc.mem += p.mem; cur_proc.threads += p.threads; filter_found++; p.filtered = true; } else if (Config::getB("proc_aggregate")) { cur_proc.cpu_p += p.cpu_p; cur_proc.cpu_c += p.cpu_c; cur_proc.mem += p.mem; cur_proc.threads += p.threads; } } } void _collect_prefixes(tree_proc &t, const bool is_last, const string &header) { const bool is_filtered = t.entry.get().filtered; if (is_filtered) t.entry.get().depth = 0; if (!t.children.empty()) t.entry.get().prefix = header + (t.entry.get().collapsed ? "[+]─": "[-]─"); else t.entry.get().prefix = header + (is_last ? " └─": " ├─"); for (auto child = t.children.begin(); child != t.children.end(); ++child) { _collect_prefixes(*child, child == (t.children.end() - 1), is_filtered ? "": header + (is_last ? " ": " │ ")); } } } btop-1.4.5/src/btop_shared.hpp000066400000000000000000000302761506333644200162750ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include #include #include #include #include #include // From `man 3 getifaddrs`: must be included before // clang-format off #include #include // clang-format on #if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) # include #endif using std::array; using std::atomic; using std::deque; using std::string; using std::tuple; using std::vector; using namespace std::literals; // for operator""s void term_resize(bool force=false); void banner_gen(); extern void clean_quit(int sig); namespace Global { extern const vector> Banner_src; extern const string Version; extern atomic quitting; extern string exit_error_msg; extern atomic thread_exception; extern string banner; extern atomic resized; extern string overlay; extern string clock; extern uid_t real_uid, set_uid; extern atomic init_conf; } namespace Runner { extern atomic active; extern atomic reading; extern atomic stopping; extern atomic redraw; extern atomic coreNum_reset; extern pthread_t runner_id; extern bool pause_output; extern string debug_bg; void run(const string& box="", bool no_update = false, bool force_redraw = false); void stop(); } namespace Tools { //* Platform specific function for system_uptime (seconds since last restart) double system_uptime(); } namespace Shared { //* Initialize platform specific needed variables and check for errors void init(); extern long coreCount, page_size, clk_tck; #if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) struct KvmDeleter { void operator()(kvm_t* handle) { kvm_close(handle); } }; using KvmPtr = std::unique_ptr; #endif } namespace Gpu { #ifdef GPU_SUPPORT extern vector box; extern int width, height, min_width, min_height; extern vector x_vec, y_vec; extern vector redraw; extern int shown; extern int count; extern vector shown_panels; extern vector gpu_names; extern vector gpu_b_height_offsets; extern long long gpu_pwr_total_max; extern std::unordered_map> shared_gpu_percent; // averages, power/vram total const array mem_names { "used"s, "free"s }; //* Container for process information // TODO /*struct proc_info { unsigned int pid; unsigned long long mem; };*/ //* Container for supported Gpu::*::collect() functions struct gpu_info_supported { bool gpu_utilization = true, mem_utilization = true, gpu_clock = true, mem_clock = true, pwr_usage = true, pwr_state = true, temp_info = true, mem_total = true, mem_used = true, pcie_txrx = true, encoder_utilization = true, decoder_utilization = true; }; //* Per-device container for GPU info struct gpu_info { std::unordered_map> gpu_percent = { {"gpu-totals", {}}, {"gpu-vram-totals", {}}, {"gpu-pwr-totals", {}}, }; unsigned int gpu_clock_speed; // MHz long long pwr_usage; // mW long long pwr_max_usage = 255000; long long pwr_state; deque temp = {0}; long long temp_max = 110; long long mem_total = 0; long long mem_used = 0; deque mem_utilization_percent = {0}; // TODO: properly handle GPUs that can't report some stats long long mem_clock_speed = 0; // MHz long long pcie_tx = 0; // KB/s long long pcie_rx = 0; long long encoder_utilization = 0; long long decoder_utilization = 0; gpu_info_supported supported_functions; // vector graphics_processes = {}; // TODO // vector compute_processes = {}; }; namespace Nvml { extern bool shutdown(); } namespace Rsmi { extern bool shutdown(); } //* Collect gpu stats and temperatures auto collect(bool no_update = false) -> vector&; //* Draw contents of gpu box using as source string draw(const gpu_info& gpu, unsigned long index, bool force_redraw, bool data_same); #else struct gpu_info { bool supported = false; }; #endif } namespace Cpu { extern string box; extern int x, y, width, height, min_width, min_height; extern bool shown, redraw, got_sensors, cpu_temp_only, has_battery, supports_watts; extern string cpuName, cpuHz; extern vector available_fields; extern vector available_sensors; extern tuple current_bat; struct cpu_info { std::unordered_map> cpu_percent = { {"total", {}}, {"user", {}}, {"nice", {}}, {"system", {}}, {"idle", {}}, {"iowait", {}}, {"irq", {}}, {"softirq", {}}, {"steal", {}}, {"guest", {}}, {"guest_nice", {}} }; vector> core_percent; vector> temp; long long temp_max = 0; array load_avg; float usage_watts = 0; }; //* Collect cpu stats and temperatures auto collect(bool no_update = false) -> cpu_info&; //* Draw contents of cpu box using as source string draw(const cpu_info& cpu, const vector& gpu, bool force_redraw = false, bool data_same = false); //* Parse /proc/cpu info for mapping of core ids auto get_core_mapping() -> std::unordered_map; extern std::unordered_map core_mapping; auto get_cpuHz() -> string; //* Get battery info from /sys auto get_battery() -> tuple; string trim_name(string); } namespace Mem { extern string box; extern int x, y, width, height, min_width, min_height; extern bool has_swap, shown, redraw; const array mem_names { "used"s, "available"s, "cached"s, "free"s }; const array swap_names { "swap_used"s, "swap_free"s }; extern int disk_ios; struct disk_info { std::filesystem::path dev; string name; string fstype{}; // defaults to "" std::filesystem::path stat{}; // defaults to "" int64_t total{}; int64_t used{}; int64_t free{}; int used_percent{}; int free_percent{}; array old_io = {0, 0, 0}; deque io_read = {}; deque io_write = {}; deque io_activity = {}; }; struct mem_info { std::unordered_map stats = {{"used", 0}, {"available", 0}, {"cached", 0}, {"free", 0}, {"swap_total", 0}, {"swap_used", 0}, {"swap_free", 0}}; std::unordered_map> percent = {{"used", {}}, {"available", {}}, {"cached", {}}, {"free", {}}, {"swap_total", {}}, {"swap_used", {}}, {"swap_free", {}}}; std::unordered_map disks; vector disks_order; }; //?* Get total system memory uint64_t get_totalMem(); //* Collect mem & disks stats auto collect(bool no_update = false) -> mem_info&; //* Draw contents of mem box using as source string draw(const mem_info& mem, bool force_redraw = false, bool data_same = false); } namespace Net { extern string box; extern int x, y, width, height, min_width, min_height; extern bool shown, redraw; extern string selected_iface; extern vector interfaces; extern bool rescale; extern std::unordered_map graph_max; struct net_stat { uint64_t speed{}; uint64_t top{}; uint64_t total{}; uint64_t last{}; uint64_t offset{}; uint64_t rollover{}; }; struct net_info { std::unordered_map> bandwidth = { {"download", {}}, {"upload", {}} }; std::unordered_map stat = { {"download", {}}, {"upload", {}} }; string ipv4{}; // defaults to "" string ipv6{}; // defaults to "" bool connected{}; }; class IfAddrsPtr { struct ifaddrs* ifaddr; int status; public: IfAddrsPtr() { status = getifaddrs(&ifaddr); } ~IfAddrsPtr() noexcept { freeifaddrs(ifaddr); } IfAddrsPtr(const IfAddrsPtr &) = delete; IfAddrsPtr& operator=(IfAddrsPtr& other) = delete; IfAddrsPtr(IfAddrsPtr &&) = delete; IfAddrsPtr& operator=(IfAddrsPtr&& other) = delete; [[nodiscard]] constexpr auto operator()() -> struct ifaddrs* { return ifaddr; } [[nodiscard]] constexpr auto get() -> struct ifaddrs* { return ifaddr; } [[nodiscard]] constexpr auto get_status() const noexcept -> int { return status; }; }; extern std::unordered_map current_net; //* Collect net upload/download stats auto collect(bool no_update=false) -> net_info&; //* Draw contents of net box using as source string draw(const net_info& net, bool force_redraw = false, bool data_same = false); } namespace Proc { extern atomic numpids; extern string box; extern int x, y, width, height, min_width, min_height; extern bool shown, redraw; extern int select_max; extern atomic detailed_pid; extern int selected_pid, start, selected, collapse, expand, filter_found, selected_depth; extern string selected_name; //? Contains the valid sorting options for processes const vector sort_vector = { "pid", "name", "command", "threads", "user", "memory", "cpu direct", "cpu lazy", }; //? Translation from process state char to explanative string const std::unordered_map proc_states = { {'R', "Running"}, {'S', "Sleeping"}, {'D', "Waiting"}, {'Z', "Zombie"}, {'T', "Stopped"}, {'t', "Tracing"}, {'X', "Dead"}, {'x', "Dead"}, {'K', "Wakekill"}, {'W', "Unknown"}, {'P', "Parked"} }; //* Container for process information struct proc_info { size_t pid{}; string name{}; // defaults to "" string cmd{}; // defaults to "" string short_cmd{}; // defaults to "" size_t threads{}; int name_offset{}; string user{}; // defaults to "" uint64_t mem{}; double cpu_p{}; // defaults to = 0.0 double cpu_c{}; // defaults to = 0.0 char state = '0'; int64_t p_nice{}; uint64_t ppid{}; uint64_t cpu_s{}; uint64_t cpu_t{}; string prefix{}; // defaults to "" size_t depth{}; size_t tree_index{}; bool collapsed{}; bool filtered{}; }; //* Container for process info box struct detail_container { size_t last_pid{}; bool skip_smaps{}; proc_info entry; string elapsed, parent, status, io_read, io_write, memory; long long first_mem = -1; deque cpu_percent; deque mem_bytes; }; //? Contains all info for proc detailed box extern detail_container detailed; //* Collect and sort process information from /proc auto collect(bool no_update = false) -> vector&; //* Update current selection and view, returns -1 if no change otherwise the current selection int selection(const std::string_view cmd_key); //* Draw contents of proc box using as data source string draw(const vector& plist, bool force_redraw = false, bool data_same = false); struct tree_proc { std::reference_wrapper entry; vector children; }; //* Sort vector of proc_info's void proc_sorter(vector& proc_vec, const string& sorting, bool reverse, bool tree = false); //* Recursive sort of process tree void tree_sort(vector& proc_vec, const string& sorting, bool reverse, int& c_index, const int index_max, bool collapsed = false); auto matches_filter(const proc_info& proc, const std::string& filter) -> bool; //* Generate process tree list void _tree_gen(proc_info& cur_proc, vector& in_procs, vector& out_procs, int cur_depth, bool collapsed, const string& filter, bool found = false, bool no_update = false, bool should_filter = false); //* Build prefixes for tree view void _collect_prefixes(tree_proc& t, bool is_last, const string &header = ""); } btop-1.4.5/src/btop_theme.cpp000066400000000000000000000336171506333644200161260ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include "btop_tools.hpp" #include "btop_config.hpp" #include "btop_theme.hpp" using std::round; using std::stoi; using std::to_string; using std::vector; using std::views::iota; using namespace Tools; namespace fs = std::filesystem; string Term::fg, Term::bg; string Fx::reset = reset_base; namespace Theme { fs::path theme_dir; fs::path user_theme_dir; vector themes; std::unordered_map colors; std::unordered_map> rgbs; std::unordered_map> gradients; const std::unordered_map Default_theme = { { "main_bg", "#00" }, { "main_fg", "#cc" }, { "title", "#ee" }, { "hi_fg", "#b54040" }, { "selected_bg", "#6a2f2f" }, { "selected_fg", "#ee" }, { "inactive_fg", "#40" }, { "graph_text", "#60" }, { "meter_bg", "#40" }, { "proc_misc", "#0de756" }, { "cpu_box", "#556d59" }, { "mem_box", "#6c6c4b" }, { "net_box", "#5c588d" }, { "proc_box", "#805252" }, { "div_line", "#30" }, { "temp_start", "#4897d4" }, { "temp_mid", "#5474e8" }, { "temp_end", "#ff40b6" }, { "cpu_start", "#77ca9b" }, { "cpu_mid", "#cbc06c" }, { "cpu_end", "#dc4c4c" }, { "free_start", "#384f21" }, { "free_mid", "#b5e685" }, { "free_end", "#dcff85" }, { "cached_start", "#163350" }, { "cached_mid", "#74e6fc" }, { "cached_end", "#26c5ff" }, { "available_start", "#4e3f0e" }, { "available_mid", "#ffd77a" }, { "available_end", "#ffb814" }, { "used_start", "#592b26" }, { "used_mid", "#d9626d" }, { "used_end", "#ff4769" }, { "download_start", "#291f75" }, { "download_mid", "#4f43a3" }, { "download_end", "#b0a9de" }, { "upload_start", "#620665" }, { "upload_mid", "#7d4180" }, { "upload_end", "#dcafde" }, { "process_start", "#80d0a3" }, { "process_mid", "#dcd179" }, { "process_end", "#d45454" } }; const std::unordered_map TTY_theme = { { "main_bg", "\x1b[0;40m" }, { "main_fg", "\x1b[37m" }, { "title", "\x1b[97m" }, { "hi_fg", "\x1b[91m" }, { "selected_bg", "\x1b[41m" }, { "selected_fg", "\x1b[97m" }, { "inactive_fg", "\x1b[90m" }, { "graph_text", "\x1b[90m" }, { "meter_bg", "\x1b[90m" }, { "proc_misc", "\x1b[92m" }, { "cpu_box", "\x1b[32m" }, { "mem_box", "\x1b[33m" }, { "net_box", "\x1b[35m" }, { "proc_box", "\x1b[31m" }, { "div_line", "\x1b[90m" }, { "temp_start", "\x1b[94m" }, { "temp_mid", "\x1b[96m" }, { "temp_end", "\x1b[95m" }, { "cpu_start", "\x1b[92m" }, { "cpu_mid", "\x1b[93m" }, { "cpu_end", "\x1b[91m" }, { "free_start", "\x1b[32m" }, { "free_mid", "" }, { "free_end", "\x1b[92m" }, { "cached_start", "\x1b[36m" }, { "cached_mid", "" }, { "cached_end", "\x1b[96m" }, { "available_start", "\x1b[33m" }, { "available_mid", "" }, { "available_end", "\x1b[93m" }, { "used_start", "\x1b[31m" }, { "used_mid", "" }, { "used_end", "\x1b[91m" }, { "download_start", "\x1b[34m" }, { "download_mid", "" }, { "download_end", "\x1b[94m" }, { "upload_start", "\x1b[35m" }, { "upload_mid", "" }, { "upload_end", "\x1b[95m" }, { "process_start", "\x1b[32m" }, { "process_mid", "\x1b[33m" }, { "process_end", "\x1b[31m" } }; namespace { //* Convert 24-bit colors to 256 colors int truecolor_to_256(const int& r, const int& g, const int& b) { //? Use upper 232-255 greyscale values if the downscaled red, green and blue are the same value if (const int red = round((double)r / 11); red == round((double)g / 11) and red == round((double)b / 11)) { return 232 + red; } //? Else use 6x6x6 color cube to calculate approximate colors else { return round((double)r / 51) * 36 + round((double)g / 51) * 6 + round((double)b / 51) + 16; } } } string hex_to_color(string hexa, bool t_to_256, const string& depth) { if (hexa.size() > 1) { hexa.erase(0, 1); for (auto& c : hexa) { if (not isxdigit(c)) { Logger::error("Invalid hex value: " + hexa); return ""; } } string pre = Fx::e + (depth == "fg" ? "38" : "48") + ";" + (t_to_256 ? "5;" : "2;"); if (hexa.size() == 2) { int h_int = stoi(hexa, nullptr, 16); if (t_to_256) { return pre + to_string(truecolor_to_256(h_int, h_int, h_int)) + "m"; } else { string h_str = to_string(h_int); return pre + h_str + ";" + h_str + ";" + h_str + "m"; } } else if (hexa.size() == 6) { if (t_to_256) { return pre + to_string(truecolor_to_256( stoi(hexa.substr(0, 2), nullptr, 16), stoi(hexa.substr(2, 2), nullptr, 16), stoi(hexa.substr(4, 2), nullptr, 16))) + "m"; } else { return pre + to_string(stoi(hexa.substr(0, 2), nullptr, 16)) + ";" + to_string(stoi(hexa.substr(2, 2), nullptr, 16)) + ";" + to_string(stoi(hexa.substr(4, 2), nullptr, 16)) + "m"; } } else Logger::error("Invalid size of hex value: " + hexa); } else Logger::error("Hex value missing: " + hexa); return ""; } string dec_to_color(int r, int g, int b, bool t_to_256, const string& depth) { string pre = Fx::e + (depth == "fg" ? "38" : "48") + ";" + (t_to_256 ? "5;" : "2;"); r = std::clamp(r, 0, 255); g = std::clamp(g, 0, 255); b = std::clamp(b, 0, 255); if (t_to_256) return pre + to_string(truecolor_to_256(r, g, b)) + "m"; else return pre + to_string(r) + ";" + to_string(g) + ";" + to_string(b) + "m"; } namespace { //* Convert hex color to a array of decimals array hex_to_dec(string hexa) { if (hexa.size() > 1) { hexa.erase(0, 1); for (auto& c : hexa) { if (not isxdigit(c)) return array{-1, -1, -1}; } if (hexa.size() == 2) { int h_int = stoi(hexa, nullptr, 16); return array{h_int, h_int, h_int}; } else if (hexa.size() == 6) { return array{ stoi(hexa.substr(0, 2), nullptr, 16), stoi(hexa.substr(2, 2), nullptr, 16), stoi(hexa.substr(4, 2), nullptr, 16) }; } } return {-1 ,-1 ,-1}; } //* Generate colors and rgb decimal vectors for the theme void generateColors(const std::unordered_map& source) { vector t_rgb; string depth; bool t_to_256 = Config::getB("lowcolor"); colors.clear(); rgbs.clear(); for (const auto& [name, color] : Default_theme) { if (name == "main_bg" and not Config::getB("theme_background")) { colors[name] = "\x1b[49m"; rgbs[name] = {-1, -1, -1}; continue; } depth = (name.ends_with("bg") and name != "meter_bg") ? "bg" : "fg"; if (source.contains(name)) { if (name == "main_bg" and source.at(name).empty()) { colors[name] = "\x1b[49m"; rgbs[name] = {-1, -1, -1}; continue; } else if (source.at(name).empty() and (name.ends_with("_mid") or name.ends_with("_end"))) { colors[name] = ""; rgbs[name] = {-1, -1, -1}; continue; } else if (source.at(name).starts_with('#')) { colors[name] = hex_to_color(source.at(name), t_to_256, depth); rgbs[name] = hex_to_dec(source.at(name)); } else if (not source.at(name).empty()) { t_rgb = ssplit(source.at(name)); if (t_rgb.size() != 3) { Logger::error("Invalid RGB decimal value: \"" + source.at(name) + "\""); } else { colors[name] = dec_to_color(stoi(t_rgb[0]), stoi(t_rgb[1]), stoi(t_rgb[2]), t_to_256, depth); rgbs[name] = array{stoi(t_rgb[0]), stoi(t_rgb[1]), stoi(t_rgb[2])}; } } } if (not colors.contains(name) and not is_in(name, "meter_bg", "process_start", "process_mid", "process_end", "graph_text")) { Logger::debug("Missing color value for \"" + name + "\". Using value from default."); colors[name] = hex_to_color(color, t_to_256, depth); rgbs[name] = hex_to_dec(color); } } //? Set fallback values for optional colors not defined in theme file if (not colors.contains("meter_bg")) { colors["meter_bg"] = colors.at("inactive_fg"); rgbs["meter_bg"] = rgbs.at("inactive_fg"); } if (not colors.contains("process_start")) { colors["process_start"] = colors.at("cpu_start"); colors["process_mid"] = colors.at("cpu_mid"); colors["process_end"] = colors.at("cpu_end"); rgbs["process_start"] = rgbs.at("cpu_start"); rgbs["process_mid"] = rgbs.at("cpu_mid"); rgbs["process_end"] = rgbs.at("cpu_end"); } if (not colors.contains("graph_text")) { colors["graph_text"] = colors.at("inactive_fg"); rgbs["graph_text"] = rgbs.at("inactive_fg"); } } //* Generate color gradients from two or three colors, 101 values indexed 0-100 void generateGradients() { gradients.clear(); bool t_to_256 = Config::getB("lowcolor"); //? Insert values for processes greyscale gradient and processes color gradient rgbs.insert({ { "proc_start", rgbs["main_fg"] }, { "proc_mid", {-1, -1, -1} }, { "proc_end", rgbs["inactive_fg"] }, { "proc_color_start", rgbs["inactive_fg"] }, { "proc_color_mid", {-1, -1, -1} }, { "proc_color_end", rgbs["process_start"] }, }); for (const auto& [name, source_arr] : rgbs) { if (not name.ends_with("_start")) continue; const string color_name { rtrim(name, "_start") }; //? input_colors[start,mid,end][red,green,blue] const array, 3> input_colors = { source_arr, rgbs[color_name + "_mid"], rgbs[color_name + "_end"] }; //? output_colors[red,green,blue][0-100] array, 101> output_colors; output_colors[0][0] = -1; //? Only start iteration if gradient has an end color defined if (input_colors[2][0] >= 0) { //? Split iteration in two passes of 50 + 51 instead of one pass of 101 if gradient has start, mid and end values defined int current_range = (input_colors[1][0] >= 0) ? 50 : 100; for (int rgb : iota(0, 3)) { int start = 0, offset = 0; int end = (current_range == 50) ? 1 : 2; for (int i : iota(0, 101)) { output_colors[i][rgb] = input_colors[start][rgb] + (i - offset) * (input_colors[end][rgb] - input_colors[start][rgb]) / current_range; //? Switch source arrays from start->mid to mid->end at 50 passes if mid is defined if (i == current_range) { ++start; ++end; offset = 50; } } } } //? Generate color escape codes for the generated rgb decimals array color_gradient; if (output_colors[0][0] != -1) { for (int y = 0; const auto& [red, green, blue] : output_colors) color_gradient[y++] = dec_to_color(red, green, blue, t_to_256); } else { //? If only start was defined fill array with start color color_gradient.fill(colors[name]); } gradients[color_name] = std::move(color_gradient); } } //* Set colors and generate gradients for the TTY theme void generateTTYColors() { rgbs.clear(); gradients.clear(); colors = TTY_theme; if (not Config::getB("theme_background")) colors["main_bg"] = "\x1b[49m"; for (const auto& c : colors) { if (not c.first.ends_with("_start")) continue; const string base_name { rtrim(c.first, "_start") }; string section = "_start"; int split = colors.at(base_name + "_mid").empty() ? 50 : 33; for (int i : iota(0, 101)) { gradients[base_name][i] = colors.at(base_name + section); if (i == split) { section = (split == 33) ? "_mid" : "_end"; split *= 2; } } } } //* Load a .theme file from disk auto loadFile(const string& filename) { const fs::path filepath = filename; if (not fs::exists(filepath)) return Default_theme; std::ifstream themefile(filepath); if (themefile.good()) { std::unordered_map theme_out; Logger::debug("Loading theme file: " + filename); while (not themefile.bad()) { if (themefile.peek() == '#') { themefile.ignore(SSmax, '\n'); continue; } themefile.ignore(SSmax, '['); if (themefile.eof()) break; string name, value; getline(themefile, name, ']'); if (not Default_theme.contains(name)) { themefile.ignore(SSmax, '\n'); continue; } themefile.ignore(SSmax, '='); themefile >> std::ws; if (themefile.eof()) break; if (themefile.peek() == '"') { themefile.ignore(1); getline(themefile, value, '"'); themefile.ignore(SSmax, '\n'); } else getline(themefile, value, '\n'); theme_out[name] = value; } return theme_out; } return Default_theme; } } void updateThemes() { themes.clear(); themes.push_back("Default"); themes.push_back("TTY"); for (const auto& path : { user_theme_dir, theme_dir } ) { if (path.empty()) continue; for (auto& file : fs::directory_iterator(path)) { if (file.path().extension() == ".theme" and access(file.path().c_str(), R_OK) != -1 and not v_contains(themes, file.path().c_str())) { themes.push_back(file.path().c_str()); } } } } void setTheme() { const auto& theme = Config::getS("color_theme"); fs::path theme_path; for (const fs::path p : themes) { if (p == theme or p.stem() == theme or p.filename() == theme) { theme_path = p; break; } } if (theme == "TTY" or Config::getB("tty_mode")) generateTTYColors(); else { generateColors((theme == "Default" or theme_path.empty() ? Default_theme : loadFile(theme_path))); generateGradients(); } Term::fg = colors.at("main_fg"); Term::bg = colors.at("main_bg"); Fx::reset = Fx::reset_base + Term::fg + Term::bg; } } btop-1.4.5/src/btop_theme.hpp000066400000000000000000000047331506333644200161300ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include using std::array; using std::string; using std::vector; namespace Theme { extern std::filesystem::path theme_dir; extern std::filesystem::path user_theme_dir; //* Contains "Default" and "TTY" at indices 0 and 1, otherwise full paths to theme files extern vector themes; //* Generate escape sequence for 24-bit or 256 color and return as a string //* Args hexa: ["#000000"-"#ffffff"] for color, ["#00"-"#ff"] for greyscale //* t_to_256: [true|false] convert 24bit value to 256 color value //* depth: ["fg"|"bg"] for either a foreground color or a background color string hex_to_color(string hexa, bool t_to_256=false, const string& depth="fg"); //* Generate escape sequence for 24-bit or 256 color and return as a string //* Args r: [0-255], g: [0-255], b: [0-255] //* t_to_256: [true|false] convert 24bit value to 256 color value //* depth: ["fg"|"bg"] for either a foreground color or a background color string dec_to_color(int r, int g, int b, bool t_to_256=false, const string& depth="fg"); //* Update list of paths for available themes void updateThemes(); //* Set current theme from current "color_theme" value in config void setTheme(); extern std::unordered_map colors; extern std::unordered_map> rgbs; extern std::unordered_map> gradients; //* Return escape code for color inline const string& c(const string& name) { return colors.at(name); } //* Return array of escape codes for color gradient inline const array& g(const string& name) { return gradients.at(name); } //* Return array of red, green and blue in decimal for color inline const std::array& dec(const string& name) { return rgbs.at(name); } } btop-1.4.5/src/btop_tools.cpp000066400000000000000000000456621506333644200161670ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "widechar_width.hpp" #include "btop_shared.hpp" #include "btop_tools.hpp" #include "btop_config.hpp" using std::cout; using std::floor; using std::flush; using std::max; using std::string_view; using std::to_string; using namespace std::literals; // to use operator""s namespace fs = std::filesystem; namespace rng = std::ranges; //? ------------------------------------------------- NAMESPACES ------------------------------------------------------ //* Collection of escape codes and functions for terminal manipulation namespace Term { atomic initialized{}; atomic width{}; atomic height{}; string current_tty; namespace { struct termios initial_settings; //* Toggle terminal input echo bool echo(bool on=true) { struct termios settings; if (tcgetattr(STDIN_FILENO, &settings)) return false; if (on) settings.c_lflag |= ECHO; else settings.c_lflag &= ~(ECHO); return 0 == tcsetattr(STDIN_FILENO, TCSANOW, &settings); } //* Toggle need for return key when reading input bool linebuffered(bool on=true) { struct termios settings; if (tcgetattr(STDIN_FILENO, &settings)) return false; if (on) settings.c_lflag |= ICANON; else { settings.c_lflag &= ~(ICANON); settings.c_cc[VMIN] = 0; settings.c_cc[VTIME] = 0; } if (tcsetattr(STDIN_FILENO, TCSANOW, &settings)) return false; if (on) setlinebuf(stdin); else setbuf(stdin, nullptr); return true; } } bool refresh(bool only_check) { // Query dimensions of '/dev/tty' of the 'STDOUT_FILENO' isn't available. // This variable is set in those cases to avoid calls to ioctl constinit static bool uses_dev_tty = false; struct winsize wsize {}; if (uses_dev_tty || ioctl(STDOUT_FILENO, TIOCGWINSZ, &wsize) < 0 || (wsize.ws_col == 0 && wsize.ws_row == 0)) { Logger::error(R"(Couldn't determine terminal size of "STDOUT_FILENO"!)"); auto dev_tty = open("/dev/tty", O_RDONLY | O_CLOEXEC); if (dev_tty != -1) { ioctl(dev_tty, TIOCGWINSZ, &wsize); close(dev_tty); } else { Logger::error(R"(Couldn't determine terminal size of "/dev/tty"!)"); return false; } uses_dev_tty = true; } if (width != wsize.ws_col or height != wsize.ws_row) { if (not only_check) { width = wsize.ws_col; height = wsize.ws_row; } return true; } return false; } auto get_min_size(const string& boxes) -> array { bool cpu = boxes.find("cpu") != string::npos; bool mem = boxes.find("mem") != string::npos; bool net = boxes.find("net") != string::npos; bool proc = boxes.find("proc") != string::npos; #ifdef GPU_SUPPORT int gpu = 0; if (Gpu::count > 0) for (char i = '0'; i <= '5'; i++) gpu += (Tools::s_contains(boxes, "gpu"s + i) ? 1 : 0); #endif int width = 0; if (mem) width = Mem::min_width; else if (net) width = Mem::min_width; width += (proc ? Proc::min_width : 0); if (cpu and width < Cpu::min_width) width = Cpu::min_width; #ifdef GPU_SUPPORT if (gpu != 0 and width < Gpu::min_width) width = Gpu::min_width; #endif int height = (cpu ? Cpu::min_height : 0); if (proc) height += Proc::min_height; else height += (mem ? Mem::min_height : 0) + (net ? Net::min_height : 0); #ifdef GPU_SUPPORT height += Gpu::min_height*gpu; #endif return { width, height }; } bool init() { if (not initialized) { initialized = (bool)isatty(STDIN_FILENO); if (initialized) { tcgetattr(STDIN_FILENO, &initial_settings); current_tty = (ttyname(STDIN_FILENO) != nullptr ? static_cast(ttyname(STDIN_FILENO)) : "unknown"); //? Disable stream sync - this does not seem to work on OpenBSD #ifndef __OpenBSD__ cout.sync_with_stdio(false); #endif //? Disable stream ties cout.tie(nullptr); echo(false); linebuffered(false); refresh(); cout << alt_screen << hide_cursor << mouse_on << flush; Global::resized = false; } } return initialized; } void restore() { if (initialized) { tcsetattr(STDIN_FILENO, TCSANOW, &initial_settings); cout << mouse_off << clear << Fx::reset << normal_screen << show_cursor << flush; initialized = false; } } } //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- // ! Disabled due to issue when compiling with musl, reverted back to using regex // namespace Fx { // string uncolor(const string& s) { // string out = s; // for (size_t offset = 0, start_pos = 0, end_pos = 0;;) { // start_pos = (offset == 0) ? out.find('\x1b') : offset; // if (start_pos == string::npos) // break; // offset = start_pos + 1; // end_pos = out.find('m', offset); // if (end_pos == string::npos) // break; // else if (auto next_pos = out.find('\x1b', offset); not isdigit(out[end_pos - 1]) or end_pos > next_pos) { // offset = next_pos; // continue; // } // out.erase(start_pos, (end_pos - start_pos)+1); // offset = 0; // } // out.shrink_to_fit(); // return out; // } // } namespace Tools { size_t wide_ulen(const std::string_view str) { unsigned int chars = 0; try { std::wstring_convert> conv; auto w_str = conv.from_bytes((str.size() > 10000 ? str.substr(0, 10000).data() : str.data())); for (auto c : w_str) { chars += utf8::wcwidth(c); } } catch (...) { return ulen(str); } return chars; } size_t wide_ulen(const std::wstring_view w_str) { unsigned int chars = 0; for (auto c : w_str) { chars += utf8::wcwidth(c); } return chars; } string uresize(string str, const size_t len, bool wide) { if (len < 1 or str.empty()) return ""; if (wide) { try { std::wstring_convert> conv; auto w_str = conv.from_bytes((str.size() > 10000 ? str.substr(0, 10000).c_str() : str.c_str())); while (wide_ulen(w_str) > len) w_str.pop_back(); string n_str = conv.to_bytes(w_str); return n_str; } catch (...) { return uresize(str, len, false); } } else { for (size_t x = 0, i = 0; i < str.size(); i++) { if ((static_cast(str.at(i)) & 0xC0) != 0x80) x++; if (x >= len + 1) { str.resize(i); break; } } } str.shrink_to_fit(); return str; } string luresize(string str, const size_t len, bool wide) { if (len < 1 or str.empty()) return ""; for (size_t x = 0, last_pos = 0, i = str.size() - 1; i > 0 ; i--) { if (wide and static_cast(str.at(i)) > 0xef) { x += 2; last_pos = max((size_t)0, i - 1); } else if ((static_cast(str.at(i)) & 0xC0) != 0x80) { x++; last_pos = i; } if (x >= len) { str = str.substr(last_pos); str.shrink_to_fit(); break; } } return str; } string s_replace(const string& str, const string& from, const string& to) { string out = str; for (size_t start_pos = out.find(from); start_pos != std::string::npos; start_pos = out.find(from)) { out.replace(start_pos, from.length(), to); } return out; } string_view ltrim(string_view str, const string_view t_str) { while (str.starts_with(t_str)) str.remove_prefix(t_str.size()); return str; } string_view rtrim(string_view str, const string_view t_str) { while (str.ends_with(t_str)) str.remove_suffix(t_str.size()); return str; } auto ssplit(const string& str, const char& delim) -> vector { vector out; for (const auto& s : str | rng::views::split(delim) | rng::views::transform([](auto &&rng) { return std::string_view(&*rng.begin(), rng::distance(rng)); })) { if (not s.empty()) out.emplace_back(s); } return out; } string ljust(string str, const size_t x, bool utf, bool wide, bool limit) { if (utf) { if (limit and ulen(str, wide) > x) return uresize(str, x, wide); return str + string(max((int)(x - ulen(str)), 0), ' '); } else { if (limit and str.size() > x) { str.resize(x); return str; } return str + string(max((int)(x - str.size()), 0), ' '); } } string rjust(string str, const size_t x, bool utf, bool wide, bool limit) { if (utf) { if (limit and ulen(str, wide) > x) return uresize(str, x, wide); return string(max((int)(x - ulen(str)), 0), ' ') + str; } else { if (limit and str.size() > x) { str.resize(x); return str; }; return string(max((int)(x - str.size()), 0), ' ') + str; } } string cjust(string str, const size_t x, bool utf, bool wide, bool limit) { if (utf) { if (limit and ulen(str, wide) > x) return uresize(str, x, wide); return string(max((int)ceil((double)(x - ulen(str)) / 2), 0), ' ') + str + string(max((int)floor((double)(x - ulen(str)) / 2), 0), ' '); } else { if (limit and str.size() > x) { str.resize(x); return str; } return string(max((int)ceil((double)(x - str.size()) / 2), 0), ' ') + str + string(max((int)floor((double)(x - str.size()) / 2), 0), ' '); } } string trans(const string& str) { std::string_view oldstr{str}; string newstr; newstr.reserve(str.size()); for (size_t pos; (pos = oldstr.find(' ')) != string::npos;) { newstr.append(oldstr.substr(0, pos)); size_t x = 0; while (pos + x < oldstr.size() and oldstr.at(pos + x) == ' ') x++; newstr.append(Mv::r(x)); oldstr.remove_prefix(pos + x); } return (newstr.empty()) ? str : newstr + string{oldstr}; } string sec_to_dhms(size_t seconds, bool no_days, bool no_seconds) { size_t days = seconds / 86400; seconds %= 86400; size_t hours = seconds / 3600; seconds %= 3600; size_t minutes = seconds / 60; seconds %= 60; string out = (not no_days and days > 0 ? to_string(days) + "d " : "") + (hours < 10 ? "0" : "") + to_string(hours) + ':' + (minutes < 10 ? "0" : "") + to_string(minutes) + (not no_seconds ? ":" + string(std::cmp_less(seconds, 10) ? "0" : "") + to_string(seconds) : ""); return out; } string floating_humanizer(uint64_t value, bool shorten, size_t start, bool bit, bool per_second) { string out; const size_t mult = (bit) ? 8 : 1; bool mega = Config::getB("base_10_sizes"); // Bitrates if(bit && per_second) { const auto& base_10_bitrate = Config::getS("base_10_bitrate"); if(base_10_bitrate == "True") { mega = true; } else if(base_10_bitrate == "False") { mega = false; } // Default or "Auto": Uses base_10_sizes for bitrates } // taking advantage of type deduction for array creation (since C++17) // combined with string literals (operator""s) static const array mebiUnits_bit { "bit"s, "Kib"s, "Mib"s, "Gib"s, "Tib"s, "Pib"s, "Eib"s, "Zib"s, "Yib"s, "Bib"s, "GEb"s }; static const array mebiUnits_byte { "Byte"s, "KiB"s, "MiB"s, "GiB"s, "TiB"s, "PiB"s, "EiB"s, "ZiB"s, "YiB"s, "BiB"s, "GEB"s }; static const array megaUnits_bit { "bit"s, "Kb"s, "Mb"s, "Gb"s, "Tb"s, "Pb"s, "Eb"s, "Zb"s, "Yb"s, "Bb"s, "Gb"s }; static const array megaUnits_byte { "Byte"s, "KB"s, "MB"s, "GB"s, "TB"s, "PB"s, "EB"s, "ZB"s, "YB"s, "BB"s, "GB"s }; const auto& units = (bit) ? ( mega ? megaUnits_bit : mebiUnits_bit) : ( mega ? megaUnits_byte : mebiUnits_byte); value *= 100 * mult; if (mega) { while (value >= 100000) { value /= 1000; if (value < 100) { out = fmt::format("{}", value); break; } start++; } } else { while (value >= 102400) { value >>= 10; if (value < 100) { out = fmt::format("{}", value); break; } start++; } } if (out.empty()) { out = fmt::format("{}", value); if (not mega and out.size() == 4 and start > 0) { out.pop_back(); out.insert(2, "."); } else if (out.size() == 3 and start > 0) { out.insert(1, "."); } else if (out.size() >= 2) { out.resize(out.size() - 2); } if (out.empty()) { out = "0"; } } if (shorten) { auto f_pos = out.find("."); if (f_pos == 1 and out.size() > 3) { out = fmt::format("{:.1f}", stod(out)); } else if (f_pos != string::npos) { out = fmt::format("{:.0f}", stod(out)); } if (out.size() > 3) { out = fmt::format("{:d}.0", out[0] - '0'); start++; } out.push_back(units[start][0]); } else out += " " + units[start]; if (per_second) out += (bit) ? "ps" : "/s"; return out; } std::string operator*(const string& str, int64_t n) { if (n < 1 or str.empty()) { return ""; } else if (n == 1) { return str; } string new_str; new_str.reserve(str.size() * n); for (; n > 0; n--) new_str.append(str); return new_str; } string strf_time(const string& strf) { auto in_time_t = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now()); std::tm bt {}; std::stringstream ss; ss << std::put_time(localtime_r(&in_time_t, &bt), strf.c_str()); return ss.str(); } void atomic_wait(const atomic& atom, bool old) noexcept { while (atom.load(std::memory_order_relaxed) == old ) busy_wait(); } void atomic_wait_for(const atomic& atom, bool old, const uint64_t wait_ms) noexcept { const uint64_t start_time = time_ms(); while (atom.load(std::memory_order_relaxed) == old and (time_ms() - start_time < wait_ms)) sleep_ms(1); } atomic_lock::atomic_lock(atomic& atom, bool wait) : atom(atom) { if (wait) while (not this->atom.compare_exchange_strong(this->not_true, true)); else this->atom.store(true); } atomic_lock::~atomic_lock() noexcept { this->atom.store(false); } string readfile(const std::filesystem::path& path, const string& fallback) { if (not fs::exists(path)) return fallback; string out; try { std::ifstream file(path); for (string readstr; getline(file, readstr); out += readstr); } catch (const std::exception& e) { Logger::error("readfile() : Exception when reading " + string{path} + " : " + e.what()); return fallback; } return (out.empty() ? fallback : out); } auto celsius_to(const long long& celsius, const string& scale) -> tuple { if (scale == "celsius") return {celsius, "°C"}; else if (scale == "fahrenheit") return {(long long)round((double)celsius * 1.8 + 32), "°F"}; else if (scale == "kelvin") return {(long long)round((double)celsius + 273.15), "K "}; else if (scale == "rankine") return {(long long)round((double)celsius * 1.8 + 491.67), "°R"}; return {0, ""}; } string hostname() { char host[HOST_NAME_MAX]; gethostname(host, HOST_NAME_MAX); host[HOST_NAME_MAX - 1] = '\0'; return string{host}; } string username() { auto user = getenv("LOGNAME"); if (user == nullptr or strlen(user) == 0) user = getenv("USER"); return (user != nullptr ? user : ""); } DebugTimer::DebugTimer(string name, bool start, bool delayed_report) : name(std::move(name)), delayed_report(delayed_report) { if (start) this->start(); } DebugTimer::~DebugTimer() { if (running) this->stop(true); this->force_report(); } void DebugTimer::start() { if (running) return; running = true; start_time = time_micros(); } void DebugTimer::stop(bool report) { if (not running) return; running = false; elapsed_time = time_micros() - start_time; if (report) this->report(); } void DebugTimer::reset(bool restart) { running = false; start_time = 0; elapsed_time = 0; if (restart) this->start(); } void DebugTimer::stop_rename_reset(const string &new_name, bool report, bool restart) { this->stop(report); name = new_name; this->reset(restart); } void DebugTimer::report() { string report_line; if (start_time == 0 and elapsed_time == 0) report_line = fmt::format("DebugTimer::report() warning -> Timer [{}] has not been started!", name); else if (running) report_line = fmt::format(custom_locale, "Timer [{}] (running) currently at {:L} μs", name, time_micros() - start_time); else report_line = fmt::format(custom_locale, "Timer [{}] took {:L} μs", name, elapsed_time); if (delayed_report) report_buffer.emplace_back(report_line); else Logger::log_write(log_level, report_line); } void DebugTimer::force_report() { if (report_buffer.empty()) return; for (const auto& line : report_buffer) Logger::log_write(log_level, line); report_buffer.clear(); } uint64_t DebugTimer::elapsed() { if (running) return time_micros() - start_time; return elapsed_time; } bool DebugTimer::is_running() { return running; } } namespace Logger { using namespace Tools; std::atomic busy (false); bool first = true; const string tdf = "%Y/%m/%d (%T) | "; size_t loglevel; std::optional logfile; //* Wrapper for lowering privileges if using SUID bit and currently isn't using real userid class lose_priv { int status = -1; public: lose_priv() { if (geteuid() != Global::real_uid) { this->status = seteuid(Global::real_uid); } } ~lose_priv() noexcept { if (status == 0) { status = seteuid(Global::set_uid); } } lose_priv(const lose_priv& other) = delete; lose_priv& operator=(const lose_priv& other) = delete; lose_priv(lose_priv&& other) = delete; lose_priv& operator=(lose_priv&& other) = delete; }; void set(const string& level) { loglevel = v_index(log_levels, level); } void log_write(const Level level, const std::string_view msg) { if (loglevel < level or !logfile.has_value()) { return; } auto& log_file = logfile.value(); atomic_lock lck(busy, true); lose_priv neutered{}; std::error_code ec; try { // NOTE: `exist()` could throw but since we return with an empty logfile we don't care if (fs::exists(log_file) and fs::file_size(log_file, ec) > 1024 << 10 and not ec) { auto old_log = log_file; old_log += ".1"; if (fs::exists(old_log)) fs::remove(old_log, ec); if (not ec) fs::rename(log_file, old_log, ec); } if (not ec) { std::ofstream lwrite(log_file, std::ios::app); if (first) { first = false; lwrite << "\n" << strf_time(tdf) << "===> btop++ v." << Global::Version << "\n"; } lwrite << strf_time(tdf) << log_levels.at(level) << ": " << msg << "\n"; } else log_file.clear(); } catch (const std::exception& e) { log_file.clear(); throw std::runtime_error("Exception in Logger::log_write() : " + string{e.what()}); } } } btop-1.4.5/src/btop_tools.hpp000066400000000000000000000415601506333644200161650ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #pragma once #if !defined(NDEBUG) # define BTOP_DEBUG #endif #include // for std::ranges::count_if #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef BTOP_DEBUG #include #endif #ifndef HOST_NAME_MAX #ifdef __APPLE__ #define HOST_NAME_MAX 255 #else #define HOST_NAME_MAX 64 #endif #endif #include "fmt/core.h" #include "fmt/format.h" using std::array; using std::atomic; using std::string; using std::to_string; using std::string_view; using std::tuple; using std::vector; using namespace fmt::literals; //? ------------------------------------------------- NAMESPACES ------------------------------------------------------ //* Collection of escape codes for text style and formatting namespace Fx { const string e = "\x1b["; //* Escape sequence start const string b = e + "1m"; //* Bold on/off const string ub = e + "22m"; //* Bold off const string d = e + "2m"; //* Dark on const string ud = e + "22m"; //* Dark off const string i = e + "3m"; //* Italic on const string ui = e + "23m"; //* Italic off const string ul = e + "4m"; //* Underline on const string uul = e + "24m"; //* Underline off const string bl = e + "5m"; //* Blink on const string ubl = e + "25m"; //* Blink off const string s = e + "9m"; //* Strike/crossed-out on const string us = e + "29m"; //* Strike/crossed-out on/off //* Reset foreground/background color and text effects const string reset_base = e + "0m"; //* Reset text effects and restore theme foregrund and background color extern string reset; //* Regex for matching color, style and cursor move escape sequences const std::regex escape_regex("\033\\[\\d+;?\\d?;?\\d*;?\\d*;?\\d*(m|f|s|u|C|D|A|B){1}"); //* Regex for matching only color and style escape sequences const std::regex color_regex("\033\\[\\d+;?\\d?;?\\d*;?\\d*;?\\d*(m){1}"); //* Return a string with all colors and text styling removed inline string uncolor(const string& s) { return std::regex_replace(s, color_regex, ""); } // string uncolor(const string& s); } //* Collection of escape codes and functions for cursor manipulation namespace Mv { //* Move cursor to , inline string to(int line, int col) { return Fx::e + to_string(line) + ';' + to_string(col) + 'f'; } //* Move cursor right columns inline string r(int x) { return Fx::e + to_string(x) + 'C'; } //* Move cursor left columns inline string l(int x) { return Fx::e + to_string(x) + 'D'; } //* Move cursor up x lines inline string u(int x) { return Fx::e + to_string(x) + 'A'; } //* Move cursor down x lines inline string d(int x) { return Fx::e + to_string(x) + 'B'; } //* Save cursor position const string save = Fx::e + "s"; //* Restore saved cursor position const string restore = Fx::e + "u"; } //* Collection of escape codes and functions for terminal manipulation namespace Term { extern atomic initialized; extern atomic width; extern atomic height; extern string fg, bg, current_tty; const string hide_cursor = Fx::e + "?25l"; const string show_cursor = Fx::e + "?25h"; const string alt_screen = Fx::e + "?1049h"; const string normal_screen = Fx::e + "?1049l"; const string clear = Fx::e + "2J" + Fx::e + "0;0f"; const string clear_end = Fx::e + "0J"; const string clear_begin = Fx::e + "1J"; const string mouse_on = Fx::e + "?1002h" + Fx::e + "?1015h" + Fx::e + "?1006h"; //? Enable reporting of mouse position on click and release const string mouse_off = Fx::e + "?1002l" + Fx::e + "?1015l" + Fx::e + "?1006l"; const string mouse_direct_on = Fx::e + "?1003h"; //? Enable reporting of mouse position at any movement const string mouse_direct_off = Fx::e + "?1003l"; const string sync_start = Fx::e + "?2026h"; //? Start of terminal synchronized output const string sync_end = Fx::e + "?2026l"; //? End of terminal synchronized output //* Returns true if terminal has been resized and updates width and height bool refresh(bool only_check=false); //* Returns an array with the lowest possible width, height with current box config auto get_min_size(const string& boxes) -> array; //* Check for a valid tty, save terminal options and set new options bool init(); //* Restore terminal options void restore(); } //* Simple logging implementation namespace Logger { const vector log_levels = { "DISABLED", "ERROR", "WARNING", "INFO", "DEBUG", }; extern std::optional logfile; enum Level : std::uint8_t { DISABLED = 0, ERROR = 1, WARNING = 2, INFO = 3, DEBUG = 4, }; //* Set log level, valid arguments: "DISABLED", "ERROR", "WARNING", "INFO" and "DEBUG" void set(const string& level); void log_write(const Level level, const std::string_view msg); inline void error(const std::string_view msg) { log_write(ERROR, msg); } inline void warning(const std::string_view msg) { log_write(WARNING, msg); } inline void info(const std::string_view msg) { log_write(INFO, msg); } inline void debug(const std::string_view msg) { log_write(DEBUG, msg); } } //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Tools { constexpr auto SSmax = std::numeric_limits::max(); class MyNumPunct : public std::numpunct { protected: virtual char do_thousands_sep() const override { return '\''; } virtual std::string do_grouping() const override { return "\03"; } }; size_t wide_ulen(const std::string_view str); size_t wide_ulen(const std::wstring_view w_str); //* Return number of UTF8 characters in a string (wide=true for column size needed on terminal) inline size_t ulen(const std::string_view str, bool wide = false) { return (wide ? wide_ulen(str) : std::ranges::count_if(str, [](char c) { return (static_cast(c) & 0xC0) != 0x80; })); } //* Resize a string consisting of UTF8 characters (only reduces size) string uresize(const string str, const size_t len, bool wide = false); //* Resize a string consisting of UTF8 characters from left (only reduces size) string luresize(const string str, const size_t len, bool wide = false); //* Replace in with and return new string string s_replace(const string& str, const string& from, const string& to); //* Replace ascii control characters with in and return new string inline string replace_ascii_control(string str, const char replacement = ' ') { std::ranges::for_each(str, [&replacement](char& c) { if (c < 0x20) c = replacement; }); return str; } //* Capitalize inline string capitalize(string str) { str.at(0) = toupper(str.at(0)); return str; } //* Return with only uppercase characters inline auto str_to_upper(string str) { std::ranges::for_each(str, [](auto& c) { c = ::toupper(c); } ); return str; } //* Return with only lowercase characters inline auto str_to_lower(string str) { std::ranges::for_each(str, [](char& c) { c = ::tolower(c); } ); return str; } //* Check if vector contains value template inline bool v_contains(const vector& vec, const T2& find_val) { return std::ranges::find(vec, find_val) != vec.end(); } //* Check if string contains value template constexpr bool s_contains(const std::string_view str, const T& find_val) { return str.find(find_val) != string::npos; } //* Check if string contains string , while ignoring case inline bool s_contains_ic(const std::string_view str, const std::string_view find_val) { auto it = std::search( str.begin(), str.end(), find_val.begin(), find_val.end(), [](char ch1, char ch2) { return std::toupper(ch1) == std::toupper(ch2); } ); return it != str.end(); } //* Return index of from vector , returns size of if is not present template inline size_t v_index(const vector& vec, const T& find_val) { return std::ranges::distance(vec.begin(), std::ranges::find(vec, find_val)); } //* Compare with all following values template inline bool is_in(const First& first, const T& ... t) { return ((first == t) or ...); } //* Return current time since epoch in seconds inline uint64_t time_s() { return std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); } //* Return current time since epoch in milliseconds inline uint64_t time_ms() { return std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); } //* Return current time since epoch in microseconds inline uint64_t time_micros() { return std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); } //* Check if a string is a valid bool value inline bool isbool(const std::string_view str) { return is_in(str, "true", "false", "True", "False"); } //* Convert string to bool, returning any value not equal to "true" or "True" as false inline bool stobool(const std::string_view str) { return is_in(str, "true", "True"); } //* Check if a string is a valid integer value (only positive) constexpr bool isint(const std::string_view str) { return std::ranges::all_of(str, ::isdigit); } //* Left-trim from and return new string string_view ltrim(string_view str, string_view t_str = " "); //* Right-trim from and return new string string_view rtrim(string_view str, string_view t_str = " "); //* Left/right-trim from and return new string inline string_view trim(string_view str, string_view t_str = " ") { return ltrim(rtrim(str, t_str), t_str); } //* Split at all occurrences of and return as vector of strings auto ssplit(const string& str, const char& delim = ' ') -> vector; //* Put current thread to sleep for milliseconds inline void sleep_ms(const size_t& ms) { std::this_thread::sleep_for(std::chrono::milliseconds(ms)); } //* Put current thread to sleep for microseconds inline void sleep_micros(const size_t& micros) { std::this_thread::sleep_for(std::chrono::microseconds(micros)); } //* Left justify string if is greater than length, limit return size to by default string ljust(string str, const size_t x, bool utf = false, bool wide = false, bool limit = true); //* Right justify string if is greater than length, limit return size to by default string rjust(string str, const size_t x, bool utf = false, bool wide = false, bool limit = true); //* Center justify string if is greater than length, limit return size to by default string cjust(string str, const size_t x, bool utf = false, bool wide = false, bool limit = true); //* Replace whitespaces " " with escape code for move right string trans(const string& str); //* Convert seconds to format "d ::" and return string string sec_to_dhms(size_t seconds, bool no_days = false, bool no_seconds = false); //* Scales up in steps of 1024 to highest positive value unit and returns string with unit suffixed //* bit=True or defaults to bytes //* start=int to set 1024 multiplier starting unit //* short=True always returns 0 decimals and shortens unit to 1 character string floating_humanizer(uint64_t value, bool shorten = false, size_t start = 0, bool bit = false, bool per_second = false); //* Add std::string operator * : Repeat string number of times std::string operator*(const string& str, int64_t n); template #ifdef BTOP_DEBUG const T& safeVal(const std::unordered_map& map, const K& key, const T& fallback = T{}, std::source_location loc = std::source_location::current()) { if (auto it = map.find(key); it != map.end()) { return it->second; } else { Logger::error(fmt::format("safeVal() called with invalid key: [{}] in file: {} on line: {}", key, loc.file_name(), loc.line())); return fallback; } }; #else const T& safeVal(const std::unordered_map& map, const K& key, const T& fallback = T{}) { if (auto it = map.find(key); it != map.end()) { return it->second; } else { Logger::error(fmt::format("safeVal() called with invalid key: [{}] (Compile btop with DEBUG=true for more extensive logging!)", key)); return fallback; } }; #endif template #ifdef BTOP_DEBUG const T& safeVal(const std::vector& vec, const size_t& index, const T& fallback = T{}, std::source_location loc = std::source_location::current()) { if (index < vec.size()) { return vec[index]; } else { Logger::error(fmt::format("safeVal() called with invalid index: [{}] in file: {} on line: {}", index, loc.file_name(), loc.line())); return fallback; } }; #else const T& safeVal(const std::vector& vec, const size_t& index, const T& fallback = T{}) { if (index < vec.size()) { return vec[index]; } else { Logger::error(fmt::format("safeVal() called with invalid index: [{}] (Compile btop with DEBUG=true for more extensive logging!)", index)); return fallback; } }; #endif //* Return current time in format string strf_time(const string& strf); string hostname(); string username(); static inline void busy_wait (void) { #if defined __i386__ || defined __x86_64__ __builtin_ia32_pause(); #elif defined __ia64__ __asm volatile("hint @pause" : : : "memory"); #elif defined __sparc__ && (defined __arch64__ || defined __sparc_v9__) __asm volatile("membar #LoadLoad" : : : "memory"); #else __asm volatile("" : : : "memory"); #endif } void atomic_wait(const atomic& atom, bool old = true) noexcept; void atomic_wait_for(const atomic& atom, bool old = true, const uint64_t wait_ms = 0) noexcept; //* Sets atomic to true on construct, sets to false on destruct class atomic_lock { atomic& atom; bool not_true{}; public: explicit atomic_lock(atomic& atom, bool wait = false); ~atomic_lock() noexcept; atomic_lock(const atomic_lock& other) = delete; atomic_lock& operator=(const atomic_lock& other) = delete; atomic_lock(atomic_lock&& other) = delete; atomic_lock& operator=(atomic_lock&& other) = delete; }; //* Read a complete file and return as a string string readfile(const std::filesystem::path& path, const string& fallback = ""); //* Convert a celsius value to celsius, fahrenheit, kelvin or rankin and return tuple with new value and unit. auto celsius_to(const long long& celsius, const string& scale) -> tuple; } namespace Tools { //* Creates a named timer that is started on construct (by default) and reports elapsed time in microseconds to Logger::debug() on destruct if running //* Unless delayed_report is set to false, all reporting is buffered and delayed until DebugTimer is destructed or .force_report() is called //* Usage example: Tools::DebugTimer timer(name:"myTimer", [start:true], [delayed_report:true]) // Create timer and start //* timer.stop(); // Stop timer and report elapsed time //* timer.stop_rename_reset("myTimer2"); // Stop timer, report elapsed time, rename timer, reset and restart class DebugTimer { uint64_t start_time{}; uint64_t elapsed_time{}; bool running{}; std::locale custom_locale = std::locale(std::locale::classic(), new Tools::MyNumPunct); vector report_buffer{}; string name{}; bool delayed_report{}; Logger::Level log_level = Logger::DEBUG; public: DebugTimer() = default; explicit DebugTimer(string name, bool start = true, bool delayed_report = true); ~DebugTimer(); DebugTimer(const DebugTimer& other) = delete; DebugTimer& operator=(const DebugTimer& other) = delete; DebugTimer(DebugTimer&& other) = delete; DebugTimer& operator=(DebugTimer&& other) = delete; void start(); void stop(bool report = true); void reset(bool restart = true); //* Stops and reports (default), renames timer then resets and restarts (default) void stop_rename_reset(const string& new_name, bool report = true, bool restart = true); void report(); void force_report(); uint64_t elapsed(); bool is_running(); }; } btop-1.4.5/src/config.h.in000066400000000000000000000005251506333644200153070ustar00rootroot00000000000000// SPDX-License-Identifier: Apache-2.0 #pragma once #include constexpr std::string_view GIT_COMMIT = "@GIT_COMMIT@"; constexpr std::string_view COMPILER = "@COMPILER@"; constexpr std::string_view COMPILER_VERSION = "@COMPILER_VERSION@"; constexpr std::string_view CONFIGURE_COMMAND = "@CONFIGURE_COMMAND@"; btop-1.4.5/src/freebsd/000077500000000000000000000000001506333644200146745ustar00rootroot00000000000000btop-1.4.5/src/freebsd/btop_collect.cpp000066400000000000000000001267401506333644200200630ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include #include // man 3 getifaddrs: "BUGS: If both and are being included, must be included before " #include #include #include #include #include #include #include // for inet_ntop stuff #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../btop_config.hpp" #include "../btop_shared.hpp" #include "../btop_tools.hpp" using std::clamp, std::string_literals::operator""s, std::cmp_equal, std::cmp_less, std::cmp_greater; using std::ifstream, std::numeric_limits, std::streamsize, std::round, std::max, std::min; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace Tools; //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Cpu { vector core_old_totals; vector core_old_idles; vector available_fields = {"Auto", "total"}; vector available_sensors = {"Auto"}; cpu_info current_cpu; bool got_sensors = false, cpu_temp_only = false, supports_watts = false; //* Populate found_sensors map bool get_sensors(); //* Get current cpu clock speed string get_cpuHz(); //* Search /proc/cpuinfo for a cpu name string get_cpuName(); struct Sensor { fs::path path; string label; int64_t temp = 0; int64_t high = 0; int64_t crit = 0; }; string cpu_sensor; vector core_sensors; std::unordered_map core_mapping; } // namespace Cpu namespace Mem { double old_uptime; std::vector zpools; void get_zpools(); } namespace Shared { fs::path passwd_path; uint64_t totalMem; long pageSize, clkTck, coreCount, physicalCoreCount, arg_max; int totalMem_len, kfscale; long bootTime; void init() { //? Shared global variables init int mib[2]; mib[0] = CTL_HW; mib[1] = HW_NCPU; int ncpu; size_t len = sizeof(ncpu); if (sysctl(mib, 2, &ncpu, &len, nullptr, 0) == -1) { Logger::warning("Could not determine number of cores, defaulting to 1."); } else { coreCount = ncpu; } pageSize = sysconf(_SC_PAGE_SIZE); if (pageSize <= 0) { pageSize = 4096; Logger::warning("Could not get system page size. Defaulting to 4096, processes memory usage might be incorrect."); } clkTck = sysconf(_SC_CLK_TCK); if (clkTck <= 0) { clkTck = 100; Logger::warning("Could not get system clock ticks per second. Defaulting to 100, processes cpu usage might be incorrect."); } int64_t memsize = 0; size_t size = sizeof(memsize); if (sysctlbyname("hw.physmem", &memsize, &size, nullptr, 0) < 0) { Logger::warning("Could not get memory size"); } totalMem = memsize; struct timeval result; size = sizeof(result); if (sysctlbyname("kern.boottime", &result, &size, nullptr, 0) < 0) { Logger::warning("Could not get boot time"); } else { bootTime = result.tv_sec; } size = sizeof(kfscale); if (sysctlbyname("kern.fscale", &kfscale, &size, nullptr, 0) == -1) { kfscale = 2048; } //* Get maximum length of process arguments arg_max = sysconf(_SC_ARG_MAX); //? Init for namespace Cpu Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {}); Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {}); Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0); Cpu::core_old_idles.insert(Cpu::core_old_idles.begin(), Shared::coreCount, 0); Logger::debug("Init -> Cpu::collect()"); Cpu::collect(); for (auto &[field, vec] : Cpu::current_cpu.cpu_percent) { if (not vec.empty() and not v_contains(Cpu::available_fields, field)) Cpu::available_fields.push_back(field); } Logger::debug("Init -> Cpu::get_cpuName()"); Cpu::cpuName = Cpu::get_cpuName(); Logger::debug("Init -> Cpu::get_sensors()"); Cpu::got_sensors = Cpu::get_sensors(); Logger::debug("Init -> Cpu::get_core_mapping()"); Cpu::core_mapping = Cpu::get_core_mapping(); //? Init for namespace Mem Mem::old_uptime = system_uptime(); Logger::debug("Init -> Mem::collect()"); Mem::collect(); Logger::debug("Init -> Mem::get_zpools()"); Mem::get_zpools(); } } // namespace Shared namespace Cpu { string cpuName; string cpuHz; bool has_battery = true; tuple current_bat; const array time_names = {"user", "nice", "system", "idle"}; std::unordered_map cpu_old = { {"totals", 0}, {"idles", 0}, {"user", 0}, {"nice", 0}, {"system", 0}, {"idle", 0} }; string get_cpuName() { string name; char buffer[1024]; size_t size = sizeof(buffer); if (sysctlbyname("hw.model", &buffer, &size, nullptr, 0) < 0) { Logger::error("Failed to get CPU name"); return name; } return trim_name(string(buffer)); } bool get_sensors() { got_sensors = false; if (Config::getB("show_coretemp") and Config::getB("check_temp")) { int32_t temp; size_t size = sizeof(temp); if (sysctlbyname("dev.cpu.0.temperature", &temp, &size, nullptr, 0) < 0) { Logger::warning("Could not get temp sensor - maybe you need to load the coretemp module"); } else { got_sensors = true; int temp; size_t size = sizeof(temp); sysctlbyname("dev.cpu.0.coretemp.tjmax", &temp, &size, nullptr, 0); //assuming the max temp is same for all cores temp = (temp - 2732) / 10; // since it's an int, it's multiplied by 10, and offset to absolute zero... current_cpu.temp_max = temp; } } return got_sensors; } void update_sensors() { int temp = 0; int p_temp = 0; int found = 0; bool got_package = false; size_t size = sizeof(p_temp); if (sysctlbyname("hw.acpi.thermal.tz0.temperature", &p_temp, &size, nullptr, 0) >= 0) { got_package = true; p_temp = (p_temp - 2732) / 10; // since it's an int, it's multiplied by 10, and offset to absolute zero... } size = sizeof(temp); for (int i = 0; i < Shared::coreCount; i++) { string s = "dev.cpu." + std::to_string(i) + ".temperature"; if (sysctlbyname(s.c_str(), &temp, &size, nullptr, 0) >= 0) { temp = (temp - 2732) / 10; if (not got_package) { p_temp += temp; found++; } if (cmp_less(i + 1, current_cpu.temp.size())) { current_cpu.temp.at(i + 1).push_back(temp); if (current_cpu.temp.at(i + 1).size() > 20) current_cpu.temp.at(i + 1).pop_front(); } } } if (not got_package) p_temp /= found; current_cpu.temp.at(0).push_back(p_temp); if (current_cpu.temp.at(0).size() > 20) current_cpu.temp.at(0).pop_front(); } string get_cpuHz() { unsigned int freq = 1; size_t size = sizeof(freq); if (sysctlbyname("dev.cpu.0.freq", &freq, &size, nullptr, 0) < 0) { return ""; } return std::to_string(freq / 1000.0 ).substr(0, 3); // seems to be in MHz } auto get_core_mapping() -> std::unordered_map { std::unordered_map core_map; if (cpu_temp_only) return core_map; for (long i = 0; i < Shared::coreCount; i++) { core_map[i] = i; } //? If core mapping from cpuinfo was incomplete try to guess remainder, if missing completely, map 0-0 1-1 2-2 etc. if (cmp_less(core_map.size(), Shared::coreCount)) { if (Shared::coreCount % 2 == 0 and (long) core_map.size() == Shared::coreCount / 2) { for (int i = 0, n = 0; i < Shared::coreCount / 2; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[Shared::coreCount / 2 + i] = n++; } } else { core_map.clear(); for (int i = 0, n = 0; i < Shared::coreCount; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[i] = n++; } } } //? Apply user set custom mapping if any const auto &custom_map = Config::getS("cpu_core_map"); if (not custom_map.empty()) { try { for (const auto &split : ssplit(custom_map)) { const auto vals = ssplit(split, ':'); if (vals.size() != 2) continue; int change_id = std::stoi(vals.at(0)); int new_id = std::stoi(vals.at(1)); if (not core_map.contains(change_id) or cmp_greater(new_id, core_sensors.size())) continue; core_map.at(change_id) = new_id; } } catch (...) { } } return core_map; } auto get_battery() -> tuple { if (not has_battery) return {0, 0, 0, ""}; long seconds = -1; float watts = -1; uint32_t percent = -1; size_t size = sizeof(percent); string status = "discharging"; if (sysctlbyname("hw.acpi.battery.life", &percent, &size, nullptr, 0) < 0) { has_battery = false; } else { has_battery = true; size_t size = sizeof(seconds); if (sysctlbyname("hw.acpi.battery.time", &seconds, &size, nullptr, 0) < 0) { seconds = 0; } size = sizeof(watts); if (sysctlbyname("hw.acpi.battery.rate", &watts, &size, nullptr, 0) < 0) { watts = -1; } int state; size = sizeof(state); if (sysctlbyname("hw.acpi.battery.state", &state, &size, nullptr, 0) < 0) { status = "unknown"; } else { if (state == 2) { status = "charging"; } } if (percent == 100) { status = "full"; } } return {percent, watts, seconds, status}; } auto collect(bool no_update) -> cpu_info & { if (Runner::stopping or (no_update and not current_cpu.cpu_percent.at("total").empty())) return current_cpu; auto &cpu = current_cpu; if (getloadavg(cpu.load_avg.data(), cpu.load_avg.size()) < 0) { Logger::error("failed to get load averages"); } vector> cpu_time(Shared::coreCount); size_t size = sizeof(long) * CPUSTATES * Shared::coreCount; if (sysctlbyname("kern.cp_times", &cpu_time[0], &size, nullptr, 0) == -1) { Logger::error("failed to get CPU times"); } long long global_totals = 0; long long global_idles = 0; vector times_summed = {0, 0, 0, 0}; for (long i = 0; i < Shared::coreCount; i++) { vector times; //? 0=user, 1=nice, 2=system, 3=idle for (int x = 0; const unsigned int c_state : {CP_USER, CP_NICE, CP_SYS, CP_IDLE}) { auto val = cpu_time[i][c_state]; times.push_back(val); times_summed.at(x++) += val; } try { //? All values const long long totals = std::accumulate(times.begin(), times.end(), 0ll); //? Idle time const long long idles = times.at(3); global_totals += totals; global_idles += idles; //? Calculate cpu total for each core if (i > Shared::coreCount) break; const long long calc_totals = max(0ll, totals - core_old_totals.at(i)); const long long calc_idles = max(0ll, idles - core_old_idles.at(i)); core_old_totals.at(i) = totals; core_old_idles.at(i) = idles; cpu.core_percent.at(i).push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph if (cpu.core_percent.at(i).size() > 40) cpu.core_percent.at(i).pop_front(); } catch (const std::exception &e) { Logger::error("Cpu::collect() : " + (string)e.what()); throw std::runtime_error("collect() : " + (string)e.what()); } } const long long calc_totals = max(1ll, global_totals - cpu_old.at("totals")); const long long calc_idles = max(1ll, global_idles - cpu_old.at("idles")); //? Populate cpu.cpu_percent with all fields from syscall for (int ii = 0; const auto &val : times_summed) { cpu.cpu_percent.at(time_names.at(ii)).push_back(clamp((long long)round((double)(val - cpu_old.at(time_names.at(ii))) * 100 / calc_totals), 0ll, 100ll)); cpu_old.at(time_names.at(ii)) = val; //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at(time_names.at(ii)).size(), width * 2)) cpu.cpu_percent.at(time_names.at(ii)).pop_front(); ii++; } cpu_old.at("totals") = global_totals; cpu_old.at("idles") = global_idles; //? Total usage of cpu cpu.cpu_percent.at("total").push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at("total").size(), width * 2)) cpu.cpu_percent.at("total").pop_front(); if (Config::getB("show_cpu_freq")) { auto hz = get_cpuHz(); if (hz != "") { cpuHz = hz; } } if (Config::getB("check_temp") and got_sensors) update_sensors(); if (Config::getB("show_battery") and has_battery) current_bat = get_battery(); return cpu; } } // namespace Cpu namespace Mem { bool has_swap = false; vector fstab; fs::file_time_type fstab_time; int disk_ios = 0; vector last_found; mem_info current_mem{}; uint64_t get_totalMem() { return Shared::totalMem; } void assign_values(struct disk_info& disk, int64_t readBytes, int64_t writeBytes) { disk_ios++; if (disk.io_read.empty()) { disk.io_read.push_back(0); } else { disk.io_read.push_back(max((int64_t)0, (readBytes - disk.old_io.at(0)))); } disk.old_io.at(0) = readBytes; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); if (disk.io_write.empty()) { disk.io_write.push_back(0); } else { disk.io_write.push_back(max((int64_t)0, (writeBytes - disk.old_io.at(1)))); } disk.old_io.at(1) = writeBytes; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); // no io times - need to push something anyway or we'll get an ABORT if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(clamp((long)round((double)(disk.io_write.back() + disk.io_read.back()) / (1 << 20)), 0l, 100l)); while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } class PipeWrapper { public: PipeWrapper(const char *file, const char *mode) {fd = popen(file, mode);} virtual ~PipeWrapper() {if (fd) pclose(fd);} auto operator()() -> FILE* { return fd;}; private: FILE *fd; }; // find all zpools in the system. Do this only at startup. void get_zpools() { std::regex toReplace("\\."); PipeWrapper poolPipe = PipeWrapper("zpool list -H -o name", "r"); while (not std::feof(poolPipe())) { char poolName[512]; size_t len = 512; if (fgets(poolName, len, poolPipe())) { poolName[strcspn(poolName, "\n")] = 0; Logger::debug("zpool found: " + string(poolName)); Mem::zpools.push_back(std::regex_replace(poolName, toReplace, "%25")); } } } void collect_disk(std::unordered_map &disks, std::unordered_map &mapping) { // this bit is for 'regular' mounts static struct statinfo cur; long double etime = 0; uint64_t total_bytes_read; uint64_t total_bytes_write; static std::unique_ptr curDevInfo (reinterpret_cast(std::calloc(1, sizeof(struct devinfo))), std::free); cur.dinfo = curDevInfo.get(); if (devstat_getdevs(nullptr, &cur) != -1) { for (int i = 0; i < cur.dinfo->numdevs; i++) { auto d = cur.dinfo->devices[i]; string devStatName = "/dev/" + string(d.device_name) + std::to_string(d.unit_number); for (auto& [ignored, disk] : disks) { // find matching mountpoints - could be multiple as d.device_name is only ada (and d.unit_number is the device number), while the disk.dev is like /dev/ada0s1 if (disk.dev.string().rfind(devStatName, 0) == 0 and mapping.contains(disk.dev)) { devstat_compute_statistics(&d, nullptr, etime, DSM_TOTAL_BYTES_READ, &total_bytes_read, DSM_TOTAL_BYTES_WRITE, &total_bytes_write, DSM_NONE); assign_values(disk, total_bytes_read, total_bytes_write); string mountpoint = mapping.at(disk.dev); Logger::debug("dev " + devStatName + " -> " + mountpoint + " read=" + std::to_string(total_bytes_read) + " write=" + std::to_string(total_bytes_write)); } } } } // this code is for ZFS mounts for (const auto &poolName : Mem::zpools) { char sysCtl[1024]; snprintf(sysCtl, sizeof(sysCtl), "sysctl kstat.zfs.%s.dataset | grep -E \'dataset_name|nread|nwritten\'", poolName.c_str()); PipeWrapper f = PipeWrapper(sysCtl, "r"); if (f()) { char buf[512]; size_t len = 512; uint64_t nread = 0, nwritten = 0; while (not std::feof(f())) { if (fgets(buf, len, f())) { char *name = std::strtok(buf, ": \n"); char *value = std::strtok(nullptr, ": \n"); if (string(name).find("dataset_name") != string::npos) { // create entry if datasetname matches with anything in mapping // relies on the fact that the dataset name is last value in the list // alternatively you could parse the objset-0x... when this changes, you have a new entry string datasetname = string(value);// this is the zfs volume, like 'zroot/usr/home' -> this maps onto the device we get back from getmntinfo(3) if (mapping.contains(datasetname)) { string mountpoint = mapping.at(datasetname); if (disks.contains(mountpoint)) { auto& disk = disks.at(mountpoint); assign_values(disk, nread, nwritten); } } } else if (string(name).find("nread") != string::npos) { nread = atoll(value); } else if (string(name).find("nwritten") != string::npos) { nwritten = atoll(value); } } } } } } auto collect(bool no_update) -> mem_info & { if (Runner::stopping or (no_update and not current_mem.percent.at("used").empty())) return current_mem; auto show_swap = Config::getB("show_swap"); auto show_disks = Config::getB("show_disks"); auto swap_disk = Config::getB("swap_disk"); auto &mem = current_mem; static bool snapped = (getenv("BTOP_SNAPPED") != nullptr); int mib[4]; u_int memActive, memWire, cachedMem, freeMem; size_t len; len = 4; sysctlnametomib("vm.stats.vm.v_active_count", mib, &len); len = sizeof(memActive); sysctl(mib, 4, &(memActive), &len, nullptr, 0); memActive *= Shared::pageSize; len = 4; sysctlnametomib("vm.stats.vm.v_wire_count", mib, &len); len = sizeof(memWire); sysctl(mib, 4, &(memWire), &len, nullptr, 0); memWire *= Shared::pageSize; mem.stats.at("used") = memWire + memActive; mem.stats.at("available") = Shared::totalMem - memActive - memWire; len = sizeof(cachedMem); len = 4; sysctlnametomib("vm.stats.vm.v_cache_count", mib, &len); sysctl(mib, 4, &(cachedMem), &len, nullptr, 0); cachedMem *= Shared::pageSize; mem.stats.at("cached") = cachedMem; len = sizeof(freeMem); len = 4; sysctlnametomib("vm.stats.vm.v_free_count", mib, &len); sysctl(mib, 4, &(freeMem), &len, nullptr, 0); freeMem *= Shared::pageSize; mem.stats.at("free") = freeMem; if (show_swap) { char buf[_POSIX2_LINE_MAX]; Shared::KvmPtr kd {kvm_openfiles(nullptr, _PATH_DEVNULL, nullptr, O_RDONLY, buf)}; struct kvm_swap swap[16]; int nswap = kvm_getswapinfo(kd.get(), swap, 16, 0); int totalSwap = 0, usedSwap = 0; for (int i = 0; i < nswap; i++) { totalSwap += swap[i].ksw_total; usedSwap += swap[i].ksw_used; } mem.stats.at("swap_total") = totalSwap * Shared::pageSize; mem.stats.at("swap_used") = usedSwap * Shared::pageSize; } if (show_swap and mem.stats.at("swap_total") > 0) { for (const auto &name : swap_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / mem.stats.at("swap_total"))); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } has_swap = true; } else has_swap = false; //? Calculate percentages for (const auto &name : mem_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / Shared::totalMem)); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } if (show_disks) { std::unordered_map mapping; // keep mapping from device -> mountpoint, since IOKit doesn't give us the mountpoint double uptime = system_uptime(); auto &disks_filter = Config::getS("disks_filter"); bool filter_exclude = false; // auto only_physical = Config::getB("only_physical"); auto &disks = mem.disks; vector filter; if (not disks_filter.empty()) { filter = ssplit(disks_filter); if (filter.at(0).starts_with("exclude=")) { filter_exclude = true; filter.at(0) = filter.at(0).substr(8); } } struct statfs *stfs; int count = getmntinfo(&stfs, MNT_WAIT); vector found; found.reserve(last_found.size()); for (int i = 0; i < count; i++) { auto fstype = string(stfs[i].f_fstypename); if (fstype == "autofs" || fstype == "devfs" || fstype == "linprocfs" || fstype == "procfs" || fstype == "tmpfs" || fstype == "linsysfs" || fstype == "fdesckfs") { // in memory filesystems -> not useful to show continue; } std::error_code ec; string mountpoint = stfs[i].f_mntonname; string dev = stfs[i].f_mntfromname; mapping[dev] = mountpoint; //? Match filter if not empty if (not filter.empty()) { bool match = v_contains(filter, mountpoint); if ((filter_exclude and match) or (not filter_exclude and not match)) continue; } found.push_back(mountpoint); if (not disks.contains(mountpoint)) { disks[mountpoint] = disk_info{fs::canonical(dev, ec), fs::path(mountpoint).filename()}; if (disks.at(mountpoint).dev.empty()) disks.at(mountpoint).dev = dev; if (disks.at(mountpoint).name.empty()) disks.at(mountpoint).name = (mountpoint == "/" ? "root" : mountpoint); } if (not v_contains(last_found, mountpoint)) redraw = true; disks.at(mountpoint).free = stfs[i].f_bfree; disks.at(mountpoint).total = stfs[i].f_iosize; } //? Remove disks no longer mounted or filtered out if (swap_disk and has_swap) found.push_back("swap"); for (auto it = disks.begin(); it != disks.end();) { if (not v_contains(found, it->first)) it = disks.erase(it); else it++; } if (found.size() != last_found.size()) redraw = true; last_found = std::move(found); //? Get disk/partition stats for (auto &[mountpoint, disk] : disks) { if (std::error_code ec; not fs::exists(mountpoint, ec)) continue; struct statvfs vfs; if (statvfs(mountpoint.c_str(), &vfs) < 0) { Logger::warning("Failed to get disk/partition stats with statvfs() for: " + mountpoint); continue; } disk.total = vfs.f_blocks * vfs.f_frsize; disk.free = vfs.f_bfree * vfs.f_frsize; disk.used = disk.total - disk.free; if (disk.total != 0) { disk.used_percent = round((double)disk.used * 100 / disk.total); disk.free_percent = 100 - disk.used_percent; } else { disk.used_percent = 0; disk.free_percent = 0; } } //? Setup disks order in UI and add swap if enabled mem.disks_order.clear(); if (snapped and disks.contains("/mnt")) mem.disks_order.push_back("/mnt"); else if (disks.contains("/")) mem.disks_order.push_back("/"); if (swap_disk and has_swap) { mem.disks_order.push_back("swap"); if (not disks.contains("swap")) disks["swap"] = {"", "swap"}; disks.at("swap").total = mem.stats.at("swap_total"); disks.at("swap").used = mem.stats.at("swap_used"); disks.at("swap").free = mem.stats.at("swap_free"); disks.at("swap").used_percent = mem.percent.at("swap_used").back(); disks.at("swap").free_percent = mem.percent.at("swap_free").back(); } for (const auto &name : last_found) if (not is_in(name, "/", "swap", "/dev")) mem.disks_order.push_back(name); disk_ios = 0; collect_disk(disks, mapping); old_uptime = uptime; } return mem; } } // namespace Mem namespace Net { std::unordered_map current_net; net_info empty_net = {}; vector interfaces; string selected_iface; int errors = 0; std::unordered_map graph_max = {{"download", {}}, {"upload", {}}}; std::unordered_map> max_count = {{"download", {}}, {"upload", {}}}; bool rescale = true; uint64_t timestamp = 0; auto collect(bool no_update) -> net_info & { auto &net = current_net; auto &config_iface = Config::getS("net_iface"); auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto new_timestamp = time_ms(); if (not no_update and errors < 3) { //? Get interface list using getifaddrs() wrapper IfAddrsPtr if_addrs {}; if (if_addrs.get_status() != 0) { errors++; Logger::error("Net::collect() -> getifaddrs() failed with id " + to_string(if_addrs.get_status())); redraw = true; return empty_net; } int family = 0; static_assert(INET6_ADDRSTRLEN >= INET_ADDRSTRLEN); // 46 >= 16, compile-time assurance. enum { IPBUFFER_MAXSIZE = INET6_ADDRSTRLEN }; // manually using the known biggest value, guarded by the above static_assert char ip[IPBUFFER_MAXSIZE]; interfaces.clear(); string ipv4, ipv6; //? Iteration over all items in getifaddrs() list for (auto *ifa = if_addrs.get(); ifa != nullptr; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; family = ifa->ifa_addr->sa_family; const auto &iface = ifa->ifa_name; //? Update available interfaces vector and get status of interface if (not v_contains(interfaces, iface)) { interfaces.push_back(iface); net[iface].connected = (ifa->ifa_flags & IFF_RUNNING); // An interface can have more than one IP of the same family associated with it, // but we pick only the first one to show in the NET box. // Note: Interfaces without any IPv4 and IPv6 set are still valid and monitorable! net[iface].ipv4.clear(); net[iface].ipv6.clear(); } //? Get IPv4 address if (family == AF_INET) { if (net[iface].ipv4.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv4 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv4 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //? Get IPv6 address else if (family == AF_INET6) { if (net[iface].ipv6.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin6_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv6 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv6 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //else, ignoring family==AF_LINK (see man 3 getifaddrs) } std::unordered_map> ifstats; int mib[] = {CTL_NET, PF_ROUTE, 0, 0, NET_RT_IFLIST, 0}; size_t len; if (sysctl(mib, 6, nullptr, &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { std::unique_ptr buf(new char[len]); if (sysctl(mib, 6, buf.get(), &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { char *lim = buf.get() + len; char *next = nullptr; for (next = buf.get(); next < lim;) { struct if_msghdr *ifm = (struct if_msghdr *)next; next += ifm->ifm_msglen; struct if_data ifm_data = ifm->ifm_data; if (ifm->ifm_addrs & RTA_IFP) { struct sockaddr_dl *sdl = (struct sockaddr_dl *)(ifm + 1); char iface[32]; strncpy(iface, sdl->sdl_data, sdl->sdl_nlen); iface[sdl->sdl_nlen] = 0; ifstats[iface] = std::tuple(ifm_data.ifi_ibytes, ifm_data.ifi_obytes); } } } } //? Get total received and transmitted bytes + device address if no ip was found for (const auto &iface : interfaces) { for (const string dir : {"download", "upload"}) { auto &saved_stat = net.at(iface).stat.at(dir); auto &bandwidth = net.at(iface).bandwidth.at(dir); uint64_t val = dir == "download" ? std::get<0>(ifstats[iface]) : std::get<1>(ifstats[iface]); //? Update speed, total and top values if (val < saved_stat.last) { saved_stat.rollover += saved_stat.last; saved_stat.last = 0; } if (cmp_greater((unsigned long long)saved_stat.rollover + (unsigned long long)val, numeric_limits::max())) { saved_stat.rollover = 0; saved_stat.last = 0; } saved_stat.speed = round((double)(val - saved_stat.last) / ((double)(new_timestamp - timestamp) / 1000)); if (saved_stat.speed > saved_stat.top) saved_stat.top = saved_stat.speed; if (saved_stat.offset > val + saved_stat.rollover) saved_stat.offset = 0; saved_stat.total = (val + saved_stat.rollover) - saved_stat.offset; saved_stat.last = val; //? Add values to graph bandwidth.push_back(saved_stat.speed); while (cmp_greater(bandwidth.size(), width * 2)) bandwidth.pop_front(); //? Set counters for auto scaling if (net_auto and selected_iface == iface) { if (saved_stat.speed > graph_max[dir]) { ++max_count[dir][0]; if (max_count[dir][1] > 0) --max_count[dir][1]; } else if (graph_max[dir] > 10 << 10 and saved_stat.speed < graph_max[dir] / 10) { ++max_count[dir][1]; if (max_count[dir][0] > 0) --max_count[dir][0]; } } } } //? Clean up net map if needed if (net.size() > interfaces.size()) { for (auto it = net.begin(); it != net.end();) { if (not v_contains(interfaces, it->first)) it = net.erase(it); else it++; } } timestamp = new_timestamp; } //? Return empty net_info struct if no interfaces was found if (net.empty()) return empty_net; //? Find an interface to display if selected isn't set or valid if (selected_iface.empty() or not v_contains(interfaces, selected_iface)) { max_count["download"][0] = max_count["download"][1] = max_count["upload"][0] = max_count["upload"][1] = 0; redraw = true; if (net_auto) rescale = true; if (not config_iface.empty() and v_contains(interfaces, config_iface)) selected_iface = config_iface; else { //? Sort interfaces by total upload + download bytes auto sorted_interfaces = interfaces; rng::sort(sorted_interfaces, [&](const auto &a, const auto &b) { return cmp_greater(net.at(a).stat["download"].total + net.at(a).stat["upload"].total, net.at(b).stat["download"].total + net.at(b).stat["upload"].total); }); selected_iface.clear(); //? Try to set to a connected interface for (const auto &iface : sorted_interfaces) { if (net.at(iface).connected) selected_iface = iface; break; } //? If no interface is connected set to first available if (selected_iface.empty() and not sorted_interfaces.empty()) selected_iface = sorted_interfaces.at(0); else if (sorted_interfaces.empty()) return empty_net; } } //? Calculate max scale for graphs if needed if (net_auto) { bool sync = false; for (const auto &dir : {"download", "upload"}) { for (const auto &sel : {0, 1}) { if (rescale or max_count[dir][sel] >= 5) { const long long avg_speed = (net[selected_iface].bandwidth[dir].size() > 5 ? std::accumulate(net.at(selected_iface).bandwidth.at(dir).rbegin(), net.at(selected_iface).bandwidth.at(dir).rbegin() + 5, 0ll) / 5 : net[selected_iface].stat[dir].speed); graph_max[dir] = max(uint64_t(avg_speed * (sel == 0 ? 1.3 : 3.0)), (uint64_t)10 << 10); max_count[dir][0] = max_count[dir][1] = 0; redraw = true; if (net_sync) sync = true; break; } } //? Sync download/upload graphs if enabled if (sync) { const auto other = (string(dir) == "upload" ? "download" : "upload"); graph_max[other] = graph_max[dir]; max_count[other][0] = max_count[other][1] = 0; break; } } } rescale = false; return net.at(selected_iface); } } // namespace Net namespace Proc { vector current_procs; std::unordered_map uid_user; string current_sort; string current_filter; bool current_rev = false; fs::file_time_type passwd_time; uint64_t cputimes; int collapse = -1, expand = -1; uint64_t old_cputimes = 0; atomic numpids = 0; int filter_found = 0; detail_container detailed; string get_status(char s) { if (s & SRUN) return "Running"; if (s & SSLEEP) return "Sleeping"; if (s & SIDL) return "Idle"; if (s & SSTOP) return "Stopped"; if (s & SZOMB) return "Zombie"; return "Unknown"; } //* Get detailed info for selected process void _collect_details(const size_t pid, vector &procs) { if (pid != detailed.last_pid) { detailed = {}; detailed.last_pid = pid; detailed.skip_smaps = not Config::getB("proc_info_smaps"); } //? Copy proc_info for process from proc vector auto p_info = rng::find(procs, pid, &proc_info::pid); detailed.entry = *p_info; //? Update cpu percent deque for process cpu graph if (not Config::getB("proc_per_core")) detailed.entry.cpu_p *= Shared::coreCount; detailed.cpu_percent.push_back(clamp((long long)round(detailed.entry.cpu_p), 0ll, 100ll)); while (cmp_greater(detailed.cpu_percent.size(), width)) detailed.cpu_percent.pop_front(); //? Process runtime : current time - start time (both in unix time - seconds since epoch) struct timeval currentTime; gettimeofday(¤tTime, nullptr); detailed.elapsed = sec_to_dhms(currentTime.tv_sec - detailed.entry.cpu_s); // only interested in second granularity, so ignoring tc_usec if (detailed.elapsed.size() > 8) detailed.elapsed.resize(detailed.elapsed.size() - 3); //? Get parent process name if (detailed.parent.empty()) { auto p_entry = rng::find(procs, detailed.entry.ppid, &proc_info::pid); if (p_entry != procs.end()) detailed.parent = p_entry->name; } //? Expand process status from single char to explanative string detailed.status = get_status(detailed.entry.state); detailed.mem_bytes.push_back(detailed.entry.mem); detailed.memory = floating_humanizer(detailed.entry.mem); if (detailed.first_mem == -1 or detailed.first_mem < detailed.mem_bytes.back() / 2 or detailed.first_mem > detailed.mem_bytes.back() * 4) { detailed.first_mem = min((uint64_t)detailed.mem_bytes.back() * 2, Mem::get_totalMem()); redraw = true; } while (cmp_greater(detailed.mem_bytes.size(), width)) detailed.mem_bytes.pop_front(); // rusage_info_current rusage; // if (proc_pid_rusage(pid, RUSAGE_INFO_CURRENT, (void **)&rusage) == 0) { // // this fails for processes we don't own - same as in Linux // detailed.io_read = floating_humanizer(rusage.ri_diskio_bytesread); // detailed.io_write = floating_humanizer(rusage.ri_diskio_byteswritten); // } } //* Collects and sorts process information from /proc auto collect(bool no_update) -> vector & { const auto &sorting = Config::getS("proc_sorting"); auto reverse = Config::getB("proc_reversed"); const auto &filter = Config::getS("proc_filter"); auto per_core = Config::getB("proc_per_core"); auto tree = Config::getB("proc_tree"); auto show_detailed = Config::getB("show_detailed"); const size_t detailed_pid = Config::getI("detailed_pid"); bool should_filter = current_filter != filter; if (should_filter) current_filter = filter; bool sorted_change = (sorting != current_sort or reverse != current_rev or should_filter); if (sorted_change) { current_sort = sorting; current_rev = reverse; } const int cmult = (per_core) ? Shared::coreCount : 1; bool got_detailed = false; static vector found; vector> cpu_time(Shared::coreCount); size_t size = sizeof(long) * CPUSTATES * Shared::coreCount; if (sysctlbyname("kern.cp_times", &cpu_time[0], &size, nullptr, 0) == -1) { Logger::error("failed to get CPU times"); } cputimes = 0; for (const auto core : cpu_time) { for (const unsigned int c_state : {CP_USER, CP_NICE, CP_SYS, CP_IDLE}) { cputimes += core[c_state]; } } //* Use pids from last update if only changing filter, sorting or tree options if (no_update and not current_procs.empty()) { if (show_detailed and detailed_pid != detailed.last_pid) _collect_details(detailed_pid, current_procs); } else { //* ---------------------------------------------Collection start---------------------------------------------- should_filter = true; found.clear(); struct timeval currentTime; gettimeofday(¤tTime, nullptr); const double timeNow = currentTime.tv_sec + (currentTime.tv_usec / 1'000'000); int count = 0; char buf[_POSIX2_LINE_MAX]; Shared::KvmPtr kd {kvm_openfiles(nullptr, _PATH_DEVNULL, nullptr, O_RDONLY, buf)}; const struct kinfo_proc* kprocs = kvm_getprocs(kd.get(), KERN_PROC_PROC, 0, &count); for (int i = 0; i < count; i++) { const struct kinfo_proc* kproc = &kprocs[i]; const size_t pid = (size_t)kproc->ki_pid; if (pid < 1) continue; found.push_back(pid); //? Check if pid already exists in current_procs bool no_cache = false; auto find_old = rng::find(current_procs, pid, &proc_info::pid); if (find_old == current_procs.end()) { current_procs.push_back({pid}); find_old = current_procs.end() - 1; no_cache = true; } auto &new_proc = *find_old; //? Get program name, command, username, parent pid, nice and status if (no_cache) { if (string(kproc->ki_comm) == "idle"s) { current_procs.pop_back(); found.pop_back(); continue; } new_proc.name = kproc->ki_comm; char** argv = kvm_getargv(kd.get(), kproc, 0); if (argv) { for (int i = 0; argv[i] and cmp_less(new_proc.cmd.size(), 1000); i++) { new_proc.cmd += argv[i] + " "s; } if (not new_proc.cmd.empty()) new_proc.cmd.pop_back(); } if (new_proc.cmd.empty()) new_proc.cmd = new_proc.name; if (new_proc.cmd.size() > 1000) { new_proc.cmd.resize(1000); new_proc.cmd.shrink_to_fit(); } new_proc.ppid = kproc->ki_ppid; new_proc.cpu_s = round(kproc->ki_start.tv_sec); struct passwd *pwd = getpwuid(kproc->ki_uid); if (pwd) new_proc.user = pwd->pw_name; } new_proc.p_nice = kproc->ki_nice; new_proc.state = kproc->ki_stat; int cpu_t = 0; cpu_t = kproc->ki_rusage.ru_utime.tv_sec * 1'000'000 + kproc->ki_rusage.ru_utime.tv_usec + kproc->ki_rusage.ru_stime.tv_sec * 1'000'000 + kproc->ki_rusage.ru_stime.tv_usec; new_proc.mem = kproc->ki_rssize * Shared::pageSize; new_proc.threads = kproc->ki_numthreads; //? Process cpu usage since last update new_proc.cpu_p = clamp((100.0 * kproc->ki_pctcpu / Shared::kfscale) * cmult, 0.0, 100.0 * Shared::coreCount); //? Process cumulative cpu usage since process start new_proc.cpu_c = (double)(cpu_t * Shared::clkTck / 1'000'000) / max(1.0, timeNow - new_proc.cpu_s); //? Update cached value with latest cpu times new_proc.cpu_t = cpu_t; if (show_detailed and not got_detailed and new_proc.pid == detailed_pid) { got_detailed = true; } } //? Clear dead processes from current_procs auto eraser = rng::remove_if(current_procs, [&](const auto &element) { return not v_contains(found, element.pid); }); current_procs.erase(eraser.begin(), eraser.end()); //? Update the details info box for process if active if (show_detailed and got_detailed) { _collect_details(detailed_pid, current_procs); } else if (show_detailed and not got_detailed and detailed.status != "Dead") { detailed.status = "Dead"; redraw = true; } old_cputimes = cputimes; } //* ---------------------------------------------Collection done----------------------------------------------- //* Match filter if defined if (should_filter) { filter_found = 0; for (auto& p : current_procs) { if (not tree and not filter.empty()) { if (!matches_filter(p, filter)) { p.filtered = true; filter_found++; } else { p.filtered = false; } } else { p.filtered = false; } } } //* Sort processes if (sorted_change or not no_update) { proc_sorter(current_procs, sorting, reverse, tree); } //* Generate tree view if enabled if (tree and (not no_update or should_filter or sorted_change)) { bool locate_selection = false; if (auto find_pid = (collapse != -1 ? collapse : expand); find_pid != -1) { auto collapser = rng::find(current_procs, find_pid, &proc_info::pid); if (collapser != current_procs.end()) { if (collapse == expand) { collapser->collapsed = not collapser->collapsed; } else if (collapse > -1) { collapser->collapsed = true; } else if (expand > -1) { collapser->collapsed = false; } if (Config::ints.at("proc_selected") > 0) locate_selection = true; } collapse = expand = -1; } if (should_filter or not filter.empty()) filter_found = 0; vector tree_procs; tree_procs.reserve(current_procs.size()); for (auto& p : current_procs) { if (not v_contains(found, p.ppid)) p.ppid = 0; } //? Stable sort to retain selected sorting among processes with the same parent rng::stable_sort(current_procs, rng::less{}, & proc_info::ppid); //? Start recursive iteration over processes with the lowest shared parent pids for (auto& p : rng::equal_range(current_procs, current_procs.at(0).ppid, rng::less{}, &proc_info::ppid)) { _tree_gen(p, current_procs, tree_procs, 0, false, filter, false, no_update, should_filter); } //? Recursive sort over tree structure to account for collapsed processes in the tree int index = 0; tree_sort(tree_procs, sorting, reverse, index, current_procs.size()); //? Recursive construction of ASCII tree prefixes. for (auto t = tree_procs.begin(); t != tree_procs.end(); ++t) { _collect_prefixes(*t, t == tree_procs.end() - 1); } //? Final sort based on tree index rng::sort(current_procs, rng::less{}, & proc_info::tree_index); //? Move current selection/view to the selected process when collapsing/expanding in the tree if (locate_selection) { int loc = rng::find(current_procs, Proc::selected_pid, &proc_info::pid)->tree_index; if (Config::ints.at("proc_start") >= loc or Config::ints.at("proc_start") <= loc - Proc::select_max) Config::ints.at("proc_start") = max(0, loc - 1); Config::ints.at("proc_selected") = loc - Config::ints.at("proc_start") + 1; } } numpids = (int)current_procs.size() - filter_found; return current_procs; } } // namespace Proc namespace Tools { double system_uptime() { struct timeval ts, currTime; std::size_t len = sizeof(ts); int mib[2] = {CTL_KERN, KERN_BOOTTIME}; if (sysctl(mib, 2, &ts, &len, nullptr, 0) != -1) { gettimeofday(&currTime, nullptr); return currTime.tv_sec - ts.tv_sec; } return 0.0; } } // namespace Tools btop-1.4.5/src/linux/000077500000000000000000000000001506333644200144215ustar00rootroot00000000000000btop-1.4.5/src/linux/btop_collect.cpp000066400000000000000000003343131506333644200176050ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include #include #include #include #include // for inet_ntop() #include #include #include #include #if defined(RSMI_STATIC) #include #endif #if !(defined(STATIC_BUILD) && defined(__GLIBC__)) #include #endif #include "../btop_shared.hpp" #include "../btop_config.hpp" #include "../btop_tools.hpp" #if defined(GPU_SUPPORT) #define class class_ extern "C" { #include "./intel_gpu_top/intel_gpu_top.h" } #undef class #endif using std::abs; using std::clamp; using std::cmp_greater; using std::cmp_less; using std::ifstream; using std::max; using std::min; using std::numeric_limits; using std::round; using std::streamsize; using std::vector; using std::future; using std::async; using std::pair; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace Tools; using namespace std::literals; // for operator""s using namespace std::chrono_literals; //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace { long long get_monotonicTimeUSec() { struct timespec time; clock_gettime(CLOCK_MONOTONIC, &time); return time.tv_sec * 1000000 + time.tv_nsec / 1000; } } namespace Cpu { vector core_old_totals; vector core_old_idles; vector available_fields = {"Auto", "total"}; vector available_sensors = {"Auto"}; cpu_info current_cpu; fs::path freq_path = "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq"; bool got_sensors{}; bool cpu_temp_only{}; bool supports_watts = true; //* Populate found_sensors map bool get_sensors(); //* Get current cpu clock speed string get_cpuHz(); //* Search /proc/cpuinfo for a cpu name string get_cpuName(); struct Sensor { fs::path path; int64_t temp{}; int64_t crit{}; }; std::unordered_map found_sensors; string cpu_sensor; vector core_sensors; std::unordered_map core_mapping; } namespace Gpu { vector gpus; #ifdef GPU_SUPPORT //? NVIDIA data collection namespace Nvml { //? NVML defines, structs & typedefs #define NVML_DEVICE_NAME_BUFFER_SIZE 64 #define NVML_SUCCESS 0 #define NVML_TEMPERATURE_THRESHOLD_SHUTDOWN 0 #define NVML_CLOCK_GRAPHICS 0 #define NVML_CLOCK_MEM 2 #define NVML_TEMPERATURE_GPU 0 #define NVML_PCIE_UTIL_TX_BYTES 0 #define NVML_PCIE_UTIL_RX_BYTES 1 typedef void* nvmlDevice_t; // we won't be accessing any of the underlying struct's properties, so this is fine typedef int nvmlReturn_t, // enums are basically ints nvmlTemperatureThresholds_t, nvmlClockType_t, nvmlPstates_t, nvmlTemperatureSensors_t, nvmlPcieUtilCounter_t; struct nvmlUtilization_t {unsigned int gpu, memory;}; struct nvmlMemory_t {unsigned long long total, free, used;}; //? Function pointers const char* (*nvmlErrorString)(nvmlReturn_t); nvmlReturn_t (*nvmlInit)(); nvmlReturn_t (*nvmlShutdown)(); nvmlReturn_t (*nvmlDeviceGetCount)(unsigned int*); nvmlReturn_t (*nvmlDeviceGetHandleByIndex)(unsigned int, nvmlDevice_t*); nvmlReturn_t (*nvmlDeviceGetName)(nvmlDevice_t, char*, unsigned int); nvmlReturn_t (*nvmlDeviceGetPowerManagementLimit)(nvmlDevice_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetTemperatureThreshold)(nvmlDevice_t, nvmlTemperatureThresholds_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetUtilizationRates)(nvmlDevice_t, nvmlUtilization_t*); nvmlReturn_t (*nvmlDeviceGetClockInfo)(nvmlDevice_t, nvmlClockType_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetPowerUsage)(nvmlDevice_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetPowerState)(nvmlDevice_t, nvmlPstates_t*); nvmlReturn_t (*nvmlDeviceGetTemperature)(nvmlDevice_t, nvmlTemperatureSensors_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetMemoryInfo)(nvmlDevice_t, nvmlMemory_t*); nvmlReturn_t (*nvmlDeviceGetPcieThroughput)(nvmlDevice_t, nvmlPcieUtilCounter_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetEncoderUtilization)(nvmlDevice_t, unsigned int*, unsigned int*); nvmlReturn_t (*nvmlDeviceGetDecoderUtilization)(nvmlDevice_t, unsigned int*, unsigned int*); //? Data void* nvml_dl_handle; bool initialized = false; bool init(); bool shutdown(); template bool collect(gpu_info* gpus_slice); vector devices; unsigned int device_count = 0; } //? AMD data collection namespace Rsmi { //? RSMI defines, structs & typedefs #define RSMI_DEVICE_NAME_BUFFER_SIZE 128 #if !defined(RSMI_STATIC) #define RSMI_MAX_NUM_FREQUENCIES_V5 32 #define RSMI_MAX_NUM_FREQUENCIES_V6 33 #define RSMI_STATUS_SUCCESS 0 #define RSMI_MEM_TYPE_VRAM 0 #define RSMI_TEMP_CURRENT 0 #define RSMI_TEMP_TYPE_EDGE 0 #define RSMI_CLK_TYPE_MEM 4 #define RSMI_CLK_TYPE_SYS 0 #define RSMI_TEMP_MAX 1 typedef int rsmi_status_t, rsmi_temperature_metric_t, rsmi_clk_type_t, rsmi_memory_type_t; struct rsmi_version_t {uint32_t major, minor, patch; const char* build;}; struct rsmi_frequencies_t_v5 {uint32_t num_supported, current; uint64_t frequency[RSMI_MAX_NUM_FREQUENCIES_V5];}; struct rsmi_frequencies_t_v6 {bool has_deep_sleep; uint32_t num_supported, current; uint64_t frequency[RSMI_MAX_NUM_FREQUENCIES_V6];}; //? Function pointers rsmi_status_t (*rsmi_init)(uint64_t); rsmi_status_t (*rsmi_shut_down)(); rsmi_status_t (*rsmi_version_get)(rsmi_version_t*); rsmi_status_t (*rsmi_num_monitor_devices)(uint32_t*); rsmi_status_t (*rsmi_dev_name_get)(uint32_t, char*, size_t); rsmi_status_t (*rsmi_dev_power_cap_get)(uint32_t, uint32_t, uint64_t*); rsmi_status_t (*rsmi_dev_temp_metric_get)(uint32_t, uint32_t, rsmi_temperature_metric_t, int64_t*); rsmi_status_t (*rsmi_dev_busy_percent_get)(uint32_t, uint32_t*); rsmi_status_t (*rsmi_dev_memory_busy_percent_get)(uint32_t, uint32_t*); rsmi_status_t (*rsmi_dev_gpu_clk_freq_get_v5)(uint32_t, rsmi_clk_type_t, rsmi_frequencies_t_v5*); rsmi_status_t (*rsmi_dev_gpu_clk_freq_get_v6)(uint32_t, rsmi_clk_type_t, rsmi_frequencies_t_v6*); rsmi_status_t (*rsmi_dev_power_ave_get)(uint32_t, uint32_t, uint64_t*); rsmi_status_t (*rsmi_dev_memory_total_get)(uint32_t, rsmi_memory_type_t, uint64_t*); rsmi_status_t (*rsmi_dev_memory_usage_get)(uint32_t, rsmi_memory_type_t, uint64_t*); rsmi_status_t (*rsmi_dev_pci_throughput_get)(uint32_t, uint64_t*, uint64_t*, uint64_t*); uint32_t version_major = 0; //? Data void* rsmi_dl_handle; #endif bool initialized = false; bool init(); bool shutdown(); template bool collect(gpu_info* gpus_slice); uint32_t device_count = 0; } //? Intel data collection namespace Intel { const char* device = "i915"; struct engines *engines = nullptr; bool initialized = false; bool init(); bool shutdown(); template bool collect(gpu_info* gpus_slice); uint32_t device_count = 0; } #endif } namespace Mem { double old_uptime; } namespace Shared { fs::path procPath, passwd_path; long pageSize, clkTck, coreCount; void init() { //? Shared global variables init procPath = (fs::is_directory(fs::path("/proc")) and access("/proc", R_OK) != -1) ? "/proc" : ""; if (procPath.empty()) throw std::runtime_error("Proc filesystem not found or no permission to read from it!"); passwd_path = (fs::is_regular_file(fs::path("/etc/passwd")) and access("/etc/passwd", R_OK) != -1) ? "/etc/passwd" : ""; if (passwd_path.empty()) Logger::warning("Could not read /etc/passwd, will show UID instead of username."); coreCount = sysconf(_SC_NPROCESSORS_ONLN); if (coreCount < 1) { coreCount = sysconf(_SC_NPROCESSORS_CONF); if (coreCount < 1) { coreCount = 1; Logger::warning("Could not determine number of cores, defaulting to 1."); } } pageSize = sysconf(_SC_PAGE_SIZE); if (pageSize <= 0) { pageSize = 4096; Logger::warning("Could not get system page size. Defaulting to 4096, processes memory usage might be incorrect."); } clkTck = sysconf(_SC_CLK_TCK); if (clkTck <= 0) { clkTck = 100; Logger::warning("Could not get system clock ticks per second. Defaulting to 100, processes cpu usage might be incorrect."); } //? Init for namespace Cpu if (not fs::exists(Cpu::freq_path) or access(Cpu::freq_path.c_str(), R_OK) == -1) Cpu::freq_path.clear(); Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {}); Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {}); Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0); Cpu::core_old_idles.insert(Cpu::core_old_idles.begin(), Shared::coreCount, 0); Cpu::collect(); if (Runner::coreNum_reset) Runner::coreNum_reset = false; for (auto& [field, vec] : Cpu::current_cpu.cpu_percent) { if (not vec.empty() and not v_contains(Cpu::available_fields, field)) Cpu::available_fields.push_back(field); } Cpu::cpuName = Cpu::get_cpuName(); Cpu::got_sensors = Cpu::get_sensors(); for (const auto& [sensor, ignored] : Cpu::found_sensors) { Cpu::available_sensors.push_back(sensor); } Cpu::core_mapping = Cpu::get_core_mapping(); //? Init for namespace Gpu #ifdef GPU_SUPPORT Gpu::Nvml::init(); Gpu::Rsmi::init(); Gpu::Intel::init(); if (not Gpu::gpu_names.empty()) { for (auto const& [key, _] : Gpu::gpus[0].gpu_percent) Cpu::available_fields.push_back(key); for (auto const& [key, _] : Gpu::shared_gpu_percent) Cpu::available_fields.push_back(key); using namespace Gpu; count = gpus.size(); gpu_b_height_offsets.resize(gpus.size()); for (size_t i = 0; i < gpu_b_height_offsets.size(); ++i) gpu_b_height_offsets[i] = gpus[i].supported_functions.gpu_utilization + gpus[i].supported_functions.pwr_usage + (gpus[i].supported_functions.encoder_utilization or gpus[i].supported_functions.decoder_utilization) + (gpus[i].supported_functions.mem_total or gpus[i].supported_functions.mem_used) * (1 + 2*(gpus[i].supported_functions.mem_total and gpus[i].supported_functions.mem_used) + 2*gpus[i].supported_functions.mem_utilization); } #endif //? Init for namespace Mem Mem::old_uptime = system_uptime(); Mem::collect(); Logger::debug("Shared::init() : Initialized."); } } namespace Cpu { string cpuName; string cpuHz; bool has_battery = true; tuple current_bat; const array time_names { "user"s, "nice"s, "system"s, "idle"s, "iowait"s, "irq"s, "softirq"s, "steal"s, "guest"s, "guest_nice"s }; std::unordered_map cpu_old = { {"totals", 0}, {"idles", 0}, {"user", 0}, {"nice", 0}, {"system", 0}, {"idle", 0}, {"iowait", 0}, {"irq", 0}, {"softirq", 0}, {"steal", 0}, {"guest", 0}, {"guest_nice", 0} }; string get_cpuName() { string name; ifstream cpuinfo(Shared::procPath / "cpuinfo"); if (cpuinfo.good()) { for (string instr; getline(cpuinfo, instr, ':') and not instr.starts_with("model name");) cpuinfo.ignore(SSmax, '\n'); if (cpuinfo.bad()) return name; else if (not cpuinfo.eof()) { cpuinfo.ignore(1); getline(cpuinfo, name); } else if (fs::exists("/sys/devices")) { for (const auto& d : fs::directory_iterator("/sys/devices")) { if (string(d.path().filename()).starts_with("arm")) { name = d.path().filename(); break; } } if (not name.empty()) { auto name_vec = ssplit(name, '_'); if (name_vec.size() < 2) return capitalize(name); else return capitalize(name_vec.at(1)) + (name_vec.size() > 2 ? ' ' + capitalize(name_vec.at(2)) : ""); } } name = trim_name(name); } return name; } bool get_sensors() { bool got_cpu = false, got_coretemp = false; vector search_paths; try { //? Setup up paths to search for sensors if (fs::exists(fs::path("/sys/class/hwmon")) and access("/sys/class/hwmon", R_OK) != -1) { for (const auto& dir : fs::directory_iterator(fs::path("/sys/class/hwmon"))) { fs::path add_path = fs::canonical(dir.path()); if (v_contains(search_paths, add_path) or v_contains(search_paths, add_path / "device")) continue; if (s_contains(add_path.c_str(), "coretemp")) got_coretemp = true; for (const auto & file : fs::directory_iterator(add_path)) { if (file.path().filename() == "device") { for (const auto & dev_file : fs::directory_iterator(file.path())) { string dev_filename = dev_file.path().filename(); if (dev_filename.starts_with("temp") and dev_filename.ends_with("_input")) { search_paths.push_back(file.path()); break; } } } string filename = file.path().filename(); if (filename.starts_with("temp") and filename.ends_with("_input")) { search_paths.push_back(add_path); break; } } } } if (not got_coretemp and fs::exists(fs::path("/sys/devices/platform/coretemp.0/hwmon"))) { for (auto& d : fs::directory_iterator(fs::path("/sys/devices/platform/coretemp.0/hwmon"))) { fs::path add_path = fs::canonical(d.path()); for (const auto & file : fs::directory_iterator(add_path)) { string filename = file.path().filename(); if (filename.starts_with("temp") and filename.ends_with("_input") and not v_contains(search_paths, add_path)) { search_paths.push_back(add_path); got_coretemp = true; break; } } } } //? Scan any found directories for temperature sensors if (not search_paths.empty()) { for (const auto& path : search_paths) { const string pname = readfile(path / "name", path.filename()); for (const auto & file : fs::directory_iterator(path)) { const string file_suffix = "input"; const int file_id = atoi(file.path().filename().c_str() + 4); // skip "temp" prefix string file_path = file.path(); if (!s_contains(file_path, file_suffix) or s_contains(file_path, "nvme")) { continue; } const string basepath = file_path.erase(file_path.find(file_suffix), file_suffix.length()); const string label = readfile(fs::path(basepath + "label"), "temp" + to_string(file_id)); const string sensor_name = pname + "/" + label; const int64_t temp = stol(readfile(fs::path(basepath + "input"), "0")) / 1000; const int64_t crit = stol(readfile(fs::path(basepath + "crit"), "95000")) / 1000; found_sensors[sensor_name] = Sensor { fs::path(basepath + "input"), temp, crit }; if (not got_cpu and (label.starts_with("Package id") or label.starts_with("Tdie") or label.starts_with("SoC Temperature"))) { got_cpu = true; cpu_sensor = sensor_name; } else if (label.starts_with("Core") or label.starts_with("Tccd")) { got_coretemp = true; if (not v_contains(core_sensors, sensor_name)) core_sensors.push_back(sensor_name); } } } } //? If no good candidate for cpu temp has been found scan /sys/class/thermal if (not got_cpu and fs::exists(fs::path("/sys/class/thermal"))) { const string rootpath = fs::path("/sys/class/thermal/thermal_zone"); for (int i = 0; fs::exists(fs::path(rootpath + to_string(i))); i++) { const fs::path basepath = rootpath + to_string(i); if (not fs::exists(basepath / "temp")) continue; const string label = readfile(basepath / "type", "temp" + to_string(i)); const string sensor_name = "thermal" + to_string(i) + "/" + label; const int64_t temp = stol(readfile(basepath / "temp", "0")) / 1000; int64_t high = 0; int64_t crit = 0; for (int ii = 0; fs::exists(basepath / string("trip_point_" + to_string(ii) + "_temp")); ii++) { const string trip_type = readfile(basepath / string("trip_point_" + to_string(ii) + "_type")); if (not is_in(trip_type, "high", "critical")) continue; auto& val = (trip_type == "high" ? high : crit); val = stol(readfile(basepath / string("trip_point_" + to_string(ii) + "_temp"), "0")) / 1000; } if (high < 1) high = 80; if (crit < 1) crit = 95; found_sensors[sensor_name] = Sensor { basepath / "temp", temp, crit }; } } } catch (...) {} if (not got_coretemp or core_sensors.empty()) { cpu_temp_only = true; } else { rng::sort(core_sensors, rng::less{}); rng::stable_sort(core_sensors, [](const auto& a, const auto& b){ return a.size() < b.size(); }); } if (cpu_sensor.empty() and not found_sensors.empty()) { for (const auto& [name, sensor] : found_sensors) { if (s_contains(str_to_lower(name), "cpu") or s_contains(str_to_lower(name), "k10temp")) { cpu_sensor = name; break; } } if (cpu_sensor.empty()) { cpu_sensor = found_sensors.begin()->first; Logger::warning("No good candidate for cpu sensor found, using random from all found sensors."); } } return not found_sensors.empty(); } static void update_sensors() { if (cpu_sensor.empty()) return; const auto& cpu_sensor = (not Config::getS("cpu_sensor").empty() and found_sensors.contains(Config::getS("cpu_sensor")) ? Config::getS("cpu_sensor") : Cpu::cpu_sensor); found_sensors.at(cpu_sensor).temp = stol(readfile(found_sensors.at(cpu_sensor).path, "0")) / 1000; current_cpu.temp.at(0).push_back(found_sensors.at(cpu_sensor).temp); current_cpu.temp_max = found_sensors.at(cpu_sensor).crit; if (current_cpu.temp.at(0).size() > 20) current_cpu.temp.at(0).pop_front(); if (Config::getB("show_coretemp") and not cpu_temp_only) { for (vector done; const auto& sensor : core_sensors) { if (v_contains(done, sensor)) continue; found_sensors.at(sensor).temp = stol(readfile(found_sensors.at(sensor).path, "0")) / 1000; done.push_back(sensor); } for (const auto& [core, temp] : core_mapping) { if (cmp_less(core + 1, current_cpu.temp.size()) and cmp_less(temp, core_sensors.size())) { current_cpu.temp.at(core + 1).push_back(found_sensors.at(core_sensors.at(temp)).temp); if (current_cpu.temp.at(core + 1).size() > 20) current_cpu.temp.at(core + 1).pop_front(); } } } } string get_cpuHz() { static int failed{}; if (failed > 4) return ""s; string cpuhz; try { double hz{}; //? Try to get freq from /sys/devices/system/cpu/cpufreq/policy first (faster) if (not freq_path.empty()) { hz = stod(readfile(freq_path, "0.0")) / 1000; if (hz <= 0.0 and ++failed >= 2) freq_path.clear(); } //? If freq from /sys failed or is missing try to use /proc/cpuinfo if (hz <= 0.0) { ifstream cpufreq(Shared::procPath / "cpuinfo"); if (cpufreq.good()) { while (cpufreq.ignore(SSmax, '\n')) { if (cpufreq.peek() == 'c') { cpufreq.ignore(SSmax, ' '); if (cpufreq.peek() == 'M') { cpufreq.ignore(SSmax, ':'); cpufreq.ignore(1); cpufreq >> hz; break; } } } } } if (hz <= 1 or hz >= 999999999) throw std::runtime_error("Failed to read /sys/devices/system/cpu/cpufreq/policy and /proc/cpuinfo."); if (hz > 999999) { cpuhz = fmt::format("{:.1f}", hz / 1'000'000); cpuhz.resize(3); if (cpuhz.back() == '.') cpuhz.pop_back(); cpuhz += " THz"; } else if (hz > 999) { cpuhz = fmt::format("{:.1f}", hz / 1'000); cpuhz.resize(3); if (cpuhz.back() == '.') cpuhz.pop_back(); cpuhz += " GHz"; } else { cpuhz = fmt::format("{:.0f} MHz", hz); } } catch (const std::exception& e) { if (++failed < 5) return ""s; else { Logger::warning("get_cpuHZ() : " + string{e.what()}); return ""s; } } return cpuhz; } auto get_core_mapping() -> std::unordered_map { std::unordered_map core_map; if (cpu_temp_only) return core_map; //? Try to get core mapping from /proc/cpuinfo ifstream cpuinfo(Shared::procPath / "cpuinfo"); if (cpuinfo.good()) { int cpu{}; int core{}; int n{}; for (string instr; cpuinfo >> instr;) { if (instr == "processor") { cpuinfo.ignore(SSmax, ':'); cpuinfo >> cpu; } else if (instr.starts_with("core")) { cpuinfo.ignore(SSmax, ':'); cpuinfo >> core; if (std::cmp_greater_equal(core, core_sensors.size())) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[cpu] = n++; } else core_map[cpu] = core; } cpuinfo.ignore(SSmax, '\n'); } } //? If core mapping from cpuinfo was incomplete try to guess remainder, if missing completely, map 0-0 1-1 2-2 etc. if (cmp_less(core_map.size(), Shared::coreCount)) { if (Shared::coreCount % 2 == 0 and (long)core_map.size() == Shared::coreCount / 2) { for (int i = 0, n = 0; i < Shared::coreCount / 2; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[Shared::coreCount / 2 + i] = n++; } } else { core_map.clear(); for (int i = 0, n = 0; i < Shared::coreCount; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[i] = n++; } } } //? Apply user set custom mapping if any const auto& custom_map = Config::getS("cpu_core_map"); if (not custom_map.empty()) { try { for (const auto& split : ssplit(custom_map)) { const auto vals = ssplit(split, ':'); if (vals.size() != 2) continue; int change_id = std::stoi(vals.at(0)); int new_id = std::stoi(vals.at(1)); if (not core_map.contains(change_id) or cmp_greater(new_id, core_sensors.size())) continue; core_map.at(change_id) = new_id; } } catch (...) {} } return core_map; } struct battery { fs::path base_dir, energy_now, charge_now, energy_full, charge_full, power_now, current_now, voltage_now, status, online; string device_type; bool use_energy_or_charge = true; bool use_power = true; }; auto get_battery() -> tuple { if (not has_battery) return {0, 0, 0, ""}; static string auto_sel; static std::unordered_map batteries; //? Get paths to needed files and check for valid values on first run if (batteries.empty() and has_battery) { try { if (fs::exists("/sys/class/power_supply")) { for (const auto& d : fs::directory_iterator("/sys/class/power_supply")) { //? Only consider online power supplies of type Battery or UPS //? see kernel docs for details on the file structure and contents //? https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-power battery new_bat; fs::path bat_dir; try { if (not d.is_directory() or not fs::exists(d.path() / "type") or not fs::exists(d.path() / "present") or stoi(readfile(d.path() / "present")) != 1) continue; string dev_type = readfile(d.path() / "type"); if (is_in(dev_type, "Battery", "UPS")) { bat_dir = d.path(); new_bat.base_dir = d.path(); new_bat.device_type = dev_type; } } catch (...) { //? skip power supplies not conforming to the kernel standard continue; } if (fs::exists(bat_dir / "energy_now")) new_bat.energy_now = bat_dir / "energy_now"; else if (fs::exists(bat_dir / "charge_now")) new_bat.charge_now = bat_dir / "charge_now"; else new_bat.use_energy_or_charge = false; if (fs::exists(bat_dir / "energy_full")) new_bat.energy_full = bat_dir / "energy_full"; else if (fs::exists(bat_dir / "charge_full")) new_bat.charge_full = bat_dir / "charge_full"; else new_bat.use_energy_or_charge = false; if (not new_bat.use_energy_or_charge and not fs::exists(bat_dir / "capacity")) { continue; } if (fs::exists(bat_dir / "power_now")) { new_bat.power_now = bat_dir / "power_now"; } else if ((fs::exists(bat_dir / "current_now")) and (fs::exists(bat_dir / "voltage_now"))) { new_bat.current_now = bat_dir / "current_now"; new_bat.voltage_now = bat_dir / "voltage_now"; } else { new_bat.use_power = false; } if (fs::exists(bat_dir / "AC0/online")) new_bat.online = bat_dir / "AC0/online"; else if (fs::exists(bat_dir / "AC/online")) new_bat.online = bat_dir / "AC/online"; batteries[bat_dir.filename()] = new_bat; Config::available_batteries.push_back(bat_dir.filename()); } } } catch (...) { batteries.clear(); } if (batteries.empty()) { has_battery = false; return {0, 0, 0, ""}; } } auto& battery_sel = Config::getS("selected_battery"); if (auto_sel.empty()) { for (auto& [name, bat] : batteries) { if (bat.device_type == "Battery") { auto_sel = name; break; } } if (auto_sel.empty()) auto_sel = batteries.begin()->first; } auto& b = (battery_sel != "Auto" and batteries.contains(battery_sel) ? batteries.at(battery_sel) : batteries.at(auto_sel)); int percent = -1; long seconds = -1; float watts = -1; //? Try to get battery percentage if (percent < 0) { try { percent = stoi(readfile(b.base_dir / "capacity", "-1")); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } if (b.use_energy_or_charge and percent < 0) { try { percent = round(100.0 * stod(readfile(b.energy_now, "-1")) / stod(readfile(b.energy_full, "1"))); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } if (b.use_energy_or_charge and percent < 0) { try { percent = round(100.0 * stod(readfile(b.charge_now, "-1")) / stod(readfile(b.charge_full, "1"))); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } if (percent < 0) { has_battery = false; return {0, 0, 0, ""}; } //? Get charging/discharging status string status = str_to_lower(readfile(b.base_dir / "status", "unknown")); if (status == "unknown" and not b.online.empty()) { const auto online = readfile(b.online, "0"); if (online == "1" and percent < 100) status = "charging"; else if (online == "1") status = "full"; else status = "discharging"; } //? Get seconds to empty if (not is_in(status, "charging", "full")) { if (b.use_energy_or_charge ) { if (not b.power_now.empty()) { try { seconds = abs(round(stod(readfile(b.energy_now, "0")) / stod(readfile(b.power_now, "1")) * 3600)); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } else if (not b.current_now.empty()) { try { seconds = abs(round(stod(readfile(b.charge_now, "0")) / stod(readfile(b.current_now, "1")) * 3600)); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } } if (seconds < 0 and fs::exists(b.base_dir / "time_to_empty")) { try { seconds = stoll(readfile(b.base_dir / "time_to_empty", "0")) * 60; } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } } //? Or get seconds to full else if(is_in(status, "charging")) { if (b.use_energy_or_charge ) { if (not b.power_now.empty()) { try { seconds = (round(stod(readfile(b.energy_full , "0")) - round(stod(readfile(b.energy_now, "0")))) / abs(stod(readfile(b.power_now, "1"))) * 3600); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } else if (not b.current_now.empty()) { try { seconds = (round(stod(readfile(b.charge_full , "0")) - stod(readfile(b.charge_now, "0"))) / std::abs(stod(readfile(b.current_now, "1"))) * 3600); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } } } //? Get power draw if (b.use_power) { if (not b.power_now.empty()) { try { watts = stof(readfile(b.power_now, "-1")) / 1000000.0F; } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } else if (not b.voltage_now.empty() and not b.current_now.empty()) { try { watts = stof(readfile(b.current_now, "-1")) / 1000000.0F * stof(readfile(b.voltage_now, "1")) / 1000000.0F; } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } } return {percent, watts, seconds, status}; } long long get_cpuConsumptionUJoules() { long long consumption = -1; const auto rapl_power_usage_path = "/sys/class/powercap/intel-rapl:0/energy_uj"; std::ifstream file(rapl_power_usage_path); if(file.good()) { file >> consumption; } return consumption; } float get_cpuConsumptionWatts() { static long long previous_usage = 0; static long long previous_timestamp = 0; if (previous_usage == 0) { previous_usage = get_cpuConsumptionUJoules(); previous_timestamp = get_monotonicTimeUSec(); supports_watts = (previous_usage > 0); return 0; } if (!supports_watts) { return -1; } auto current_timestamp = get_monotonicTimeUSec(); auto current_usage = get_cpuConsumptionUJoules(); auto watts = (float)(current_usage - previous_usage) / (float)(current_timestamp - previous_timestamp); previous_timestamp = current_timestamp; previous_usage = current_usage; return watts; } auto collect(bool no_update) -> cpu_info& { if (Runner::stopping or (no_update and not current_cpu.cpu_percent.at("total").empty())) return current_cpu; auto& cpu = current_cpu; if (Config::getB("show_cpu_freq")) cpuHz = get_cpuHz(); if (getloadavg(cpu.load_avg.data(), cpu.load_avg.size()) < 0) { Logger::error("failed to get load averages"); } ifstream cread; try { //? Get cpu total times for all cores from /proc/stat string cpu_name; cread.open(Shared::procPath / "stat"); int i = 0; int target = Shared::coreCount; for (; i <= target or (cread.good() and cread.peek() == 'c'); i++) { //? Make sure to add zero value for missing core values if at end of file if ((not cread.good() or cread.peek() != 'c') and i <= target) { if (i == 0) throw std::runtime_error("Failed to parse /proc/stat"); else { //? Fix container sizes if new cores are detected while (cmp_less(cpu.core_percent.size(), i)) { core_old_totals.push_back(0); core_old_idles.push_back(0); cpu.core_percent.emplace_back(); } cpu.core_percent.at(i-1).push_back(0); } } else { if (i == 0) cread.ignore(SSmax, ' '); else { cread >> cpu_name; int cpuNum = std::stoi(cpu_name.substr(3)); if (cpuNum >= target - 1) target = cpuNum + (cread.peek() == 'c' ? 2 : 1); //? Add zero value for core if core number is missing from /proc/stat while (i - 1 < cpuNum) { //? Fix container sizes if new cores are detected while (cmp_less(cpu.core_percent.size(), i)) { core_old_totals.push_back(0); core_old_idles.push_back(0); cpu.core_percent.emplace_back(); } cpu.core_percent[i-1].push_back(0); if (cpu.core_percent.at(i-1).size() > 40) cpu.core_percent.at(i-1).pop_front(); i++; } } //? Expected on kernel 2.6.3> : 0=user, 1=nice, 2=system, 3=idle, 4=iowait, 5=irq, 6=softirq, 7=steal, 8=guest, 9=guest_nice vector times; long long total_sum = 0; for (uint64_t val; cread >> val; total_sum += val) { times.push_back(val); } cread.clear(); if (times.size() < 4) throw std::runtime_error("Malformed /proc/stat"); //? Subtract fields 8-9 and any future unknown fields const long long totals = max(0ll, total_sum - (times.size() > 8 ? std::accumulate(times.begin() + 8, times.end(), 0ll) : 0)); //? Add iowait field if present const long long idles = max(0ll, times.at(3) + (times.size() > 4 ? times.at(4) : 0)); //? Calculate values for totals from first line of stat if (i == 0) { const long long calc_totals = max(1ll, totals - cpu_old.at("totals")); const long long calc_idles = max(1ll, idles - cpu_old.at("idles")); cpu_old.at("totals") = totals; cpu_old.at("idles") = idles; //? Total usage of cpu cpu.cpu_percent.at("total").push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at("total").size(), width * 2)) cpu.cpu_percent.at("total").pop_front(); //? Populate cpu.cpu_percent with all fields from stat for (int ii = 0; const auto& val : times) { cpu.cpu_percent.at(time_names.at(ii)).push_back(clamp((long long)round((double)(val - cpu_old.at(time_names.at(ii))) * 100 / calc_totals), 0ll, 100ll)); cpu_old.at(time_names.at(ii)) = val; //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at(time_names.at(ii)).size(), width * 2)) cpu.cpu_percent.at(time_names.at(ii)).pop_front(); if (++ii == 10) break; } continue; } //? Calculate cpu total for each core else { //? Fix container sizes if new cores are detected while (cmp_less(cpu.core_percent.size(), i)) { core_old_totals.push_back(0); core_old_idles.push_back(0); cpu.core_percent.emplace_back(); } const long long calc_totals = max(1ll, totals - core_old_totals.at(i-1)); const long long calc_idles = max(1ll, idles - core_old_idles.at(i-1)); core_old_totals.at(i-1) = totals; core_old_idles.at(i-1) = idles; cpu.core_percent.at(i-1).push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); } } //? Reduce size if there are more values than needed for graph if (cpu.core_percent.at(i-1).size() > 40) cpu.core_percent.at(i-1).pop_front(); } //? Notify main thread to redraw screen if we found more cores than previously detected if (cmp_greater(cpu.core_percent.size(), Shared::coreCount)) { Logger::debug("Changing CPU max corecount from " + to_string(Shared::coreCount) + " to " + to_string(cpu.core_percent.size()) + "."); Runner::coreNum_reset = true; Shared::coreCount = cpu.core_percent.size(); while (cmp_less(current_cpu.temp.size(), cpu.core_percent.size() + 1)) current_cpu.temp.push_back({0}); } } catch (const std::exception& e) { Logger::debug("Cpu::collect() : " + string{e.what()}); if (cread.bad()) throw std::runtime_error("Failed to read /proc/stat"); else throw std::runtime_error("Cpu::collect() : " + string{e.what()}); } if (Config::getB("check_temp") and got_sensors) update_sensors(); if (Config::getB("show_battery") and has_battery) current_bat = get_battery(); if (Config::getB("show_cpu_watts") and supports_watts) current_cpu.usage_watts = get_cpuConsumptionWatts(); return cpu; } } #ifdef GPU_SUPPORT namespace Gpu { //? NVIDIA namespace Nvml { bool init() { if (initialized) return false; //? Dynamic loading & linking //? Try possible library names for libnvidia-ml.so const array libNvAlts = { "libnvidia-ml.so", "libnvidia-ml.so.1", }; for (const auto& l : libNvAlts) { nvml_dl_handle = dlopen(l, RTLD_LAZY); if (nvml_dl_handle != nullptr) { break; } } if (!nvml_dl_handle) { Logger::info("Failed to load libnvidia-ml.so, NVIDIA GPUs will not be detected: "s + dlerror()); return false; } auto load_nvml_sym = [&](const char sym_name[]) { auto sym = dlsym(nvml_dl_handle, sym_name); auto err = dlerror(); if (err != nullptr) { Logger::error(string("NVML: Couldn't find function ") + sym_name + ": " + err); return (void*)nullptr; } else return sym; }; #define LOAD_SYM(NAME) if ((NAME = (decltype(NAME))load_nvml_sym(#NAME)) == nullptr) return false LOAD_SYM(nvmlErrorString); LOAD_SYM(nvmlInit); LOAD_SYM(nvmlShutdown); LOAD_SYM(nvmlDeviceGetCount); LOAD_SYM(nvmlDeviceGetHandleByIndex); LOAD_SYM(nvmlDeviceGetName); LOAD_SYM(nvmlDeviceGetPowerManagementLimit); LOAD_SYM(nvmlDeviceGetTemperatureThreshold); LOAD_SYM(nvmlDeviceGetUtilizationRates); LOAD_SYM(nvmlDeviceGetClockInfo); LOAD_SYM(nvmlDeviceGetPowerUsage); LOAD_SYM(nvmlDeviceGetPowerState); LOAD_SYM(nvmlDeviceGetTemperature); LOAD_SYM(nvmlDeviceGetMemoryInfo); LOAD_SYM(nvmlDeviceGetPcieThroughput); LOAD_SYM(nvmlDeviceGetEncoderUtilization); LOAD_SYM(nvmlDeviceGetDecoderUtilization); #undef LOAD_SYM //? Function calls nvmlReturn_t result = nvmlInit(); if (result != NVML_SUCCESS) { Logger::debug(std::string("Failed to initialize NVML, NVIDIA GPUs will not be detected: ") + nvmlErrorString(result)); return false; } //? Device count result = nvmlDeviceGetCount(&device_count); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get device count: ") + nvmlErrorString(result)); return false; } if (device_count > 0) { devices.resize(device_count); gpus.resize(device_count); gpu_names.resize(device_count); initialized = true; //? Check supported functions & get maximums Nvml::collect<1>(gpus.data()); return true; } else {initialized = true; shutdown(); return false;} } bool shutdown() { if (!initialized) return false; nvmlReturn_t result = nvmlShutdown(); if (NVML_SUCCESS == result) { initialized = false; dlclose(nvml_dl_handle); } else Logger::warning(std::string("Failed to shutdown NVML: ") + nvmlErrorString(result)); return !initialized; } template // collect<1> is called in Nvml::init(), and populates gpus.supported_functions bool collect(gpu_info* gpus_slice) { // raw pointer to vector data, size == device_count if (!initialized) return false; nvmlReturn_t result; std::thread pcie_tx_thread, pcie_rx_thread; // DebugTimer nvTotalTimer("Nvidia Total"); for (unsigned int i = 0; i < device_count; ++i) { if constexpr(is_init) { //? Device Handle result = nvmlDeviceGetHandleByIndex(i, devices.data() + i); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get device handle: ") + nvmlErrorString(result)); gpus[i].supported_functions = {false, false, false, false, false, false, false, false, false, false}; continue; } //? Device name char name[NVML_DEVICE_NAME_BUFFER_SIZE]; result = nvmlDeviceGetName(devices[i], name, NVML_DEVICE_NAME_BUFFER_SIZE); if (result != NVML_SUCCESS) Logger::warning(std::string("NVML: Failed to get device name: ") + nvmlErrorString(result)); else { gpu_names[i] = string(name); for (const auto& brand : {"NVIDIA", "Nvidia", "(R)", "(TM)"}) { gpu_names[i] = s_replace(gpu_names[i], brand, ""); } gpu_names[i] = trim(gpu_names[i]); } //? Power usage unsigned int max_power; result = nvmlDeviceGetPowerManagementLimit(devices[i], &max_power); if (result != NVML_SUCCESS) Logger::warning(std::string("NVML: Failed to get maximum GPU power draw, defaulting to 225W: ") + nvmlErrorString(result)); else { gpus[i].pwr_max_usage = max_power; // RSMI reports power in microWatts gpu_pwr_total_max += max_power; } //? Get temp_max unsigned int temp_max; result = nvmlDeviceGetTemperatureThreshold(devices[i], NVML_TEMPERATURE_THRESHOLD_SHUTDOWN, &temp_max); if (result != NVML_SUCCESS) Logger::warning(std::string("NVML: Failed to get maximum GPU temperature, defaulting to 110°C: ") + nvmlErrorString(result)); else gpus[i].temp_max = (long long)temp_max; } //? PCIe link speeds, the data collection takes >=20ms each call so they run on separate threads if (gpus_slice[i].supported_functions.pcie_txrx and (Config::getB("nvml_measure_pcie_speeds") or is_init)) { pcie_tx_thread = std::thread([gpus_slice, i]() { unsigned int tx; nvmlReturn_t result = nvmlDeviceGetPcieThroughput(devices[i], NVML_PCIE_UTIL_TX_BYTES, &tx); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get PCIe TX throughput: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.pcie_txrx = false; } else gpus_slice[i].pcie_tx = (long long)tx; }); pcie_rx_thread = std::thread([gpus_slice, i]() { unsigned int rx; nvmlReturn_t result = nvmlDeviceGetPcieThroughput(devices[i], NVML_PCIE_UTIL_RX_BYTES, &rx); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get PCIe RX throughput: ") + nvmlErrorString(result)); } else gpus_slice[i].pcie_rx = (long long)rx; }); } // DebugTimer nvTimer("Nv utilization"); //? GPU & memory utilization if (gpus_slice[i].supported_functions.gpu_utilization) { nvmlUtilization_t utilization; result = nvmlDeviceGetUtilizationRates(devices[i], &utilization); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU utilization: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_utilization = false; if constexpr(is_init) gpus_slice[i].supported_functions.mem_utilization = false; } else { gpus_slice[i].gpu_percent.at("gpu-totals").push_back((long long)utilization.gpu); gpus_slice[i].mem_utilization_percent.push_back((long long)utilization.memory); } } // nvTimer.stop_rename_reset("Nv clock"); //? Clock speeds if (gpus_slice[i].supported_functions.gpu_clock) { unsigned int gpu_clock; result = nvmlDeviceGetClockInfo(devices[i], NVML_CLOCK_GRAPHICS, &gpu_clock); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU clock speed: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_clock = false; } else gpus_slice[i].gpu_clock_speed = (long long)gpu_clock; } if (gpus_slice[i].supported_functions.mem_clock) { unsigned int mem_clock; result = nvmlDeviceGetClockInfo(devices[i], NVML_CLOCK_MEM, &mem_clock); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get VRAM clock speed: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.mem_clock = false; } else gpus_slice[i].mem_clock_speed = (long long)mem_clock; } // nvTimer.stop_rename_reset("Nv power"); //? Power usage & state if (gpus_slice[i].supported_functions.pwr_usage) { unsigned int power; result = nvmlDeviceGetPowerUsage(devices[i], &power); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU power usage: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.pwr_usage = false; } else { gpus_slice[i].pwr_usage = (long long)power; if (gpus_slice[i].pwr_usage > gpus_slice[i].pwr_max_usage) gpus_slice[i].pwr_max_usage = gpus_slice[i].pwr_usage; gpus_slice[i].gpu_percent.at("gpu-pwr-totals").push_back(clamp((long long)round((double)gpus_slice[i].pwr_usage * 100.0 / (double)gpus_slice[i].pwr_max_usage), 0ll, 100ll)); } } if (gpus_slice[i].supported_functions.pwr_state) { nvmlPstates_t pState; result = nvmlDeviceGetPowerState(devices[i], &pState); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU power state: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.pwr_state = false; } else gpus_slice[i].pwr_state = static_cast(pState); } // nvTimer.stop_rename_reset("Nv temp"); //? GPU temperature if (gpus_slice[i].supported_functions.temp_info) { if (Config::getB("check_temp")) { unsigned int temp; nvmlReturn_t result = nvmlDeviceGetTemperature(devices[i], NVML_TEMPERATURE_GPU, &temp); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU temperature: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.temp_info = false; } else gpus_slice[i].temp.push_back((long long)temp); } } // nvTimer.stop_rename_reset("Nv mem"); //? Memory info if (gpus_slice[i].supported_functions.mem_total) { nvmlMemory_t memory; result = nvmlDeviceGetMemoryInfo(devices[i], &memory); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get VRAM info: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.mem_total = false; if constexpr(is_init) gpus_slice[i].supported_functions.mem_used = false; } else { gpus_slice[i].mem_total = memory.total; gpus_slice[i].mem_used = memory.used; //gpu.mem_free = memory.free; auto used_percent = (long long)round((double)memory.used * 100.0 / (double)memory.total); gpus_slice[i].gpu_percent.at("gpu-vram-totals").push_back(used_percent); } } // nvTimer.stop_rename_reset("Nv enc"); //? Encoder info if (gpus_slice[i].supported_functions.encoder_utilization) { unsigned int utilization; unsigned int samplingPeriodUs; result = nvmlDeviceGetEncoderUtilization(devices[i], &utilization, &samplingPeriodUs); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get encoder utilization: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.encoder_utilization = false; } else gpus_slice[i].encoder_utilization = (long long)utilization; } // nvTimer.stop_rename_reset("Nv dec"); //? Decoder info if (gpus_slice[i].supported_functions.decoder_utilization) { unsigned int utilization; unsigned int samplingPeriodUs; result = nvmlDeviceGetDecoderUtilization(devices[i], &utilization, &samplingPeriodUs); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get decoder utilization: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.decoder_utilization = false; } else gpus_slice[i].decoder_utilization = (long long)utilization; } //? TODO: Processes using GPU /*unsigned int proc_info_len; nvmlProcessInfo_t* proc_info = 0; result = nvmlDeviceGetComputeRunningProcesses_v3(device, &proc_info_len, proc_info); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get compute processes: ") + nvmlErrorString(result)); } else { for (unsigned int i = 0; i < proc_info_len; ++i) gpus_slice[i].graphics_processes.push_back({proc_info[i].pid, proc_info[i].usedGpuMemory}); }*/ // nvTimer.stop_rename_reset("Nv pcie thread join"); //? Join PCIE TX/RX threads if constexpr(is_init) { // there doesn't seem to be a better way to do this, but this should be fine considering it's just 2 lines pcie_tx_thread.join(); pcie_rx_thread.join(); } else if (gpus_slice[i].supported_functions.pcie_txrx and Config::getB("nvml_measure_pcie_speeds")) { pcie_tx_thread.join(); pcie_rx_thread.join(); } } return true; } } //? AMD namespace Rsmi { bool init() { if (initialized) return false; //? Dynamic loading & linking #if !defined(RSMI_STATIC) //? Try possible library paths and names for librocm_smi64.so const array libRocAlts = { "/opt/rocm/lib/librocm_smi64.so", "librocm_smi64.so", "librocm_smi64.so.5", // fedora "librocm_smi64.so.1.0", // debian "librocm_smi64.so.6" }; for (const auto& l : libRocAlts) { rsmi_dl_handle = dlopen(l, RTLD_LAZY); if (rsmi_dl_handle != nullptr) { break; } } if (!rsmi_dl_handle) { Logger::info("Failed to load librocm_smi64.so, AMD GPUs will not be detected: "s + dlerror()); return false; } auto load_rsmi_sym = [&](const char sym_name[]) { auto sym = dlsym(rsmi_dl_handle, sym_name); auto err = dlerror(); if (err != nullptr) { Logger::error(string("ROCm SMI: Couldn't find function ") + sym_name + ": " + err); return (void*)nullptr; } else return sym; }; #define LOAD_SYM(NAME) if ((NAME = (decltype(NAME))load_rsmi_sym(#NAME)) == nullptr) return false LOAD_SYM(rsmi_init); LOAD_SYM(rsmi_shut_down); LOAD_SYM(rsmi_version_get); LOAD_SYM(rsmi_num_monitor_devices); LOAD_SYM(rsmi_dev_name_get); LOAD_SYM(rsmi_dev_power_cap_get); LOAD_SYM(rsmi_dev_temp_metric_get); LOAD_SYM(rsmi_dev_busy_percent_get); LOAD_SYM(rsmi_dev_memory_busy_percent_get); LOAD_SYM(rsmi_dev_power_ave_get); LOAD_SYM(rsmi_dev_memory_total_get); LOAD_SYM(rsmi_dev_memory_usage_get); LOAD_SYM(rsmi_dev_pci_throughput_get); #undef LOAD_SYM #endif //? Function calls rsmi_status_t result = rsmi_init(0); if (result != RSMI_STATUS_SUCCESS) { Logger::debug("Failed to initialize ROCm SMI, AMD GPUs will not be detected"); return false; } #if !defined(RSMI_STATIC) //? Check version rsmi_version_t version; result = rsmi_version_get(&version); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get version"); return false; } else if (version.major == 5) { if ((rsmi_dev_gpu_clk_freq_get_v5 = (decltype(rsmi_dev_gpu_clk_freq_get_v5))load_rsmi_sym("rsmi_dev_gpu_clk_freq_get")) == nullptr) return false; // In the release tarballs of rocm 6.0.0 and 6.0.2 the version queried with rsmi_version_get is 7.0.0.0 } else if (version.major == 6 || version.major == 7) { if ((rsmi_dev_gpu_clk_freq_get_v6 = (decltype(rsmi_dev_gpu_clk_freq_get_v6))load_rsmi_sym("rsmi_dev_gpu_clk_freq_get")) == nullptr) return false; } else { Logger::warning("ROCm SMI: Dynamic loading only supported for version 5 and 6"); return false; } version_major = version.major; #endif //? Device count result = rsmi_num_monitor_devices(&device_count); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to fetch number of devices"); return false; } if (device_count > 0) { gpus.resize(gpus.size() + device_count); gpu_names.resize(gpus.size() + device_count); initialized = true; //? Check supported functions & get maximums Rsmi::collect<1>(gpus.data() + Nvml::device_count); return true; } else {initialized = true; shutdown(); return false;} } bool shutdown() { if (!initialized) return false; if (rsmi_shut_down() == RSMI_STATUS_SUCCESS) { initialized = false; #if !defined(RSMI_STATIC) dlclose(rsmi_dl_handle); #endif } else Logger::warning("Failed to shutdown ROCm SMI"); return true; } template bool collect(gpu_info* gpus_slice) { // raw pointer to vector data, size == device_count, offset by Nvml::device_count elements if (!initialized) return false; rsmi_status_t result; for (uint32_t i = 0; i < device_count; ++i) { if constexpr(is_init) { //? Device name char name[RSMI_DEVICE_NAME_BUFFER_SIZE]; result = rsmi_dev_name_get(i, name, RSMI_DEVICE_NAME_BUFFER_SIZE); if (result != RSMI_STATUS_SUCCESS) Logger::warning("ROCm SMI: Failed to get device name"); else gpu_names[Nvml::device_count + i] = string(name); //? Power usage uint64_t max_power; result = rsmi_dev_power_cap_get(i, 0, &max_power); if (result != RSMI_STATUS_SUCCESS) Logger::warning("ROCm SMI: Failed to get maximum GPU power draw, defaulting to 225W"); else { gpus_slice[i].pwr_max_usage = (long long)(max_power/1000); // RSMI reports power in microWatts gpu_pwr_total_max += gpus_slice[i].pwr_max_usage; } //? Get temp_max int64_t temp_max; result = rsmi_dev_temp_metric_get(i, RSMI_TEMP_TYPE_EDGE, RSMI_TEMP_MAX, &temp_max); if (result != RSMI_STATUS_SUCCESS) Logger::warning("ROCm SMI: Failed to get maximum GPU temperature, defaulting to 110°C"); else gpus_slice[i].temp_max = (long long)temp_max; //? Disable encoder and decoder utilisation on AMD gpus_slice[i].supported_functions.encoder_utilization = false; gpus_slice[i].supported_functions.decoder_utilization = false; } //? GPU utilization if (gpus_slice[i].supported_functions.gpu_utilization) { uint32_t utilization; result = rsmi_dev_busy_percent_get(i, &utilization); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU utilization"); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_utilization = false; } else gpus_slice[i].gpu_percent.at("gpu-totals").push_back((long long)utilization); } //? Memory utilization if (gpus_slice[i].supported_functions.mem_utilization) { uint32_t utilization; result = rsmi_dev_memory_busy_percent_get(i, &utilization); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get VRAM utilization"); if constexpr(is_init) gpus_slice[i].supported_functions.mem_utilization = false; } else gpus_slice[i].mem_utilization_percent.push_back((long long)utilization); } #if !defined(RSMI_STATIC) //? Clock speeds if (gpus_slice[i].supported_functions.gpu_clock) { if (version_major == 5) { rsmi_frequencies_t_v5 frequencies; result = rsmi_dev_gpu_clk_freq_get_v5(i, RSMI_CLK_TYPE_SYS, &frequencies); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU clock speed: "); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_clock = false; } else gpus_slice[i].gpu_clock_speed = (long long)frequencies.frequency[frequencies.current]/1000000; // Hz to MHz } else if (version_major == 6 || version_major == 7) { rsmi_frequencies_t_v6 frequencies; result = rsmi_dev_gpu_clk_freq_get_v6(i, RSMI_CLK_TYPE_SYS, &frequencies); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU clock speed: "); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_clock = false; } else gpus_slice[i].gpu_clock_speed = (long long)frequencies.frequency[frequencies.current]/1000000; // Hz to MHz } } if (gpus_slice[i].supported_functions.mem_clock) { if (version_major == 5) { rsmi_frequencies_t_v5 frequencies; result = rsmi_dev_gpu_clk_freq_get_v5(i, RSMI_CLK_TYPE_MEM, &frequencies); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get VRAM clock speed: "); if constexpr(is_init) gpus_slice[i].supported_functions.mem_clock = false; } else gpus_slice[i].mem_clock_speed = (long long)frequencies.frequency[frequencies.current]/1000000; // Hz to MHz } else if (version_major == 6 || version_major == 7) { rsmi_frequencies_t_v6 frequencies; result = rsmi_dev_gpu_clk_freq_get_v6(i, RSMI_CLK_TYPE_MEM, &frequencies); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get VRAM clock speed: "); if constexpr(is_init) gpus_slice[i].supported_functions.mem_clock = false; } else gpus_slice[i].mem_clock_speed = (long long)frequencies.frequency[frequencies.current]/1000000; // Hz to MHz } } #else //? Clock speeds if (gpus_slice[i].supported_functions.gpu_clock) { rsmi_frequencies_t frequencies; result = rsmi_dev_gpu_clk_freq_get(i, RSMI_CLK_TYPE_SYS, &frequencies); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU clock speed: "); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_clock = false; } else gpus_slice[i].gpu_clock_speed = (long long)frequencies.frequency[frequencies.current]/1000000; // Hz to MHz } if (gpus_slice[i].supported_functions.mem_clock) { rsmi_frequencies_t frequencies; result = rsmi_dev_gpu_clk_freq_get(i, RSMI_CLK_TYPE_MEM, &frequencies); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get VRAM clock speed: "); if constexpr(is_init) gpus_slice[i].supported_functions.mem_clock = false; } else gpus_slice[i].mem_clock_speed = (long long)frequencies.frequency[frequencies.current]/1000000; // Hz to MHz } #endif //? Power usage & state if (gpus_slice[i].supported_functions.pwr_usage) { uint64_t power; result = rsmi_dev_power_ave_get(i, 0, &power); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU power usage"); if constexpr(is_init) gpus_slice[i].supported_functions.pwr_usage = false; } else { gpus_slice[i].pwr_usage = (long long)power / 1000; if (gpus_slice[i].pwr_usage > gpus_slice[i].pwr_max_usage) gpus_slice[i].pwr_max_usage = gpus_slice[i].pwr_usage; gpus_slice[i].gpu_percent.at("gpu-pwr-totals").push_back(clamp((long long)round((double)gpus_slice[i].pwr_usage * 100.0 / (double)gpus_slice[i].pwr_max_usage), 0ll, 100ll)); } if constexpr(is_init) gpus_slice[i].supported_functions.pwr_state = false; } //? GPU temperature if (gpus_slice[i].supported_functions.temp_info) { if (Config::getB("check_temp") or is_init) { int64_t temp; result = rsmi_dev_temp_metric_get(i, RSMI_TEMP_TYPE_EDGE, RSMI_TEMP_CURRENT, &temp); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU temperature"); if constexpr(is_init) gpus_slice[i].supported_functions.temp_info = false; } else gpus_slice[i].temp.push_back((long long)temp/1000); } } //? Memory info if (gpus_slice[i].supported_functions.mem_total) { uint64_t total; result = rsmi_dev_memory_total_get(i, RSMI_MEM_TYPE_VRAM, &total); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get total VRAM"); if constexpr(is_init) gpus_slice[i].supported_functions.mem_total = false; } else gpus_slice[i].mem_total = total; } if (gpus_slice[i].supported_functions.mem_used) { uint64_t used; result = rsmi_dev_memory_usage_get(i, RSMI_MEM_TYPE_VRAM, &used); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get VRAM usage"); if constexpr(is_init) gpus_slice[i].supported_functions.mem_used = false; } else { gpus_slice[i].mem_used = used; if (gpus_slice[i].supported_functions.mem_total) gpus_slice[i].gpu_percent.at("gpu-vram-totals").push_back((long long)round((double)used * 100.0 / (double)gpus_slice[i].mem_total)); } } //? PCIe link speeds if (gpus_slice[i].supported_functions.pcie_txrx and Config::getB("rsmi_measure_pcie_speeds")) { uint64_t tx, rx; result = rsmi_dev_pci_throughput_get(i, &tx, &rx, nullptr); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get PCIe throughput"); if constexpr(is_init) gpus_slice[i].supported_functions.pcie_txrx = false; } else { gpus_slice[i].pcie_tx = (long long)tx; gpus_slice[i].pcie_rx = (long long)rx; } } } return true; } } namespace Intel { bool init() { if (initialized) return false; char *gpu_path = find_intel_gpu_dir(); if (!gpu_path) { Logger::debug("Failed to find Intel GPU sysfs path, Intel GPUs will not be detected"); return false; } char *gpu_device_id = get_intel_device_id(gpu_path); if (!gpu_device_id) { Logger::debug("Failed to find Intel GPU device ID, Intel GPUs will not be detected"); return false; } char *gpu_device_name = get_intel_device_name(gpu_device_id); if (!gpu_device_name) { Logger::warning("Failed to find Intel GPU device name in internal database"); } free(gpu_device_id); engines = discover_engines(device); if (!engines) { Logger::debug("Failed to find Intel GPU engines, Intel GPUs will not be detected"); return false; } int ret = pmu_init(engines); if (ret) { Logger::warning("Intel GPU: Failed to initialize PMU"); return false; } pmu_sample(engines); device_count = 1; gpus.resize(gpus.size() + device_count); gpu_names.resize(gpus.size() + device_count); if (gpu_device_name) { gpu_names[Nvml::device_count + Rsmi::device_count] = string(gpu_device_name); } else { gpu_names[Nvml::device_count + Rsmi::device_count] = "Intel GPU"; } free(gpu_device_name); initialized = true; Intel::collect<1>(gpus.data() + Nvml::device_count + Rsmi::device_count); return true; } bool shutdown() { if (!initialized) return false; if (engines) { free_engines(engines); engines = nullptr; } initialized = false; return true; } template bool collect(gpu_info* gpus_slice) { if (!initialized) return false; if constexpr(is_init) { gpus_slice->supported_functions = { .gpu_utilization = true, .mem_utilization = false, .gpu_clock = true, .mem_clock = false, .pwr_usage = true, .pwr_state = false, .temp_info = false, .mem_total = false, .mem_used = false, .pcie_txrx = false, .encoder_utilization = false, .decoder_utilization = false }; gpus_slice->pwr_max_usage = 10'000; //? 10W } pmu_sample(engines); double t = (double)(engines->ts.cur - engines->ts.prev) / 1e9; double max_util = 0; for (unsigned int i = 0; i < engines->num_engines; i++) { struct engine *engine = &(&engines->engine)[i]; double util = pmu_calc(&engine->busy.val, 1e9, t, 100); if (util > max_util) { max_util = util; } } gpus_slice->gpu_percent.at("gpu-totals").push_back((long long)round(max_util)); double pwr = pmu_calc(&engines->r_gpu.val, 1, t, engines->r_gpu.scale); // in Watts gpus_slice->pwr_usage = (long long)round(pwr * 1000); if (gpus_slice->pwr_usage > gpus_slice->pwr_max_usage) gpus_slice->pwr_max_usage = gpus_slice->pwr_usage; gpus_slice->gpu_percent.at("gpu-pwr-totals").push_back(clamp((long long)round((double)gpus_slice->pwr_usage * 100.0 / (double)gpus_slice->pwr_max_usage), 0ll, 100ll)); double freq = pmu_calc(&engines->freq_act.val, 1, t, 1); // in MHz gpus_slice->gpu_clock_speed = (unsigned int)round(freq); return true; } } //? Collect data from GPU-specific libraries auto collect(bool no_update) -> vector& { if (Runner::stopping or (no_update and not gpus.empty())) return gpus; // DebugTimer gpu_timer("GPU Total"); //* Collect data Nvml::collect<0>(gpus.data()); // raw pointer to vector data, size == Nvml::device_count Rsmi::collect<0>(gpus.data() + Nvml::device_count); // size = Rsmi::device_count Intel::collect<0>(gpus.data() + Nvml::device_count + Rsmi::device_count); // size = Intel::device_count //* Calculate average usage long long avg = 0; long long mem_usage_total = 0; long long mem_total = 0; long long pwr_total = 0; for (auto& gpu : gpus) { if (gpu.supported_functions.gpu_utilization) avg += gpu.gpu_percent.at("gpu-totals").back(); if (gpu.supported_functions.mem_used) mem_usage_total += gpu.mem_used; if (gpu.supported_functions.mem_total) mem_total += gpu.mem_total; if (gpu.supported_functions.pwr_usage) mem_total += gpu.pwr_usage; //* Trim vectors if there are more values than needed for graphs if (width != 0) { //? GPU & memory utilization while (cmp_greater(gpu.gpu_percent.at("gpu-totals").size(), width * 2)) gpu.gpu_percent.at("gpu-totals").pop_front(); while (cmp_greater(gpu.mem_utilization_percent.size(), width)) gpu.mem_utilization_percent.pop_front(); //? Power usage while (cmp_greater(gpu.gpu_percent.at("gpu-pwr-totals").size(), width)) gpu.gpu_percent.at("gpu-pwr-totals").pop_front(); //? Temperature while (cmp_greater(gpu.temp.size(), 18)) gpu.temp.pop_front(); //? Memory usage while (cmp_greater(gpu.gpu_percent.at("gpu-vram-totals").size(), width/2)) gpu.gpu_percent.at("gpu-vram-totals").pop_front(); } } shared_gpu_percent.at("gpu-average").push_back(avg / gpus.size()); if (mem_total != 0) shared_gpu_percent.at("gpu-vram-total").push_back(mem_usage_total / mem_total); if (gpu_pwr_total_max != 0) shared_gpu_percent.at("gpu-pwr-total").push_back(pwr_total / gpu_pwr_total_max); if (width != 0) { while (cmp_greater(shared_gpu_percent.at("gpu-average").size(), width * 2)) shared_gpu_percent.at("gpu-average").pop_front(); while (cmp_greater(shared_gpu_percent.at("gpu-pwr-total").size(), width * 2)) shared_gpu_percent.at("gpu-pwr-total").pop_front(); while (cmp_greater(shared_gpu_percent.at("gpu-vram-total").size(), width * 2)) shared_gpu_percent.at("gpu-vram-total").pop_front(); } count = gpus.size(); return gpus; } } #endif /// Convert ascii escapes like \040 into chars. static auto convert_ascii_escapes(const std::string& input) -> std::string { std::string out; out.reserve(input.size()); for (std::size_t i = 0; i < input.size(); ++i) { if (input[i] == '\\' && // Peek the next three characters. i + 3 < input.size() && std::isdigit(input[i + 1]) && std::isdigit(input[i + 2]) && std::isdigit(input[i + 3])) { // Convert octal chars to decimal int. // '0' - '0' -> 0, '4' - '0' -> 4, '0' - '0' -> 0. // 0 * 64 (0) // + 4 * 8 (32) // + 0 // = 32 (ascii space) int value = ((input[i + 1] - '0') * 64) + ((input[i + 2] - '0') * 8) + (input[i + 3] - '0'); out.push_back(static_cast(value)); // Consume the three digits. i += 3; } else { out.push_back(input[i]); } } return out; } namespace Mem { bool has_swap{}; vector fstab; fs::file_time_type fstab_time; int disk_ios{}; vector last_found; //?* Find the filepath to the specified ZFS object's stat file fs::path get_zfs_stat_file(const string& device_name, size_t dataset_name_start, bool zfs_hide_datasets); //?* Collect total ZFS pool io stats bool zfs_collect_pool_total_stats(struct disk_info &disk); mem_info current_mem {}; uint64_t get_totalMem() { ifstream meminfo(Shared::procPath / "meminfo"); int64_t totalMem = 0; if (meminfo.good()) { meminfo.ignore(SSmax, ':'); meminfo >> totalMem; totalMem <<= 10; } if (not meminfo.good() or totalMem == 0) throw std::runtime_error("Could not get total memory size from /proc/meminfo"); return totalMem; } auto collect(bool no_update) -> mem_info& { if (Runner::stopping or (no_update and not current_mem.percent.at("used").empty())) return current_mem; auto show_swap = Config::getB("show_swap"); auto swap_disk = Config::getB("swap_disk"); auto show_disks = Config::getB("show_disks"); auto zfs_arc_cached = Config::getB("zfs_arc_cached"); auto totalMem = get_totalMem(); auto& mem = current_mem; mem.stats.at("swap_total") = 0; //? Read ZFS ARC info from /proc/spl/kstat/zfs/arcstats uint64_t arc_size = 0, arc_min_size = 0; if (zfs_arc_cached) { ifstream arcstats(Shared::procPath / "spl/kstat/zfs/arcstats"); if (arcstats.good()) { for (string label; arcstats >> label;) { if (label == "c_min") { arcstats >> arc_min_size >> arc_min_size; // double read skips type column } else if (label == "size") { arcstats >> arc_size >> arc_size; break; } } } arcstats.close(); } //? Read memory info from /proc/meminfo ifstream meminfo(Shared::procPath / "meminfo"); if (meminfo.good()) { bool got_avail = false; for (string label; meminfo.peek() != 'D' and meminfo >> label;) { if (label == "MemFree:") { meminfo >> mem.stats.at("free"); mem.stats.at("free") <<= 10; } else if (label == "MemAvailable:") { meminfo >> mem.stats.at("available"); mem.stats.at("available") <<= 10; got_avail = true; } else if (label == "Cached:") { meminfo >> mem.stats.at("cached"); mem.stats.at("cached") <<= 10; if (not show_swap and not swap_disk) break; } else if (label == "SwapTotal:") { meminfo >> mem.stats.at("swap_total"); mem.stats.at("swap_total") <<= 10; } else if (label == "SwapFree:") { meminfo >> mem.stats.at("swap_free"); mem.stats.at("swap_free") <<= 10; break; } meminfo.ignore(SSmax, '\n'); } if (not got_avail) mem.stats.at("available") = mem.stats.at("free") + mem.stats.at("cached"); if (zfs_arc_cached) { mem.stats.at("cached") += arc_size; // The ARC will not shrink below arc_min_size, so that memory is not available if (arc_size > arc_min_size) mem.stats.at("available") += arc_size - arc_min_size; } mem.stats.at("used") = totalMem - (mem.stats.at("available") <= totalMem ? mem.stats.at("available") : mem.stats.at("free")); if (mem.stats.at("swap_total") > 0) mem.stats.at("swap_used") = mem.stats.at("swap_total") - mem.stats.at("swap_free"); } else throw std::runtime_error("Failed to read /proc/meminfo"); meminfo.close(); //? Calculate percentages for (const auto& name : mem_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / totalMem)); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } if (show_swap and mem.stats.at("swap_total") > 0) { for (const auto& name : swap_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / mem.stats.at("swap_total"))); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } has_swap = true; } else has_swap = false; //? Get disks stats if (show_disks) { static vector ignore_list; double uptime = system_uptime(); auto free_priv = Config::getB("disk_free_priv"); try { auto& disks_filter = Config::getS("disks_filter"); bool filter_exclude = false; auto use_fstab = Config::getB("use_fstab"); auto only_physical = Config::getB("only_physical"); auto zfs_hide_datasets = Config::getB("zfs_hide_datasets"); auto& disks = mem.disks; static std::unordered_map>> disks_stats_promises; ifstream diskread; vector filter; if (not disks_filter.empty()) { filter = ssplit(disks_filter); if (filter.at(0).starts_with("exclude=")) { filter_exclude = true; filter.at(0) = filter.at(0).substr(8); } } //? Get list of "real" filesystems from /proc/filesystems vector fstypes; if (only_physical and not use_fstab) { fstypes = {"zfs", "wslfs", "drvfs"}; diskread.open(Shared::procPath / "filesystems"); if (diskread.good()) { for (string fstype; diskread >> fstype;) { if (not is_in(fstype, "nodev", "squashfs", "nullfs")) fstypes.push_back(fstype); diskread.ignore(SSmax, '\n'); } } else throw std::runtime_error("Failed to read /proc/filesystems"); diskread.close(); } //? Get disk list to use from fstab if enabled if (use_fstab and fs::last_write_time("/etc/fstab") != fstab_time) { fstab.clear(); fstab_time = fs::last_write_time("/etc/fstab"); diskread.open("/etc/fstab"); if (diskread.good()) { for (string instr; diskread >> instr;) { if (not instr.starts_with('#')) { diskread >> instr; #ifdef SNAPPED if (instr == "/") fstab.push_back("/mnt"); else if (not is_in(instr, "none", "swap")) fstab.push_back(instr); #else if (not is_in(instr, "none", "swap")) fstab.push_back(instr); #endif } diskread.ignore(SSmax, '\n'); } } else throw std::runtime_error("Failed to read /etc/fstab"); diskread.close(); } //? Get mounts from /proc/self/mountinfo diskread.open((Shared::procPath / "self/mountinfo")); if (diskread.good()) { vector found; found.reserve(last_found.size()); string dev, major_minor, mountpoint, fstype, _; while (not diskread.eof()) { // See proc_pid_mountinfo(5) for the file format // We specifically want the major/minor device numbers std::error_code ec; diskread >> _ >> _ >> major_minor >> _ >> mountpoint >> _ >> _ >> _ >> fstype >> dev >> _; diskread.ignore(SSmax, '\n'); // A mountpoint can ascii escape codes, which will not work with `statvfs`. mountpoint = convert_ascii_escapes(mountpoint); if (v_contains(ignore_list, mountpoint) or v_contains(found, mountpoint)) continue; //? Match filter if not empty if (not filter.empty()) { bool match = v_contains(filter, mountpoint); if ((filter_exclude and match) or (not filter_exclude and not match)) continue; } //? Skip ZFS datasets if zfs_hide_datasets option is enabled size_t zfs_dataset_name_start = 0; if (fstype == "zfs" && (zfs_dataset_name_start = dev.find('/')) != std::string::npos && zfs_hide_datasets) continue; if ((not use_fstab and not only_physical) or (use_fstab and v_contains(fstab, mountpoint)) or (not use_fstab and only_physical and v_contains(fstypes, fstype))) { found.push_back(mountpoint); if (not v_contains(last_found, mountpoint)) redraw = true; //? Save mountpoint, name, fstype, dev path and path to /sys/block stat file if (not disks.contains(mountpoint)) { disks[mountpoint] = disk_info{fs::canonical(dev, ec), fs::path(mountpoint).filename(), fstype}; if (disks.at(mountpoint).dev.empty()) disks.at(mountpoint).dev = dev; #ifdef SNAPPED if (mountpoint == "/mnt") disks.at(mountpoint).name = "root"; #endif if (disks.at(mountpoint).name.empty()) disks.at(mountpoint).name = (mountpoint == "/" ? "root" : mountpoint); // Use the major:minor device numbers to get device stats; see sysfs(5) auto stat_path = "/sys/dev/block/" + major_minor + "/stat"; if (fs::exists(stat_path, ec) and access(stat_path.c_str(), R_OK) == 0) { disks.at(mountpoint).stat = stat_path; } else if (fstype == "zfs") { //? Set ZFS stat filepath disks.at(mountpoint).stat = get_zfs_stat_file(dev, zfs_dataset_name_start, zfs_hide_datasets); if (disks.at(mountpoint).stat.empty()) { Logger::debug("Failed to get ZFS stat file for device " + dev); } } } //? If zfs_hide_datasets option was switched, refresh stat filepath if (fstype == "zfs" && ((zfs_hide_datasets && !is_directory(disks.at(mountpoint).stat)) || (!zfs_hide_datasets && is_directory(disks.at(mountpoint).stat)))) { disks.at(mountpoint).stat = get_zfs_stat_file(dev, zfs_dataset_name_start, zfs_hide_datasets); if (disks.at(mountpoint).stat.empty()) { Logger::debug("Failed to get ZFS stat file for device " + dev); } } } } //? Remove disks no longer mounted or filtered out if (swap_disk and has_swap) found.push_back("swap"); for (auto it = disks.begin(); it != disks.end();) { if (not v_contains(found, it->first)) it = disks.erase(it); else it++; } if (found.size() != last_found.size()) redraw = true; last_found = std::move(found); } else throw std::runtime_error("Failed to get mounts from /proc/self/mountinfo"); diskread.close(); //? Get disk/partition stats for (auto it = disks.begin(); it != disks.end(); ) { auto &[mountpoint, disk] = *it; if (v_contains(ignore_list, mountpoint) or disk.name == "swap") { it = disks.erase(it); continue; } if(auto promises_it = disks_stats_promises.find(mountpoint); promises_it != disks_stats_promises.end()){ auto& promise = promises_it->second; if(promise.valid() && promise.wait_for(0s) == std::future_status::timeout) { ++it; continue; } auto promise_res = promises_it->second.get(); if(promise_res.second != -1){ ignore_list.push_back(mountpoint); Logger::warning("Failed to get disk/partition stats for mount \""+ mountpoint + "\" with statvfs error code: " + to_string(promise_res.second) + ". Ignoring..."); it = disks.erase(it); continue; } auto &updated_stats = promise_res.first; disk.total = updated_stats.total; disk.free = updated_stats.free; disk.used = updated_stats.used; disk.used_percent = updated_stats.used_percent; disk.free_percent = updated_stats.free_percent; } disks_stats_promises[mountpoint] = async(std::launch::async, [mountpoint, free_priv]() -> pair { struct statvfs vfs; disk_info disk; if (statvfs(mountpoint.c_str(), &vfs) < 0) { return pair{disk, errno}; } disk.total = vfs.f_blocks * vfs.f_frsize; disk.free = (free_priv ? vfs.f_bfree : vfs.f_bavail) * vfs.f_frsize; disk.used = disk.total - disk.free; if (disk.total != 0) { disk.used_percent = round((double)disk.used * 100 / disk.total); disk.free_percent = 100 - disk.used_percent; } else { disk.used_percent = 0; disk.free_percent = 0; } return pair{disk, -1}; }); ++it; } //? Setup disks order in UI and add swap if enabled mem.disks_order.clear(); #ifdef SNAPPED if (disks.contains("/mnt")) mem.disks_order.push_back("/mnt"); #else if (disks.contains("/")) mem.disks_order.push_back("/"); #endif if (swap_disk and has_swap) { mem.disks_order.push_back("swap"); if (not disks.contains("swap")) disks["swap"] = {"", "swap", "swap"}; disks.at("swap").total = mem.stats.at("swap_total"); disks.at("swap").used = mem.stats.at("swap_used"); disks.at("swap").free = mem.stats.at("swap_free"); disks.at("swap").used_percent = mem.percent.at("swap_used").back(); disks.at("swap").free_percent = mem.percent.at("swap_free").back(); } for (const auto& name : last_found) #ifdef SNAPPED if (not is_in(name, "/mnt", "swap")) mem.disks_order.push_back(name); #else if (not is_in(name, "/", "swap")) mem.disks_order.push_back(name); #endif //? Get disks IO int64_t sectors_read, sectors_write, io_ticks, io_ticks_temp; disk_ios = 0; for (auto& [ignored, disk] : disks) { if (disk.stat.empty() or access(disk.stat.c_str(), R_OK) != 0) continue; if (disk.fstype == "zfs" && zfs_hide_datasets && zfs_collect_pool_total_stats(disk)) { disk_ios++; continue; } diskread.open(disk.stat); if (diskread.good()) { disk_ios++; //? ZFS Pool Support if (disk.fstype == "zfs") { // skip first three lines for (int i = 0; i < 3; i++) diskread.ignore(numeric_limits::max(), '\n'); // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> io_ticks; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> sectors_write; // nbytes written if (disk.io_write.empty()) disk.io_write.push_back(0); else disk.io_write.push_back(max((int64_t)0, (sectors_write - disk.old_io.at(1)))); disk.old_io.at(1) = sectors_write; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> io_ticks_temp; io_ticks += io_ticks_temp; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> sectors_read; // nbytes read if (disk.io_read.empty()) disk.io_read.push_back(0); else disk.io_read.push_back(max((int64_t)0, (sectors_read - disk.old_io.at(0)))); disk.old_io.at(0) = sectors_read; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(max((int64_t)0, (io_ticks - disk.old_io.at(2)))); disk.old_io.at(2) = io_ticks; while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } else { for (int i = 0; i < 2; i++) { diskread >> std::ws; diskread.ignore(SSmax, ' '); } diskread >> sectors_read; if (disk.io_read.empty()) disk.io_read.push_back(0); else disk.io_read.push_back(max((int64_t)0, (sectors_read - disk.old_io.at(0)) * 512)); disk.old_io.at(0) = sectors_read; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); for (int i = 0; i < 3; i++) { diskread >> std::ws; diskread.ignore(SSmax, ' '); } diskread >> sectors_write; if (disk.io_write.empty()) disk.io_write.push_back(0); else disk.io_write.push_back(max((int64_t)0, (sectors_write - disk.old_io.at(1)) * 512)); disk.old_io.at(1) = sectors_write; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); for (int i = 0; i < 2; i++) { diskread >> std::ws; diskread.ignore(SSmax, ' '); } diskread >> io_ticks; if (uptime == old_uptime || disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(clamp((long)round((double)(io_ticks - disk.old_io.at(2)) / (uptime - old_uptime) / 10), 0l, 100l)); disk.old_io.at(2) = io_ticks; while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } } else { Logger::debug("Error in Mem::collect() : when opening " + string{disk.stat}); } diskread.close(); } old_uptime = uptime; } catch (const std::exception& e) { Logger::warning("Error in Mem::collect() : " + string{e.what()}); } } return mem; } fs::path get_zfs_stat_file(const string& device_name, size_t dataset_name_start, bool zfs_hide_datasets) { fs::path zfs_pool_stat_path; if (zfs_hide_datasets) { zfs_pool_stat_path = Shared::procPath / "spl/kstat/zfs" / device_name; if (access(zfs_pool_stat_path.c_str(), R_OK) == 0) { return zfs_pool_stat_path; } else { Logger::debug("Can't access folder: " + zfs_pool_stat_path.string()); return ""; } } ifstream filestream; string filename; string name_compare; if (dataset_name_start != std::string::npos) { // device is a dataset zfs_pool_stat_path = Shared::procPath / "spl/kstat/zfs" / device_name.substr(0, dataset_name_start); } else { // device is a pool zfs_pool_stat_path = Shared::procPath / "spl/kstat/zfs" / device_name; } // looking through all files that start with 'objset' to find the one containing `device_name` object stats try { for (const auto& file: fs::directory_iterator(zfs_pool_stat_path)) { filename = file.path().filename(); if (filename.starts_with("objset")) { filestream.open(file.path()); if (filestream.good()) { // skip first two lines for (int i = 0; i < 2; i++) filestream.ignore(numeric_limits::max(), '\n'); // skip characters until '7' is reached, indicating data type 7, next value will be object name filestream.ignore(numeric_limits::max(), '7'); filestream >> name_compare; if (name_compare == device_name) { filestream.close(); if (access(file.path().c_str(), R_OK) == 0) { return file.path(); } else { Logger::debug("Can't access file: " + file.path().string()); return ""; } } } filestream.close(); } } } catch (fs::filesystem_error& e) {} Logger::debug("Could not read directory: " + zfs_pool_stat_path.string()); return ""; } bool zfs_collect_pool_total_stats(struct disk_info &disk) { ifstream diskread; int64_t bytes_read; int64_t bytes_write; int64_t io_ticks; int64_t bytes_read_total{}; int64_t bytes_write_total{}; int64_t io_ticks_total{}; int64_t objects_read{}; // looking through all files that start with 'objset' for (const auto& file: fs::directory_iterator(disk.stat)) { if ((file.path().filename()).string().starts_with("objset")) { diskread.open(file.path()); if (diskread.good()) { try { // skip first three lines for (int i = 0; i < 3; i++) diskread.ignore(numeric_limits::max(), '\n'); // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> io_ticks; io_ticks_total += io_ticks; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> bytes_write; bytes_write_total += bytes_write; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> io_ticks; io_ticks_total += io_ticks; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> bytes_read; bytes_read_total += bytes_read; } catch (const std::exception& e) { continue; } // increment read objects counter if no errors were encountered objects_read++; } else { Logger::debug("Could not read file: " + file.path().string()); } diskread.close(); } } // if for some reason no objects were read if (objects_read == 0) return false; if (disk.io_write.empty()) disk.io_write.push_back(0); else disk.io_write.push_back(max((int64_t)0, (bytes_write_total - disk.old_io.at(1)))); disk.old_io.at(1) = bytes_write_total; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); if (disk.io_read.empty()) disk.io_read.push_back(0); else disk.io_read.push_back(max((int64_t)0, (bytes_read_total - disk.old_io.at(0)))); disk.old_io.at(0) = bytes_read_total; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(max((int64_t)0, (io_ticks_total - disk.old_io.at(2)))); disk.old_io.at(2) = io_ticks_total; while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); return true; } } namespace Net { std::unordered_map current_net; net_info empty_net = {}; vector interfaces; string selected_iface; int errors{}; std::unordered_map graph_max = { {"download", {}}, {"upload", {}} }; std::unordered_map> max_count = { {"download", {}}, {"upload", {}} }; bool rescale{true}; uint64_t timestamp{}; auto collect(bool no_update) -> net_info& { if (Runner::stopping) return empty_net; auto& net = current_net; auto& config_iface = Config::getS("net_iface"); auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto new_timestamp = time_ms(); if (not no_update and errors < 3) { //? Get interface list using getifaddrs() wrapper IfAddrsPtr if_addrs {}; if (if_addrs.get_status() != 0) { errors++; Logger::error("Net::collect() -> getifaddrs() failed with id " + to_string(if_addrs.get_status())); redraw = true; return empty_net; } int family = 0; static_assert(INET6_ADDRSTRLEN >= INET_ADDRSTRLEN); // 46 >= 16, compile-time assurance. enum { IPBUFFER_MAXSIZE = INET6_ADDRSTRLEN }; // manually using the known biggest value, guarded by the above static_assert char ip[IPBUFFER_MAXSIZE]; interfaces.clear(); string ipv4, ipv6; //? Iteration over all items in getifaddrs() list for (auto* ifa = if_addrs.get(); ifa != nullptr; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; family = ifa->ifa_addr->sa_family; const auto& iface = ifa->ifa_name; //? Update available interfaces vector and get status of interface if (not v_contains(interfaces, iface)) { interfaces.push_back(iface); net[iface].connected = (ifa->ifa_flags & IFF_RUNNING); // An interface can have more than one IP of the same family associated with it, // but we pick only the first one to show in the NET box. // Note: Interfaces without any IPv4 and IPv6 set are still valid and monitorable! net[iface].ipv4.clear(); net[iface].ipv6.clear(); } //? Get IPv4 address if (family == AF_INET) { if (net[iface].ipv4.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv4 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv4 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //? Get IPv6 address else if (family == AF_INET6) { if (net[iface].ipv6.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin6_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv6 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv6 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //else, ignoring family==AF_PACKET (see man 3 getifaddrs) which is the first one in the `for` loop. } //? Get total received and transmitted bytes + device address if no ip was found for (const auto& iface : interfaces) { auto& netif = net.at(iface); if (netif.ipv4.empty() and netif.ipv6.empty()) netif.ipv4 = readfile("/sys/class/net/" + iface + "/address"); for (const string dir : {"download", "upload"}) { const fs::path sys_file = "/sys/class/net/" + iface + "/statistics/" + (dir == "download" ? "rx_bytes" : "tx_bytes"); auto& saved_stat = netif.stat.at(dir); auto& bandwidth = netif.bandwidth.at(dir); uint64_t val{}; try { val = stoull(readfile(sys_file, "0")); } catch (const std::invalid_argument&) {} catch (const std::out_of_range&) {} //? Update speed, total and top values if (val < saved_stat.last) { saved_stat.rollover += saved_stat.last; saved_stat.last = 0; } if (cmp_greater((unsigned long long)saved_stat.rollover + (unsigned long long)val, numeric_limits::max())) { saved_stat.rollover = 0; saved_stat.last = 0; } saved_stat.speed = round((double)(val - saved_stat.last) / ((double)(new_timestamp - timestamp) / 1000)); if (saved_stat.speed > saved_stat.top) saved_stat.top = saved_stat.speed; if (saved_stat.offset > val + saved_stat.rollover) saved_stat.offset = 0; saved_stat.total = (val + saved_stat.rollover) - saved_stat.offset; saved_stat.last = val; //? Add values to graph bandwidth.push_back(saved_stat.speed); while (cmp_greater(bandwidth.size(), width * 2)) bandwidth.pop_front(); //? Set counters for auto scaling if (net_auto and selected_iface == iface) { if (net_sync and saved_stat.speed < netif.stat.at(dir == "download" ? "upload" : "download").speed) continue; if (saved_stat.speed > graph_max[dir]) { ++max_count[dir][0]; if (max_count[dir][1] > 0) --max_count[dir][1]; } else if (graph_max[dir] > 10 << 10 and saved_stat.speed < graph_max[dir] / 10) { ++max_count[dir][1]; if (max_count[dir][0] > 0) --max_count[dir][0]; } } } } //? Clean up net map if needed if (net.size() > interfaces.size()) { for (auto it = net.begin(); it != net.end();) { if (not v_contains(interfaces, it->first)) it = net.erase(it); else it++; } } timestamp = new_timestamp; } //? Return empty net_info struct if no interfaces was found if (net.empty()) return empty_net; //? Find an interface to display if selected isn't set or valid if (selected_iface.empty() or not v_contains(interfaces, selected_iface)) { max_count["download"][0] = max_count["download"][1] = max_count["upload"][0] = max_count["upload"][1] = 0; redraw = true; if (net_auto) rescale = true; if (not config_iface.empty() and v_contains(interfaces, config_iface)) selected_iface = config_iface; else { //? Sort interfaces by total upload + download bytes auto sorted_interfaces = interfaces; rng::sort(sorted_interfaces, [&](const auto& a, const auto& b){ return cmp_greater(net.at(a).stat["download"].total + net.at(a).stat["upload"].total, net.at(b).stat["download"].total + net.at(b).stat["upload"].total); }); selected_iface.clear(); //? Try to set to a connected interface for (const auto& iface : sorted_interfaces) { if (net.at(iface).connected) { selected_iface = iface; break; } } //? If no interface is connected set to first available if (selected_iface.empty() and not sorted_interfaces.empty()) selected_iface = sorted_interfaces.at(0); else if (sorted_interfaces.empty()) return empty_net; } } //? Calculate max scale for graphs if needed if (net_auto) { bool sync = false; for (const auto& dir: {"download", "upload"}) { for (const auto& sel : {0, 1}) { if (rescale or max_count[dir][sel] >= 5) { const long long avg_speed = (net[selected_iface].bandwidth[dir].size() > 5 ? std::accumulate(net.at(selected_iface).bandwidth.at(dir).rbegin(), net.at(selected_iface).bandwidth.at(dir).rbegin() + 5, 0ll) / 5 : net[selected_iface].stat[dir].speed); graph_max[dir] = max(uint64_t(avg_speed * (sel == 0 ? 1.3 : 3.0)), (uint64_t)10 << 10); max_count[dir][0] = max_count[dir][1] = 0; redraw = true; if (net_sync) sync = true; break; } } //? Sync download/upload graphs if enabled if (sync) { const auto other = (string(dir) == "upload" ? "download" : "upload"); graph_max[other] = graph_max[dir]; max_count[other][0] = max_count[other][1] = 0; break; } } } rescale = false; return net.at(selected_iface); } } namespace Proc { vector current_procs; std::unordered_map uid_user; string current_sort; string current_filter; bool current_rev{}; fs::file_time_type passwd_time; uint64_t cputimes; int collapse = -1, expand = -1; uint64_t old_cputimes{}; atomic numpids{}; int filter_found{}; detail_container detailed; constexpr size_t KTHREADD = 2; static std::unordered_set kernels_procs = {KTHREADD}; //* Get detailed info for selected process static void _collect_details(const size_t pid, const uint64_t uptime, vector& procs) { fs::path pid_path = Shared::procPath / std::to_string(pid); if (pid != detailed.last_pid) { detailed = {}; detailed.last_pid = pid; detailed.skip_smaps = not Config::getB("proc_info_smaps"); } //? Copy proc_info for process from proc vector auto p_info = rng::find(procs, pid, &proc_info::pid); detailed.entry = *p_info; //? Update cpu percent deque for process cpu graph if (not Config::getB("proc_per_core")) detailed.entry.cpu_p *= Shared::coreCount; detailed.cpu_percent.push_back(clamp((long long)round(detailed.entry.cpu_p), 0ll, 100ll)); while (cmp_greater(detailed.cpu_percent.size(), width)) detailed.cpu_percent.pop_front(); //? Process runtime detailed.elapsed = sec_to_dhms(uptime - (detailed.entry.cpu_s / Shared::clkTck)); if (detailed.elapsed.size() > 8) detailed.elapsed.resize(detailed.elapsed.size() - 3); //? Get parent process name if (detailed.parent.empty()) { auto p_entry = rng::find(procs, detailed.entry.ppid, &proc_info::pid); if (p_entry != procs.end()) detailed.parent = p_entry->name; } //? Expand process status from single char to explanative string detailed.status = (proc_states.contains(detailed.entry.state)) ? proc_states.at(detailed.entry.state) : "Unknown"; ifstream d_read; string short_str; //? Try to get RSS mem from proc/[pid]/smaps detailed.memory.clear(); if (not detailed.skip_smaps and fs::exists(pid_path / "smaps")) { d_read.open(pid_path / "smaps"); uint64_t rss = 0; try { while (d_read.good()) { d_read.ignore(SSmax, 'R'); if (d_read.peek() == 's') { d_read.ignore(SSmax, ':'); getline(d_read, short_str, 'k'); rss += stoull(short_str); } } if (rss == detailed.entry.mem >> 10) detailed.skip_smaps = true; else { detailed.mem_bytes.push_back(rss << 10); detailed.memory = floating_humanizer(rss, false, 1); } } catch (const std::invalid_argument&) {} catch (const std::out_of_range&) {} d_read.close(); } if (detailed.memory.empty()) { detailed.mem_bytes.push_back(detailed.entry.mem); detailed.memory = floating_humanizer(detailed.entry.mem); } if (detailed.first_mem == -1 or detailed.first_mem < detailed.mem_bytes.back() / 2 or detailed.first_mem > detailed.mem_bytes.back() * 4) { detailed.first_mem = min((uint64_t)detailed.mem_bytes.back() * 2, Mem::get_totalMem()); redraw = true; } while (cmp_greater(detailed.mem_bytes.size(), width)) detailed.mem_bytes.pop_front(); //? Get bytes read and written from proc/[pid]/io if (fs::exists(pid_path / "io")) { d_read.open(pid_path / "io"); try { string name; while (d_read.good()) { getline(d_read, name, ':'); if (name.ends_with("read_bytes")) { getline(d_read, short_str); detailed.io_read = floating_humanizer(stoull(short_str)); } else if (name.ends_with("write_bytes")) { getline(d_read, short_str); detailed.io_write = floating_humanizer(stoull(short_str)); break; } else d_read.ignore(SSmax, '\n'); } } catch (const std::invalid_argument&) {} catch (const std::out_of_range&) {} d_read.close(); } } //* Collects and sorts process information from /proc auto collect(bool no_update) -> vector& { if (Runner::stopping) return current_procs; const auto& sorting = Config::getS("proc_sorting"); auto reverse = Config::getB("proc_reversed"); const auto& filter = Config::getS("proc_filter"); auto per_core = Config::getB("proc_per_core"); auto should_filter_kernel = Config::getB("proc_filter_kernel"); auto tree = Config::getB("proc_tree"); auto show_detailed = Config::getB("show_detailed"); const size_t detailed_pid = Config::getI("detailed_pid"); bool should_filter = current_filter != filter; if (should_filter) current_filter = filter; bool sorted_change = (sorting != current_sort or reverse != current_rev or should_filter); if (sorted_change) { current_sort = sorting; current_rev = reverse; } ifstream pread; string long_string; string short_str; static vector found; const double uptime = system_uptime(); const int cmult = (per_core) ? Shared::coreCount : 1; bool got_detailed = false; static size_t proc_clear_count{}; //* Use pids from last update if only changing filter, sorting or tree options if (no_update and not current_procs.empty()) { if (show_detailed and detailed_pid != detailed.last_pid) _collect_details(detailed_pid, round(uptime), current_procs); } //* ---------------------------------------------Collection start---------------------------------------------- else { should_filter = true; found.clear(); //? First make sure kernel proc cache is cleared. if (should_filter_kernel and ++proc_clear_count >= 256) { //? Clearing the cache is used in the event of a pid wrap around. //? In that event processes that acquire old kernel pids would also be filtered out so we need to manually clean the cache every now and then. kernels_procs.clear(); kernels_procs.emplace(KTHREADD); proc_clear_count = 0; } auto totalMem = Mem::get_totalMem(); int totalMem_len = to_string(totalMem >> 10).size(); //? Update uid_user map if /etc/passwd changed since last run if (not Shared::passwd_path.empty() and fs::last_write_time(Shared::passwd_path) != passwd_time) { string r_uid, r_user; passwd_time = fs::last_write_time(Shared::passwd_path); uid_user.clear(); pread.open(Shared::passwd_path); if (pread.good()) { while (pread.good()) { getline(pread, r_user, ':'); pread.ignore(SSmax, ':'); getline(pread, r_uid, ':'); if (uid_user.contains(r_uid)) break; uid_user[r_uid] = r_user; pread.ignore(SSmax, '\n'); } } else { Shared::passwd_path.clear(); } pread.close(); } //? Get cpu total times from /proc/stat cputimes = 0; pread.open(Shared::procPath / "stat"); if (pread.good()) { pread.ignore(SSmax, ' '); for (uint64_t times; pread >> times; cputimes += times); } else throw std::runtime_error("Failure to read /proc/stat"); pread.close(); //? Iterate over all pids in /proc for (const auto& d: fs::directory_iterator(Shared::procPath)) { if (Runner::stopping) return current_procs; if (pread.is_open()) pread.close(); const string pid_str = d.path().filename(); if (not isdigit(pid_str[0])) continue; const size_t pid = stoul(pid_str); if (should_filter_kernel and kernels_procs.contains(pid)) { continue; } found.push_back(pid); //? Check if pid already exists in current_procs auto find_old = rng::find(current_procs, pid, &proc_info::pid); bool no_cache{}; if (find_old == current_procs.end()) { current_procs.push_back({pid}); find_old = current_procs.end() - 1; no_cache = true; } auto& new_proc = *find_old; //? Get program name, command and username if (no_cache) { pread.open(d.path() / "comm"); if (not pread.good()) continue; getline(pread, new_proc.name); pread.close(); //? Check for whitespace characters in name and set offset to get correct fields from stat file new_proc.name_offset = rng::count(new_proc.name, ' '); pread.open(d.path() / "cmdline"); if (not pread.good()) continue; long_string.clear(); while(getline(pread, long_string, '\0')) { new_proc.cmd += long_string + ' '; if (new_proc.cmd.size() > 1000) { new_proc.cmd.resize(1000); break; } } pread.close(); if (not new_proc.cmd.empty()) new_proc.cmd.pop_back(); pread.open(d.path() / "status"); if (not pread.good()) continue; string uid; string line; while (pread.good()) { getline(pread, line, ':'); if (line == "Uid") { pread.ignore(); getline(pread, uid, '\t'); break; } else { pread.ignore(SSmax, '\n'); } } pread.close(); if (uid_user.contains(uid)) { new_proc.user = uid_user.at(uid); } else { #if !(defined(STATIC_BUILD) && defined(__GLIBC__)) try { struct passwd* udet; udet = getpwuid(stoi(uid)); if (udet != nullptr and udet->pw_name != nullptr) { new_proc.user = string(udet->pw_name); } else { new_proc.user = uid; } } catch (...) { new_proc.user = uid; } #else new_proc.user = uid; #endif } } //? Parse /proc/[pid]/stat pread.open(d.path() / "stat"); if (not pread.good()) continue; const auto& offset = new_proc.name_offset; short_str.clear(); int x = 0, next_x = 3; uint64_t cpu_t = 0; try { for (;;) { while (pread.good() and ++x < next_x + offset) pread.ignore(SSmax, ' '); if (not pread.good()) break; else getline(pread, short_str, ' '); switch (x-offset) { case 3: //? Process state new_proc.state = short_str.at(0); if (new_proc.ppid != 0) next_x = 14; continue; case 4: //? Parent pid new_proc.ppid = stoull(short_str); next_x = 14; continue; case 14: //? Process utime cpu_t = stoull(short_str); continue; case 15: //? Process stime cpu_t += stoull(short_str); next_x = 19; continue; case 19: //? Nice value new_proc.p_nice = stoll(short_str); continue; case 20: //? Number of threads new_proc.threads = stoull(short_str); if (new_proc.cpu_s == 0) { next_x = 22; new_proc.cpu_t = cpu_t; } else next_x = 24; continue; case 22: //? Get cpu seconds if missing new_proc.cpu_s = stoull(short_str); next_x = 24; continue; case 24: //? RSS memory (can be inaccurate, but parsing smaps increases total cpu usage by ~20x) if (cmp_greater(short_str.size(), totalMem_len)) new_proc.mem = totalMem; else new_proc.mem = stoull(short_str) * Shared::pageSize; } break; } } catch (const std::invalid_argument&) { continue; } catch (const std::out_of_range&) { continue; } pread.close(); if (should_filter_kernel and new_proc.ppid == KTHREADD) { kernels_procs.emplace(new_proc.pid); found.pop_back(); } if (x-offset < 24) continue; //? Get RSS memory from /proc/[pid]/statm if value from /proc/[pid]/stat looks wrong if (new_proc.mem >= totalMem) { pread.open(d.path() / "statm"); if (not pread.good()) continue; pread.ignore(SSmax, ' '); pread >> new_proc.mem; new_proc.mem *= Shared::pageSize; pread.close(); } //? Process cpu usage since last update new_proc.cpu_p = clamp(round(cmult * 1000 * (cpu_t - new_proc.cpu_t) / max((uint64_t)1, cputimes - old_cputimes)) / 10.0, 0.0, 100.0 * Shared::coreCount); //? Process cumulative cpu usage since process start new_proc.cpu_c = (double)cpu_t / max(1.0, (uptime * Shared::clkTck) - new_proc.cpu_s); //? Update cached value with latest cpu times new_proc.cpu_t = cpu_t; if (show_detailed and not got_detailed and new_proc.pid == detailed_pid) { got_detailed = true; } } //? Clear dead processes from current_procs and remove kernel processes if enabled auto eraser = rng::remove_if(current_procs, [&](const auto& element){ return not v_contains(found, element.pid); }); current_procs.erase(eraser.begin(), eraser.end()); //? Update the details info box for process if active if (show_detailed and got_detailed) { _collect_details(detailed_pid, round(uptime), current_procs); } else if (show_detailed and not got_detailed and detailed.status != "Dead") { detailed.status = "Dead"; redraw = true; } old_cputimes = cputimes; } //* ---------------------------------------------Collection done----------------------------------------------- //* Match filter if defined if (should_filter) { filter_found = 0; for (auto& p : current_procs) { if (not tree and not filter.empty()) { if (!matches_filter(p, filter)) { p.filtered = true; filter_found++; } else { p.filtered = false; } } else { p.filtered = false; } } } //* Sort processes if (sorted_change or not no_update) { proc_sorter(current_procs, sorting, reverse, tree); } //* Generate tree view if enabled if (tree and (not no_update or should_filter or sorted_change)) { bool locate_selection = false; if (auto find_pid = (collapse != -1 ? collapse : expand); find_pid != -1) { auto collapser = rng::find(current_procs, find_pid, &proc_info::pid); if (collapser != current_procs.end()) { if (collapse == expand) { collapser->collapsed = not collapser->collapsed; } else if (collapse > -1) { collapser->collapsed = true; } else if (expand > -1) { collapser->collapsed = false; } if (Config::ints.at("proc_selected") > 0) locate_selection = true; } collapse = expand = -1; } if (should_filter or not filter.empty()) filter_found = 0; vector tree_procs; tree_procs.reserve(current_procs.size()); for (auto& p : current_procs) { if (not v_contains(found, p.ppid)) p.ppid = 0; } //? Stable sort to retain selected sorting among processes with the same parent rng::stable_sort(current_procs, rng::less{}, & proc_info::ppid); //? Start recursive iteration over processes with the lowest shared parent pids for (auto& p : rng::equal_range(current_procs, current_procs.at(0).ppid, rng::less{}, &proc_info::ppid)) { _tree_gen(p, current_procs, tree_procs, 0, false, filter, false, no_update, should_filter); } //? Recursive sort over tree structure to account for collapsed processes in the tree int index = 0; tree_sort(tree_procs, sorting, reverse, index, current_procs.size()); //? Recursive construction of ASCII tree prefixes. for (auto t = tree_procs.begin(); t != tree_procs.end(); ++t) { _collect_prefixes(*t, t == tree_procs.end() - 1); } //? Final sort based on tree index rng::sort(current_procs, rng::less{}, & proc_info::tree_index); //? Move current selection/view to the selected process when collapsing/expanding in the tree if (locate_selection) { int loc = rng::find(current_procs, Proc::selected_pid, &proc_info::pid)->tree_index; if (Config::ints.at("proc_start") >= loc or Config::ints.at("proc_start") <= loc - Proc::select_max) Config::ints.at("proc_start") = max(0, loc - 1); Config::ints.at("proc_selected") = loc - Config::ints.at("proc_start") + 1; } } numpids = (int)current_procs.size() - filter_found; return current_procs; } } namespace Tools { double system_uptime() { string upstr; ifstream pread(Shared::procPath / "uptime"); if (pread.good()) { try { getline(pread, upstr, ' '); pread.close(); return stod(upstr); } catch (const std::invalid_argument&) {} catch (const std::out_of_range&) {} } throw std::runtime_error("Failed to get uptime from " + string{Shared::procPath} + "/uptime"); } } btop-1.4.5/src/linux/intel_gpu_top/000077500000000000000000000000001506333644200172715ustar00rootroot00000000000000btop-1.4.5/src/linux/intel_gpu_top/CMakeLists.txt000066400000000000000000000006401506333644200220310ustar00rootroot00000000000000enable_language(C) add_library(igt OBJECT igt_perf.c intel_device_info.c intel_gpu_top.c intel_name_lookup_shim.c ) if(BTOP_LTO) # We have checked LTO support already and it's supported :) set_target_properties(igt PROPERTIES INTERPROCEDURAL_OPTIMIZATION ON) endif() # Disable all warnings target_compile_options(igt PRIVATE -w) # Link igt into btop target_link_libraries(btop $) btop-1.4.5/src/linux/intel_gpu_top/drm.h000066400000000000000000001220141506333644200202240ustar00rootroot00000000000000/* * Header for the Direct Rendering Manager * * Author: Rickard E. (Rik) Faith * * Acknowledgments: * Dec 1999, Richard Henderson , move to generic cmpxchg. */ /* * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #ifndef _DRM_H_ #define _DRM_H_ #if defined(__linux__) #include #include typedef unsigned int drm_handle_t; #else /* One of the BSDs */ #include #include #include typedef int8_t __s8; typedef uint8_t __u8; typedef int16_t __s16; typedef uint16_t __u16; typedef int32_t __s32; typedef uint32_t __u32; typedef int64_t __s64; typedef uint64_t __u64; typedef size_t __kernel_size_t; typedef unsigned long drm_handle_t; #endif #if defined(__cplusplus) extern "C" { #endif #define DRM_NAME "drm" /**< Name in kernel, /dev, and /proc */ #define DRM_MIN_ORDER 5 /**< At least 2^5 bytes = 32 bytes */ #define DRM_MAX_ORDER 22 /**< Up to 2^22 bytes = 4MB */ #define DRM_RAM_PERCENT 10 /**< How much system ram can we lock? */ #define _DRM_LOCK_HELD 0x80000000U /**< Hardware lock is held */ #define _DRM_LOCK_CONT 0x40000000U /**< Hardware lock is contended */ #define _DRM_LOCK_IS_HELD(lock) ((lock) & _DRM_LOCK_HELD) #define _DRM_LOCK_IS_CONT(lock) ((lock) & _DRM_LOCK_CONT) #define _DRM_LOCKING_CONTEXT(lock) ((lock) & ~(_DRM_LOCK_HELD|_DRM_LOCK_CONT)) typedef unsigned int drm_context_t; typedef unsigned int drm_drawable_t; typedef unsigned int drm_magic_t; /* * Cliprect. * * \warning: If you change this structure, make sure you change * XF86DRIClipRectRec in the server as well * * \note KW: Actually it's illegal to change either for * backwards-compatibility reasons. */ struct drm_clip_rect { unsigned short x1; unsigned short y1; unsigned short x2; unsigned short y2; }; /* * Drawable information. */ struct drm_drawable_info { unsigned int num_rects; struct drm_clip_rect *rects; }; /* * Texture region, */ struct drm_tex_region { unsigned char next; unsigned char prev; unsigned char in_use; unsigned char padding; unsigned int age; }; /* * Hardware lock. * * The lock structure is a simple cache-line aligned integer. To avoid * processor bus contention on a multiprocessor system, there should not be any * other data stored in the same cache line. */ struct drm_hw_lock { __volatile__ unsigned int lock; /**< lock variable */ char padding[60]; /**< Pad to cache line */ }; /* * DRM_IOCTL_VERSION ioctl argument type. * * \sa drmGetVersion(). */ struct drm_version { int version_major; /**< Major version */ int version_minor; /**< Minor version */ int version_patchlevel; /**< Patch level */ __kernel_size_t name_len; /**< Length of name buffer */ char *name; /**< Name of driver */ __kernel_size_t date_len; /**< Length of date buffer */ char *date; /**< User-space buffer to hold date */ __kernel_size_t desc_len; /**< Length of desc buffer */ char *desc; /**< User-space buffer to hold desc */ }; /* * DRM_IOCTL_GET_UNIQUE ioctl argument type. * * \sa drmGetBusid() and drmSetBusId(). */ struct drm_unique { __kernel_size_t unique_len; /**< Length of unique */ char *unique; /**< Unique name for driver instantiation */ }; struct drm_list { int count; /**< Length of user-space structures */ struct drm_version *version; }; struct drm_block { int unused; }; /* * DRM_IOCTL_CONTROL ioctl argument type. * * \sa drmCtlInstHandler() and drmCtlUninstHandler(). */ struct drm_control { enum { DRM_ADD_COMMAND, DRM_RM_COMMAND, DRM_INST_HANDLER, DRM_UNINST_HANDLER } func; int irq; }; /* * Type of memory to map. */ enum drm_map_type { _DRM_FRAME_BUFFER = 0, /**< WC (no caching), no core dump */ _DRM_REGISTERS = 1, /**< no caching, no core dump */ _DRM_SHM = 2, /**< shared, cached */ _DRM_AGP = 3, /**< AGP/GART */ _DRM_SCATTER_GATHER = 4, /**< Scatter/gather memory for PCI DMA */ _DRM_CONSISTENT = 5 /**< Consistent memory for PCI DMA */ }; /* * Memory mapping flags. */ enum drm_map_flags { _DRM_RESTRICTED = 0x01, /**< Cannot be mapped to user-virtual */ _DRM_READ_ONLY = 0x02, _DRM_LOCKED = 0x04, /**< shared, cached, locked */ _DRM_KERNEL = 0x08, /**< kernel requires access */ _DRM_WRITE_COMBINING = 0x10, /**< use write-combining if available */ _DRM_CONTAINS_LOCK = 0x20, /**< SHM page that contains lock */ _DRM_REMOVABLE = 0x40, /**< Removable mapping */ _DRM_DRIVER = 0x80 /**< Managed by driver */ }; struct drm_ctx_priv_map { unsigned int ctx_id; /**< Context requesting private mapping */ void *handle; /**< Handle of map */ }; /* * DRM_IOCTL_GET_MAP, DRM_IOCTL_ADD_MAP and DRM_IOCTL_RM_MAP ioctls * argument type. * * \sa drmAddMap(). */ struct drm_map { unsigned long offset; /**< Requested physical address (0 for SAREA)*/ unsigned long size; /**< Requested physical size (bytes) */ enum drm_map_type type; /**< Type of memory to map */ enum drm_map_flags flags; /**< Flags */ void *handle; /**< User-space: "Handle" to pass to mmap() */ /**< Kernel-space: kernel-virtual address */ int mtrr; /**< MTRR slot used */ /* Private data */ }; /* * DRM_IOCTL_GET_CLIENT ioctl argument type. */ struct drm_client { int idx; /**< Which client desired? */ int auth; /**< Is client authenticated? */ unsigned long pid; /**< Process ID */ unsigned long uid; /**< User ID */ unsigned long magic; /**< Magic */ unsigned long iocs; /**< Ioctl count */ }; enum drm_stat_type { _DRM_STAT_LOCK, _DRM_STAT_OPENS, _DRM_STAT_CLOSES, _DRM_STAT_IOCTLS, _DRM_STAT_LOCKS, _DRM_STAT_UNLOCKS, _DRM_STAT_VALUE, /**< Generic value */ _DRM_STAT_BYTE, /**< Generic byte counter (1024bytes/K) */ _DRM_STAT_COUNT, /**< Generic non-byte counter (1000/k) */ _DRM_STAT_IRQ, /**< IRQ */ _DRM_STAT_PRIMARY, /**< Primary DMA bytes */ _DRM_STAT_SECONDARY, /**< Secondary DMA bytes */ _DRM_STAT_DMA, /**< DMA */ _DRM_STAT_SPECIAL, /**< Special DMA (e.g., priority or polled) */ _DRM_STAT_MISSED /**< Missed DMA opportunity */ /* Add to the *END* of the list */ }; /* * DRM_IOCTL_GET_STATS ioctl argument type. */ struct drm_stats { unsigned long count; struct { unsigned long value; enum drm_stat_type type; } data[15]; }; /* * Hardware locking flags. */ enum drm_lock_flags { _DRM_LOCK_READY = 0x01, /**< Wait until hardware is ready for DMA */ _DRM_LOCK_QUIESCENT = 0x02, /**< Wait until hardware quiescent */ _DRM_LOCK_FLUSH = 0x04, /**< Flush this context's DMA queue first */ _DRM_LOCK_FLUSH_ALL = 0x08, /**< Flush all DMA queues first */ /* These *HALT* flags aren't supported yet -- they will be used to support the full-screen DGA-like mode. */ _DRM_HALT_ALL_QUEUES = 0x10, /**< Halt all current and future queues */ _DRM_HALT_CUR_QUEUES = 0x20 /**< Halt all current queues */ }; /* * DRM_IOCTL_LOCK, DRM_IOCTL_UNLOCK and DRM_IOCTL_FINISH ioctl argument type. * * \sa drmGetLock() and drmUnlock(). */ struct drm_lock { int context; enum drm_lock_flags flags; }; /* * DMA flags * * \warning * These values \e must match xf86drm.h. * * \sa drm_dma. */ enum drm_dma_flags { /* Flags for DMA buffer dispatch */ _DRM_DMA_BLOCK = 0x01, /**< * Block until buffer dispatched. * * \note The buffer may not yet have * been processed by the hardware -- * getting a hardware lock with the * hardware quiescent will ensure * that the buffer has been * processed. */ _DRM_DMA_WHILE_LOCKED = 0x02, /**< Dispatch while lock held */ _DRM_DMA_PRIORITY = 0x04, /**< High priority dispatch */ /* Flags for DMA buffer request */ _DRM_DMA_WAIT = 0x10, /**< Wait for free buffers */ _DRM_DMA_SMALLER_OK = 0x20, /**< Smaller-than-requested buffers OK */ _DRM_DMA_LARGER_OK = 0x40 /**< Larger-than-requested buffers OK */ }; /* * DRM_IOCTL_ADD_BUFS and DRM_IOCTL_MARK_BUFS ioctl argument type. * * \sa drmAddBufs(). */ struct drm_buf_desc { int count; /**< Number of buffers of this size */ int size; /**< Size in bytes */ int low_mark; /**< Low water mark */ int high_mark; /**< High water mark */ enum { _DRM_PAGE_ALIGN = 0x01, /**< Align on page boundaries for DMA */ _DRM_AGP_BUFFER = 0x02, /**< Buffer is in AGP space */ _DRM_SG_BUFFER = 0x04, /**< Scatter/gather memory buffer */ _DRM_FB_BUFFER = 0x08, /**< Buffer is in frame buffer */ _DRM_PCI_BUFFER_RO = 0x10 /**< Map PCI DMA buffer read-only */ } flags; unsigned long agp_start; /**< * Start address of where the AGP buffers are * in the AGP aperture */ }; /* * DRM_IOCTL_INFO_BUFS ioctl argument type. */ struct drm_buf_info { int count; /**< Entries in list */ struct drm_buf_desc *list; }; /* * DRM_IOCTL_FREE_BUFS ioctl argument type. */ struct drm_buf_free { int count; int *list; }; /* * Buffer information * * \sa drm_buf_map. */ struct drm_buf_pub { int idx; /**< Index into the master buffer list */ int total; /**< Buffer size */ int used; /**< Amount of buffer in use (for DMA) */ void *address; /**< Address of buffer */ }; /* * DRM_IOCTL_MAP_BUFS ioctl argument type. */ struct drm_buf_map { int count; /**< Length of the buffer list */ #ifdef __cplusplus void *virt; #else void *virtual; /**< Mmap'd area in user-virtual */ #endif struct drm_buf_pub *list; /**< Buffer information */ }; /* * DRM_IOCTL_DMA ioctl argument type. * * Indices here refer to the offset into the buffer list in drm_buf_get. * * \sa drmDMA(). */ struct drm_dma { int context; /**< Context handle */ int send_count; /**< Number of buffers to send */ int *send_indices; /**< List of handles to buffers */ int *send_sizes; /**< Lengths of data to send */ enum drm_dma_flags flags; /**< Flags */ int request_count; /**< Number of buffers requested */ int request_size; /**< Desired size for buffers */ int *request_indices; /**< Buffer information */ int *request_sizes; int granted_count; /**< Number of buffers granted */ }; enum drm_ctx_flags { _DRM_CONTEXT_PRESERVED = 0x01, _DRM_CONTEXT_2DONLY = 0x02 }; /* * DRM_IOCTL_ADD_CTX ioctl argument type. * * \sa drmCreateContext() and drmDestroyContext(). */ struct drm_ctx { drm_context_t handle; enum drm_ctx_flags flags; }; /* * DRM_IOCTL_RES_CTX ioctl argument type. */ struct drm_ctx_res { int count; struct drm_ctx *contexts; }; /* * DRM_IOCTL_ADD_DRAW and DRM_IOCTL_RM_DRAW ioctl argument type. */ struct drm_draw { drm_drawable_t handle; }; /* * DRM_IOCTL_UPDATE_DRAW ioctl argument type. */ typedef enum { DRM_DRAWABLE_CLIPRECTS } drm_drawable_info_type_t; struct drm_update_draw { drm_drawable_t handle; unsigned int type; unsigned int num; unsigned long long data; }; /* * DRM_IOCTL_GET_MAGIC and DRM_IOCTL_AUTH_MAGIC ioctl argument type. */ struct drm_auth { drm_magic_t magic; }; /* * DRM_IOCTL_IRQ_BUSID ioctl argument type. * * \sa drmGetInterruptFromBusID(). */ struct drm_irq_busid { int irq; /**< IRQ number */ int busnum; /**< bus number */ int devnum; /**< device number */ int funcnum; /**< function number */ }; enum drm_vblank_seq_type { _DRM_VBLANK_ABSOLUTE = 0x0, /**< Wait for specific vblank sequence number */ _DRM_VBLANK_RELATIVE = 0x1, /**< Wait for given number of vblanks */ /* bits 1-6 are reserved for high crtcs */ _DRM_VBLANK_HIGH_CRTC_MASK = 0x0000003e, _DRM_VBLANK_EVENT = 0x4000000, /**< Send event instead of blocking */ _DRM_VBLANK_FLIP = 0x8000000, /**< Scheduled buffer swap should flip */ _DRM_VBLANK_NEXTONMISS = 0x10000000, /**< If missed, wait for next vblank */ _DRM_VBLANK_SECONDARY = 0x20000000, /**< Secondary display controller */ _DRM_VBLANK_SIGNAL = 0x40000000 /**< Send signal instead of blocking, unsupported */ }; #define _DRM_VBLANK_HIGH_CRTC_SHIFT 1 #define _DRM_VBLANK_TYPES_MASK (_DRM_VBLANK_ABSOLUTE | _DRM_VBLANK_RELATIVE) #define _DRM_VBLANK_FLAGS_MASK (_DRM_VBLANK_EVENT | _DRM_VBLANK_SIGNAL | \ _DRM_VBLANK_SECONDARY | _DRM_VBLANK_NEXTONMISS) struct drm_wait_vblank_request { enum drm_vblank_seq_type type; unsigned int sequence; unsigned long signal; }; struct drm_wait_vblank_reply { enum drm_vblank_seq_type type; unsigned int sequence; long tval_sec; long tval_usec; }; /* * DRM_IOCTL_WAIT_VBLANK ioctl argument type. * * \sa drmWaitVBlank(). */ union drm_wait_vblank { struct drm_wait_vblank_request request; struct drm_wait_vblank_reply reply; }; #define _DRM_PRE_MODESET 1 #define _DRM_POST_MODESET 2 /* * DRM_IOCTL_MODESET_CTL ioctl argument type * * \sa drmModesetCtl(). */ struct drm_modeset_ctl { __u32 crtc; __u32 cmd; }; /* * DRM_IOCTL_AGP_ENABLE ioctl argument type. * * \sa drmAgpEnable(). */ struct drm_agp_mode { unsigned long mode; /**< AGP mode */ }; /* * DRM_IOCTL_AGP_ALLOC and DRM_IOCTL_AGP_FREE ioctls argument type. * * \sa drmAgpAlloc() and drmAgpFree(). */ struct drm_agp_buffer { unsigned long size; /**< In bytes -- will round to page boundary */ unsigned long handle; /**< Used for binding / unbinding */ unsigned long type; /**< Type of memory to allocate */ unsigned long physical; /**< Physical used by i810 */ }; /* * DRM_IOCTL_AGP_BIND and DRM_IOCTL_AGP_UNBIND ioctls argument type. * * \sa drmAgpBind() and drmAgpUnbind(). */ struct drm_agp_binding { unsigned long handle; /**< From drm_agp_buffer */ unsigned long offset; /**< In bytes -- will round to page boundary */ }; /* * DRM_IOCTL_AGP_INFO ioctl argument type. * * \sa drmAgpVersionMajor(), drmAgpVersionMinor(), drmAgpGetMode(), * drmAgpBase(), drmAgpSize(), drmAgpMemoryUsed(), drmAgpMemoryAvail(), * drmAgpVendorId() and drmAgpDeviceId(). */ struct drm_agp_info { int agp_version_major; int agp_version_minor; unsigned long mode; unsigned long aperture_base; /* physical address */ unsigned long aperture_size; /* bytes */ unsigned long memory_allowed; /* bytes */ unsigned long memory_used; /* PCI information */ unsigned short id_vendor; unsigned short id_device; }; /* * DRM_IOCTL_SG_ALLOC ioctl argument type. */ struct drm_scatter_gather { unsigned long size; /**< In bytes -- will round to page boundary */ unsigned long handle; /**< Used for mapping / unmapping */ }; /* * DRM_IOCTL_SET_VERSION ioctl argument type. */ struct drm_set_version { int drm_di_major; int drm_di_minor; int drm_dd_major; int drm_dd_minor; }; /* DRM_IOCTL_GEM_CLOSE ioctl argument type */ struct drm_gem_close { /** Handle of the object to be closed. */ __u32 handle; __u32 pad; }; /* DRM_IOCTL_GEM_FLINK ioctl argument type */ struct drm_gem_flink { /** Handle for the object being named */ __u32 handle; /** Returned global name */ __u32 name; }; /* DRM_IOCTL_GEM_OPEN ioctl argument type */ struct drm_gem_open { /** Name of object being opened */ __u32 name; /** Returned handle for the object */ __u32 handle; /** Returned size of the object */ __u64 size; }; /** * DRM_CAP_DUMB_BUFFER * * If set to 1, the driver supports creating dumb buffers via the * &DRM_IOCTL_MODE_CREATE_DUMB ioctl. */ #define DRM_CAP_DUMB_BUFFER 0x1 /** * DRM_CAP_VBLANK_HIGH_CRTC * * If set to 1, the kernel supports specifying a :ref:`CRTC index` * in the high bits of &drm_wait_vblank_request.type. * * Starting kernel version 2.6.39, this capability is always set to 1. */ #define DRM_CAP_VBLANK_HIGH_CRTC 0x2 /** * DRM_CAP_DUMB_PREFERRED_DEPTH * * The preferred bit depth for dumb buffers. * * The bit depth is the number of bits used to indicate the color of a single * pixel excluding any padding. This is different from the number of bits per * pixel. For instance, XRGB8888 has a bit depth of 24 but has 32 bits per * pixel. * * Note that this preference only applies to dumb buffers, it's irrelevant for * other types of buffers. */ #define DRM_CAP_DUMB_PREFERRED_DEPTH 0x3 /** * DRM_CAP_DUMB_PREFER_SHADOW * * If set to 1, the driver prefers userspace to render to a shadow buffer * instead of directly rendering to a dumb buffer. For best speed, userspace * should do streaming ordered memory copies into the dumb buffer and never * read from it. * * Note that this preference only applies to dumb buffers, it's irrelevant for * other types of buffers. */ #define DRM_CAP_DUMB_PREFER_SHADOW 0x4 /** * DRM_CAP_PRIME * * Bitfield of supported PRIME sharing capabilities. See &DRM_PRIME_CAP_IMPORT * and &DRM_PRIME_CAP_EXPORT. * * Starting from kernel version 6.6, both &DRM_PRIME_CAP_IMPORT and * &DRM_PRIME_CAP_EXPORT are always advertised. * * PRIME buffers are exposed as dma-buf file descriptors. * See :ref:`prime_buffer_sharing`. */ #define DRM_CAP_PRIME 0x5 /** * DRM_PRIME_CAP_IMPORT * * If this bit is set in &DRM_CAP_PRIME, the driver supports importing PRIME * buffers via the &DRM_IOCTL_PRIME_FD_TO_HANDLE ioctl. * * Starting from kernel version 6.6, this bit is always set in &DRM_CAP_PRIME. */ #define DRM_PRIME_CAP_IMPORT 0x1 /** * DRM_PRIME_CAP_EXPORT * * If this bit is set in &DRM_CAP_PRIME, the driver supports exporting PRIME * buffers via the &DRM_IOCTL_PRIME_HANDLE_TO_FD ioctl. * * Starting from kernel version 6.6, this bit is always set in &DRM_CAP_PRIME. */ #define DRM_PRIME_CAP_EXPORT 0x2 /** * DRM_CAP_TIMESTAMP_MONOTONIC * * If set to 0, the kernel will report timestamps with ``CLOCK_REALTIME`` in * struct drm_event_vblank. If set to 1, the kernel will report timestamps with * ``CLOCK_MONOTONIC``. See ``clock_gettime(2)`` for the definition of these * clocks. * * Starting from kernel version 2.6.39, the default value for this capability * is 1. Starting kernel version 4.15, this capability is always set to 1. */ #define DRM_CAP_TIMESTAMP_MONOTONIC 0x6 /** * DRM_CAP_ASYNC_PAGE_FLIP * * If set to 1, the driver supports &DRM_MODE_PAGE_FLIP_ASYNC. */ #define DRM_CAP_ASYNC_PAGE_FLIP 0x7 /** * DRM_CAP_CURSOR_WIDTH * * The ``CURSOR_WIDTH`` and ``CURSOR_HEIGHT`` capabilities return a valid * width x height combination for the hardware cursor. The intention is that a * hardware agnostic userspace can query a cursor plane size to use. * * Note that the cross-driver contract is to merely return a valid size; * drivers are free to attach another meaning on top, eg. i915 returns the * maximum plane size. */ #define DRM_CAP_CURSOR_WIDTH 0x8 /** * DRM_CAP_CURSOR_HEIGHT * * See &DRM_CAP_CURSOR_WIDTH. */ #define DRM_CAP_CURSOR_HEIGHT 0x9 /** * DRM_CAP_ADDFB2_MODIFIERS * * If set to 1, the driver supports supplying modifiers in the * &DRM_IOCTL_MODE_ADDFB2 ioctl. */ #define DRM_CAP_ADDFB2_MODIFIERS 0x10 /** * DRM_CAP_PAGE_FLIP_TARGET * * If set to 1, the driver supports the &DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE and * &DRM_MODE_PAGE_FLIP_TARGET_RELATIVE flags in * &drm_mode_crtc_page_flip_target.flags for the &DRM_IOCTL_MODE_PAGE_FLIP * ioctl. */ #define DRM_CAP_PAGE_FLIP_TARGET 0x11 /** * DRM_CAP_CRTC_IN_VBLANK_EVENT * * If set to 1, the kernel supports reporting the CRTC ID in * &drm_event_vblank.crtc_id for the &DRM_EVENT_VBLANK and * &DRM_EVENT_FLIP_COMPLETE events. * * Starting kernel version 4.12, this capability is always set to 1. */ #define DRM_CAP_CRTC_IN_VBLANK_EVENT 0x12 /** * DRM_CAP_SYNCOBJ * * If set to 1, the driver supports sync objects. See :ref:`drm_sync_objects`. */ #define DRM_CAP_SYNCOBJ 0x13 /** * DRM_CAP_SYNCOBJ_TIMELINE * * If set to 1, the driver supports timeline operations on sync objects. See * :ref:`drm_sync_objects`. */ #define DRM_CAP_SYNCOBJ_TIMELINE 0x14 /* DRM_IOCTL_GET_CAP ioctl argument type */ struct drm_get_cap { __u64 capability; __u64 value; }; /** * DRM_CLIENT_CAP_STEREO_3D * * If set to 1, the DRM core will expose the stereo 3D capabilities of the * monitor by advertising the supported 3D layouts in the flags of struct * drm_mode_modeinfo. See ``DRM_MODE_FLAG_3D_*``. * * This capability is always supported for all drivers starting from kernel * version 3.13. */ #define DRM_CLIENT_CAP_STEREO_3D 1 /** * DRM_CLIENT_CAP_UNIVERSAL_PLANES * * If set to 1, the DRM core will expose all planes (overlay, primary, and * cursor) to userspace. * * This capability has been introduced in kernel version 3.15. Starting from * kernel version 3.17, this capability is always supported for all drivers. */ #define DRM_CLIENT_CAP_UNIVERSAL_PLANES 2 /** * DRM_CLIENT_CAP_ATOMIC * * If set to 1, the DRM core will expose atomic properties to userspace. This * implicitly enables &DRM_CLIENT_CAP_UNIVERSAL_PLANES and * &DRM_CLIENT_CAP_ASPECT_RATIO. * * If the driver doesn't support atomic mode-setting, enabling this capability * will fail with -EOPNOTSUPP. * * This capability has been introduced in kernel version 4.0. Starting from * kernel version 4.2, this capability is always supported for atomic-capable * drivers. */ #define DRM_CLIENT_CAP_ATOMIC 3 /** * DRM_CLIENT_CAP_ASPECT_RATIO * * If set to 1, the DRM core will provide aspect ratio information in modes. * See ``DRM_MODE_FLAG_PIC_AR_*``. * * This capability is always supported for all drivers starting from kernel * version 4.18. */ #define DRM_CLIENT_CAP_ASPECT_RATIO 4 /** * DRM_CLIENT_CAP_WRITEBACK_CONNECTORS * * If set to 1, the DRM core will expose special connectors to be used for * writing back to memory the scene setup in the commit. The client must enable * &DRM_CLIENT_CAP_ATOMIC first. * * This capability is always supported for atomic-capable drivers starting from * kernel version 4.19. */ #define DRM_CLIENT_CAP_WRITEBACK_CONNECTORS 5 /* DRM_IOCTL_SET_CLIENT_CAP ioctl argument type */ struct drm_set_client_cap { __u64 capability; __u64 value; }; #define DRM_RDWR O_RDWR #define DRM_CLOEXEC O_CLOEXEC struct drm_prime_handle { __u32 handle; /** Flags.. only applicable for handle->fd */ __u32 flags; /** Returned dmabuf file descriptor */ __s32 fd; }; struct drm_syncobj_create { __u32 handle; #define DRM_SYNCOBJ_CREATE_SIGNALED (1 << 0) __u32 flags; }; struct drm_syncobj_destroy { __u32 handle; __u32 pad; }; #define DRM_SYNCOBJ_FD_TO_HANDLE_FLAGS_IMPORT_SYNC_FILE (1 << 0) #define DRM_SYNCOBJ_HANDLE_TO_FD_FLAGS_EXPORT_SYNC_FILE (1 << 0) struct drm_syncobj_handle { __u32 handle; __u32 flags; __s32 fd; __u32 pad; }; struct drm_syncobj_transfer { __u32 src_handle; __u32 dst_handle; __u64 src_point; __u64 dst_point; __u32 flags; __u32 pad; }; #define DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL (1 << 0) #define DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT (1 << 1) #define DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE (1 << 2) /* wait for time point to become available */ struct drm_syncobj_wait { __u64 handles; /* absolute timeout */ __s64 timeout_nsec; __u32 count_handles; __u32 flags; __u32 first_signaled; /* only valid when not waiting all */ __u32 pad; }; struct drm_syncobj_timeline_wait { __u64 handles; /* wait on specific timeline point for every handles*/ __u64 points; /* absolute timeout */ __s64 timeout_nsec; __u32 count_handles; __u32 flags; __u32 first_signaled; /* only valid when not waiting all */ __u32 pad; }; /** * struct drm_syncobj_eventfd * @handle: syncobj handle. * @flags: Zero to wait for the point to be signalled, or * &DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE to wait for a fence to be * available for the point. * @point: syncobj timeline point (set to zero for binary syncobjs). * @fd: Existing eventfd to sent events to. * @pad: Must be zero. * * Register an eventfd to be signalled by a syncobj. The eventfd counter will * be incremented by one. */ struct drm_syncobj_eventfd { __u32 handle; __u32 flags; __u64 point; __s32 fd; __u32 pad; }; struct drm_syncobj_array { __u64 handles; __u32 count_handles; __u32 pad; }; #define DRM_SYNCOBJ_QUERY_FLAGS_LAST_SUBMITTED (1 << 0) /* last available point on timeline syncobj */ struct drm_syncobj_timeline_array { __u64 handles; __u64 points; __u32 count_handles; __u32 flags; }; /* Query current scanout sequence number */ struct drm_crtc_get_sequence { __u32 crtc_id; /* requested crtc_id */ __u32 active; /* return: crtc output is active */ __u64 sequence; /* return: most recent vblank sequence */ __s64 sequence_ns; /* return: most recent time of first pixel out */ }; /* Queue event to be delivered at specified sequence. Time stamp marks * when the first pixel of the refresh cycle leaves the display engine * for the display */ #define DRM_CRTC_SEQUENCE_RELATIVE 0x00000001 /* sequence is relative to current */ #define DRM_CRTC_SEQUENCE_NEXT_ON_MISS 0x00000002 /* Use next sequence if we've missed */ struct drm_crtc_queue_sequence { __u32 crtc_id; __u32 flags; __u64 sequence; /* on input, target sequence. on output, actual sequence */ __u64 user_data; /* user data passed to event */ }; #if defined(__cplusplus) } #endif #include "drm_mode.h" #if defined(__cplusplus) extern "C" { #endif #define DRM_IOCTL_BASE 'd' #define DRM_IO(nr) _IO(DRM_IOCTL_BASE,nr) #define DRM_IOR(nr,type) _IOR(DRM_IOCTL_BASE,nr,type) #define DRM_IOW(nr,type) _IOW(DRM_IOCTL_BASE,nr,type) #define DRM_IOWR(nr,type) _IOWR(DRM_IOCTL_BASE,nr,type) #define DRM_IOCTL_VERSION DRM_IOWR(0x00, struct drm_version) #define DRM_IOCTL_GET_UNIQUE DRM_IOWR(0x01, struct drm_unique) #define DRM_IOCTL_GET_MAGIC DRM_IOR( 0x02, struct drm_auth) #define DRM_IOCTL_IRQ_BUSID DRM_IOWR(0x03, struct drm_irq_busid) #define DRM_IOCTL_GET_MAP DRM_IOWR(0x04, struct drm_map) #define DRM_IOCTL_GET_CLIENT DRM_IOWR(0x05, struct drm_client) #define DRM_IOCTL_GET_STATS DRM_IOR( 0x06, struct drm_stats) #define DRM_IOCTL_SET_VERSION DRM_IOWR(0x07, struct drm_set_version) #define DRM_IOCTL_MODESET_CTL DRM_IOW(0x08, struct drm_modeset_ctl) /** * DRM_IOCTL_GEM_CLOSE - Close a GEM handle. * * GEM handles are not reference-counted by the kernel. User-space is * responsible for managing their lifetime. For example, if user-space imports * the same memory object twice on the same DRM file description, the same GEM * handle is returned by both imports, and user-space needs to ensure * &DRM_IOCTL_GEM_CLOSE is performed once only. The same situation can happen * when a memory object is allocated, then exported and imported again on the * same DRM file description. The &DRM_IOCTL_MODE_GETFB2 IOCTL is an exception * and always returns fresh new GEM handles even if an existing GEM handle * already refers to the same memory object before the IOCTL is performed. */ #define DRM_IOCTL_GEM_CLOSE DRM_IOW (0x09, struct drm_gem_close) #define DRM_IOCTL_GEM_FLINK DRM_IOWR(0x0a, struct drm_gem_flink) #define DRM_IOCTL_GEM_OPEN DRM_IOWR(0x0b, struct drm_gem_open) #define DRM_IOCTL_GET_CAP DRM_IOWR(0x0c, struct drm_get_cap) #define DRM_IOCTL_SET_CLIENT_CAP DRM_IOW( 0x0d, struct drm_set_client_cap) #define DRM_IOCTL_SET_UNIQUE DRM_IOW( 0x10, struct drm_unique) #define DRM_IOCTL_AUTH_MAGIC DRM_IOW( 0x11, struct drm_auth) #define DRM_IOCTL_BLOCK DRM_IOWR(0x12, struct drm_block) #define DRM_IOCTL_UNBLOCK DRM_IOWR(0x13, struct drm_block) #define DRM_IOCTL_CONTROL DRM_IOW( 0x14, struct drm_control) #define DRM_IOCTL_ADD_MAP DRM_IOWR(0x15, struct drm_map) #define DRM_IOCTL_ADD_BUFS DRM_IOWR(0x16, struct drm_buf_desc) #define DRM_IOCTL_MARK_BUFS DRM_IOW( 0x17, struct drm_buf_desc) #define DRM_IOCTL_INFO_BUFS DRM_IOWR(0x18, struct drm_buf_info) #define DRM_IOCTL_MAP_BUFS DRM_IOWR(0x19, struct drm_buf_map) #define DRM_IOCTL_FREE_BUFS DRM_IOW( 0x1a, struct drm_buf_free) #define DRM_IOCTL_RM_MAP DRM_IOW( 0x1b, struct drm_map) #define DRM_IOCTL_SET_SAREA_CTX DRM_IOW( 0x1c, struct drm_ctx_priv_map) #define DRM_IOCTL_GET_SAREA_CTX DRM_IOWR(0x1d, struct drm_ctx_priv_map) #define DRM_IOCTL_SET_MASTER DRM_IO(0x1e) #define DRM_IOCTL_DROP_MASTER DRM_IO(0x1f) #define DRM_IOCTL_ADD_CTX DRM_IOWR(0x20, struct drm_ctx) #define DRM_IOCTL_RM_CTX DRM_IOWR(0x21, struct drm_ctx) #define DRM_IOCTL_MOD_CTX DRM_IOW( 0x22, struct drm_ctx) #define DRM_IOCTL_GET_CTX DRM_IOWR(0x23, struct drm_ctx) #define DRM_IOCTL_SWITCH_CTX DRM_IOW( 0x24, struct drm_ctx) #define DRM_IOCTL_NEW_CTX DRM_IOW( 0x25, struct drm_ctx) #define DRM_IOCTL_RES_CTX DRM_IOWR(0x26, struct drm_ctx_res) #define DRM_IOCTL_ADD_DRAW DRM_IOWR(0x27, struct drm_draw) #define DRM_IOCTL_RM_DRAW DRM_IOWR(0x28, struct drm_draw) #define DRM_IOCTL_DMA DRM_IOWR(0x29, struct drm_dma) #define DRM_IOCTL_LOCK DRM_IOW( 0x2a, struct drm_lock) #define DRM_IOCTL_UNLOCK DRM_IOW( 0x2b, struct drm_lock) #define DRM_IOCTL_FINISH DRM_IOW( 0x2c, struct drm_lock) /** * DRM_IOCTL_PRIME_HANDLE_TO_FD - Convert a GEM handle to a DMA-BUF FD. * * User-space sets &drm_prime_handle.handle with the GEM handle to export and * &drm_prime_handle.flags, and gets back a DMA-BUF file descriptor in * &drm_prime_handle.fd. * * The export can fail for any driver-specific reason, e.g. because export is * not supported for this specific GEM handle (but might be for others). * * Support for exporting DMA-BUFs is advertised via &DRM_PRIME_CAP_EXPORT. */ #define DRM_IOCTL_PRIME_HANDLE_TO_FD DRM_IOWR(0x2d, struct drm_prime_handle) /** * DRM_IOCTL_PRIME_FD_TO_HANDLE - Convert a DMA-BUF FD to a GEM handle. * * User-space sets &drm_prime_handle.fd with a DMA-BUF file descriptor to * import, and gets back a GEM handle in &drm_prime_handle.handle. * &drm_prime_handle.flags is unused. * * If an existing GEM handle refers to the memory object backing the DMA-BUF, * that GEM handle is returned. Therefore user-space which needs to handle * arbitrary DMA-BUFs must have a user-space lookup data structure to manually * reference-count duplicated GEM handles. For more information see * &DRM_IOCTL_GEM_CLOSE. * * The import can fail for any driver-specific reason, e.g. because import is * only supported for DMA-BUFs allocated on this DRM device. * * Support for importing DMA-BUFs is advertised via &DRM_PRIME_CAP_IMPORT. */ #define DRM_IOCTL_PRIME_FD_TO_HANDLE DRM_IOWR(0x2e, struct drm_prime_handle) #define DRM_IOCTL_AGP_ACQUIRE DRM_IO( 0x30) #define DRM_IOCTL_AGP_RELEASE DRM_IO( 0x31) #define DRM_IOCTL_AGP_ENABLE DRM_IOW( 0x32, struct drm_agp_mode) #define DRM_IOCTL_AGP_INFO DRM_IOR( 0x33, struct drm_agp_info) #define DRM_IOCTL_AGP_ALLOC DRM_IOWR(0x34, struct drm_agp_buffer) #define DRM_IOCTL_AGP_FREE DRM_IOW( 0x35, struct drm_agp_buffer) #define DRM_IOCTL_AGP_BIND DRM_IOW( 0x36, struct drm_agp_binding) #define DRM_IOCTL_AGP_UNBIND DRM_IOW( 0x37, struct drm_agp_binding) #define DRM_IOCTL_SG_ALLOC DRM_IOWR(0x38, struct drm_scatter_gather) #define DRM_IOCTL_SG_FREE DRM_IOW( 0x39, struct drm_scatter_gather) #define DRM_IOCTL_WAIT_VBLANK DRM_IOWR(0x3a, union drm_wait_vblank) #define DRM_IOCTL_CRTC_GET_SEQUENCE DRM_IOWR(0x3b, struct drm_crtc_get_sequence) #define DRM_IOCTL_CRTC_QUEUE_SEQUENCE DRM_IOWR(0x3c, struct drm_crtc_queue_sequence) #define DRM_IOCTL_UPDATE_DRAW DRM_IOW(0x3f, struct drm_update_draw) #define DRM_IOCTL_MODE_GETRESOURCES DRM_IOWR(0xA0, struct drm_mode_card_res) #define DRM_IOCTL_MODE_GETCRTC DRM_IOWR(0xA1, struct drm_mode_crtc) #define DRM_IOCTL_MODE_SETCRTC DRM_IOWR(0xA2, struct drm_mode_crtc) #define DRM_IOCTL_MODE_CURSOR DRM_IOWR(0xA3, struct drm_mode_cursor) #define DRM_IOCTL_MODE_GETGAMMA DRM_IOWR(0xA4, struct drm_mode_crtc_lut) #define DRM_IOCTL_MODE_SETGAMMA DRM_IOWR(0xA5, struct drm_mode_crtc_lut) #define DRM_IOCTL_MODE_GETENCODER DRM_IOWR(0xA6, struct drm_mode_get_encoder) #define DRM_IOCTL_MODE_GETCONNECTOR DRM_IOWR(0xA7, struct drm_mode_get_connector) #define DRM_IOCTL_MODE_ATTACHMODE DRM_IOWR(0xA8, struct drm_mode_mode_cmd) /* deprecated (never worked) */ #define DRM_IOCTL_MODE_DETACHMODE DRM_IOWR(0xA9, struct drm_mode_mode_cmd) /* deprecated (never worked) */ #define DRM_IOCTL_MODE_GETPROPERTY DRM_IOWR(0xAA, struct drm_mode_get_property) #define DRM_IOCTL_MODE_SETPROPERTY DRM_IOWR(0xAB, struct drm_mode_connector_set_property) #define DRM_IOCTL_MODE_GETPROPBLOB DRM_IOWR(0xAC, struct drm_mode_get_blob) #define DRM_IOCTL_MODE_GETFB DRM_IOWR(0xAD, struct drm_mode_fb_cmd) #define DRM_IOCTL_MODE_ADDFB DRM_IOWR(0xAE, struct drm_mode_fb_cmd) /** * DRM_IOCTL_MODE_RMFB - Remove a framebuffer. * * This removes a framebuffer previously added via ADDFB/ADDFB2. The IOCTL * argument is a framebuffer object ID. * * Warning: removing a framebuffer currently in-use on an enabled plane will * disable that plane. The CRTC the plane is linked to may also be disabled * (depending on driver capabilities). */ #define DRM_IOCTL_MODE_RMFB DRM_IOWR(0xAF, unsigned int) #define DRM_IOCTL_MODE_PAGE_FLIP DRM_IOWR(0xB0, struct drm_mode_crtc_page_flip) #define DRM_IOCTL_MODE_DIRTYFB DRM_IOWR(0xB1, struct drm_mode_fb_dirty_cmd) #define DRM_IOCTL_MODE_CREATE_DUMB DRM_IOWR(0xB2, struct drm_mode_create_dumb) #define DRM_IOCTL_MODE_MAP_DUMB DRM_IOWR(0xB3, struct drm_mode_map_dumb) #define DRM_IOCTL_MODE_DESTROY_DUMB DRM_IOWR(0xB4, struct drm_mode_destroy_dumb) #define DRM_IOCTL_MODE_GETPLANERESOURCES DRM_IOWR(0xB5, struct drm_mode_get_plane_res) #define DRM_IOCTL_MODE_GETPLANE DRM_IOWR(0xB6, struct drm_mode_get_plane) #define DRM_IOCTL_MODE_SETPLANE DRM_IOWR(0xB7, struct drm_mode_set_plane) #define DRM_IOCTL_MODE_ADDFB2 DRM_IOWR(0xB8, struct drm_mode_fb_cmd2) #define DRM_IOCTL_MODE_OBJ_GETPROPERTIES DRM_IOWR(0xB9, struct drm_mode_obj_get_properties) #define DRM_IOCTL_MODE_OBJ_SETPROPERTY DRM_IOWR(0xBA, struct drm_mode_obj_set_property) #define DRM_IOCTL_MODE_CURSOR2 DRM_IOWR(0xBB, struct drm_mode_cursor2) #define DRM_IOCTL_MODE_ATOMIC DRM_IOWR(0xBC, struct drm_mode_atomic) #define DRM_IOCTL_MODE_CREATEPROPBLOB DRM_IOWR(0xBD, struct drm_mode_create_blob) #define DRM_IOCTL_MODE_DESTROYPROPBLOB DRM_IOWR(0xBE, struct drm_mode_destroy_blob) #define DRM_IOCTL_SYNCOBJ_CREATE DRM_IOWR(0xBF, struct drm_syncobj_create) #define DRM_IOCTL_SYNCOBJ_DESTROY DRM_IOWR(0xC0, struct drm_syncobj_destroy) #define DRM_IOCTL_SYNCOBJ_HANDLE_TO_FD DRM_IOWR(0xC1, struct drm_syncobj_handle) #define DRM_IOCTL_SYNCOBJ_FD_TO_HANDLE DRM_IOWR(0xC2, struct drm_syncobj_handle) #define DRM_IOCTL_SYNCOBJ_WAIT DRM_IOWR(0xC3, struct drm_syncobj_wait) #define DRM_IOCTL_SYNCOBJ_RESET DRM_IOWR(0xC4, struct drm_syncobj_array) #define DRM_IOCTL_SYNCOBJ_SIGNAL DRM_IOWR(0xC5, struct drm_syncobj_array) #define DRM_IOCTL_MODE_CREATE_LEASE DRM_IOWR(0xC6, struct drm_mode_create_lease) #define DRM_IOCTL_MODE_LIST_LESSEES DRM_IOWR(0xC7, struct drm_mode_list_lessees) #define DRM_IOCTL_MODE_GET_LEASE DRM_IOWR(0xC8, struct drm_mode_get_lease) #define DRM_IOCTL_MODE_REVOKE_LEASE DRM_IOWR(0xC9, struct drm_mode_revoke_lease) #define DRM_IOCTL_SYNCOBJ_TIMELINE_WAIT DRM_IOWR(0xCA, struct drm_syncobj_timeline_wait) #define DRM_IOCTL_SYNCOBJ_QUERY DRM_IOWR(0xCB, struct drm_syncobj_timeline_array) #define DRM_IOCTL_SYNCOBJ_TRANSFER DRM_IOWR(0xCC, struct drm_syncobj_transfer) #define DRM_IOCTL_SYNCOBJ_TIMELINE_SIGNAL DRM_IOWR(0xCD, struct drm_syncobj_timeline_array) /** * DRM_IOCTL_MODE_GETFB2 - Get framebuffer metadata. * * This queries metadata about a framebuffer. User-space fills * &drm_mode_fb_cmd2.fb_id as the input, and the kernels fills the rest of the * struct as the output. * * If the client is DRM master or has &CAP_SYS_ADMIN, &drm_mode_fb_cmd2.handles * will be filled with GEM buffer handles. Fresh new GEM handles are always * returned, even if another GEM handle referring to the same memory object * already exists on the DRM file description. The caller is responsible for * removing the new handles, e.g. via the &DRM_IOCTL_GEM_CLOSE IOCTL. The same * new handle will be returned for multiple planes in case they use the same * memory object. Planes are valid until one has a zero handle -- this can be * used to compute the number of planes. * * Otherwise, &drm_mode_fb_cmd2.handles will be zeroed and planes are valid * until one has a zero &drm_mode_fb_cmd2.pitches. * * If the framebuffer has a format modifier, &DRM_MODE_FB_MODIFIERS will be set * in &drm_mode_fb_cmd2.flags and &drm_mode_fb_cmd2.modifier will contain the * modifier. Otherwise, user-space must ignore &drm_mode_fb_cmd2.modifier. * * To obtain DMA-BUF FDs for each plane without leaking GEM handles, user-space * can export each handle via &DRM_IOCTL_PRIME_HANDLE_TO_FD, then immediately * close each unique handle via &DRM_IOCTL_GEM_CLOSE, making sure to not * double-close handles which are specified multiple times in the array. */ #define DRM_IOCTL_MODE_GETFB2 DRM_IOWR(0xCE, struct drm_mode_fb_cmd2) #define DRM_IOCTL_SYNCOBJ_EVENTFD DRM_IOWR(0xCF, struct drm_syncobj_eventfd) /* * Device specific ioctls should only be in their respective headers * The device specific ioctl range is from 0x40 to 0x9f. * Generic IOCTLS restart at 0xA0. * * \sa drmCommandNone(), drmCommandRead(), drmCommandWrite(), and * drmCommandReadWrite(). */ #define DRM_COMMAND_BASE 0x40 #define DRM_COMMAND_END 0xA0 /** * struct drm_event - Header for DRM events * @type: event type. * @length: total number of payload bytes (including header). * * This struct is a header for events written back to user-space on the DRM FD. * A read on the DRM FD will always only return complete events: e.g. if the * read buffer is 100 bytes large and there are two 64 byte events pending, * only one will be returned. * * Event types 0 - 0x7fffffff are generic DRM events, 0x80000000 and * up are chipset specific. Generic DRM events include &DRM_EVENT_VBLANK, * &DRM_EVENT_FLIP_COMPLETE and &DRM_EVENT_CRTC_SEQUENCE. */ struct drm_event { __u32 type; __u32 length; }; /** * DRM_EVENT_VBLANK - vertical blanking event * * This event is sent in response to &DRM_IOCTL_WAIT_VBLANK with the * &_DRM_VBLANK_EVENT flag set. * * The event payload is a struct drm_event_vblank. */ #define DRM_EVENT_VBLANK 0x01 /** * DRM_EVENT_FLIP_COMPLETE - page-flip completion event * * This event is sent in response to an atomic commit or legacy page-flip with * the &DRM_MODE_PAGE_FLIP_EVENT flag set. * * The event payload is a struct drm_event_vblank. */ #define DRM_EVENT_FLIP_COMPLETE 0x02 /** * DRM_EVENT_CRTC_SEQUENCE - CRTC sequence event * * This event is sent in response to &DRM_IOCTL_CRTC_QUEUE_SEQUENCE. * * The event payload is a struct drm_event_crtc_sequence. */ #define DRM_EVENT_CRTC_SEQUENCE 0x03 struct drm_event_vblank { struct drm_event base; __u64 user_data; __u32 tv_sec; __u32 tv_usec; __u32 sequence; __u32 crtc_id; /* 0 on older kernels that do not support this */ }; /* Event delivered at sequence. Time stamp marks when the first pixel * of the refresh cycle leaves the display engine for the display */ struct drm_event_crtc_sequence { struct drm_event base; __u64 user_data; __s64 time_ns; __u64 sequence; }; /* typedef area */ typedef struct drm_clip_rect drm_clip_rect_t; typedef struct drm_drawable_info drm_drawable_info_t; typedef struct drm_tex_region drm_tex_region_t; typedef struct drm_hw_lock drm_hw_lock_t; typedef struct drm_version drm_version_t; typedef struct drm_unique drm_unique_t; typedef struct drm_list drm_list_t; typedef struct drm_block drm_block_t; typedef struct drm_control drm_control_t; typedef enum drm_map_type drm_map_type_t; typedef enum drm_map_flags drm_map_flags_t; typedef struct drm_ctx_priv_map drm_ctx_priv_map_t; typedef struct drm_map drm_map_t; typedef struct drm_client drm_client_t; typedef enum drm_stat_type drm_stat_type_t; typedef struct drm_stats drm_stats_t; typedef enum drm_lock_flags drm_lock_flags_t; typedef struct drm_lock drm_lock_t; typedef enum drm_dma_flags drm_dma_flags_t; typedef struct drm_buf_desc drm_buf_desc_t; typedef struct drm_buf_info drm_buf_info_t; typedef struct drm_buf_free drm_buf_free_t; typedef struct drm_buf_pub drm_buf_pub_t; typedef struct drm_buf_map drm_buf_map_t; typedef struct drm_dma drm_dma_t; typedef union drm_wait_vblank drm_wait_vblank_t; typedef struct drm_agp_mode drm_agp_mode_t; typedef enum drm_ctx_flags drm_ctx_flags_t; typedef struct drm_ctx drm_ctx_t; typedef struct drm_ctx_res drm_ctx_res_t; typedef struct drm_draw drm_draw_t; typedef struct drm_update_draw drm_update_draw_t; typedef struct drm_auth drm_auth_t; typedef struct drm_irq_busid drm_irq_busid_t; typedef enum drm_vblank_seq_type drm_vblank_seq_type_t; typedef struct drm_agp_buffer drm_agp_buffer_t; typedef struct drm_agp_binding drm_agp_binding_t; typedef struct drm_agp_info drm_agp_info_t; typedef struct drm_scatter_gather drm_scatter_gather_t; typedef struct drm_set_version drm_set_version_t; #if defined(__cplusplus) } #endif #endif btop-1.4.5/src/linux/intel_gpu_top/drm_mode.h000066400000000000000000001161221506333644200212330ustar00rootroot00000000000000/* * Copyright (c) 2007 Dave Airlie * Copyright (c) 2007 Jakob Bornecrantz * Copyright (c) 2008 Red Hat Inc. * Copyright (c) 2007-2008 Tungsten Graphics, Inc., Cedar Park, TX., USA * Copyright (c) 2007-2008 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ #ifndef _DRM_MODE_H #define _DRM_MODE_H #include "drm.h" #if defined(__cplusplus) extern "C" { #endif /** * DOC: overview * * DRM exposes many UAPI and structure definition to have a consistent * and standardized interface with user. * Userspace can refer to these structure definitions and UAPI formats * to communicate to driver */ #define DRM_CONNECTOR_NAME_LEN 32 #define DRM_DISPLAY_MODE_LEN 32 #define DRM_PROP_NAME_LEN 32 #define DRM_MODE_TYPE_BUILTIN (1<<0) /* deprecated */ #define DRM_MODE_TYPE_CLOCK_C ((1<<1) | DRM_MODE_TYPE_BUILTIN) /* deprecated */ #define DRM_MODE_TYPE_CRTC_C ((1<<2) | DRM_MODE_TYPE_BUILTIN) /* deprecated */ #define DRM_MODE_TYPE_PREFERRED (1<<3) #define DRM_MODE_TYPE_DEFAULT (1<<4) /* deprecated */ #define DRM_MODE_TYPE_USERDEF (1<<5) #define DRM_MODE_TYPE_DRIVER (1<<6) #define DRM_MODE_TYPE_ALL (DRM_MODE_TYPE_PREFERRED | \ DRM_MODE_TYPE_USERDEF | \ DRM_MODE_TYPE_DRIVER) /* Video mode flags */ /* bit compatible with the xrandr RR_ definitions (bits 0-13) * * ABI warning: Existing userspace really expects * the mode flags to match the xrandr definitions. Any * changes that don't match the xrandr definitions will * likely need a new client cap or some other mechanism * to avoid breaking existing userspace. This includes * allocating new flags in the previously unused bits! */ #define DRM_MODE_FLAG_PHSYNC (1<<0) #define DRM_MODE_FLAG_NHSYNC (1<<1) #define DRM_MODE_FLAG_PVSYNC (1<<2) #define DRM_MODE_FLAG_NVSYNC (1<<3) #define DRM_MODE_FLAG_INTERLACE (1<<4) #define DRM_MODE_FLAG_DBLSCAN (1<<5) #define DRM_MODE_FLAG_CSYNC (1<<6) #define DRM_MODE_FLAG_PCSYNC (1<<7) #define DRM_MODE_FLAG_NCSYNC (1<<8) #define DRM_MODE_FLAG_HSKEW (1<<9) /* hskew provided */ #define DRM_MODE_FLAG_BCAST (1<<10) /* deprecated */ #define DRM_MODE_FLAG_PIXMUX (1<<11) /* deprecated */ #define DRM_MODE_FLAG_DBLCLK (1<<12) #define DRM_MODE_FLAG_CLKDIV2 (1<<13) /* * When adding a new stereo mode don't forget to adjust DRM_MODE_FLAGS_3D_MAX * (define not exposed to user space). */ #define DRM_MODE_FLAG_3D_MASK (0x1f<<14) #define DRM_MODE_FLAG_3D_NONE (0<<14) #define DRM_MODE_FLAG_3D_FRAME_PACKING (1<<14) #define DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE (2<<14) #define DRM_MODE_FLAG_3D_LINE_ALTERNATIVE (3<<14) #define DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL (4<<14) #define DRM_MODE_FLAG_3D_L_DEPTH (5<<14) #define DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH (6<<14) #define DRM_MODE_FLAG_3D_TOP_AND_BOTTOM (7<<14) #define DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF (8<<14) /* Picture aspect ratio options */ #define DRM_MODE_PICTURE_ASPECT_NONE 0 #define DRM_MODE_PICTURE_ASPECT_4_3 1 #define DRM_MODE_PICTURE_ASPECT_16_9 2 #define DRM_MODE_PICTURE_ASPECT_64_27 3 #define DRM_MODE_PICTURE_ASPECT_256_135 4 /* Content type options */ #define DRM_MODE_CONTENT_TYPE_NO_DATA 0 #define DRM_MODE_CONTENT_TYPE_GRAPHICS 1 #define DRM_MODE_CONTENT_TYPE_PHOTO 2 #define DRM_MODE_CONTENT_TYPE_CINEMA 3 #define DRM_MODE_CONTENT_TYPE_GAME 4 /* Aspect ratio flag bitmask (4 bits 22:19) */ #define DRM_MODE_FLAG_PIC_AR_MASK (0x0F<<19) #define DRM_MODE_FLAG_PIC_AR_NONE \ (DRM_MODE_PICTURE_ASPECT_NONE<<19) #define DRM_MODE_FLAG_PIC_AR_4_3 \ (DRM_MODE_PICTURE_ASPECT_4_3<<19) #define DRM_MODE_FLAG_PIC_AR_16_9 \ (DRM_MODE_PICTURE_ASPECT_16_9<<19) #define DRM_MODE_FLAG_PIC_AR_64_27 \ (DRM_MODE_PICTURE_ASPECT_64_27<<19) #define DRM_MODE_FLAG_PIC_AR_256_135 \ (DRM_MODE_PICTURE_ASPECT_256_135<<19) #define DRM_MODE_FLAG_ALL (DRM_MODE_FLAG_PHSYNC | \ DRM_MODE_FLAG_NHSYNC | \ DRM_MODE_FLAG_PVSYNC | \ DRM_MODE_FLAG_NVSYNC | \ DRM_MODE_FLAG_INTERLACE | \ DRM_MODE_FLAG_DBLSCAN | \ DRM_MODE_FLAG_CSYNC | \ DRM_MODE_FLAG_PCSYNC | \ DRM_MODE_FLAG_NCSYNC | \ DRM_MODE_FLAG_HSKEW | \ DRM_MODE_FLAG_DBLCLK | \ DRM_MODE_FLAG_CLKDIV2 | \ DRM_MODE_FLAG_3D_MASK) /* DPMS flags */ /* bit compatible with the xorg definitions. */ #define DRM_MODE_DPMS_ON 0 #define DRM_MODE_DPMS_STANDBY 1 #define DRM_MODE_DPMS_SUSPEND 2 #define DRM_MODE_DPMS_OFF 3 /* Scaling mode options */ #define DRM_MODE_SCALE_NONE 0 /* Unmodified timing (display or software can still scale) */ #define DRM_MODE_SCALE_FULLSCREEN 1 /* Full screen, ignore aspect */ #define DRM_MODE_SCALE_CENTER 2 /* Centered, no scaling */ #define DRM_MODE_SCALE_ASPECT 3 /* Full screen, preserve aspect */ /* Dithering mode options */ #define DRM_MODE_DITHERING_OFF 0 #define DRM_MODE_DITHERING_ON 1 #define DRM_MODE_DITHERING_AUTO 2 /* Dirty info options */ #define DRM_MODE_DIRTY_OFF 0 #define DRM_MODE_DIRTY_ON 1 #define DRM_MODE_DIRTY_ANNOTATE 2 /* Link Status options */ #define DRM_MODE_LINK_STATUS_GOOD 0 #define DRM_MODE_LINK_STATUS_BAD 1 /* * DRM_MODE_ROTATE_ * * Signals that a drm plane is been rotated degrees in counter * clockwise direction. * * This define is provided as a convenience, looking up the property id * using the name->prop id lookup is the preferred method. */ #define DRM_MODE_ROTATE_0 (1<<0) #define DRM_MODE_ROTATE_90 (1<<1) #define DRM_MODE_ROTATE_180 (1<<2) #define DRM_MODE_ROTATE_270 (1<<3) /* * DRM_MODE_ROTATE_MASK * * Bitmask used to look for drm plane rotations. */ #define DRM_MODE_ROTATE_MASK (\ DRM_MODE_ROTATE_0 | \ DRM_MODE_ROTATE_90 | \ DRM_MODE_ROTATE_180 | \ DRM_MODE_ROTATE_270) /* * DRM_MODE_REFLECT_ * * Signals that the contents of a drm plane is reflected along the axis, * in the same way as mirroring. * See kerneldoc chapter "Plane Composition Properties" for more details. * * This define is provided as a convenience, looking up the property id * using the name->prop id lookup is the preferred method. */ #define DRM_MODE_REFLECT_X (1<<4) #define DRM_MODE_REFLECT_Y (1<<5) /* * DRM_MODE_REFLECT_MASK * * Bitmask used to look for drm plane reflections. */ #define DRM_MODE_REFLECT_MASK (\ DRM_MODE_REFLECT_X | \ DRM_MODE_REFLECT_Y) /* Content Protection Flags */ #define DRM_MODE_CONTENT_PROTECTION_UNDESIRED 0 #define DRM_MODE_CONTENT_PROTECTION_DESIRED 1 #define DRM_MODE_CONTENT_PROTECTION_ENABLED 2 /** * struct drm_mode_modeinfo - Display mode information. * @clock: pixel clock in kHz * @hdisplay: horizontal display size * @hsync_start: horizontal sync start * @hsync_end: horizontal sync end * @htotal: horizontal total size * @hskew: horizontal skew * @vdisplay: vertical display size * @vsync_start: vertical sync start * @vsync_end: vertical sync end * @vtotal: vertical total size * @vscan: vertical scan * @vrefresh: approximate vertical refresh rate in Hz * @flags: bitmask of misc. flags, see DRM_MODE_FLAG_* defines * @type: bitmask of type flags, see DRM_MODE_TYPE_* defines * @name: string describing the mode resolution * * This is the user-space API display mode information structure. For the * kernel version see struct drm_display_mode. */ struct drm_mode_modeinfo { __u32 clock; __u16 hdisplay; __u16 hsync_start; __u16 hsync_end; __u16 htotal; __u16 hskew; __u16 vdisplay; __u16 vsync_start; __u16 vsync_end; __u16 vtotal; __u16 vscan; __u32 vrefresh; __u32 flags; __u32 type; char name[DRM_DISPLAY_MODE_LEN]; }; struct drm_mode_card_res { __u64 fb_id_ptr; __u64 crtc_id_ptr; __u64 connector_id_ptr; __u64 encoder_id_ptr; __u32 count_fbs; __u32 count_crtcs; __u32 count_connectors; __u32 count_encoders; __u32 min_width; __u32 max_width; __u32 min_height; __u32 max_height; }; struct drm_mode_crtc { __u64 set_connectors_ptr; __u32 count_connectors; __u32 crtc_id; /**< Id */ __u32 fb_id; /**< Id of framebuffer */ __u32 x; /**< x Position on the framebuffer */ __u32 y; /**< y Position on the framebuffer */ __u32 gamma_size; __u32 mode_valid; struct drm_mode_modeinfo mode; }; #define DRM_MODE_PRESENT_TOP_FIELD (1<<0) #define DRM_MODE_PRESENT_BOTTOM_FIELD (1<<1) /* Planes blend with or override other bits on the CRTC */ struct drm_mode_set_plane { __u32 plane_id; __u32 crtc_id; __u32 fb_id; /* fb object contains surface format type */ __u32 flags; /* see above flags */ /* Signed dest location allows it to be partially off screen */ __s32 crtc_x; __s32 crtc_y; __u32 crtc_w; __u32 crtc_h; /* Source values are 16.16 fixed point */ __u32 src_x; __u32 src_y; __u32 src_h; __u32 src_w; }; /** * struct drm_mode_get_plane - Get plane metadata. * * Userspace can perform a GETPLANE ioctl to retrieve information about a * plane. * * To retrieve the number of formats supported, set @count_format_types to zero * and call the ioctl. @count_format_types will be updated with the value. * * To retrieve these formats, allocate an array with the memory needed to store * @count_format_types formats. Point @format_type_ptr to this array and call * the ioctl again (with @count_format_types still set to the value returned in * the first ioctl call). */ struct drm_mode_get_plane { /** * @plane_id: Object ID of the plane whose information should be * retrieved. Set by caller. */ __u32 plane_id; /** @crtc_id: Object ID of the current CRTC. */ __u32 crtc_id; /** @fb_id: Object ID of the current fb. */ __u32 fb_id; /** * @possible_crtcs: Bitmask of CRTC's compatible with the plane. CRTC's * are created and they receive an index, which corresponds to their * position in the bitmask. Bit N corresponds to * :ref:`CRTC index` N. */ __u32 possible_crtcs; /** @gamma_size: Never used. */ __u32 gamma_size; /** @count_format_types: Number of formats. */ __u32 count_format_types; /** * @format_type_ptr: Pointer to ``__u32`` array of formats that are * supported by the plane. These formats do not require modifiers. */ __u64 format_type_ptr; }; struct drm_mode_get_plane_res { __u64 plane_id_ptr; __u32 count_planes; }; #define DRM_MODE_ENCODER_NONE 0 #define DRM_MODE_ENCODER_DAC 1 #define DRM_MODE_ENCODER_TMDS 2 #define DRM_MODE_ENCODER_LVDS 3 #define DRM_MODE_ENCODER_TVDAC 4 #define DRM_MODE_ENCODER_VIRTUAL 5 #define DRM_MODE_ENCODER_DSI 6 #define DRM_MODE_ENCODER_DPMST 7 #define DRM_MODE_ENCODER_DPI 8 struct drm_mode_get_encoder { __u32 encoder_id; __u32 encoder_type; __u32 crtc_id; /**< Id of crtc */ __u32 possible_crtcs; __u32 possible_clones; }; /* This is for connectors with multiple signal types. */ /* Try to match DRM_MODE_CONNECTOR_X as closely as possible. */ enum drm_mode_subconnector { DRM_MODE_SUBCONNECTOR_Automatic = 0, /* DVI-I, TV */ DRM_MODE_SUBCONNECTOR_Unknown = 0, /* DVI-I, TV, DP */ DRM_MODE_SUBCONNECTOR_VGA = 1, /* DP */ DRM_MODE_SUBCONNECTOR_DVID = 3, /* DVI-I DP */ DRM_MODE_SUBCONNECTOR_DVIA = 4, /* DVI-I */ DRM_MODE_SUBCONNECTOR_Composite = 5, /* TV */ DRM_MODE_SUBCONNECTOR_SVIDEO = 6, /* TV */ DRM_MODE_SUBCONNECTOR_Component = 8, /* TV */ DRM_MODE_SUBCONNECTOR_SCART = 9, /* TV */ DRM_MODE_SUBCONNECTOR_DisplayPort = 10, /* DP */ DRM_MODE_SUBCONNECTOR_HDMIA = 11, /* DP */ DRM_MODE_SUBCONNECTOR_Native = 15, /* DP */ DRM_MODE_SUBCONNECTOR_Wireless = 18, /* DP */ }; #define DRM_MODE_CONNECTOR_Unknown 0 #define DRM_MODE_CONNECTOR_VGA 1 #define DRM_MODE_CONNECTOR_DVII 2 #define DRM_MODE_CONNECTOR_DVID 3 #define DRM_MODE_CONNECTOR_DVIA 4 #define DRM_MODE_CONNECTOR_Composite 5 #define DRM_MODE_CONNECTOR_SVIDEO 6 #define DRM_MODE_CONNECTOR_LVDS 7 #define DRM_MODE_CONNECTOR_Component 8 #define DRM_MODE_CONNECTOR_9PinDIN 9 #define DRM_MODE_CONNECTOR_DisplayPort 10 #define DRM_MODE_CONNECTOR_HDMIA 11 #define DRM_MODE_CONNECTOR_HDMIB 12 #define DRM_MODE_CONNECTOR_TV 13 #define DRM_MODE_CONNECTOR_eDP 14 #define DRM_MODE_CONNECTOR_VIRTUAL 15 #define DRM_MODE_CONNECTOR_DSI 16 #define DRM_MODE_CONNECTOR_DPI 17 #define DRM_MODE_CONNECTOR_WRITEBACK 18 #define DRM_MODE_CONNECTOR_SPI 19 #define DRM_MODE_CONNECTOR_USB 20 /** * struct drm_mode_get_connector - Get connector metadata. * * User-space can perform a GETCONNECTOR ioctl to retrieve information about a * connector. User-space is expected to retrieve encoders, modes and properties * by performing this ioctl at least twice: the first time to retrieve the * number of elements, the second time to retrieve the elements themselves. * * To retrieve the number of elements, set @count_props and @count_encoders to * zero, set @count_modes to 1, and set @modes_ptr to a temporary struct * drm_mode_modeinfo element. * * To retrieve the elements, allocate arrays for @encoders_ptr, @modes_ptr, * @props_ptr and @prop_values_ptr, then set @count_modes, @count_props and * @count_encoders to their capacity. * * Performing the ioctl only twice may be racy: the number of elements may have * changed with a hotplug event in-between the two ioctls. User-space is * expected to retry the last ioctl until the number of elements stabilizes. * The kernel won't fill any array which doesn't have the expected length. * * **Force-probing a connector** * * If the @count_modes field is set to zero and the DRM client is the current * DRM master, the kernel will perform a forced probe on the connector to * refresh the connector status, modes and EDID. A forced-probe can be slow, * might cause flickering and the ioctl will block. * * User-space needs to force-probe connectors to ensure their metadata is * up-to-date at startup and after receiving a hot-plug event. User-space * may perform a forced-probe when the user explicitly requests it. User-space * shouldn't perform a forced-probe in other situations. */ struct drm_mode_get_connector { /** @encoders_ptr: Pointer to ``__u32`` array of object IDs. */ __u64 encoders_ptr; /** @modes_ptr: Pointer to struct drm_mode_modeinfo array. */ __u64 modes_ptr; /** @props_ptr: Pointer to ``__u32`` array of property IDs. */ __u64 props_ptr; /** @prop_values_ptr: Pointer to ``__u64`` array of property values. */ __u64 prop_values_ptr; /** @count_modes: Number of modes. */ __u32 count_modes; /** @count_props: Number of properties. */ __u32 count_props; /** @count_encoders: Number of encoders. */ __u32 count_encoders; /** @encoder_id: Object ID of the current encoder. */ __u32 encoder_id; /** @connector_id: Object ID of the connector. */ __u32 connector_id; /** * @connector_type: Type of the connector. * * See DRM_MODE_CONNECTOR_* defines. */ __u32 connector_type; /** * @connector_type_id: Type-specific connector number. * * This is not an object ID. This is a per-type connector number. Each * (type, type_id) combination is unique across all connectors of a DRM * device. * * The (type, type_id) combination is not a stable identifier: the * type_id can change depending on the driver probe order. */ __u32 connector_type_id; /** * @connection: Status of the connector. * * See enum drm_connector_status. */ __u32 connection; /** @mm_width: Width of the connected sink in millimeters. */ __u32 mm_width; /** @mm_height: Height of the connected sink in millimeters. */ __u32 mm_height; /** * @subpixel: Subpixel order of the connected sink. * * See enum subpixel_order. */ __u32 subpixel; /** @pad: Padding, must be zero. */ __u32 pad; }; #define DRM_MODE_PROP_PENDING (1<<0) /* deprecated, do not use */ #define DRM_MODE_PROP_RANGE (1<<1) #define DRM_MODE_PROP_IMMUTABLE (1<<2) #define DRM_MODE_PROP_ENUM (1<<3) /* enumerated type with text strings */ #define DRM_MODE_PROP_BLOB (1<<4) #define DRM_MODE_PROP_BITMASK (1<<5) /* bitmask of enumerated types */ /* non-extended types: legacy bitmask, one bit per type: */ #define DRM_MODE_PROP_LEGACY_TYPE ( \ DRM_MODE_PROP_RANGE | \ DRM_MODE_PROP_ENUM | \ DRM_MODE_PROP_BLOB | \ DRM_MODE_PROP_BITMASK) /* extended-types: rather than continue to consume a bit per type, * grab a chunk of the bits to use as integer type id. */ #define DRM_MODE_PROP_EXTENDED_TYPE 0x0000ffc0 #define DRM_MODE_PROP_TYPE(n) ((n) << 6) #define DRM_MODE_PROP_OBJECT DRM_MODE_PROP_TYPE(1) #define DRM_MODE_PROP_SIGNED_RANGE DRM_MODE_PROP_TYPE(2) /* the PROP_ATOMIC flag is used to hide properties from userspace that * is not aware of atomic properties. This is mostly to work around * older userspace (DDX drivers) that read/write each prop they find, * witout being aware that this could be triggering a lengthy modeset. */ #define DRM_MODE_PROP_ATOMIC 0x80000000 /** * struct drm_mode_property_enum - Description for an enum/bitfield entry. * @value: numeric value for this enum entry. * @name: symbolic name for this enum entry. * * See struct drm_property_enum for details. */ struct drm_mode_property_enum { __u64 value; char name[DRM_PROP_NAME_LEN]; }; /** * struct drm_mode_get_property - Get property metadata. * * User-space can perform a GETPROPERTY ioctl to retrieve information about a * property. The same property may be attached to multiple objects, see * "Modeset Base Object Abstraction". * * The meaning of the @values_ptr field changes depending on the property type. * See &drm_property.flags for more details. * * The @enum_blob_ptr and @count_enum_blobs fields are only meaningful when the * property has the type &DRM_MODE_PROP_ENUM or &DRM_MODE_PROP_BITMASK. For * backwards compatibility, the kernel will always set @count_enum_blobs to * zero when the property has the type &DRM_MODE_PROP_BLOB. User-space must * ignore these two fields if the property has a different type. * * User-space is expected to retrieve values and enums by performing this ioctl * at least twice: the first time to retrieve the number of elements, the * second time to retrieve the elements themselves. * * To retrieve the number of elements, set @count_values and @count_enum_blobs * to zero, then call the ioctl. @count_values will be updated with the number * of elements. If the property has the type &DRM_MODE_PROP_ENUM or * &DRM_MODE_PROP_BITMASK, @count_enum_blobs will be updated as well. * * To retrieve the elements themselves, allocate an array for @values_ptr and * set @count_values to its capacity. If the property has the type * &DRM_MODE_PROP_ENUM or &DRM_MODE_PROP_BITMASK, allocate an array for * @enum_blob_ptr and set @count_enum_blobs to its capacity. Calling the ioctl * again will fill the arrays. */ struct drm_mode_get_property { /** @values_ptr: Pointer to a ``__u64`` array. */ __u64 values_ptr; /** @enum_blob_ptr: Pointer to a struct drm_mode_property_enum array. */ __u64 enum_blob_ptr; /** * @prop_id: Object ID of the property which should be retrieved. Set * by the caller. */ __u32 prop_id; /** * @flags: ``DRM_MODE_PROP_*`` bitfield. See &drm_property.flags for * a definition of the flags. */ __u32 flags; /** * @name: Symbolic property name. User-space should use this field to * recognize properties. */ char name[DRM_PROP_NAME_LEN]; /** @count_values: Number of elements in @values_ptr. */ __u32 count_values; /** @count_enum_blobs: Number of elements in @enum_blob_ptr. */ __u32 count_enum_blobs; }; struct drm_mode_connector_set_property { __u64 value; __u32 prop_id; __u32 connector_id; }; #define DRM_MODE_OBJECT_CRTC 0xcccccccc #define DRM_MODE_OBJECT_CONNECTOR 0xc0c0c0c0 #define DRM_MODE_OBJECT_ENCODER 0xe0e0e0e0 #define DRM_MODE_OBJECT_MODE 0xdededede #define DRM_MODE_OBJECT_PROPERTY 0xb0b0b0b0 #define DRM_MODE_OBJECT_FB 0xfbfbfbfb #define DRM_MODE_OBJECT_BLOB 0xbbbbbbbb #define DRM_MODE_OBJECT_PLANE 0xeeeeeeee #define DRM_MODE_OBJECT_ANY 0 struct drm_mode_obj_get_properties { __u64 props_ptr; __u64 prop_values_ptr; __u32 count_props; __u32 obj_id; __u32 obj_type; }; struct drm_mode_obj_set_property { __u64 value; __u32 prop_id; __u32 obj_id; __u32 obj_type; }; struct drm_mode_get_blob { __u32 blob_id; __u32 length; __u64 data; }; struct drm_mode_fb_cmd { __u32 fb_id; __u32 width; __u32 height; __u32 pitch; __u32 bpp; __u32 depth; /* driver specific handle */ __u32 handle; }; #define DRM_MODE_FB_INTERLACED (1<<0) /* for interlaced framebuffers */ #define DRM_MODE_FB_MODIFIERS (1<<1) /* enables ->modifer[] */ /** * struct drm_mode_fb_cmd2 - Frame-buffer metadata. * * This struct holds frame-buffer metadata. There are two ways to use it: * * - User-space can fill this struct and perform a &DRM_IOCTL_MODE_ADDFB2 * ioctl to register a new frame-buffer. The new frame-buffer object ID will * be set by the kernel in @fb_id. * - User-space can set @fb_id and perform a &DRM_IOCTL_MODE_GETFB2 ioctl to * fetch metadata about an existing frame-buffer. * * In case of planar formats, this struct allows up to 4 buffer objects with * offsets and pitches per plane. The pitch and offset order are dictated by * the format FourCC as defined by ``drm_fourcc.h``, e.g. NV12 is described as: * * YUV 4:2:0 image with a plane of 8-bit Y samples followed by an * interleaved U/V plane containing 8-bit 2x2 subsampled colour difference * samples. * * So it would consist of a Y plane at ``offsets[0]`` and a UV plane at * ``offsets[1]``. * * To accommodate tiled, compressed, etc formats, a modifier can be specified. * For more information see the "Format Modifiers" section. Note that even * though it looks like we have a modifier per-plane, we in fact do not. The * modifier for each plane must be identical. Thus all combinations of * different data layouts for multi-plane formats must be enumerated as * separate modifiers. * * All of the entries in @handles, @pitches, @offsets and @modifier must be * zero when unused. Warning, for @offsets and @modifier zero can't be used to * figure out whether the entry is used or not since it's a valid value (a zero * offset is common, and a zero modifier is &DRM_FORMAT_MOD_LINEAR). */ struct drm_mode_fb_cmd2 { /** @fb_id: Object ID of the frame-buffer. */ __u32 fb_id; /** @width: Width of the frame-buffer. */ __u32 width; /** @height: Height of the frame-buffer. */ __u32 height; /** * @pixel_format: FourCC format code, see ``DRM_FORMAT_*`` constants in * ``drm_fourcc.h``. */ __u32 pixel_format; /** * @flags: Frame-buffer flags (see &DRM_MODE_FB_INTERLACED and * &DRM_MODE_FB_MODIFIERS). */ __u32 flags; /** * @handles: GEM buffer handle, one per plane. Set to 0 if the plane is * unused. The same handle can be used for multiple planes. */ __u32 handles[4]; /** @pitches: Pitch (aka. stride) in bytes, one per plane. */ __u32 pitches[4]; /** @offsets: Offset into the buffer in bytes, one per plane. */ __u32 offsets[4]; /** * @modifier: Format modifier, one per plane. See ``DRM_FORMAT_MOD_*`` * constants in ``drm_fourcc.h``. All planes must use the same * modifier. Ignored unless &DRM_MODE_FB_MODIFIERS is set in @flags. */ __u64 modifier[4]; }; #define DRM_MODE_FB_DIRTY_ANNOTATE_COPY 0x01 #define DRM_MODE_FB_DIRTY_ANNOTATE_FILL 0x02 #define DRM_MODE_FB_DIRTY_FLAGS 0x03 #define DRM_MODE_FB_DIRTY_MAX_CLIPS 256 /* * Mark a region of a framebuffer as dirty. * * Some hardware does not automatically update display contents * as a hardware or software draw to a framebuffer. This ioctl * allows userspace to tell the kernel and the hardware what * regions of the framebuffer have changed. * * The kernel or hardware is free to update more then just the * region specified by the clip rects. The kernel or hardware * may also delay and/or coalesce several calls to dirty into a * single update. * * Userspace may annotate the updates, the annotates are a * promise made by the caller that the change is either a copy * of pixels or a fill of a single color in the region specified. * * If the DRM_MODE_FB_DIRTY_ANNOTATE_COPY flag is given then * the number of updated regions are half of num_clips given, * where the clip rects are paired in src and dst. The width and * height of each one of the pairs must match. * * If the DRM_MODE_FB_DIRTY_ANNOTATE_FILL flag is given the caller * promises that the region specified of the clip rects is filled * completely with a single color as given in the color argument. */ struct drm_mode_fb_dirty_cmd { __u32 fb_id; __u32 flags; __u32 color; __u32 num_clips; __u64 clips_ptr; }; struct drm_mode_mode_cmd { __u32 connector_id; struct drm_mode_modeinfo mode; }; #define DRM_MODE_CURSOR_BO 0x01 #define DRM_MODE_CURSOR_MOVE 0x02 #define DRM_MODE_CURSOR_FLAGS 0x03 /* * depending on the value in flags different members are used. * * CURSOR_BO uses * crtc_id * width * height * handle - if 0 turns the cursor off * * CURSOR_MOVE uses * crtc_id * x * y */ struct drm_mode_cursor { __u32 flags; __u32 crtc_id; __s32 x; __s32 y; __u32 width; __u32 height; /* driver specific handle */ __u32 handle; }; struct drm_mode_cursor2 { __u32 flags; __u32 crtc_id; __s32 x; __s32 y; __u32 width; __u32 height; /* driver specific handle */ __u32 handle; __s32 hot_x; __s32 hot_y; }; struct drm_mode_crtc_lut { __u32 crtc_id; __u32 gamma_size; /* pointers to arrays */ __u64 red; __u64 green; __u64 blue; }; struct drm_color_ctm { /* * Conversion matrix in S31.32 sign-magnitude * (not two's complement!) format. * * out matrix in * |R| |0 1 2| |R| * |G| = |3 4 5| x |G| * |B| |6 7 8| |B| */ __u64 matrix[9]; }; struct drm_color_lut { /* * Values are mapped linearly to 0.0 - 1.0 range, with 0x0 == 0.0 and * 0xffff == 1.0. */ __u16 red; __u16 green; __u16 blue; __u16 reserved; }; /** * struct hdr_metadata_infoframe - HDR Metadata Infoframe Data. * * HDR Metadata Infoframe as per CTA 861.G spec. This is expected * to match exactly with the spec. * * Userspace is expected to pass the metadata information as per * the format described in this structure. */ struct hdr_metadata_infoframe { /** * @eotf: Electro-Optical Transfer Function (EOTF) * used in the stream. */ __u8 eotf; /** * @metadata_type: Static_Metadata_Descriptor_ID. */ __u8 metadata_type; /** * @display_primaries: Color Primaries of the Data. * These are coded as unsigned 16-bit values in units of * 0.00002, where 0x0000 represents zero and 0xC350 * represents 1.0000. * @display_primaries.x: X cordinate of color primary. * @display_primaries.y: Y cordinate of color primary. */ struct { __u16 x, y; } display_primaries[3]; /** * @white_point: White Point of Colorspace Data. * These are coded as unsigned 16-bit values in units of * 0.00002, where 0x0000 represents zero and 0xC350 * represents 1.0000. * @white_point.x: X cordinate of whitepoint of color primary. * @white_point.y: Y cordinate of whitepoint of color primary. */ struct { __u16 x, y; } white_point; /** * @max_display_mastering_luminance: Max Mastering Display Luminance. * This value is coded as an unsigned 16-bit value in units of 1 cd/m2, * where 0x0001 represents 1 cd/m2 and 0xFFFF represents 65535 cd/m2. */ __u16 max_display_mastering_luminance; /** * @min_display_mastering_luminance: Min Mastering Display Luminance. * This value is coded as an unsigned 16-bit value in units of * 0.0001 cd/m2, where 0x0001 represents 0.0001 cd/m2 and 0xFFFF * represents 6.5535 cd/m2. */ __u16 min_display_mastering_luminance; /** * @max_cll: Max Content Light Level. * This value is coded as an unsigned 16-bit value in units of 1 cd/m2, * where 0x0001 represents 1 cd/m2 and 0xFFFF represents 65535 cd/m2. */ __u16 max_cll; /** * @max_fall: Max Frame Average Light Level. * This value is coded as an unsigned 16-bit value in units of 1 cd/m2, * where 0x0001 represents 1 cd/m2 and 0xFFFF represents 65535 cd/m2. */ __u16 max_fall; }; /** * struct hdr_output_metadata - HDR output metadata * * Metadata Information to be passed from userspace */ struct hdr_output_metadata { /** * @metadata_type: Static_Metadata_Descriptor_ID. */ __u32 metadata_type; /** * @hdmi_metadata_type1: HDR Metadata Infoframe. */ union { struct hdr_metadata_infoframe hdmi_metadata_type1; }; }; /** * DRM_MODE_PAGE_FLIP_EVENT * * Request that the kernel sends back a vblank event (see * struct drm_event_vblank) with the &DRM_EVENT_FLIP_COMPLETE type when the * page-flip is done. */ #define DRM_MODE_PAGE_FLIP_EVENT 0x01 /** * DRM_MODE_PAGE_FLIP_ASYNC * * Request that the page-flip is performed as soon as possible, ie. with no * delay due to waiting for vblank. This may cause tearing to be visible on * the screen. */ #define DRM_MODE_PAGE_FLIP_ASYNC 0x02 #define DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE 0x4 #define DRM_MODE_PAGE_FLIP_TARGET_RELATIVE 0x8 #define DRM_MODE_PAGE_FLIP_TARGET (DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE | \ DRM_MODE_PAGE_FLIP_TARGET_RELATIVE) /** * DRM_MODE_PAGE_FLIP_FLAGS * * Bitmask of flags suitable for &drm_mode_crtc_page_flip_target.flags. */ #define DRM_MODE_PAGE_FLIP_FLAGS (DRM_MODE_PAGE_FLIP_EVENT | \ DRM_MODE_PAGE_FLIP_ASYNC | \ DRM_MODE_PAGE_FLIP_TARGET) /* * Request a page flip on the specified crtc. * * This ioctl will ask KMS to schedule a page flip for the specified * crtc. Once any pending rendering targeting the specified fb (as of * ioctl time) has completed, the crtc will be reprogrammed to display * that fb after the next vertical refresh. The ioctl returns * immediately, but subsequent rendering to the current fb will block * in the execbuffer ioctl until the page flip happens. If a page * flip is already pending as the ioctl is called, EBUSY will be * returned. * * Flag DRM_MODE_PAGE_FLIP_EVENT requests that drm sends back a vblank * event (see drm.h: struct drm_event_vblank) when the page flip is * done. The user_data field passed in with this ioctl will be * returned as the user_data field in the vblank event struct. * * Flag DRM_MODE_PAGE_FLIP_ASYNC requests that the flip happen * 'as soon as possible', meaning that it not delay waiting for vblank. * This may cause tearing on the screen. * * The reserved field must be zero. */ struct drm_mode_crtc_page_flip { __u32 crtc_id; __u32 fb_id; __u32 flags; __u32 reserved; __u64 user_data; }; /* * Request a page flip on the specified crtc. * * Same as struct drm_mode_crtc_page_flip, but supports new flags and * re-purposes the reserved field: * * The sequence field must be zero unless either of the * DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE/RELATIVE flags is specified. When * the ABSOLUTE flag is specified, the sequence field denotes the absolute * vblank sequence when the flip should take effect. When the RELATIVE * flag is specified, the sequence field denotes the relative (to the * current one when the ioctl is called) vblank sequence when the flip * should take effect. NOTE: DRM_IOCTL_WAIT_VBLANK must still be used to * make sure the vblank sequence before the target one has passed before * calling this ioctl. The purpose of the * DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE/RELATIVE flags is merely to clarify * the target for when code dealing with a page flip runs during a * vertical blank period. */ struct drm_mode_crtc_page_flip_target { __u32 crtc_id; __u32 fb_id; __u32 flags; __u32 sequence; __u64 user_data; }; /* create a dumb scanout buffer */ struct drm_mode_create_dumb { __u32 height; __u32 width; __u32 bpp; __u32 flags; /* handle, pitch, size will be returned */ __u32 handle; __u32 pitch; __u64 size; }; /* set up for mmap of a dumb scanout buffer */ struct drm_mode_map_dumb { /** Handle for the object being mapped. */ __u32 handle; __u32 pad; /** * Fake offset to use for subsequent mmap call * * This is a fixed-size type for 32/64 compatibility. */ __u64 offset; }; struct drm_mode_destroy_dumb { __u32 handle; }; /** * DRM_MODE_ATOMIC_TEST_ONLY * * Do not apply the atomic commit, instead check whether the hardware supports * this configuration. * * See &drm_mode_config_funcs.atomic_check for more details on test-only * commits. */ #define DRM_MODE_ATOMIC_TEST_ONLY 0x0100 /** * DRM_MODE_ATOMIC_NONBLOCK * * Do not block while applying the atomic commit. The &DRM_IOCTL_MODE_ATOMIC * IOCTL returns immediately instead of waiting for the changes to be applied * in hardware. Note, the driver will still check that the update can be * applied before retuning. */ #define DRM_MODE_ATOMIC_NONBLOCK 0x0200 /** * DRM_MODE_ATOMIC_ALLOW_MODESET * * Allow the update to result in temporary or transient visible artifacts while * the update is being applied. Applying the update may also take significantly * more time than a page flip. All visual artifacts will disappear by the time * the update is completed, as signalled through the vblank event's timestamp * (see struct drm_event_vblank). * * This flag must be set when the KMS update might cause visible artifacts. * Without this flag such KMS update will return a EINVAL error. What kind of * update may cause visible artifacts depends on the driver and the hardware. * User-space that needs to know beforehand if an update might cause visible * artifacts can use &DRM_MODE_ATOMIC_TEST_ONLY without * &DRM_MODE_ATOMIC_ALLOW_MODESET to see if it fails. * * To the best of the driver's knowledge, visual artifacts are guaranteed to * not appear when this flag is not set. Some sinks might display visual * artifacts outside of the driver's control. */ #define DRM_MODE_ATOMIC_ALLOW_MODESET 0x0400 /** * DRM_MODE_ATOMIC_FLAGS * * Bitfield of flags accepted by the &DRM_IOCTL_MODE_ATOMIC IOCTL in * &drm_mode_atomic.flags. */ #define DRM_MODE_ATOMIC_FLAGS (\ DRM_MODE_PAGE_FLIP_EVENT |\ DRM_MODE_PAGE_FLIP_ASYNC |\ DRM_MODE_ATOMIC_TEST_ONLY |\ DRM_MODE_ATOMIC_NONBLOCK |\ DRM_MODE_ATOMIC_ALLOW_MODESET) struct drm_mode_atomic { __u32 flags; __u32 count_objs; __u64 objs_ptr; __u64 count_props_ptr; __u64 props_ptr; __u64 prop_values_ptr; __u64 reserved; __u64 user_data; }; struct drm_format_modifier_blob { #define FORMAT_BLOB_CURRENT 1 /* Version of this blob format */ __u32 version; /* Flags */ __u32 flags; /* Number of fourcc formats supported */ __u32 count_formats; /* Where in this blob the formats exist (in bytes) */ __u32 formats_offset; /* Number of drm_format_modifiers */ __u32 count_modifiers; /* Where in this blob the modifiers exist (in bytes) */ __u32 modifiers_offset; /* __u32 formats[] */ /* struct drm_format_modifier modifiers[] */ }; struct drm_format_modifier { /* Bitmask of formats in get_plane format list this info applies to. The * offset allows a sliding window of which 64 formats (bits). * * Some examples: * In today's world with < 65 formats, and formats 0, and 2 are * supported * 0x0000000000000005 * ^-offset = 0, formats = 5 * * If the number formats grew to 128, and formats 98-102 are * supported with the modifier: * * 0x0000007c00000000 0000000000000000 * ^ * |__offset = 64, formats = 0x7c00000000 * */ __u64 formats; __u32 offset; __u32 pad; /* The modifier that applies to the >get_plane format list bitmask. */ __u64 modifier; }; /** * struct drm_mode_create_blob - Create New blob property * * Create a new 'blob' data property, copying length bytes from data pointer, * and returning new blob ID. */ struct drm_mode_create_blob { /** @data: Pointer to data to copy. */ __u64 data; /** @length: Length of data to copy. */ __u32 length; /** @blob_id: Return: new property ID. */ __u32 blob_id; }; /** * struct drm_mode_destroy_blob - Destroy user blob * @blob_id: blob_id to destroy * * Destroy a user-created blob property. * * User-space can release blobs as soon as they do not need to refer to them by * their blob object ID. For instance, if you are using a MODE_ID blob in an * atomic commit and you will not make another commit re-using the same ID, you * can destroy the blob as soon as the commit has been issued, without waiting * for it to complete. */ struct drm_mode_destroy_blob { __u32 blob_id; }; /** * struct drm_mode_create_lease - Create lease * * Lease mode resources, creating another drm_master. * * The @object_ids array must reference at least one CRTC, one connector and * one plane if &DRM_CLIENT_CAP_UNIVERSAL_PLANES is enabled. Alternatively, * the lease can be completely empty. */ struct drm_mode_create_lease { /** @object_ids: Pointer to array of object ids (__u32) */ __u64 object_ids; /** @object_count: Number of object ids */ __u32 object_count; /** @flags: flags for new FD (O_CLOEXEC, etc) */ __u32 flags; /** @lessee_id: Return: unique identifier for lessee. */ __u32 lessee_id; /** @fd: Return: file descriptor to new drm_master file */ __u32 fd; }; /** * struct drm_mode_list_lessees - List lessees * * List lesses from a drm_master. */ struct drm_mode_list_lessees { /** * @count_lessees: Number of lessees. * * On input, provides length of the array. * On output, provides total number. No * more than the input number will be written * back, so two calls can be used to get * the size and then the data. */ __u32 count_lessees; /** @pad: Padding. */ __u32 pad; /** * @lessees_ptr: Pointer to lessees. * * Pointer to __u64 array of lessee ids */ __u64 lessees_ptr; }; /** * struct drm_mode_get_lease - Get Lease * * Get leased objects. */ struct drm_mode_get_lease { /** * @count_objects: Number of leased objects. * * On input, provides length of the array. * On output, provides total number. No * more than the input number will be written * back, so two calls can be used to get * the size and then the data. */ __u32 count_objects; /** @pad: Padding. */ __u32 pad; /** * @objects_ptr: Pointer to objects. * * Pointer to __u32 array of object ids. */ __u64 objects_ptr; }; /** * struct drm_mode_revoke_lease - Revoke lease */ struct drm_mode_revoke_lease { /** @lessee_id: Unique ID of lessee */ __u32 lessee_id; }; /** * struct drm_mode_rect - Two dimensional rectangle. * @x1: Horizontal starting coordinate (inclusive). * @y1: Vertical starting coordinate (inclusive). * @x2: Horizontal ending coordinate (exclusive). * @y2: Vertical ending coordinate (exclusive). * * With drm subsystem using struct drm_rect to manage rectangular area this * export it to user-space. * * Currently used by drm_mode_atomic blob property FB_DAMAGE_CLIPS. */ struct drm_mode_rect { __s32 x1; __s32 y1; __s32 x2; __s32 y2; }; #if defined(__cplusplus) } #endif #endif btop-1.4.5/src/linux/intel_gpu_top/i915_drm.h000066400000000000000000003757671506333644200210240ustar00rootroot00000000000000/* * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas. * All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sub license, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice (including the * next paragraph) shall be included in all copies or substantial portions * of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ #ifndef _I915_DRM_H_ #define _I915_DRM_H_ #include "drm.h" #if defined(__cplusplus) extern "C" { #endif /* Please note that modifications to all structs defined here are * subject to backwards-compatibility constraints. */ /** * DOC: uevents generated by i915 on its device node * * I915_L3_PARITY_UEVENT - Generated when the driver receives a parity mismatch * event from the GPU L3 cache. Additional information supplied is ROW, * BANK, SUBBANK, SLICE of the affected cacheline. Userspace should keep * track of these events, and if a specific cache-line seems to have a * persistent error, remap it with the L3 remapping tool supplied in * intel-gpu-tools. The value supplied with the event is always 1. * * I915_ERROR_UEVENT - Generated upon error detection, currently only via * hangcheck. The error detection event is a good indicator of when things * began to go badly. The value supplied with the event is a 1 upon error * detection, and a 0 upon reset completion, signifying no more error * exists. NOTE: Disabling hangcheck or reset via module parameter will * cause the related events to not be seen. * * I915_RESET_UEVENT - Event is generated just before an attempt to reset the * GPU. The value supplied with the event is always 1. NOTE: Disable * reset via module parameter will cause this event to not be seen. */ #define I915_L3_PARITY_UEVENT "L3_PARITY_ERROR" #define I915_ERROR_UEVENT "ERROR" #define I915_RESET_UEVENT "RESET" /** * struct i915_user_extension - Base class for defining a chain of extensions * * Many interfaces need to grow over time. In most cases we can simply * extend the struct and have userspace pass in more data. Another option, * as demonstrated by Vulkan's approach to providing extensions for forward * and backward compatibility, is to use a list of optional structs to * provide those extra details. * * The key advantage to using an extension chain is that it allows us to * redefine the interface more easily than an ever growing struct of * increasing complexity, and for large parts of that interface to be * entirely optional. The downside is more pointer chasing; chasing across * the boundary with pointers encapsulated inside u64. * * Example chaining: * * .. code-block:: C * * struct i915_user_extension ext3 { * .next_extension = 0, // end * .name = ..., * }; * struct i915_user_extension ext2 { * .next_extension = (uintptr_t)&ext3, * .name = ..., * }; * struct i915_user_extension ext1 { * .next_extension = (uintptr_t)&ext2, * .name = ..., * }; * * Typically the struct i915_user_extension would be embedded in some uAPI * struct, and in this case we would feed it the head of the chain(i.e ext1), * which would then apply all of the above extensions. * */ struct i915_user_extension { /** * @next_extension: * * Pointer to the next struct i915_user_extension, or zero if the end. */ __u64 next_extension; /** * @name: Name of the extension. * * Note that the name here is just some integer. * * Also note that the name space for this is not global for the whole * driver, but rather its scope/meaning is limited to the specific piece * of uAPI which has embedded the struct i915_user_extension. */ __u32 name; /** * @flags: MBZ * * All undefined bits must be zero. */ __u32 flags; /** * @rsvd: MBZ * * Reserved for future use; must be zero. */ __u32 rsvd[4]; }; /* * MOCS indexes used for GPU surfaces, defining the cacheability of the * surface data and the coherency for this data wrt. CPU vs. GPU accesses. */ enum i915_mocs_table_index { /* * Not cached anywhere, coherency between CPU and GPU accesses is * guaranteed. */ I915_MOCS_UNCACHED, /* * Cacheability and coherency controlled by the kernel automatically * based on the DRM_I915_GEM_SET_CACHING IOCTL setting and the current * usage of the surface (used for display scanout or not). */ I915_MOCS_PTE, /* * Cached in all GPU caches available on the platform. * Coherency between CPU and GPU accesses to the surface is not * guaranteed without extra synchronization. */ I915_MOCS_CACHED, }; /** * enum drm_i915_gem_engine_class - uapi engine type enumeration * * Different engines serve different roles, and there may be more than one * engine serving each role. This enum provides a classification of the role * of the engine, which may be used when requesting operations to be performed * on a certain subset of engines, or for providing information about that * group. */ enum drm_i915_gem_engine_class { /** * @I915_ENGINE_CLASS_RENDER: * * Render engines support instructions used for 3D, Compute (GPGPU), * and programmable media workloads. These instructions fetch data and * dispatch individual work items to threads that operate in parallel. * The threads run small programs (called "kernels" or "shaders") on * the GPU's execution units (EUs). */ I915_ENGINE_CLASS_RENDER = 0, /** * @I915_ENGINE_CLASS_COPY: * * Copy engines (also referred to as "blitters") support instructions * that move blocks of data from one location in memory to another, * or that fill a specified location of memory with fixed data. * Copy engines can perform pre-defined logical or bitwise operations * on the source, destination, or pattern data. */ I915_ENGINE_CLASS_COPY = 1, /** * @I915_ENGINE_CLASS_VIDEO: * * Video engines (also referred to as "bit stream decode" (BSD) or * "vdbox") support instructions that perform fixed-function media * decode and encode. */ I915_ENGINE_CLASS_VIDEO = 2, /** * @I915_ENGINE_CLASS_VIDEO_ENHANCE: * * Video enhancement engines (also referred to as "vebox") support * instructions related to image enhancement. */ I915_ENGINE_CLASS_VIDEO_ENHANCE = 3, /** * @I915_ENGINE_CLASS_COMPUTE: * * Compute engines support a subset of the instructions available * on render engines: compute engines support Compute (GPGPU) and * programmable media workloads, but do not support the 3D pipeline. */ I915_ENGINE_CLASS_COMPUTE = 4, /* Values in this enum should be kept compact. */ /** * @I915_ENGINE_CLASS_INVALID: * * Placeholder value to represent an invalid engine class assignment. */ I915_ENGINE_CLASS_INVALID = -1 }; /** * struct i915_engine_class_instance - Engine class/instance identifier * * There may be more than one engine fulfilling any role within the system. * Each engine of a class is given a unique instance number and therefore * any engine can be specified by its class:instance tuplet. APIs that allow * access to any engine in the system will use struct i915_engine_class_instance * for this identification. */ struct i915_engine_class_instance { /** * @engine_class: * * Engine class from enum drm_i915_gem_engine_class */ __u16 engine_class; #define I915_ENGINE_CLASS_INVALID_NONE -1 #define I915_ENGINE_CLASS_INVALID_VIRTUAL -2 /** * @engine_instance: * * Engine instance. */ __u16 engine_instance; }; /** * DOC: perf_events exposed by i915 through /sys/bus/event_sources/drivers/i915 * */ enum drm_i915_pmu_engine_sample { I915_SAMPLE_BUSY = 0, I915_SAMPLE_WAIT = 1, I915_SAMPLE_SEMA = 2 }; #define I915_PMU_SAMPLE_BITS (4) #define I915_PMU_SAMPLE_MASK (0xf) #define I915_PMU_SAMPLE_INSTANCE_BITS (8) #define I915_PMU_CLASS_SHIFT \ (I915_PMU_SAMPLE_BITS + I915_PMU_SAMPLE_INSTANCE_BITS) #define __I915_PMU_ENGINE(class, instance, sample) \ ((class) << I915_PMU_CLASS_SHIFT | \ (instance) << I915_PMU_SAMPLE_BITS | \ (sample)) #define I915_PMU_ENGINE_BUSY(class, instance) \ __I915_PMU_ENGINE(class, instance, I915_SAMPLE_BUSY) #define I915_PMU_ENGINE_WAIT(class, instance) \ __I915_PMU_ENGINE(class, instance, I915_SAMPLE_WAIT) #define I915_PMU_ENGINE_SEMA(class, instance) \ __I915_PMU_ENGINE(class, instance, I915_SAMPLE_SEMA) /* * Top 4 bits of every non-engine counter are GT id. */ #define __I915_PMU_GT_SHIFT (60) #define ___I915_PMU_OTHER(gt, x) \ (((__u64)__I915_PMU_ENGINE(0xff, 0xff, 0xf) + 1 + (x)) | \ ((__u64)(gt) << __I915_PMU_GT_SHIFT)) #define __I915_PMU_OTHER(x) ___I915_PMU_OTHER(0, x) #define I915_PMU_ACTUAL_FREQUENCY __I915_PMU_OTHER(0) #define I915_PMU_REQUESTED_FREQUENCY __I915_PMU_OTHER(1) #define I915_PMU_INTERRUPTS __I915_PMU_OTHER(2) #define I915_PMU_RC6_RESIDENCY __I915_PMU_OTHER(3) #define I915_PMU_SOFTWARE_GT_AWAKE_TIME __I915_PMU_OTHER(4) #define I915_PMU_LAST /* Deprecated - do not use */ I915_PMU_RC6_RESIDENCY #define __I915_PMU_ACTUAL_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 0) #define __I915_PMU_REQUESTED_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 1) #define __I915_PMU_INTERRUPTS(gt) ___I915_PMU_OTHER(gt, 2) #define __I915_PMU_RC6_RESIDENCY(gt) ___I915_PMU_OTHER(gt, 3) #define __I915_PMU_SOFTWARE_GT_AWAKE_TIME(gt) ___I915_PMU_OTHER(gt, 4) /* Each region is a minimum of 16k, and there are at most 255 of them. */ #define I915_NR_TEX_REGIONS 255 /* table size 2k - maximum due to use * of chars for next/prev indices */ #define I915_LOG_MIN_TEX_REGION_SIZE 14 typedef struct _drm_i915_init { enum { I915_INIT_DMA = 0x01, I915_CLEANUP_DMA = 0x02, I915_RESUME_DMA = 0x03 } func; unsigned int mmio_offset; int sarea_priv_offset; unsigned int ring_start; unsigned int ring_end; unsigned int ring_size; unsigned int front_offset; unsigned int back_offset; unsigned int depth_offset; unsigned int w; unsigned int h; unsigned int pitch; unsigned int pitch_bits; unsigned int back_pitch; unsigned int depth_pitch; unsigned int cpp; unsigned int chipset; } drm_i915_init_t; typedef struct _drm_i915_sarea { struct drm_tex_region texList[I915_NR_TEX_REGIONS + 1]; int last_upload; /* last time texture was uploaded */ int last_enqueue; /* last time a buffer was enqueued */ int last_dispatch; /* age of the most recently dispatched buffer */ int ctxOwner; /* last context to upload state */ int texAge; int pf_enabled; /* is pageflipping allowed? */ int pf_active; int pf_current_page; /* which buffer is being displayed? */ int perf_boxes; /* performance boxes to be displayed */ int width, height; /* screen size in pixels */ drm_handle_t front_handle; int front_offset; int front_size; drm_handle_t back_handle; int back_offset; int back_size; drm_handle_t depth_handle; int depth_offset; int depth_size; drm_handle_t tex_handle; int tex_offset; int tex_size; int log_tex_granularity; int pitch; int rotation; /* 0, 90, 180 or 270 */ int rotated_offset; int rotated_size; int rotated_pitch; int virtualX, virtualY; unsigned int front_tiled; unsigned int back_tiled; unsigned int depth_tiled; unsigned int rotated_tiled; unsigned int rotated2_tiled; int pipeA_x; int pipeA_y; int pipeA_w; int pipeA_h; int pipeB_x; int pipeB_y; int pipeB_w; int pipeB_h; /* fill out some space for old userspace triple buffer */ drm_handle_t unused_handle; __u32 unused1, unused2, unused3; /* buffer object handles for static buffers. May change * over the lifetime of the client. */ __u32 front_bo_handle; __u32 back_bo_handle; __u32 unused_bo_handle; __u32 depth_bo_handle; } drm_i915_sarea_t; /* due to userspace building against these headers we need some compat here */ #define planeA_x pipeA_x #define planeA_y pipeA_y #define planeA_w pipeA_w #define planeA_h pipeA_h #define planeB_x pipeB_x #define planeB_y pipeB_y #define planeB_w pipeB_w #define planeB_h pipeB_h /* Flags for perf_boxes */ #define I915_BOX_RING_EMPTY 0x1 #define I915_BOX_FLIP 0x2 #define I915_BOX_WAIT 0x4 #define I915_BOX_TEXTURE_LOAD 0x8 #define I915_BOX_LOST_CONTEXT 0x10 /* * i915 specific ioctls. * * The device specific ioctl range is [DRM_COMMAND_BASE, DRM_COMMAND_END) ie * [0x40, 0xa0) (a0 is excluded). The numbers below are defined as offset * against DRM_COMMAND_BASE and should be between [0x0, 0x60). */ #define DRM_I915_INIT 0x00 #define DRM_I915_FLUSH 0x01 #define DRM_I915_FLIP 0x02 #define DRM_I915_BATCHBUFFER 0x03 #define DRM_I915_IRQ_EMIT 0x04 #define DRM_I915_IRQ_WAIT 0x05 #define DRM_I915_GETPARAM 0x06 #define DRM_I915_SETPARAM 0x07 #define DRM_I915_ALLOC 0x08 #define DRM_I915_FREE 0x09 #define DRM_I915_INIT_HEAP 0x0a #define DRM_I915_CMDBUFFER 0x0b #define DRM_I915_DESTROY_HEAP 0x0c #define DRM_I915_SET_VBLANK_PIPE 0x0d #define DRM_I915_GET_VBLANK_PIPE 0x0e #define DRM_I915_VBLANK_SWAP 0x0f #define DRM_I915_HWS_ADDR 0x11 #define DRM_I915_GEM_INIT 0x13 #define DRM_I915_GEM_EXECBUFFER 0x14 #define DRM_I915_GEM_PIN 0x15 #define DRM_I915_GEM_UNPIN 0x16 #define DRM_I915_GEM_BUSY 0x17 #define DRM_I915_GEM_THROTTLE 0x18 #define DRM_I915_GEM_ENTERVT 0x19 #define DRM_I915_GEM_LEAVEVT 0x1a #define DRM_I915_GEM_CREATE 0x1b #define DRM_I915_GEM_PREAD 0x1c #define DRM_I915_GEM_PWRITE 0x1d #define DRM_I915_GEM_MMAP 0x1e #define DRM_I915_GEM_SET_DOMAIN 0x1f #define DRM_I915_GEM_SW_FINISH 0x20 #define DRM_I915_GEM_SET_TILING 0x21 #define DRM_I915_GEM_GET_TILING 0x22 #define DRM_I915_GEM_GET_APERTURE 0x23 #define DRM_I915_GEM_MMAP_GTT 0x24 #define DRM_I915_GET_PIPE_FROM_CRTC_ID 0x25 #define DRM_I915_GEM_MADVISE 0x26 #define DRM_I915_OVERLAY_PUT_IMAGE 0x27 #define DRM_I915_OVERLAY_ATTRS 0x28 #define DRM_I915_GEM_EXECBUFFER2 0x29 #define DRM_I915_GEM_EXECBUFFER2_WR DRM_I915_GEM_EXECBUFFER2 #define DRM_I915_GET_SPRITE_COLORKEY 0x2a #define DRM_I915_SET_SPRITE_COLORKEY 0x2b #define DRM_I915_GEM_WAIT 0x2c #define DRM_I915_GEM_CONTEXT_CREATE 0x2d #define DRM_I915_GEM_CONTEXT_DESTROY 0x2e #define DRM_I915_GEM_SET_CACHING 0x2f #define DRM_I915_GEM_GET_CACHING 0x30 #define DRM_I915_REG_READ 0x31 #define DRM_I915_GET_RESET_STATS 0x32 #define DRM_I915_GEM_USERPTR 0x33 #define DRM_I915_GEM_CONTEXT_GETPARAM 0x34 #define DRM_I915_GEM_CONTEXT_SETPARAM 0x35 #define DRM_I915_PERF_OPEN 0x36 #define DRM_I915_PERF_ADD_CONFIG 0x37 #define DRM_I915_PERF_REMOVE_CONFIG 0x38 #define DRM_I915_QUERY 0x39 #define DRM_I915_GEM_VM_CREATE 0x3a #define DRM_I915_GEM_VM_DESTROY 0x3b #define DRM_I915_GEM_CREATE_EXT 0x3c /* Must be kept compact -- no holes */ #define DRM_IOCTL_I915_INIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t) #define DRM_IOCTL_I915_FLUSH DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH) #define DRM_IOCTL_I915_FLIP DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLIP) #define DRM_IOCTL_I915_BATCHBUFFER DRM_IOW( DRM_COMMAND_BASE + DRM_I915_BATCHBUFFER, drm_i915_batchbuffer_t) #define DRM_IOCTL_I915_IRQ_EMIT DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_IRQ_EMIT, drm_i915_irq_emit_t) #define DRM_IOCTL_I915_IRQ_WAIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_IRQ_WAIT, drm_i915_irq_wait_t) #define DRM_IOCTL_I915_GETPARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GETPARAM, drm_i915_getparam_t) #define DRM_IOCTL_I915_SETPARAM DRM_IOW( DRM_COMMAND_BASE + DRM_I915_SETPARAM, drm_i915_setparam_t) #define DRM_IOCTL_I915_ALLOC DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_ALLOC, drm_i915_mem_alloc_t) #define DRM_IOCTL_I915_FREE DRM_IOW( DRM_COMMAND_BASE + DRM_I915_FREE, drm_i915_mem_free_t) #define DRM_IOCTL_I915_INIT_HEAP DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT_HEAP, drm_i915_mem_init_heap_t) #define DRM_IOCTL_I915_CMDBUFFER DRM_IOW( DRM_COMMAND_BASE + DRM_I915_CMDBUFFER, drm_i915_cmdbuffer_t) #define DRM_IOCTL_I915_DESTROY_HEAP DRM_IOW( DRM_COMMAND_BASE + DRM_I915_DESTROY_HEAP, drm_i915_mem_destroy_heap_t) #define DRM_IOCTL_I915_SET_VBLANK_PIPE DRM_IOW( DRM_COMMAND_BASE + DRM_I915_SET_VBLANK_PIPE, drm_i915_vblank_pipe_t) #define DRM_IOCTL_I915_GET_VBLANK_PIPE DRM_IOR( DRM_COMMAND_BASE + DRM_I915_GET_VBLANK_PIPE, drm_i915_vblank_pipe_t) #define DRM_IOCTL_I915_VBLANK_SWAP DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_VBLANK_SWAP, drm_i915_vblank_swap_t) #define DRM_IOCTL_I915_HWS_ADDR DRM_IOW(DRM_COMMAND_BASE + DRM_I915_HWS_ADDR, struct drm_i915_gem_init) #define DRM_IOCTL_I915_GEM_INIT DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_INIT, struct drm_i915_gem_init) #define DRM_IOCTL_I915_GEM_EXECBUFFER DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER, struct drm_i915_gem_execbuffer) #define DRM_IOCTL_I915_GEM_EXECBUFFER2 DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER2, struct drm_i915_gem_execbuffer2) #define DRM_IOCTL_I915_GEM_EXECBUFFER2_WR DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER2_WR, struct drm_i915_gem_execbuffer2) #define DRM_IOCTL_I915_GEM_PIN DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_PIN, struct drm_i915_gem_pin) #define DRM_IOCTL_I915_GEM_UNPIN DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_UNPIN, struct drm_i915_gem_unpin) #define DRM_IOCTL_I915_GEM_BUSY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_BUSY, struct drm_i915_gem_busy) #define DRM_IOCTL_I915_GEM_SET_CACHING DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_SET_CACHING, struct drm_i915_gem_caching) #define DRM_IOCTL_I915_GEM_GET_CACHING DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_GET_CACHING, struct drm_i915_gem_caching) #define DRM_IOCTL_I915_GEM_THROTTLE DRM_IO ( DRM_COMMAND_BASE + DRM_I915_GEM_THROTTLE) #define DRM_IOCTL_I915_GEM_ENTERVT DRM_IO(DRM_COMMAND_BASE + DRM_I915_GEM_ENTERVT) #define DRM_IOCTL_I915_GEM_LEAVEVT DRM_IO(DRM_COMMAND_BASE + DRM_I915_GEM_LEAVEVT) #define DRM_IOCTL_I915_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_CREATE, struct drm_i915_gem_create) #define DRM_IOCTL_I915_GEM_CREATE_EXT DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_CREATE_EXT, struct drm_i915_gem_create_ext) #define DRM_IOCTL_I915_GEM_PREAD DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_PREAD, struct drm_i915_gem_pread) #define DRM_IOCTL_I915_GEM_PWRITE DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_PWRITE, struct drm_i915_gem_pwrite) #define DRM_IOCTL_I915_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MMAP, struct drm_i915_gem_mmap) #define DRM_IOCTL_I915_GEM_MMAP_GTT DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MMAP_GTT, struct drm_i915_gem_mmap_gtt) #define DRM_IOCTL_I915_GEM_MMAP_OFFSET DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MMAP_GTT, struct drm_i915_gem_mmap_offset) #define DRM_IOCTL_I915_GEM_SET_DOMAIN DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_SET_DOMAIN, struct drm_i915_gem_set_domain) #define DRM_IOCTL_I915_GEM_SW_FINISH DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_SW_FINISH, struct drm_i915_gem_sw_finish) #define DRM_IOCTL_I915_GEM_SET_TILING DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_SET_TILING, struct drm_i915_gem_set_tiling) #define DRM_IOCTL_I915_GEM_GET_TILING DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_TILING, struct drm_i915_gem_get_tiling) #define DRM_IOCTL_I915_GEM_GET_APERTURE DRM_IOR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_APERTURE, struct drm_i915_gem_get_aperture) #define DRM_IOCTL_I915_GET_PIPE_FROM_CRTC_ID DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GET_PIPE_FROM_CRTC_ID, struct drm_i915_get_pipe_from_crtc_id) #define DRM_IOCTL_I915_GEM_MADVISE DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MADVISE, struct drm_i915_gem_madvise) #define DRM_IOCTL_I915_OVERLAY_PUT_IMAGE DRM_IOW(DRM_COMMAND_BASE + DRM_I915_OVERLAY_PUT_IMAGE, struct drm_intel_overlay_put_image) #define DRM_IOCTL_I915_OVERLAY_ATTRS DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_OVERLAY_ATTRS, struct drm_intel_overlay_attrs) #define DRM_IOCTL_I915_SET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_SET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey) #define DRM_IOCTL_I915_GET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey) #define DRM_IOCTL_I915_GEM_WAIT DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_WAIT, struct drm_i915_gem_wait) #define DRM_IOCTL_I915_GEM_CONTEXT_CREATE DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_CREATE, struct drm_i915_gem_context_create) #define DRM_IOCTL_I915_GEM_CONTEXT_CREATE_EXT DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_CREATE, struct drm_i915_gem_context_create_ext) #define DRM_IOCTL_I915_GEM_CONTEXT_DESTROY DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_DESTROY, struct drm_i915_gem_context_destroy) #define DRM_IOCTL_I915_REG_READ DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_REG_READ, struct drm_i915_reg_read) #define DRM_IOCTL_I915_GET_RESET_STATS DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GET_RESET_STATS, struct drm_i915_reset_stats) #define DRM_IOCTL_I915_GEM_USERPTR DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_USERPTR, struct drm_i915_gem_userptr) #define DRM_IOCTL_I915_GEM_CONTEXT_GETPARAM DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_GETPARAM, struct drm_i915_gem_context_param) #define DRM_IOCTL_I915_GEM_CONTEXT_SETPARAM DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_SETPARAM, struct drm_i915_gem_context_param) #define DRM_IOCTL_I915_PERF_OPEN DRM_IOW(DRM_COMMAND_BASE + DRM_I915_PERF_OPEN, struct drm_i915_perf_open_param) #define DRM_IOCTL_I915_PERF_ADD_CONFIG DRM_IOW(DRM_COMMAND_BASE + DRM_I915_PERF_ADD_CONFIG, struct drm_i915_perf_oa_config) #define DRM_IOCTL_I915_PERF_REMOVE_CONFIG DRM_IOW(DRM_COMMAND_BASE + DRM_I915_PERF_REMOVE_CONFIG, __u64) #define DRM_IOCTL_I915_QUERY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_QUERY, struct drm_i915_query) #define DRM_IOCTL_I915_GEM_VM_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_VM_CREATE, struct drm_i915_gem_vm_control) #define DRM_IOCTL_I915_GEM_VM_DESTROY DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_VM_DESTROY, struct drm_i915_gem_vm_control) /* Allow drivers to submit batchbuffers directly to hardware, relying * on the security mechanisms provided by hardware. */ typedef struct drm_i915_batchbuffer { int start; /* agp offset */ int used; /* nr bytes in use */ int DR1; /* hw flags for GFX_OP_DRAWRECT_INFO */ int DR4; /* window origin for GFX_OP_DRAWRECT_INFO */ int num_cliprects; /* mulitpass with multiple cliprects? */ struct drm_clip_rect *cliprects; /* pointer to userspace cliprects */ } drm_i915_batchbuffer_t; /* As above, but pass a pointer to userspace buffer which can be * validated by the kernel prior to sending to hardware. */ typedef struct _drm_i915_cmdbuffer { char *buf; /* pointer to userspace command buffer */ int sz; /* nr bytes in buf */ int DR1; /* hw flags for GFX_OP_DRAWRECT_INFO */ int DR4; /* window origin for GFX_OP_DRAWRECT_INFO */ int num_cliprects; /* mulitpass with multiple cliprects? */ struct drm_clip_rect *cliprects; /* pointer to userspace cliprects */ } drm_i915_cmdbuffer_t; /* Userspace can request & wait on irq's: */ typedef struct drm_i915_irq_emit { int *irq_seq; } drm_i915_irq_emit_t; typedef struct drm_i915_irq_wait { int irq_seq; } drm_i915_irq_wait_t; /* * Different modes of per-process Graphics Translation Table, * see I915_PARAM_HAS_ALIASING_PPGTT */ #define I915_GEM_PPGTT_NONE 0 #define I915_GEM_PPGTT_ALIASING 1 #define I915_GEM_PPGTT_FULL 2 /* Ioctl to query kernel params: */ #define I915_PARAM_IRQ_ACTIVE 1 #define I915_PARAM_ALLOW_BATCHBUFFER 2 #define I915_PARAM_LAST_DISPATCH 3 #define I915_PARAM_CHIPSET_ID 4 #define I915_PARAM_HAS_GEM 5 #define I915_PARAM_NUM_FENCES_AVAIL 6 #define I915_PARAM_HAS_OVERLAY 7 #define I915_PARAM_HAS_PAGEFLIPPING 8 #define I915_PARAM_HAS_EXECBUF2 9 #define I915_PARAM_HAS_BSD 10 #define I915_PARAM_HAS_BLT 11 #define I915_PARAM_HAS_RELAXED_FENCING 12 #define I915_PARAM_HAS_COHERENT_RINGS 13 #define I915_PARAM_HAS_EXEC_CONSTANTS 14 #define I915_PARAM_HAS_RELAXED_DELTA 15 #define I915_PARAM_HAS_GEN7_SOL_RESET 16 #define I915_PARAM_HAS_LLC 17 #define I915_PARAM_HAS_ALIASING_PPGTT 18 #define I915_PARAM_HAS_WAIT_TIMEOUT 19 #define I915_PARAM_HAS_SEMAPHORES 20 #define I915_PARAM_HAS_PRIME_VMAP_FLUSH 21 #define I915_PARAM_HAS_VEBOX 22 #define I915_PARAM_HAS_SECURE_BATCHES 23 #define I915_PARAM_HAS_PINNED_BATCHES 24 #define I915_PARAM_HAS_EXEC_NO_RELOC 25 #define I915_PARAM_HAS_EXEC_HANDLE_LUT 26 #define I915_PARAM_HAS_WT 27 #define I915_PARAM_CMD_PARSER_VERSION 28 #define I915_PARAM_HAS_COHERENT_PHYS_GTT 29 #define I915_PARAM_MMAP_VERSION 30 #define I915_PARAM_HAS_BSD2 31 #define I915_PARAM_REVISION 32 #define I915_PARAM_SUBSLICE_TOTAL 33 #define I915_PARAM_EU_TOTAL 34 #define I915_PARAM_HAS_GPU_RESET 35 #define I915_PARAM_HAS_RESOURCE_STREAMER 36 #define I915_PARAM_HAS_EXEC_SOFTPIN 37 #define I915_PARAM_HAS_POOLED_EU 38 #define I915_PARAM_MIN_EU_IN_POOL 39 #define I915_PARAM_MMAP_GTT_VERSION 40 /* * Query whether DRM_I915_GEM_EXECBUFFER2 supports user defined execution * priorities and the driver will attempt to execute batches in priority order. * The param returns a capability bitmask, nonzero implies that the scheduler * is enabled, with different features present according to the mask. * * The initial priority for each batch is supplied by the context and is * controlled via I915_CONTEXT_PARAM_PRIORITY. */ #define I915_PARAM_HAS_SCHEDULER 41 #define I915_SCHEDULER_CAP_ENABLED (1ul << 0) #define I915_SCHEDULER_CAP_PRIORITY (1ul << 1) #define I915_SCHEDULER_CAP_PREEMPTION (1ul << 2) #define I915_SCHEDULER_CAP_SEMAPHORES (1ul << 3) #define I915_SCHEDULER_CAP_ENGINE_BUSY_STATS (1ul << 4) /* * Indicates the 2k user priority levels are statically mapped into 3 buckets as * follows: * * -1k to -1 Low priority * 0 Normal priority * 1 to 1k Highest priority */ #define I915_SCHEDULER_CAP_STATIC_PRIORITY_MAP (1ul << 5) /* * Query the status of HuC load. * * The query can fail in the following scenarios with the listed error codes: * -ENODEV if HuC is not present on this platform, * -EOPNOTSUPP if HuC firmware usage is disabled, * -ENOPKG if HuC firmware fetch failed, * -ENOEXEC if HuC firmware is invalid or mismatched, * -ENOMEM if i915 failed to prepare the FW objects for transfer to the uC, * -EIO if the FW transfer or the FW authentication failed. * * If the IOCTL is successful, the returned parameter will be set to one of the * following values: * * 0 if HuC firmware load is not complete, * * 1 if HuC firmware is loaded and fully authenticated, * * 2 if HuC firmware is loaded and authenticated for clear media only */ #define I915_PARAM_HUC_STATUS 42 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to opt-out of * synchronisation with implicit fencing on individual objects. * See EXEC_OBJECT_ASYNC. */ #define I915_PARAM_HAS_EXEC_ASYNC 43 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports explicit fence support - * both being able to pass in a sync_file fd to wait upon before executing, * and being able to return a new sync_file fd that is signaled when the * current request is complete. See I915_EXEC_FENCE_IN and I915_EXEC_FENCE_OUT. */ #define I915_PARAM_HAS_EXEC_FENCE 44 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to capture * user-specified buffers for post-mortem debugging of GPU hangs. See * EXEC_OBJECT_CAPTURE. */ #define I915_PARAM_HAS_EXEC_CAPTURE 45 #define I915_PARAM_SLICE_MASK 46 /* Assuming it's uniform for each slice, this queries the mask of subslices * per-slice for this system. */ #define I915_PARAM_SUBSLICE_MASK 47 /* * Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying the batch buffer * as the first execobject as opposed to the last. See I915_EXEC_BATCH_FIRST. */ #define I915_PARAM_HAS_EXEC_BATCH_FIRST 48 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying an array of * drm_i915_gem_exec_fence structures. See I915_EXEC_FENCE_ARRAY. */ #define I915_PARAM_HAS_EXEC_FENCE_ARRAY 49 /* * Query whether every context (both per-file default and user created) is * isolated (insofar as HW supports). If this parameter is not true, then * freshly created contexts may inherit values from an existing context, * rather than default HW values. If true, it also ensures (insofar as HW * supports) that all state set by this context will not leak to any other * context. * * As not every engine across every gen support contexts, the returned * value reports the support of context isolation for individual engines by * returning a bitmask of each engine class set to true if that class supports * isolation. */ #define I915_PARAM_HAS_CONTEXT_ISOLATION 50 /* Frequency of the command streamer timestamps given by the *_TIMESTAMP * registers. This used to be fixed per platform but from CNL onwards, this * might vary depending on the parts. */ #define I915_PARAM_CS_TIMESTAMP_FREQUENCY 51 /* * Once upon a time we supposed that writes through the GGTT would be * immediately in physical memory (once flushed out of the CPU path). However, * on a few different processors and chipsets, this is not necessarily the case * as the writes appear to be buffered internally. Thus a read of the backing * storage (physical memory) via a different path (with different physical tags * to the indirect write via the GGTT) will see stale values from before * the GGTT write. Inside the kernel, we can for the most part keep track of * the different read/write domains in use (e.g. set-domain), but the assumption * of coherency is baked into the ABI, hence reporting its true state in this * parameter. * * Reports true when writes via mmap_gtt are immediately visible following an * lfence to flush the WCB. * * Reports false when writes via mmap_gtt are indeterminately delayed in an in * internal buffer and are _not_ immediately visible to third parties accessing * directly via mmap_cpu/mmap_wc. Use of mmap_gtt as part of an IPC * communications channel when reporting false is strongly disadvised. */ #define I915_PARAM_MMAP_GTT_COHERENT 52 /* * Query whether DRM_I915_GEM_EXECBUFFER2 supports coordination of parallel * execution through use of explicit fence support. * See I915_EXEC_FENCE_OUT and I915_EXEC_FENCE_SUBMIT. */ #define I915_PARAM_HAS_EXEC_SUBMIT_FENCE 53 /* * Revision of the i915-perf uAPI. The value returned helps determine what * i915-perf features are available. See drm_i915_perf_property_id. */ #define I915_PARAM_PERF_REVISION 54 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying an array of * timeline syncobj through drm_i915_gem_execbuffer_ext_timeline_fences. See * I915_EXEC_USE_EXTENSIONS. */ #define I915_PARAM_HAS_EXEC_TIMELINE_FENCES 55 /* Query if the kernel supports the I915_USERPTR_PROBE flag. */ #define I915_PARAM_HAS_USERPTR_PROBE 56 /* * Frequency of the timestamps in OA reports. This used to be the same as the CS * timestamp frequency, but differs on some platforms. */ #define I915_PARAM_OA_TIMESTAMP_FREQUENCY 57 /* * Query the status of PXP support in i915. * * The query can fail in the following scenarios with the listed error codes: * -ENODEV = PXP support is not available on the GPU device or in the * kernel due to missing component drivers or kernel configs. * * If the IOCTL is successful, the returned parameter will be set to one of * the following values: * 1 = PXP feature is supported and is ready for use. * 2 = PXP feature is supported but should be ready soon (pending * initialization of non-i915 system dependencies). * * NOTE: When param is supported (positive return values), user space should * still refer to the GEM PXP context-creation UAPI header specs to be * aware of possible failure due to system state machine at the time. */ #define I915_PARAM_PXP_STATUS 58 /* Must be kept compact -- no holes and well documented */ /** * struct drm_i915_getparam - Driver parameter query structure. */ struct drm_i915_getparam { /** @param: Driver parameter to query. */ __s32 param; /** * @value: Address of memory where queried value should be put. * * WARNING: Using pointers instead of fixed-size u64 means we need to write * compat32 code. Don't repeat this mistake. */ int *value; }; /** * typedef drm_i915_getparam_t - Driver parameter query structure. * See struct drm_i915_getparam. */ typedef struct drm_i915_getparam drm_i915_getparam_t; /* Ioctl to set kernel params: */ #define I915_SETPARAM_USE_MI_BATCHBUFFER_START 1 #define I915_SETPARAM_TEX_LRU_LOG_GRANULARITY 2 #define I915_SETPARAM_ALLOW_BATCHBUFFER 3 #define I915_SETPARAM_NUM_USED_FENCES 4 /* Must be kept compact -- no holes */ typedef struct drm_i915_setparam { int param; int value; } drm_i915_setparam_t; /* A memory manager for regions of shared memory: */ #define I915_MEM_REGION_AGP 1 typedef struct drm_i915_mem_alloc { int region; int alignment; int size; int *region_offset; /* offset from start of fb or agp */ } drm_i915_mem_alloc_t; typedef struct drm_i915_mem_free { int region; int region_offset; } drm_i915_mem_free_t; typedef struct drm_i915_mem_init_heap { int region; int size; int start; } drm_i915_mem_init_heap_t; /* Allow memory manager to be torn down and re-initialized (eg on * rotate): */ typedef struct drm_i915_mem_destroy_heap { int region; } drm_i915_mem_destroy_heap_t; /* Allow X server to configure which pipes to monitor for vblank signals */ #define DRM_I915_VBLANK_PIPE_A 1 #define DRM_I915_VBLANK_PIPE_B 2 typedef struct drm_i915_vblank_pipe { int pipe; } drm_i915_vblank_pipe_t; /* Schedule buffer swap at given vertical blank: */ typedef struct drm_i915_vblank_swap { drm_drawable_t drawable; enum drm_vblank_seq_type seqtype; unsigned int sequence; } drm_i915_vblank_swap_t; typedef struct drm_i915_hws_addr { __u64 addr; } drm_i915_hws_addr_t; struct drm_i915_gem_init { /** * Beginning offset in the GTT to be managed by the DRM memory * manager. */ __u64 gtt_start; /** * Ending offset in the GTT to be managed by the DRM memory * manager. */ __u64 gtt_end; }; struct drm_i915_gem_create { /** * Requested size for the object. * * The (page-aligned) allocated size for the object will be returned. */ __u64 size; /** * Returned handle for the object. * * Object handles are nonzero. */ __u32 handle; __u32 pad; }; struct drm_i915_gem_pread { /** Handle for the object being read. */ __u32 handle; __u32 pad; /** Offset into the object to read from */ __u64 offset; /** Length of data to read */ __u64 size; /** * Pointer to write the data into. * * This is a fixed-size type for 32/64 compatibility. */ __u64 data_ptr; }; struct drm_i915_gem_pwrite { /** Handle for the object being written to. */ __u32 handle; __u32 pad; /** Offset into the object to write to */ __u64 offset; /** Length of data to write */ __u64 size; /** * Pointer to read the data from. * * This is a fixed-size type for 32/64 compatibility. */ __u64 data_ptr; }; struct drm_i915_gem_mmap { /** Handle for the object being mapped. */ __u32 handle; __u32 pad; /** Offset in the object to map. */ __u64 offset; /** * Length of data to map. * * The value will be page-aligned. */ __u64 size; /** * Returned pointer the data was mapped at. * * This is a fixed-size type for 32/64 compatibility. */ __u64 addr_ptr; /** * Flags for extended behaviour. * * Added in version 2. */ __u64 flags; #define I915_MMAP_WC 0x1 }; struct drm_i915_gem_mmap_gtt { /** Handle for the object being mapped. */ __u32 handle; __u32 pad; /** * Fake offset to use for subsequent mmap call * * This is a fixed-size type for 32/64 compatibility. */ __u64 offset; }; /** * struct drm_i915_gem_mmap_offset - Retrieve an offset so we can mmap this buffer object. * * This struct is passed as argument to the `DRM_IOCTL_I915_GEM_MMAP_OFFSET` ioctl, * and is used to retrieve the fake offset to mmap an object specified by &handle. * * The legacy way of using `DRM_IOCTL_I915_GEM_MMAP` is removed on gen12+. * `DRM_IOCTL_I915_GEM_MMAP_GTT` is an older supported alias to this struct, but will behave * as setting the &extensions to 0, and &flags to `I915_MMAP_OFFSET_GTT`. */ struct drm_i915_gem_mmap_offset { /** @handle: Handle for the object being mapped. */ __u32 handle; /** @pad: Must be zero */ __u32 pad; /** * @offset: The fake offset to use for subsequent mmap call * * This is a fixed-size type for 32/64 compatibility. */ __u64 offset; /** * @flags: Flags for extended behaviour. * * It is mandatory that one of the `MMAP_OFFSET` types * should be included: * * - `I915_MMAP_OFFSET_GTT`: Use mmap with the object bound to GTT. (Write-Combined) * - `I915_MMAP_OFFSET_WC`: Use Write-Combined caching. * - `I915_MMAP_OFFSET_WB`: Use Write-Back caching. * - `I915_MMAP_OFFSET_FIXED`: Use object placement to determine caching. * * On devices with local memory `I915_MMAP_OFFSET_FIXED` is the only valid * type. On devices without local memory, this caching mode is invalid. * * As caching mode when specifying `I915_MMAP_OFFSET_FIXED`, WC or WB will * be used, depending on the object placement on creation. WB will be used * when the object can only exist in system memory, WC otherwise. */ __u64 flags; #define I915_MMAP_OFFSET_GTT 0 #define I915_MMAP_OFFSET_WC 1 #define I915_MMAP_OFFSET_WB 2 #define I915_MMAP_OFFSET_UC 3 #define I915_MMAP_OFFSET_FIXED 4 /** * @extensions: Zero-terminated chain of extensions. * * No current extensions defined; mbz. */ __u64 extensions; }; /** * struct drm_i915_gem_set_domain - Adjust the objects write or read domain, in * preparation for accessing the pages via some CPU domain. * * Specifying a new write or read domain will flush the object out of the * previous domain(if required), before then updating the objects domain * tracking with the new domain. * * Note this might involve waiting for the object first if it is still active on * the GPU. * * Supported values for @read_domains and @write_domain: * * - I915_GEM_DOMAIN_WC: Uncached write-combined domain * - I915_GEM_DOMAIN_CPU: CPU cache domain * - I915_GEM_DOMAIN_GTT: Mappable aperture domain * * All other domains are rejected. * * Note that for discrete, starting from DG1, this is no longer supported, and * is instead rejected. On such platforms the CPU domain is effectively static, * where we also only support a single &drm_i915_gem_mmap_offset cache mode, * which can't be set explicitly and instead depends on the object placements, * as per the below. * * Implicit caching rules, starting from DG1: * * - If any of the object placements (see &drm_i915_gem_create_ext_memory_regions) * contain I915_MEMORY_CLASS_DEVICE then the object will be allocated and * mapped as write-combined only. * * - Everything else is always allocated and mapped as write-back, with the * guarantee that everything is also coherent with the GPU. * * Note that this is likely to change in the future again, where we might need * more flexibility on future devices, so making this all explicit as part of a * new &drm_i915_gem_create_ext extension is probable. */ struct drm_i915_gem_set_domain { /** @handle: Handle for the object. */ __u32 handle; /** @read_domains: New read domains. */ __u32 read_domains; /** * @write_domain: New write domain. * * Note that having something in the write domain implies it's in the * read domain, and only that read domain. */ __u32 write_domain; }; struct drm_i915_gem_sw_finish { /** Handle for the object */ __u32 handle; }; struct drm_i915_gem_relocation_entry { /** * Handle of the buffer being pointed to by this relocation entry. * * It's appealing to make this be an index into the mm_validate_entry * list to refer to the buffer, but this allows the driver to create * a relocation list for state buffers and not re-write it per * exec using the buffer. */ __u32 target_handle; /** * Value to be added to the offset of the target buffer to make up * the relocation entry. */ __u32 delta; /** Offset in the buffer the relocation entry will be written into */ __u64 offset; /** * Offset value of the target buffer that the relocation entry was last * written as. * * If the buffer has the same offset as last time, we can skip syncing * and writing the relocation. This value is written back out by * the execbuffer ioctl when the relocation is written. */ __u64 presumed_offset; /** * Target memory domains read by this operation. */ __u32 read_domains; /** * Target memory domains written by this operation. * * Note that only one domain may be written by the whole * execbuffer operation, so that where there are conflicts, * the application will get -EINVAL back. */ __u32 write_domain; }; /** @{ * Intel memory domains * * Most of these just align with the various caches in * the system and are used to flush and invalidate as * objects end up cached in different domains. */ /** CPU cache */ #define I915_GEM_DOMAIN_CPU 0x00000001 /** Render cache, used by 2D and 3D drawing */ #define I915_GEM_DOMAIN_RENDER 0x00000002 /** Sampler cache, used by texture engine */ #define I915_GEM_DOMAIN_SAMPLER 0x00000004 /** Command queue, used to load batch buffers */ #define I915_GEM_DOMAIN_COMMAND 0x00000008 /** Instruction cache, used by shader programs */ #define I915_GEM_DOMAIN_INSTRUCTION 0x00000010 /** Vertex address cache */ #define I915_GEM_DOMAIN_VERTEX 0x00000020 /** GTT domain - aperture and scanout */ #define I915_GEM_DOMAIN_GTT 0x00000040 /** WC domain - uncached access */ #define I915_GEM_DOMAIN_WC 0x00000080 /** @} */ struct drm_i915_gem_exec_object { /** * User's handle for a buffer to be bound into the GTT for this * operation. */ __u32 handle; /** Number of relocations to be performed on this buffer */ __u32 relocation_count; /** * Pointer to array of struct drm_i915_gem_relocation_entry containing * the relocations to be performed in this buffer. */ __u64 relocs_ptr; /** Required alignment in graphics aperture */ __u64 alignment; /** * Returned value of the updated offset of the object, for future * presumed_offset writes. */ __u64 offset; }; /* DRM_IOCTL_I915_GEM_EXECBUFFER was removed in Linux 5.13 */ struct drm_i915_gem_execbuffer { /** * List of buffers to be validated with their relocations to be * performend on them. * * This is a pointer to an array of struct drm_i915_gem_validate_entry. * * These buffers must be listed in an order such that all relocations * a buffer is performing refer to buffers that have already appeared * in the validate list. */ __u64 buffers_ptr; __u32 buffer_count; /** Offset in the batchbuffer to start execution from. */ __u32 batch_start_offset; /** Bytes used in batchbuffer from batch_start_offset */ __u32 batch_len; __u32 DR1; __u32 DR4; __u32 num_cliprects; /** This is a struct drm_clip_rect *cliprects */ __u64 cliprects_ptr; }; struct drm_i915_gem_exec_object2 { /** * User's handle for a buffer to be bound into the GTT for this * operation. */ __u32 handle; /** Number of relocations to be performed on this buffer */ __u32 relocation_count; /** * Pointer to array of struct drm_i915_gem_relocation_entry containing * the relocations to be performed in this buffer. */ __u64 relocs_ptr; /** Required alignment in graphics aperture */ __u64 alignment; /** * When the EXEC_OBJECT_PINNED flag is specified this is populated by * the user with the GTT offset at which this object will be pinned. * * When the I915_EXEC_NO_RELOC flag is specified this must contain the * presumed_offset of the object. * * During execbuffer2 the kernel populates it with the value of the * current GTT offset of the object, for future presumed_offset writes. * * See struct drm_i915_gem_create_ext for the rules when dealing with * alignment restrictions with I915_MEMORY_CLASS_DEVICE, on devices with * minimum page sizes, like DG2. */ __u64 offset; #define EXEC_OBJECT_NEEDS_FENCE (1<<0) #define EXEC_OBJECT_NEEDS_GTT (1<<1) #define EXEC_OBJECT_WRITE (1<<2) #define EXEC_OBJECT_SUPPORTS_48B_ADDRESS (1<<3) #define EXEC_OBJECT_PINNED (1<<4) #define EXEC_OBJECT_PAD_TO_SIZE (1<<5) /* The kernel implicitly tracks GPU activity on all GEM objects, and * synchronises operations with outstanding rendering. This includes * rendering on other devices if exported via dma-buf. However, sometimes * this tracking is too coarse and the user knows better. For example, * if the object is split into non-overlapping ranges shared between different * clients or engines (i.e. suballocating objects), the implicit tracking * by kernel assumes that each operation affects the whole object rather * than an individual range, causing needless synchronisation between clients. * The kernel will also forgo any CPU cache flushes prior to rendering from * the object as the client is expected to be also handling such domain * tracking. * * The kernel maintains the implicit tracking in order to manage resources * used by the GPU - this flag only disables the synchronisation prior to * rendering with this object in this execbuf. * * Opting out of implicit synhronisation requires the user to do its own * explicit tracking to avoid rendering corruption. See, for example, * I915_PARAM_HAS_EXEC_FENCE to order execbufs and execute them asynchronously. */ #define EXEC_OBJECT_ASYNC (1<<6) /* Request that the contents of this execobject be copied into the error * state upon a GPU hang involving this batch for post-mortem debugging. * These buffers are recorded in no particular order as "user" in * /sys/class/drm/cardN/error. Query I915_PARAM_HAS_EXEC_CAPTURE to see * if the kernel supports this flag. */ #define EXEC_OBJECT_CAPTURE (1<<7) /* All remaining bits are MBZ and RESERVED FOR FUTURE USE */ #define __EXEC_OBJECT_UNKNOWN_FLAGS -(EXEC_OBJECT_CAPTURE<<1) __u64 flags; union { __u64 rsvd1; __u64 pad_to_size; }; __u64 rsvd2; }; /** * struct drm_i915_gem_exec_fence - An input or output fence for the execbuf * ioctl. * * The request will wait for input fence to signal before submission. * * The returned output fence will be signaled after the completion of the * request. */ struct drm_i915_gem_exec_fence { /** @handle: User's handle for a drm_syncobj to wait on or signal. */ __u32 handle; /** * @flags: Supported flags are: * * I915_EXEC_FENCE_WAIT: * Wait for the input fence before request submission. * * I915_EXEC_FENCE_SIGNAL: * Return request completion fence as output */ __u32 flags; #define I915_EXEC_FENCE_WAIT (1<<0) #define I915_EXEC_FENCE_SIGNAL (1<<1) #define __I915_EXEC_FENCE_UNKNOWN_FLAGS (-(I915_EXEC_FENCE_SIGNAL << 1)) }; /** * struct drm_i915_gem_execbuffer_ext_timeline_fences - Timeline fences * for execbuf ioctl. * * This structure describes an array of drm_syncobj and associated points for * timeline variants of drm_syncobj. It is invalid to append this structure to * the execbuf if I915_EXEC_FENCE_ARRAY is set. */ struct drm_i915_gem_execbuffer_ext_timeline_fences { #define DRM_I915_GEM_EXECBUFFER_EXT_TIMELINE_FENCES 0 /** @base: Extension link. See struct i915_user_extension. */ struct i915_user_extension base; /** * @fence_count: Number of elements in the @handles_ptr & @value_ptr * arrays. */ __u64 fence_count; /** * @handles_ptr: Pointer to an array of struct drm_i915_gem_exec_fence * of length @fence_count. */ __u64 handles_ptr; /** * @values_ptr: Pointer to an array of u64 values of length * @fence_count. * Values must be 0 for a binary drm_syncobj. A Value of 0 for a * timeline drm_syncobj is invalid as it turns a drm_syncobj into a * binary one. */ __u64 values_ptr; }; /** * struct drm_i915_gem_execbuffer2 - Structure for DRM_I915_GEM_EXECBUFFER2 * ioctl. */ struct drm_i915_gem_execbuffer2 { /** @buffers_ptr: Pointer to a list of gem_exec_object2 structs */ __u64 buffers_ptr; /** @buffer_count: Number of elements in @buffers_ptr array */ __u32 buffer_count; /** * @batch_start_offset: Offset in the batchbuffer to start execution * from. */ __u32 batch_start_offset; /** * @batch_len: Length in bytes of the batch buffer, starting from the * @batch_start_offset. If 0, length is assumed to be the batch buffer * object size. */ __u32 batch_len; /** @DR1: deprecated */ __u32 DR1; /** @DR4: deprecated */ __u32 DR4; /** @num_cliprects: See @cliprects_ptr */ __u32 num_cliprects; /** * @cliprects_ptr: Kernel clipping was a DRI1 misfeature. * * It is invalid to use this field if I915_EXEC_FENCE_ARRAY or * I915_EXEC_USE_EXTENSIONS flags are not set. * * If I915_EXEC_FENCE_ARRAY is set, then this is a pointer to an array * of &drm_i915_gem_exec_fence and @num_cliprects is the length of the * array. * * If I915_EXEC_USE_EXTENSIONS is set, then this is a pointer to a * single &i915_user_extension and num_cliprects is 0. */ __u64 cliprects_ptr; /** @flags: Execbuf flags */ __u64 flags; #define I915_EXEC_RING_MASK (0x3f) #define I915_EXEC_DEFAULT (0<<0) #define I915_EXEC_RENDER (1<<0) #define I915_EXEC_BSD (2<<0) #define I915_EXEC_BLT (3<<0) #define I915_EXEC_VEBOX (4<<0) /* Used for switching the constants addressing mode on gen4+ RENDER ring. * Gen6+ only supports relative addressing to dynamic state (default) and * absolute addressing. * * These flags are ignored for the BSD and BLT rings. */ #define I915_EXEC_CONSTANTS_MASK (3<<6) #define I915_EXEC_CONSTANTS_REL_GENERAL (0<<6) /* default */ #define I915_EXEC_CONSTANTS_ABSOLUTE (1<<6) #define I915_EXEC_CONSTANTS_REL_SURFACE (2<<6) /* gen4/5 only */ /** Resets the SO write offset registers for transform feedback on gen7. */ #define I915_EXEC_GEN7_SOL_RESET (1<<8) /** Request a privileged ("secure") batch buffer. Note only available for * DRM_ROOT_ONLY | DRM_MASTER processes. */ #define I915_EXEC_SECURE (1<<9) /** Inform the kernel that the batch is and will always be pinned. This * negates the requirement for a workaround to be performed to avoid * an incoherent CS (such as can be found on 830/845). If this flag is * not passed, the kernel will endeavour to make sure the batch is * coherent with the CS before execution. If this flag is passed, * userspace assumes the responsibility for ensuring the same. */ #define I915_EXEC_IS_PINNED (1<<10) /** Provide a hint to the kernel that the command stream and auxiliary * state buffers already holds the correct presumed addresses and so the * relocation process may be skipped if no buffers need to be moved in * preparation for the execbuffer. */ #define I915_EXEC_NO_RELOC (1<<11) /** Use the reloc.handle as an index into the exec object array rather * than as the per-file handle. */ #define I915_EXEC_HANDLE_LUT (1<<12) /** Used for switching BSD rings on the platforms with two BSD rings */ #define I915_EXEC_BSD_SHIFT (13) #define I915_EXEC_BSD_MASK (3 << I915_EXEC_BSD_SHIFT) /* default ping-pong mode */ #define I915_EXEC_BSD_DEFAULT (0 << I915_EXEC_BSD_SHIFT) #define I915_EXEC_BSD_RING1 (1 << I915_EXEC_BSD_SHIFT) #define I915_EXEC_BSD_RING2 (2 << I915_EXEC_BSD_SHIFT) /** Tell the kernel that the batchbuffer is processed by * the resource streamer. */ #define I915_EXEC_RESOURCE_STREAMER (1<<15) /* Setting I915_EXEC_FENCE_IN implies that lower_32_bits(rsvd2) represent * a sync_file fd to wait upon (in a nonblocking manner) prior to executing * the batch. * * Returns -EINVAL if the sync_file fd cannot be found. */ #define I915_EXEC_FENCE_IN (1<<16) /* Setting I915_EXEC_FENCE_OUT causes the ioctl to return a sync_file fd * in the upper_32_bits(rsvd2) upon success. Ownership of the fd is given * to the caller, and it should be close() after use. (The fd is a regular * file descriptor and will be cleaned up on process termination. It holds * a reference to the request, but nothing else.) * * The sync_file fd can be combined with other sync_file and passed either * to execbuf using I915_EXEC_FENCE_IN, to atomic KMS ioctls (so that a flip * will only occur after this request completes), or to other devices. * * Using I915_EXEC_FENCE_OUT requires use of * DRM_IOCTL_I915_GEM_EXECBUFFER2_WR ioctl so that the result is written * back to userspace. Failure to do so will cause the out-fence to always * be reported as zero, and the real fence fd to be leaked. */ #define I915_EXEC_FENCE_OUT (1<<17) /* * Traditionally the execbuf ioctl has only considered the final element in * the execobject[] to be the executable batch. Often though, the client * will known the batch object prior to construction and being able to place * it into the execobject[] array first can simplify the relocation tracking. * Setting I915_EXEC_BATCH_FIRST tells execbuf to use element 0 of the * execobject[] as the * batch instead (the default is to use the last * element). */ #define I915_EXEC_BATCH_FIRST (1<<18) /* Setting I915_FENCE_ARRAY implies that num_cliprects and cliprects_ptr * define an array of i915_gem_exec_fence structures which specify a set of * dma fences to wait upon or signal. */ #define I915_EXEC_FENCE_ARRAY (1<<19) /* * Setting I915_EXEC_FENCE_SUBMIT implies that lower_32_bits(rsvd2) represent * a sync_file fd to wait upon (in a nonblocking manner) prior to executing * the batch. * * Returns -EINVAL if the sync_file fd cannot be found. */ #define I915_EXEC_FENCE_SUBMIT (1 << 20) /* * Setting I915_EXEC_USE_EXTENSIONS implies that * drm_i915_gem_execbuffer2.cliprects_ptr is treated as a pointer to an linked * list of i915_user_extension. Each i915_user_extension node is the base of a * larger structure. The list of supported structures are listed in the * drm_i915_gem_execbuffer_ext enum. */ #define I915_EXEC_USE_EXTENSIONS (1 << 21) #define __I915_EXEC_UNKNOWN_FLAGS (-(I915_EXEC_USE_EXTENSIONS << 1)) /** @rsvd1: Context id */ __u64 rsvd1; /** * @rsvd2: in and out sync_file file descriptors. * * When I915_EXEC_FENCE_IN or I915_EXEC_FENCE_SUBMIT flag is set, the * lower 32 bits of this field will have the in sync_file fd (input). * * When I915_EXEC_FENCE_OUT flag is set, the upper 32 bits of this * field will have the out sync_file fd (output). */ __u64 rsvd2; }; #define I915_EXEC_CONTEXT_ID_MASK (0xffffffff) #define i915_execbuffer2_set_context_id(eb2, context) \ (eb2).rsvd1 = context & I915_EXEC_CONTEXT_ID_MASK #define i915_execbuffer2_get_context_id(eb2) \ ((eb2).rsvd1 & I915_EXEC_CONTEXT_ID_MASK) struct drm_i915_gem_pin { /** Handle of the buffer to be pinned. */ __u32 handle; __u32 pad; /** alignment required within the aperture */ __u64 alignment; /** Returned GTT offset of the buffer. */ __u64 offset; }; struct drm_i915_gem_unpin { /** Handle of the buffer to be unpinned. */ __u32 handle; __u32 pad; }; struct drm_i915_gem_busy { /** Handle of the buffer to check for busy */ __u32 handle; /** Return busy status * * A return of 0 implies that the object is idle (after * having flushed any pending activity), and a non-zero return that * the object is still in-flight on the GPU. (The GPU has not yet * signaled completion for all pending requests that reference the * object.) An object is guaranteed to become idle eventually (so * long as no new GPU commands are executed upon it). Due to the * asynchronous nature of the hardware, an object reported * as busy may become idle before the ioctl is completed. * * Furthermore, if the object is busy, which engine is busy is only * provided as a guide and only indirectly by reporting its class * (there may be more than one engine in each class). There are race * conditions which prevent the report of which engines are busy from * being always accurate. However, the converse is not true. If the * object is idle, the result of the ioctl, that all engines are idle, * is accurate. * * The returned dword is split into two fields to indicate both * the engine classes on which the object is being read, and the * engine class on which it is currently being written (if any). * * The low word (bits 0:15) indicate if the object is being written * to by any engine (there can only be one, as the GEM implicit * synchronisation rules force writes to be serialised). Only the * engine class (offset by 1, I915_ENGINE_CLASS_RENDER is reported as * 1 not 0 etc) for the last write is reported. * * The high word (bits 16:31) are a bitmask of which engines classes * are currently reading from the object. Multiple engines may be * reading from the object simultaneously. * * The value of each engine class is the same as specified in the * I915_CONTEXT_PARAM_ENGINES context parameter and via perf, i.e. * I915_ENGINE_CLASS_RENDER, I915_ENGINE_CLASS_COPY, etc. * Some hardware may have parallel execution engines, e.g. multiple * media engines, which are mapped to the same class identifier and so * are not separately reported for busyness. * * Caveat emptor: * Only the boolean result of this query is reliable; that is whether * the object is idle or busy. The report of which engines are busy * should be only used as a heuristic. */ __u32 busy; }; /** * struct drm_i915_gem_caching - Set or get the caching for given object * handle. * * Allow userspace to control the GTT caching bits for a given object when the * object is later mapped through the ppGTT(or GGTT on older platforms lacking * ppGTT support, or if the object is used for scanout). Note that this might * require unbinding the object from the GTT first, if its current caching value * doesn't match. * * Note that this all changes on discrete platforms, starting from DG1, the * set/get caching is no longer supported, and is now rejected. Instead the CPU * caching attributes(WB vs WC) will become an immutable creation time property * for the object, along with the GTT caching level. For now we don't expose any * new uAPI for this, instead on DG1 this is all implicit, although this largely * shouldn't matter since DG1 is coherent by default(without any way of * controlling it). * * Implicit caching rules, starting from DG1: * * - If any of the object placements (see &drm_i915_gem_create_ext_memory_regions) * contain I915_MEMORY_CLASS_DEVICE then the object will be allocated and * mapped as write-combined only. * * - Everything else is always allocated and mapped as write-back, with the * guarantee that everything is also coherent with the GPU. * * Note that this is likely to change in the future again, where we might need * more flexibility on future devices, so making this all explicit as part of a * new &drm_i915_gem_create_ext extension is probable. * * Side note: Part of the reason for this is that changing the at-allocation-time CPU * caching attributes for the pages might be required(and is expensive) if we * need to then CPU map the pages later with different caching attributes. This * inconsistent caching behaviour, while supported on x86, is not universally * supported on other architectures. So for simplicity we opt for setting * everything at creation time, whilst also making it immutable, on discrete * platforms. */ struct drm_i915_gem_caching { /** * @handle: Handle of the buffer to set/get the caching level. */ __u32 handle; /** * @caching: The GTT caching level to apply or possible return value. * * The supported @caching values: * * I915_CACHING_NONE: * * GPU access is not coherent with CPU caches. Default for machines * without an LLC. This means manual flushing might be needed, if we * want GPU access to be coherent. * * I915_CACHING_CACHED: * * GPU access is coherent with CPU caches and furthermore the data is * cached in last-level caches shared between CPU cores and the GPU GT. * * I915_CACHING_DISPLAY: * * Special GPU caching mode which is coherent with the scanout engines. * Transparently falls back to I915_CACHING_NONE on platforms where no * special cache mode (like write-through or gfdt flushing) is * available. The kernel automatically sets this mode when using a * buffer as a scanout target. Userspace can manually set this mode to * avoid a costly stall and clflush in the hotpath of drawing the first * frame. */ #define I915_CACHING_NONE 0 #define I915_CACHING_CACHED 1 #define I915_CACHING_DISPLAY 2 __u32 caching; }; #define I915_TILING_NONE 0 #define I915_TILING_X 1 #define I915_TILING_Y 2 /* * Do not add new tiling types here. The I915_TILING_* values are for * de-tiling fence registers that no longer exist on modern platforms. Although * the hardware may support new types of tiling in general (e.g., Tile4), we * do not need to add them to the uapi that is specific to now-defunct ioctls. */ #define I915_TILING_LAST I915_TILING_Y #define I915_BIT_6_SWIZZLE_NONE 0 #define I915_BIT_6_SWIZZLE_9 1 #define I915_BIT_6_SWIZZLE_9_10 2 #define I915_BIT_6_SWIZZLE_9_11 3 #define I915_BIT_6_SWIZZLE_9_10_11 4 /* Not seen by userland */ #define I915_BIT_6_SWIZZLE_UNKNOWN 5 /* Seen by userland. */ #define I915_BIT_6_SWIZZLE_9_17 6 #define I915_BIT_6_SWIZZLE_9_10_17 7 struct drm_i915_gem_set_tiling { /** Handle of the buffer to have its tiling state updated */ __u32 handle; /** * Tiling mode for the object (I915_TILING_NONE, I915_TILING_X, * I915_TILING_Y). * * This value is to be set on request, and will be updated by the * kernel on successful return with the actual chosen tiling layout. * * The tiling mode may be demoted to I915_TILING_NONE when the system * has bit 6 swizzling that can't be managed correctly by GEM. * * Buffer contents become undefined when changing tiling_mode. */ __u32 tiling_mode; /** * Stride in bytes for the object when in I915_TILING_X or * I915_TILING_Y. */ __u32 stride; /** * Returned address bit 6 swizzling required for CPU access through * mmap mapping. */ __u32 swizzle_mode; }; struct drm_i915_gem_get_tiling { /** Handle of the buffer to get tiling state for. */ __u32 handle; /** * Current tiling mode for the object (I915_TILING_NONE, I915_TILING_X, * I915_TILING_Y). */ __u32 tiling_mode; /** * Returned address bit 6 swizzling required for CPU access through * mmap mapping. */ __u32 swizzle_mode; /** * Returned address bit 6 swizzling required for CPU access through * mmap mapping whilst bound. */ __u32 phys_swizzle_mode; }; struct drm_i915_gem_get_aperture { /** Total size of the aperture used by i915_gem_execbuffer, in bytes */ __u64 aper_size; /** * Available space in the aperture used by i915_gem_execbuffer, in * bytes */ __u64 aper_available_size; }; struct drm_i915_get_pipe_from_crtc_id { /** ID of CRTC being requested **/ __u32 crtc_id; /** pipe of requested CRTC **/ __u32 pipe; }; #define I915_MADV_WILLNEED 0 #define I915_MADV_DONTNEED 1 #define __I915_MADV_PURGED 2 /* internal state */ struct drm_i915_gem_madvise { /** Handle of the buffer to change the backing store advice */ __u32 handle; /* Advice: either the buffer will be needed again in the near future, * or won't be and could be discarded under memory pressure. */ __u32 madv; /** Whether the backing store still exists. */ __u32 retained; }; /* flags */ #define I915_OVERLAY_TYPE_MASK 0xff #define I915_OVERLAY_YUV_PLANAR 0x01 #define I915_OVERLAY_YUV_PACKED 0x02 #define I915_OVERLAY_RGB 0x03 #define I915_OVERLAY_DEPTH_MASK 0xff00 #define I915_OVERLAY_RGB24 0x1000 #define I915_OVERLAY_RGB16 0x2000 #define I915_OVERLAY_RGB15 0x3000 #define I915_OVERLAY_YUV422 0x0100 #define I915_OVERLAY_YUV411 0x0200 #define I915_OVERLAY_YUV420 0x0300 #define I915_OVERLAY_YUV410 0x0400 #define I915_OVERLAY_SWAP_MASK 0xff0000 #define I915_OVERLAY_NO_SWAP 0x000000 #define I915_OVERLAY_UV_SWAP 0x010000 #define I915_OVERLAY_Y_SWAP 0x020000 #define I915_OVERLAY_Y_AND_UV_SWAP 0x030000 #define I915_OVERLAY_FLAGS_MASK 0xff000000 #define I915_OVERLAY_ENABLE 0x01000000 struct drm_intel_overlay_put_image { /* various flags and src format description */ __u32 flags; /* source picture description */ __u32 bo_handle; /* stride values and offsets are in bytes, buffer relative */ __u16 stride_Y; /* stride for packed formats */ __u16 stride_UV; __u32 offset_Y; /* offset for packet formats */ __u32 offset_U; __u32 offset_V; /* in pixels */ __u16 src_width; __u16 src_height; /* to compensate the scaling factors for partially covered surfaces */ __u16 src_scan_width; __u16 src_scan_height; /* output crtc description */ __u32 crtc_id; __u16 dst_x; __u16 dst_y; __u16 dst_width; __u16 dst_height; }; /* flags */ #define I915_OVERLAY_UPDATE_ATTRS (1<<0) #define I915_OVERLAY_UPDATE_GAMMA (1<<1) #define I915_OVERLAY_DISABLE_DEST_COLORKEY (1<<2) struct drm_intel_overlay_attrs { __u32 flags; __u32 color_key; __s32 brightness; __u32 contrast; __u32 saturation; __u32 gamma0; __u32 gamma1; __u32 gamma2; __u32 gamma3; __u32 gamma4; __u32 gamma5; }; /* * Intel sprite handling * * Color keying works with a min/mask/max tuple. Both source and destination * color keying is allowed. * * Source keying: * Sprite pixels within the min & max values, masked against the color channels * specified in the mask field, will be transparent. All other pixels will * be displayed on top of the primary plane. For RGB surfaces, only the min * and mask fields will be used; ranged compares are not allowed. * * Destination keying: * Primary plane pixels that match the min value, masked against the color * channels specified in the mask field, will be replaced by corresponding * pixels from the sprite plane. * * Note that source & destination keying are exclusive; only one can be * active on a given plane. */ #define I915_SET_COLORKEY_NONE (1<<0) /* Deprecated. Instead set * flags==0 to disable colorkeying. */ #define I915_SET_COLORKEY_DESTINATION (1<<1) #define I915_SET_COLORKEY_SOURCE (1<<2) struct drm_intel_sprite_colorkey { __u32 plane_id; __u32 min_value; __u32 channel_mask; __u32 max_value; __u32 flags; }; struct drm_i915_gem_wait { /** Handle of BO we shall wait on */ __u32 bo_handle; __u32 flags; /** Number of nanoseconds to wait, Returns time remaining. */ __s64 timeout_ns; }; struct drm_i915_gem_context_create { __u32 ctx_id; /* output: id of new context*/ __u32 pad; }; /** * struct drm_i915_gem_context_create_ext - Structure for creating contexts. */ struct drm_i915_gem_context_create_ext { /** @ctx_id: Id of the created context (output) */ __u32 ctx_id; /** * @flags: Supported flags are: * * I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS: * * Extensions may be appended to this structure and driver must check * for those. See @extensions. * * I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE * * Created context will have single timeline. */ __u32 flags; #define I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS (1u << 0) #define I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE (1u << 1) #define I915_CONTEXT_CREATE_FLAGS_UNKNOWN \ (-(I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE << 1)) /** * @extensions: Zero-terminated chain of extensions. * * I915_CONTEXT_CREATE_EXT_SETPARAM: * Context parameter to set or query during context creation. * See struct drm_i915_gem_context_create_ext_setparam. * * I915_CONTEXT_CREATE_EXT_CLONE: * This extension has been removed. On the off chance someone somewhere * has attempted to use it, never re-use this extension number. */ __u64 extensions; #define I915_CONTEXT_CREATE_EXT_SETPARAM 0 #define I915_CONTEXT_CREATE_EXT_CLONE 1 }; /** * struct drm_i915_gem_context_param - Context parameter to set or query. */ struct drm_i915_gem_context_param { /** @ctx_id: Context id */ __u32 ctx_id; /** @size: Size of the parameter @value */ __u32 size; /** @param: Parameter to set or query */ __u64 param; #define I915_CONTEXT_PARAM_BAN_PERIOD 0x1 /* I915_CONTEXT_PARAM_NO_ZEROMAP has been removed. On the off chance * someone somewhere has attempted to use it, never re-use this context * param number. */ #define I915_CONTEXT_PARAM_NO_ZEROMAP 0x2 #define I915_CONTEXT_PARAM_GTT_SIZE 0x3 #define I915_CONTEXT_PARAM_NO_ERROR_CAPTURE 0x4 #define I915_CONTEXT_PARAM_BANNABLE 0x5 #define I915_CONTEXT_PARAM_PRIORITY 0x6 #define I915_CONTEXT_MAX_USER_PRIORITY 1023 /* inclusive */ #define I915_CONTEXT_DEFAULT_PRIORITY 0 #define I915_CONTEXT_MIN_USER_PRIORITY -1023 /* inclusive */ /* * When using the following param, value should be a pointer to * drm_i915_gem_context_param_sseu. */ #define I915_CONTEXT_PARAM_SSEU 0x7 /* * Not all clients may want to attempt automatic recover of a context after * a hang (for example, some clients may only submit very small incremental * batches relying on known logical state of previous batches which will never * recover correctly and each attempt will hang), and so would prefer that * the context is forever banned instead. * * If set to false (0), after a reset, subsequent (and in flight) rendering * from this context is discarded, and the client will need to create a new * context to use instead. * * If set to true (1), the kernel will automatically attempt to recover the * context by skipping the hanging batch and executing the next batch starting * from the default context state (discarding the incomplete logical context * state lost due to the reset). * * On creation, all new contexts are marked as recoverable. */ #define I915_CONTEXT_PARAM_RECOVERABLE 0x8 /* * The id of the associated virtual memory address space (ppGTT) of * this context. Can be retrieved and passed to another context * (on the same fd) for both to use the same ppGTT and so share * address layouts, and avoid reloading the page tables on context * switches between themselves. * * See DRM_I915_GEM_VM_CREATE and DRM_I915_GEM_VM_DESTROY. */ #define I915_CONTEXT_PARAM_VM 0x9 /* * I915_CONTEXT_PARAM_ENGINES: * * Bind this context to operate on this subset of available engines. Henceforth, * the I915_EXEC_RING selector for DRM_IOCTL_I915_GEM_EXECBUFFER2 operates as * an index into this array of engines; I915_EXEC_DEFAULT selecting engine[0] * and upwards. Slots 0...N are filled in using the specified (class, instance). * Use * engine_class: I915_ENGINE_CLASS_INVALID, * engine_instance: I915_ENGINE_CLASS_INVALID_NONE * to specify a gap in the array that can be filled in later, e.g. by a * virtual engine used for load balancing. * * Setting the number of engines bound to the context to 0, by passing a zero * sized argument, will revert back to default settings. * * See struct i915_context_param_engines. * * Extensions: * i915_context_engines_load_balance (I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE) * i915_context_engines_bond (I915_CONTEXT_ENGINES_EXT_BOND) * i915_context_engines_parallel_submit (I915_CONTEXT_ENGINES_EXT_PARALLEL_SUBMIT) */ #define I915_CONTEXT_PARAM_ENGINES 0xa /* * I915_CONTEXT_PARAM_PERSISTENCE: * * Allow the context and active rendering to survive the process until * completion. Persistence allows fire-and-forget clients to queue up a * bunch of work, hand the output over to a display server and then quit. * If the context is marked as not persistent, upon closing (either via * an explicit DRM_I915_GEM_CONTEXT_DESTROY or implicitly from file closure * or process termination), the context and any outstanding requests will be * cancelled (and exported fences for cancelled requests marked as -EIO). * * By default, new contexts allow persistence. */ #define I915_CONTEXT_PARAM_PERSISTENCE 0xb /* This API has been removed. On the off chance someone somewhere has * attempted to use it, never re-use this context param number. */ #define I915_CONTEXT_PARAM_RINGSIZE 0xc /* * I915_CONTEXT_PARAM_PROTECTED_CONTENT: * * Mark that the context makes use of protected content, which will result * in the context being invalidated when the protected content session is. * Given that the protected content session is killed on suspend, the device * is kept awake for the lifetime of a protected context, so the user should * make sure to dispose of them once done. * This flag can only be set at context creation time and, when set to true, * must be preceded by an explicit setting of I915_CONTEXT_PARAM_RECOVERABLE * to false. This flag can't be set to true in conjunction with setting the * I915_CONTEXT_PARAM_BANNABLE flag to false. Creation example: * * .. code-block:: C * * struct drm_i915_gem_context_create_ext_setparam p_protected = { * .base = { * .name = I915_CONTEXT_CREATE_EXT_SETPARAM, * }, * .param = { * .param = I915_CONTEXT_PARAM_PROTECTED_CONTENT, * .value = 1, * } * }; * struct drm_i915_gem_context_create_ext_setparam p_norecover = { * .base = { * .name = I915_CONTEXT_CREATE_EXT_SETPARAM, * .next_extension = to_user_pointer(&p_protected), * }, * .param = { * .param = I915_CONTEXT_PARAM_RECOVERABLE, * .value = 0, * } * }; * struct drm_i915_gem_context_create_ext create = { * .flags = I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS, * .extensions = to_user_pointer(&p_norecover); * }; * * ctx_id = gem_context_create_ext(drm_fd, &create); * * In addition to the normal failure cases, setting this flag during context * creation can result in the following errors: * * -ENODEV: feature not available * -EPERM: trying to mark a recoverable or not bannable context as protected * -ENXIO: A dependency such as a component driver or firmware is not yet * loaded so user space may need to attempt again. Depending on the * device, this error may be reported if protected context creation is * attempted very early after kernel start because the internal timeout * waiting for such dependencies is not guaranteed to be larger than * required (numbers differ depending on system and kernel config): * - ADL/RPL: dependencies may take up to 3 seconds from kernel start * while context creation internal timeout is 250 milisecs * - MTL: dependencies may take up to 8 seconds from kernel start * while context creation internal timeout is 250 milisecs * NOTE: such dependencies happen once, so a subsequent call to create a * protected context after a prior successful call will not experience * such timeouts and will not return -ENXIO (unless the driver is reloaded, * or, depending on the device, resumes from a suspended state). * -EIO: The firmware did not succeed in creating the protected context. */ #define I915_CONTEXT_PARAM_PROTECTED_CONTENT 0xd /* Must be kept compact -- no holes and well documented */ /** @value: Context parameter value to be set or queried */ __u64 value; }; /* * Context SSEU programming * * It may be necessary for either functional or performance reason to configure * a context to run with a reduced number of SSEU (where SSEU stands for Slice/ * Sub-slice/EU). * * This is done by configuring SSEU configuration using the below * @struct drm_i915_gem_context_param_sseu for every supported engine which * userspace intends to use. * * Not all GPUs or engines support this functionality in which case an error * code -ENODEV will be returned. * * Also, flexibility of possible SSEU configuration permutations varies between * GPU generations and software imposed limitations. Requesting such a * combination will return an error code of -EINVAL. * * NOTE: When perf/OA is active the context's SSEU configuration is ignored in * favour of a single global setting. */ struct drm_i915_gem_context_param_sseu { /* * Engine class & instance to be configured or queried. */ struct i915_engine_class_instance engine; /* * Unknown flags must be cleared to zero. */ __u32 flags; #define I915_CONTEXT_SSEU_FLAG_ENGINE_INDEX (1u << 0) /* * Mask of slices to enable for the context. Valid values are a subset * of the bitmask value returned for I915_PARAM_SLICE_MASK. */ __u64 slice_mask; /* * Mask of subslices to enable for the context. Valid values are a * subset of the bitmask value return by I915_PARAM_SUBSLICE_MASK. */ __u64 subslice_mask; /* * Minimum/Maximum number of EUs to enable per subslice for the * context. min_eus_per_subslice must be inferior or equal to * max_eus_per_subslice. */ __u16 min_eus_per_subslice; __u16 max_eus_per_subslice; /* * Unused for now. Must be cleared to zero. */ __u32 rsvd; }; /** * DOC: Virtual Engine uAPI * * Virtual engine is a concept where userspace is able to configure a set of * physical engines, submit a batch buffer, and let the driver execute it on any * engine from the set as it sees fit. * * This is primarily useful on parts which have multiple instances of a same * class engine, like for example GT3+ Skylake parts with their two VCS engines. * * For instance userspace can enumerate all engines of a certain class using the * previously described `Engine Discovery uAPI`_. After that userspace can * create a GEM context with a placeholder slot for the virtual engine (using * `I915_ENGINE_CLASS_INVALID` and `I915_ENGINE_CLASS_INVALID_NONE` for class * and instance respectively) and finally using the * `I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE` extension place a virtual engine in * the same reserved slot. * * Example of creating a virtual engine and submitting a batch buffer to it: * * .. code-block:: C * * I915_DEFINE_CONTEXT_ENGINES_LOAD_BALANCE(virtual, 2) = { * .base.name = I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE, * .engine_index = 0, // Place this virtual engine into engine map slot 0 * .num_siblings = 2, * .engines = { { I915_ENGINE_CLASS_VIDEO, 0 }, * { I915_ENGINE_CLASS_VIDEO, 1 }, }, * }; * I915_DEFINE_CONTEXT_PARAM_ENGINES(engines, 1) = { * .engines = { { I915_ENGINE_CLASS_INVALID, * I915_ENGINE_CLASS_INVALID_NONE } }, * .extensions = to_user_pointer(&virtual), // Chains after load_balance extension * }; * struct drm_i915_gem_context_create_ext_setparam p_engines = { * .base = { * .name = I915_CONTEXT_CREATE_EXT_SETPARAM, * }, * .param = { * .param = I915_CONTEXT_PARAM_ENGINES, * .value = to_user_pointer(&engines), * .size = sizeof(engines), * }, * }; * struct drm_i915_gem_context_create_ext create = { * .flags = I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS, * .extensions = to_user_pointer(&p_engines); * }; * * ctx_id = gem_context_create_ext(drm_fd, &create); * * // Now we have created a GEM context with its engine map containing a * // single virtual engine. Submissions to this slot can go either to * // vcs0 or vcs1, depending on the load balancing algorithm used inside * // the driver. The load balancing is dynamic from one batch buffer to * // another and transparent to userspace. * * ... * execbuf.rsvd1 = ctx_id; * execbuf.flags = 0; // Submits to index 0 which is the virtual engine * gem_execbuf(drm_fd, &execbuf); */ /* * i915_context_engines_load_balance: * * Enable load balancing across this set of engines. * * Into the I915_EXEC_DEFAULT slot [0], a virtual engine is created that when * used will proxy the execbuffer request onto one of the set of engines * in such a way as to distribute the load evenly across the set. * * The set of engines must be compatible (e.g. the same HW class) as they * will share the same logical GPU context and ring. * * To intermix rendering with the virtual engine and direct rendering onto * the backing engines (bypassing the load balancing proxy), the context must * be defined to use a single timeline for all engines. */ struct i915_context_engines_load_balance { struct i915_user_extension base; __u16 engine_index; __u16 num_siblings; __u32 flags; /* all undefined flags must be zero */ __u64 mbz64; /* reserved for future use; must be zero */ struct i915_engine_class_instance engines[]; } __attribute__((packed)); #define I915_DEFINE_CONTEXT_ENGINES_LOAD_BALANCE(name__, N__) struct { \ struct i915_user_extension base; \ __u16 engine_index; \ __u16 num_siblings; \ __u32 flags; \ __u64 mbz64; \ struct i915_engine_class_instance engines[N__]; \ } __attribute__((packed)) name__ /* * i915_context_engines_bond: * * Constructed bonded pairs for execution within a virtual engine. * * All engines are equal, but some are more equal than others. Given * the distribution of resources in the HW, it may be preferable to run * a request on a given subset of engines in parallel to a request on a * specific engine. We enable this selection of engines within a virtual * engine by specifying bonding pairs, for any given master engine we will * only execute on one of the corresponding siblings within the virtual engine. * * To execute a request in parallel on the master engine and a sibling requires * coordination with a I915_EXEC_FENCE_SUBMIT. */ struct i915_context_engines_bond { struct i915_user_extension base; struct i915_engine_class_instance master; __u16 virtual_index; /* index of virtual engine in ctx->engines[] */ __u16 num_bonds; __u64 flags; /* all undefined flags must be zero */ __u64 mbz64[4]; /* reserved for future use; must be zero */ struct i915_engine_class_instance engines[]; } __attribute__((packed)); #define I915_DEFINE_CONTEXT_ENGINES_BOND(name__, N__) struct { \ struct i915_user_extension base; \ struct i915_engine_class_instance master; \ __u16 virtual_index; \ __u16 num_bonds; \ __u64 flags; \ __u64 mbz64[4]; \ struct i915_engine_class_instance engines[N__]; \ } __attribute__((packed)) name__ /** * struct i915_context_engines_parallel_submit - Configure engine for * parallel submission. * * Setup a slot in the context engine map to allow multiple BBs to be submitted * in a single execbuf IOCTL. Those BBs will then be scheduled to run on the GPU * in parallel. Multiple hardware contexts are created internally in the i915 to * run these BBs. Once a slot is configured for N BBs only N BBs can be * submitted in each execbuf IOCTL and this is implicit behavior e.g. The user * doesn't tell the execbuf IOCTL there are N BBs, the execbuf IOCTL knows how * many BBs there are based on the slot's configuration. The N BBs are the last * N buffer objects or first N if I915_EXEC_BATCH_FIRST is set. * * The default placement behavior is to create implicit bonds between each * context if each context maps to more than 1 physical engine (e.g. context is * a virtual engine). Also we only allow contexts of same engine class and these * contexts must be in logically contiguous order. Examples of the placement * behavior are described below. Lastly, the default is to not allow BBs to be * preempted mid-batch. Rather insert coordinated preemption points on all * hardware contexts between each set of BBs. Flags could be added in the future * to change both of these default behaviors. * * Returns -EINVAL if hardware context placement configuration is invalid or if * the placement configuration isn't supported on the platform / submission * interface. * Returns -ENODEV if extension isn't supported on the platform / submission * interface. * * .. code-block:: none * * Examples syntax: * CS[X] = generic engine of same class, logical instance X * INVALID = I915_ENGINE_CLASS_INVALID, I915_ENGINE_CLASS_INVALID_NONE * * Example 1 pseudo code: * set_engines(INVALID) * set_parallel(engine_index=0, width=2, num_siblings=1, * engines=CS[0],CS[1]) * * Results in the following valid placement: * CS[0], CS[1] * * Example 2 pseudo code: * set_engines(INVALID) * set_parallel(engine_index=0, width=2, num_siblings=2, * engines=CS[0],CS[2],CS[1],CS[3]) * * Results in the following valid placements: * CS[0], CS[1] * CS[2], CS[3] * * This can be thought of as two virtual engines, each containing two * engines thereby making a 2D array. However, there are bonds tying the * entries together and placing restrictions on how they can be scheduled. * Specifically, the scheduler can choose only vertical columns from the 2D * array. That is, CS[0] is bonded to CS[1] and CS[2] to CS[3]. So if the * scheduler wants to submit to CS[0], it must also choose CS[1] and vice * versa. Same for CS[2] requires also using CS[3]. * VE[0] = CS[0], CS[2] * VE[1] = CS[1], CS[3] * * Example 3 pseudo code: * set_engines(INVALID) * set_parallel(engine_index=0, width=2, num_siblings=2, * engines=CS[0],CS[1],CS[1],CS[3]) * * Results in the following valid and invalid placements: * CS[0], CS[1] * CS[1], CS[3] - Not logically contiguous, return -EINVAL */ struct i915_context_engines_parallel_submit { /** * @base: base user extension. */ struct i915_user_extension base; /** * @engine_index: slot for parallel engine */ __u16 engine_index; /** * @width: number of contexts per parallel engine or in other words the * number of batches in each submission */ __u16 width; /** * @num_siblings: number of siblings per context or in other words the * number of possible placements for each submission */ __u16 num_siblings; /** * @mbz16: reserved for future use; must be zero */ __u16 mbz16; /** * @flags: all undefined flags must be zero, currently not defined flags */ __u64 flags; /** * @mbz64: reserved for future use; must be zero */ __u64 mbz64[3]; /** * @engines: 2-d array of engine instances to configure parallel engine * * length = width (i) * num_siblings (j) * index = j + i * num_siblings */ struct i915_engine_class_instance engines[]; } __attribute__((packed)); #define I915_DEFINE_CONTEXT_ENGINES_PARALLEL_SUBMIT(name__, N__) struct { \ struct i915_user_extension base; \ __u16 engine_index; \ __u16 width; \ __u16 num_siblings; \ __u16 mbz16; \ __u64 flags; \ __u64 mbz64[3]; \ struct i915_engine_class_instance engines[N__]; \ } __attribute__((packed)) name__ /** * DOC: Context Engine Map uAPI * * Context engine map is a new way of addressing engines when submitting batch- * buffers, replacing the existing way of using identifiers like `I915_EXEC_BLT` * inside the flags field of `struct drm_i915_gem_execbuffer2`. * * To use it created GEM contexts need to be configured with a list of engines * the user is intending to submit to. This is accomplished using the * `I915_CONTEXT_PARAM_ENGINES` parameter and `struct * i915_context_param_engines`. * * For such contexts the `I915_EXEC_RING_MASK` field becomes an index into the * configured map. * * Example of creating such context and submitting against it: * * .. code-block:: C * * I915_DEFINE_CONTEXT_PARAM_ENGINES(engines, 2) = { * .engines = { { I915_ENGINE_CLASS_RENDER, 0 }, * { I915_ENGINE_CLASS_COPY, 0 } } * }; * struct drm_i915_gem_context_create_ext_setparam p_engines = { * .base = { * .name = I915_CONTEXT_CREATE_EXT_SETPARAM, * }, * .param = { * .param = I915_CONTEXT_PARAM_ENGINES, * .value = to_user_pointer(&engines), * .size = sizeof(engines), * }, * }; * struct drm_i915_gem_context_create_ext create = { * .flags = I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS, * .extensions = to_user_pointer(&p_engines); * }; * * ctx_id = gem_context_create_ext(drm_fd, &create); * * // We have now created a GEM context with two engines in the map: * // Index 0 points to rcs0 while index 1 points to bcs0. Other engines * // will not be accessible from this context. * * ... * execbuf.rsvd1 = ctx_id; * execbuf.flags = 0; // Submits to index 0, which is rcs0 for this context * gem_execbuf(drm_fd, &execbuf); * * ... * execbuf.rsvd1 = ctx_id; * execbuf.flags = 1; // Submits to index 0, which is bcs0 for this context * gem_execbuf(drm_fd, &execbuf); */ struct i915_context_param_engines { __u64 extensions; /* linked chain of extension blocks, 0 terminates */ #define I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE 0 /* see i915_context_engines_load_balance */ #define I915_CONTEXT_ENGINES_EXT_BOND 1 /* see i915_context_engines_bond */ #define I915_CONTEXT_ENGINES_EXT_PARALLEL_SUBMIT 2 /* see i915_context_engines_parallel_submit */ struct i915_engine_class_instance engines[]; } __attribute__((packed)); #define I915_DEFINE_CONTEXT_PARAM_ENGINES(name__, N__) struct { \ __u64 extensions; \ struct i915_engine_class_instance engines[N__]; \ } __attribute__((packed)) name__ /** * struct drm_i915_gem_context_create_ext_setparam - Context parameter * to set or query during context creation. */ struct drm_i915_gem_context_create_ext_setparam { /** @base: Extension link. See struct i915_user_extension. */ struct i915_user_extension base; /** * @param: Context parameter to set or query. * See struct drm_i915_gem_context_param. */ struct drm_i915_gem_context_param param; }; struct drm_i915_gem_context_destroy { __u32 ctx_id; __u32 pad; }; /** * struct drm_i915_gem_vm_control - Structure to create or destroy VM. * * DRM_I915_GEM_VM_CREATE - * * Create a new virtual memory address space (ppGTT) for use within a context * on the same file. Extensions can be provided to configure exactly how the * address space is setup upon creation. * * The id of new VM (bound to the fd) for use with I915_CONTEXT_PARAM_VM is * returned in the outparam @id. * * An extension chain maybe provided, starting with @extensions, and terminated * by the @next_extension being 0. Currently, no extensions are defined. * * DRM_I915_GEM_VM_DESTROY - * * Destroys a previously created VM id, specified in @vm_id. * * No extensions or flags are allowed currently, and so must be zero. */ struct drm_i915_gem_vm_control { /** @extensions: Zero-terminated chain of extensions. */ __u64 extensions; /** @flags: reserved for future usage, currently MBZ */ __u32 flags; /** @vm_id: Id of the VM created or to be destroyed */ __u32 vm_id; }; struct drm_i915_reg_read { /* * Register offset. * For 64bit wide registers where the upper 32bits don't immediately * follow the lower 32bits, the offset of the lower 32bits must * be specified */ __u64 offset; #define I915_REG_READ_8B_WA (1ul << 0) __u64 val; /* Return value */ }; /* Known registers: * * Render engine timestamp - 0x2358 + 64bit - gen7+ * - Note this register returns an invalid value if using the default * single instruction 8byte read, in order to workaround that pass * flag I915_REG_READ_8B_WA in offset field. * */ struct drm_i915_reset_stats { __u32 ctx_id; __u32 flags; /* All resets since boot/module reload, for all contexts */ __u32 reset_count; /* Number of batches lost when active in GPU, for this context */ __u32 batch_active; /* Number of batches lost pending for execution, for this context */ __u32 batch_pending; __u32 pad; }; /** * struct drm_i915_gem_userptr - Create GEM object from user allocated memory. * * Userptr objects have several restrictions on what ioctls can be used with the * object handle. */ struct drm_i915_gem_userptr { /** * @user_ptr: The pointer to the allocated memory. * * Needs to be aligned to PAGE_SIZE. */ __u64 user_ptr; /** * @user_size: * * The size in bytes for the allocated memory. This will also become the * object size. * * Needs to be aligned to PAGE_SIZE, and should be at least PAGE_SIZE, * or larger. */ __u64 user_size; /** * @flags: * * Supported flags: * * I915_USERPTR_READ_ONLY: * * Mark the object as readonly, this also means GPU access can only be * readonly. This is only supported on HW which supports readonly access * through the GTT. If the HW can't support readonly access, an error is * returned. * * I915_USERPTR_PROBE: * * Probe the provided @user_ptr range and validate that the @user_ptr is * indeed pointing to normal memory and that the range is also valid. * For example if some garbage address is given to the kernel, then this * should complain. * * Returns -EFAULT if the probe failed. * * Note that this doesn't populate the backing pages, and also doesn't * guarantee that the object will remain valid when the object is * eventually used. * * The kernel supports this feature if I915_PARAM_HAS_USERPTR_PROBE * returns a non-zero value. * * I915_USERPTR_UNSYNCHRONIZED: * * NOT USED. Setting this flag will result in an error. */ __u32 flags; #define I915_USERPTR_READ_ONLY 0x1 #define I915_USERPTR_PROBE 0x2 #define I915_USERPTR_UNSYNCHRONIZED 0x80000000 /** * @handle: Returned handle for the object. * * Object handles are nonzero. */ __u32 handle; }; enum drm_i915_oa_format { I915_OA_FORMAT_A13 = 1, /* HSW only */ I915_OA_FORMAT_A29, /* HSW only */ I915_OA_FORMAT_A13_B8_C8, /* HSW only */ I915_OA_FORMAT_B4_C8, /* HSW only */ I915_OA_FORMAT_A45_B8_C8, /* HSW only */ I915_OA_FORMAT_B4_C8_A16, /* HSW only */ I915_OA_FORMAT_C4_B8, /* HSW+ */ /* Gen8+ */ I915_OA_FORMAT_A12, I915_OA_FORMAT_A12_B8_C8, I915_OA_FORMAT_A32u40_A4u32_B8_C8, /* DG2 */ I915_OAR_FORMAT_A32u40_A4u32_B8_C8, I915_OA_FORMAT_A24u40_A14u32_B8_C8, /* MTL OAM */ I915_OAM_FORMAT_MPEC8u64_B8_C8, I915_OAM_FORMAT_MPEC8u32_B8_C8, I915_OA_FORMAT_MAX /* non-ABI */ }; enum drm_i915_perf_property_id { /** * Open the stream for a specific context handle (as used with * execbuffer2). A stream opened for a specific context this way * won't typically require root privileges. * * This property is available in perf revision 1. */ DRM_I915_PERF_PROP_CTX_HANDLE = 1, /** * A value of 1 requests the inclusion of raw OA unit reports as * part of stream samples. * * This property is available in perf revision 1. */ DRM_I915_PERF_PROP_SAMPLE_OA, /** * The value specifies which set of OA unit metrics should be * configured, defining the contents of any OA unit reports. * * This property is available in perf revision 1. */ DRM_I915_PERF_PROP_OA_METRICS_SET, /** * The value specifies the size and layout of OA unit reports. * * This property is available in perf revision 1. */ DRM_I915_PERF_PROP_OA_FORMAT, /** * Specifying this property implicitly requests periodic OA unit * sampling and (at least on Haswell) the sampling frequency is derived * from this exponent as follows: * * 80ns * 2^(period_exponent + 1) * * This property is available in perf revision 1. */ DRM_I915_PERF_PROP_OA_EXPONENT, /** * Specifying this property is only valid when specify a context to * filter with DRM_I915_PERF_PROP_CTX_HANDLE. Specifying this property * will hold preemption of the particular context we want to gather * performance data about. The execbuf2 submissions must include a * drm_i915_gem_execbuffer_ext_perf parameter for this to apply. * * This property is available in perf revision 3. */ DRM_I915_PERF_PROP_HOLD_PREEMPTION, /** * Specifying this pins all contexts to the specified SSEU power * configuration for the duration of the recording. * * This parameter's value is a pointer to a struct * drm_i915_gem_context_param_sseu. * * This property is available in perf revision 4. */ DRM_I915_PERF_PROP_GLOBAL_SSEU, /** * This optional parameter specifies the timer interval in nanoseconds * at which the i915 driver will check the OA buffer for available data. * Minimum allowed value is 100 microseconds. A default value is used by * the driver if this parameter is not specified. Note that larger timer * values will reduce cpu consumption during OA perf captures. However, * excessively large values would potentially result in OA buffer * overwrites as captures reach end of the OA buffer. * * This property is available in perf revision 5. */ DRM_I915_PERF_PROP_POLL_OA_PERIOD, /** * Multiple engines may be mapped to the same OA unit. The OA unit is * identified by class:instance of any engine mapped to it. * * This parameter specifies the engine class and must be passed along * with DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE. * * This property is available in perf revision 6. */ DRM_I915_PERF_PROP_OA_ENGINE_CLASS, /** * This parameter specifies the engine instance and must be passed along * with DRM_I915_PERF_PROP_OA_ENGINE_CLASS. * * This property is available in perf revision 6. */ DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE, DRM_I915_PERF_PROP_MAX /* non-ABI */ }; struct drm_i915_perf_open_param { __u32 flags; #define I915_PERF_FLAG_FD_CLOEXEC (1<<0) #define I915_PERF_FLAG_FD_NONBLOCK (1<<1) #define I915_PERF_FLAG_DISABLED (1<<2) /** The number of u64 (id, value) pairs */ __u32 num_properties; /** * Pointer to array of u64 (id, value) pairs configuring the stream * to open. */ __u64 properties_ptr; }; /* * Enable data capture for a stream that was either opened in a disabled state * via I915_PERF_FLAG_DISABLED or was later disabled via * I915_PERF_IOCTL_DISABLE. * * It is intended to be cheaper to disable and enable a stream than it may be * to close and re-open a stream with the same configuration. * * It's undefined whether any pending data for the stream will be lost. * * This ioctl is available in perf revision 1. */ #define I915_PERF_IOCTL_ENABLE _IO('i', 0x0) /* * Disable data capture for a stream. * * It is an error to try and read a stream that is disabled. * * This ioctl is available in perf revision 1. */ #define I915_PERF_IOCTL_DISABLE _IO('i', 0x1) /* * Change metrics_set captured by a stream. * * If the stream is bound to a specific context, the configuration change * will performed __inline__ with that context such that it takes effect before * the next execbuf submission. * * Returns the previously bound metrics set id, or a negative error code. * * This ioctl is available in perf revision 2. */ #define I915_PERF_IOCTL_CONFIG _IO('i', 0x2) /* * Common to all i915 perf records */ struct drm_i915_perf_record_header { __u32 type; __u16 pad; __u16 size; }; enum drm_i915_perf_record_type { /** * Samples are the work horse record type whose contents are extensible * and defined when opening an i915 perf stream based on the given * properties. * * Boolean properties following the naming convention * DRM_I915_PERF_SAMPLE_xyz_PROP request the inclusion of 'xyz' data in * every sample. * * The order of these sample properties given by userspace has no * affect on the ordering of data within a sample. The order is * documented here. * * struct { * struct drm_i915_perf_record_header header; * * { u32 oa_report[]; } && DRM_I915_PERF_PROP_SAMPLE_OA * }; */ DRM_I915_PERF_RECORD_SAMPLE = 1, /* * Indicates that one or more OA reports were not written by the * hardware. This can happen for example if an MI_REPORT_PERF_COUNT * command collides with periodic sampling - which would be more likely * at higher sampling frequencies. */ DRM_I915_PERF_RECORD_OA_REPORT_LOST = 2, /** * An error occurred that resulted in all pending OA reports being lost. */ DRM_I915_PERF_RECORD_OA_BUFFER_LOST = 3, DRM_I915_PERF_RECORD_MAX /* non-ABI */ }; /** * struct drm_i915_perf_oa_config * * Structure to upload perf dynamic configuration into the kernel. */ struct drm_i915_perf_oa_config { /** * @uuid: * * String formatted like "%\08x-%\04x-%\04x-%\04x-%\012x" */ char uuid[36]; /** * @n_mux_regs: * * Number of mux regs in &mux_regs_ptr. */ __u32 n_mux_regs; /** * @n_boolean_regs: * * Number of boolean regs in &boolean_regs_ptr. */ __u32 n_boolean_regs; /** * @n_flex_regs: * * Number of flex regs in &flex_regs_ptr. */ __u32 n_flex_regs; /** * @mux_regs_ptr: * * Pointer to tuples of u32 values (register address, value) for mux * registers. Expected length of buffer is (2 * sizeof(u32) * * &n_mux_regs). */ __u64 mux_regs_ptr; /** * @boolean_regs_ptr: * * Pointer to tuples of u32 values (register address, value) for mux * registers. Expected length of buffer is (2 * sizeof(u32) * * &n_boolean_regs). */ __u64 boolean_regs_ptr; /** * @flex_regs_ptr: * * Pointer to tuples of u32 values (register address, value) for mux * registers. Expected length of buffer is (2 * sizeof(u32) * * &n_flex_regs). */ __u64 flex_regs_ptr; }; /** * struct drm_i915_query_item - An individual query for the kernel to process. * * The behaviour is determined by the @query_id. Note that exactly what * @data_ptr is also depends on the specific @query_id. */ struct drm_i915_query_item { /** * @query_id: * * The id for this query. Currently accepted query IDs are: * - %DRM_I915_QUERY_TOPOLOGY_INFO (see struct drm_i915_query_topology_info) * - %DRM_I915_QUERY_ENGINE_INFO (see struct drm_i915_engine_info) * - %DRM_I915_QUERY_PERF_CONFIG (see struct drm_i915_query_perf_config) * - %DRM_I915_QUERY_MEMORY_REGIONS (see struct drm_i915_query_memory_regions) * - %DRM_I915_QUERY_HWCONFIG_BLOB (see `GuC HWCONFIG blob uAPI`) * - %DRM_I915_QUERY_GEOMETRY_SUBSLICES (see struct drm_i915_query_topology_info) * - %DRM_I915_QUERY_GUC_SUBMISSION_VERSION (see struct drm_i915_query_guc_submission_version) */ __u64 query_id; #define DRM_I915_QUERY_TOPOLOGY_INFO 1 #define DRM_I915_QUERY_ENGINE_INFO 2 #define DRM_I915_QUERY_PERF_CONFIG 3 #define DRM_I915_QUERY_MEMORY_REGIONS 4 #define DRM_I915_QUERY_HWCONFIG_BLOB 5 #define DRM_I915_QUERY_GEOMETRY_SUBSLICES 6 #define DRM_I915_QUERY_GUC_SUBMISSION_VERSION 7 /* Must be kept compact -- no holes and well documented */ /** * @length: * * When set to zero by userspace, this is filled with the size of the * data to be written at the @data_ptr pointer. The kernel sets this * value to a negative value to signal an error on a particular query * item. */ __s32 length; /** * @flags: * * When &query_id == %DRM_I915_QUERY_TOPOLOGY_INFO, must be 0. * * When &query_id == %DRM_I915_QUERY_PERF_CONFIG, must be one of the * following: * * - %DRM_I915_QUERY_PERF_CONFIG_LIST * - %DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID * - %DRM_I915_QUERY_PERF_CONFIG_FOR_UUID * * When &query_id == %DRM_I915_QUERY_GEOMETRY_SUBSLICES must contain * a struct i915_engine_class_instance that references a render engine. */ __u32 flags; #define DRM_I915_QUERY_PERF_CONFIG_LIST 1 #define DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID 2 #define DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_ID 3 /** * @data_ptr: * * Data will be written at the location pointed by @data_ptr when the * value of @length matches the length of the data to be written by the * kernel. */ __u64 data_ptr; }; /** * struct drm_i915_query - Supply an array of struct drm_i915_query_item for the * kernel to fill out. * * Note that this is generally a two step process for each struct * drm_i915_query_item in the array: * * 1. Call the DRM_IOCTL_I915_QUERY, giving it our array of struct * drm_i915_query_item, with &drm_i915_query_item.length set to zero. The * kernel will then fill in the size, in bytes, which tells userspace how * memory it needs to allocate for the blob(say for an array of properties). * * 2. Next we call DRM_IOCTL_I915_QUERY again, this time with the * &drm_i915_query_item.data_ptr equal to our newly allocated blob. Note that * the &drm_i915_query_item.length should still be the same as what the * kernel previously set. At this point the kernel can fill in the blob. * * Note that for some query items it can make sense for userspace to just pass * in a buffer/blob equal to or larger than the required size. In this case only * a single ioctl call is needed. For some smaller query items this can work * quite well. * */ struct drm_i915_query { /** @num_items: The number of elements in the @items_ptr array */ __u32 num_items; /** * @flags: Unused for now. Must be cleared to zero. */ __u32 flags; /** * @items_ptr: * * Pointer to an array of struct drm_i915_query_item. The number of * array elements is @num_items. */ __u64 items_ptr; }; /** * struct drm_i915_query_topology_info * * Describes slice/subslice/EU information queried by * %DRM_I915_QUERY_TOPOLOGY_INFO */ struct drm_i915_query_topology_info { /** * @flags: * * Unused for now. Must be cleared to zero. */ __u16 flags; /** * @max_slices: * * The number of bits used to express the slice mask. */ __u16 max_slices; /** * @max_subslices: * * The number of bits used to express the subslice mask. */ __u16 max_subslices; /** * @max_eus_per_subslice: * * The number of bits in the EU mask that correspond to a single * subslice's EUs. */ __u16 max_eus_per_subslice; /** * @subslice_offset: * * Offset in data[] at which the subslice masks are stored. */ __u16 subslice_offset; /** * @subslice_stride: * * Stride at which each of the subslice masks for each slice are * stored. */ __u16 subslice_stride; /** * @eu_offset: * * Offset in data[] at which the EU masks are stored. */ __u16 eu_offset; /** * @eu_stride: * * Stride at which each of the EU masks for each subslice are stored. */ __u16 eu_stride; /** * @data: * * Contains 3 pieces of information : * * - The slice mask with one bit per slice telling whether a slice is * available. The availability of slice X can be queried with the * following formula : * * .. code:: c * * (data[X / 8] >> (X % 8)) & 1 * * Starting with Xe_HP platforms, Intel hardware no longer has * traditional slices so i915 will always report a single slice * (hardcoded slicemask = 0x1) which contains all of the platform's * subslices. I.e., the mask here does not reflect any of the newer * hardware concepts such as "gslices" or "cslices" since userspace * is capable of inferring those from the subslice mask. * * - The subslice mask for each slice with one bit per subslice telling * whether a subslice is available. Starting with Gen12 we use the * term "subslice" to refer to what the hardware documentation * describes as a "dual-subslices." The availability of subslice Y * in slice X can be queried with the following formula : * * .. code:: c * * (data[subslice_offset + X * subslice_stride + Y / 8] >> (Y % 8)) & 1 * * - The EU mask for each subslice in each slice, with one bit per EU * telling whether an EU is available. The availability of EU Z in * subslice Y in slice X can be queried with the following formula : * * .. code:: c * * (data[eu_offset + * (X * max_subslices + Y) * eu_stride + * Z / 8 * ] >> (Z % 8)) & 1 */ __u8 data[]; }; /** * DOC: Engine Discovery uAPI * * Engine discovery uAPI is a way of enumerating physical engines present in a * GPU associated with an open i915 DRM file descriptor. This supersedes the old * way of using `DRM_IOCTL_I915_GETPARAM` and engine identifiers like * `I915_PARAM_HAS_BLT`. * * The need for this interface came starting with Icelake and newer GPUs, which * started to establish a pattern of having multiple engines of a same class, * where not all instances were always completely functionally equivalent. * * Entry point for this uapi is `DRM_IOCTL_I915_QUERY` with the * `DRM_I915_QUERY_ENGINE_INFO` as the queried item id. * * Example for getting the list of engines: * * .. code-block:: C * * struct drm_i915_query_engine_info *info; * struct drm_i915_query_item item = { * .query_id = DRM_I915_QUERY_ENGINE_INFO; * }; * struct drm_i915_query query = { * .num_items = 1, * .items_ptr = (uintptr_t)&item, * }; * int err, i; * * // First query the size of the blob we need, this needs to be large * // enough to hold our array of engines. The kernel will fill out the * // item.length for us, which is the number of bytes we need. * // * // Alternatively a large buffer can be allocated straightaway enabling * // querying in one pass, in which case item.length should contain the * // length of the provided buffer. * err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query); * if (err) ... * * info = calloc(1, item.length); * // Now that we allocated the required number of bytes, we call the ioctl * // again, this time with the data_ptr pointing to our newly allocated * // blob, which the kernel can then populate with info on all engines. * item.data_ptr = (uintptr_t)&info; * * err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query); * if (err) ... * * // We can now access each engine in the array * for (i = 0; i < info->num_engines; i++) { * struct drm_i915_engine_info einfo = info->engines[i]; * u16 class = einfo.engine.class; * u16 instance = einfo.engine.instance; * .... * } * * free(info); * * Each of the enumerated engines, apart from being defined by its class and * instance (see `struct i915_engine_class_instance`), also can have flags and * capabilities defined as documented in i915_drm.h. * * For instance video engines which support HEVC encoding will have the * `I915_VIDEO_CLASS_CAPABILITY_HEVC` capability bit set. * * Engine discovery only fully comes to its own when combined with the new way * of addressing engines when submitting batch buffers using contexts with * engine maps configured. */ /** * struct drm_i915_engine_info * * Describes one engine and its capabilities as known to the driver. */ struct drm_i915_engine_info { /** @engine: Engine class and instance. */ struct i915_engine_class_instance engine; /** @rsvd0: Reserved field. */ __u32 rsvd0; /** @flags: Engine flags. */ __u64 flags; #define I915_ENGINE_INFO_HAS_LOGICAL_INSTANCE (1 << 0) /** @capabilities: Capabilities of this engine. */ __u64 capabilities; #define I915_VIDEO_CLASS_CAPABILITY_HEVC (1 << 0) #define I915_VIDEO_AND_ENHANCE_CLASS_CAPABILITY_SFC (1 << 1) /** @logical_instance: Logical instance of engine */ __u16 logical_instance; /** @rsvd1: Reserved fields. */ __u16 rsvd1[3]; /** @rsvd2: Reserved fields. */ __u64 rsvd2[3]; }; /** * struct drm_i915_query_engine_info * * Engine info query enumerates all engines known to the driver by filling in * an array of struct drm_i915_engine_info structures. */ struct drm_i915_query_engine_info { /** @num_engines: Number of struct drm_i915_engine_info structs following. */ __u32 num_engines; /** @rsvd: MBZ */ __u32 rsvd[3]; /** @engines: Marker for drm_i915_engine_info structures. */ struct drm_i915_engine_info engines[]; }; /** * struct drm_i915_query_perf_config * * Data written by the kernel with query %DRM_I915_QUERY_PERF_CONFIG and * %DRM_I915_QUERY_GEOMETRY_SUBSLICES. */ struct drm_i915_query_perf_config { union { /** * @n_configs: * * When &drm_i915_query_item.flags == * %DRM_I915_QUERY_PERF_CONFIG_LIST, i915 sets this fields to * the number of configurations available. */ __u64 n_configs; /** * @config: * * When &drm_i915_query_item.flags == * %DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_ID, i915 will use the * value in this field as configuration identifier to decide * what data to write into config_ptr. */ __u64 config; /** * @uuid: * * When &drm_i915_query_item.flags == * %DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID, i915 will use the * value in this field as configuration identifier to decide * what data to write into config_ptr. * * String formatted like "%08x-%04x-%04x-%04x-%012x" */ char uuid[36]; }; /** * @flags: * * Unused for now. Must be cleared to zero. */ __u32 flags; /** * @data: * * When &drm_i915_query_item.flags == %DRM_I915_QUERY_PERF_CONFIG_LIST, * i915 will write an array of __u64 of configuration identifiers. * * When &drm_i915_query_item.flags == %DRM_I915_QUERY_PERF_CONFIG_DATA, * i915 will write a struct drm_i915_perf_oa_config. If the following * fields of struct drm_i915_perf_oa_config are not set to 0, i915 will * write into the associated pointers the values of submitted when the * configuration was created : * * - &drm_i915_perf_oa_config.n_mux_regs * - &drm_i915_perf_oa_config.n_boolean_regs * - &drm_i915_perf_oa_config.n_flex_regs */ __u8 data[]; }; /** * enum drm_i915_gem_memory_class - Supported memory classes */ enum drm_i915_gem_memory_class { /** @I915_MEMORY_CLASS_SYSTEM: System memory */ I915_MEMORY_CLASS_SYSTEM = 0, /** @I915_MEMORY_CLASS_DEVICE: Device local-memory */ I915_MEMORY_CLASS_DEVICE, }; /** * struct drm_i915_gem_memory_class_instance - Identify particular memory region */ struct drm_i915_gem_memory_class_instance { /** @memory_class: See enum drm_i915_gem_memory_class */ __u16 memory_class; /** @memory_instance: Which instance */ __u16 memory_instance; }; /** * struct drm_i915_memory_region_info - Describes one region as known to the * driver. * * Note this is using both struct drm_i915_query_item and struct drm_i915_query. * For this new query we are adding the new query id DRM_I915_QUERY_MEMORY_REGIONS * at &drm_i915_query_item.query_id. */ struct drm_i915_memory_region_info { /** @region: The class:instance pair encoding */ struct drm_i915_gem_memory_class_instance region; /** @rsvd0: MBZ */ __u32 rsvd0; /** * @probed_size: Memory probed by the driver * * Note that it should not be possible to ever encounter a zero value * here, also note that no current region type will ever return -1 here. * Although for future region types, this might be a possibility. The * same applies to the other size fields. */ __u64 probed_size; /** * @unallocated_size: Estimate of memory remaining * * Requires CAP_PERFMON or CAP_SYS_ADMIN to get reliable accounting. * Without this (or if this is an older kernel) the value here will * always equal the @probed_size. Note this is only currently tracked * for I915_MEMORY_CLASS_DEVICE regions (for other types the value here * will always equal the @probed_size). */ __u64 unallocated_size; union { /** @rsvd1: MBZ */ __u64 rsvd1[8]; struct { /** * @probed_cpu_visible_size: Memory probed by the driver * that is CPU accessible. * * This will be always be <= @probed_size, and the * remainder (if there is any) will not be CPU * accessible. * * On systems without small BAR, the @probed_size will * always equal the @probed_cpu_visible_size, since all * of it will be CPU accessible. * * Note this is only tracked for * I915_MEMORY_CLASS_DEVICE regions (for other types the * value here will always equal the @probed_size). * * Note that if the value returned here is zero, then * this must be an old kernel which lacks the relevant * small-bar uAPI support (including * I915_GEM_CREATE_EXT_FLAG_NEEDS_CPU_ACCESS), but on * such systems we should never actually end up with a * small BAR configuration, assuming we are able to load * the kernel module. Hence it should be safe to treat * this the same as when @probed_cpu_visible_size == * @probed_size. */ __u64 probed_cpu_visible_size; /** * @unallocated_cpu_visible_size: Estimate of CPU * visible memory remaining. * * Note this is only tracked for * I915_MEMORY_CLASS_DEVICE regions (for other types the * value here will always equal the * @probed_cpu_visible_size). * * Requires CAP_PERFMON or CAP_SYS_ADMIN to get reliable * accounting. Without this the value here will always * equal the @probed_cpu_visible_size. Note this is only * currently tracked for I915_MEMORY_CLASS_DEVICE * regions (for other types the value here will also * always equal the @probed_cpu_visible_size). * * If this is an older kernel the value here will be * zero, see also @probed_cpu_visible_size. */ __u64 unallocated_cpu_visible_size; }; }; }; /** * struct drm_i915_query_memory_regions * * The region info query enumerates all regions known to the driver by filling * in an array of struct drm_i915_memory_region_info structures. * * Example for getting the list of supported regions: * * .. code-block:: C * * struct drm_i915_query_memory_regions *info; * struct drm_i915_query_item item = { * .query_id = DRM_I915_QUERY_MEMORY_REGIONS; * }; * struct drm_i915_query query = { * .num_items = 1, * .items_ptr = (uintptr_t)&item, * }; * int err, i; * * // First query the size of the blob we need, this needs to be large * // enough to hold our array of regions. The kernel will fill out the * // item.length for us, which is the number of bytes we need. * err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query); * if (err) ... * * info = calloc(1, item.length); * // Now that we allocated the required number of bytes, we call the ioctl * // again, this time with the data_ptr pointing to our newly allocated * // blob, which the kernel can then populate with the all the region info. * item.data_ptr = (uintptr_t)&info, * * err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query); * if (err) ... * * // We can now access each region in the array * for (i = 0; i < info->num_regions; i++) { * struct drm_i915_memory_region_info mr = info->regions[i]; * u16 class = mr.region.class; * u16 instance = mr.region.instance; * * .... * } * * free(info); */ struct drm_i915_query_memory_regions { /** @num_regions: Number of supported regions */ __u32 num_regions; /** @rsvd: MBZ */ __u32 rsvd[3]; /** @regions: Info about each supported region */ struct drm_i915_memory_region_info regions[]; }; /** * struct drm_i915_query_guc_submission_version - query GuC submission interface version */ struct drm_i915_query_guc_submission_version { __u32 branch; __u32 major; __u32 minor; __u32 patch; }; /** * DOC: GuC HWCONFIG blob uAPI * * The GuC produces a blob with information about the current device. * i915 reads this blob from GuC and makes it available via this uAPI. * * The format and meaning of the blob content are documented in the * Programmer's Reference Manual. */ /** * struct drm_i915_gem_create_ext - Existing gem_create behaviour, with added * extension support using struct i915_user_extension. * * Note that new buffer flags should be added here, at least for the stuff that * is immutable. Previously we would have two ioctls, one to create the object * with gem_create, and another to apply various parameters, however this * creates some ambiguity for the params which are considered immutable. Also in * general we're phasing out the various SET/GET ioctls. */ struct drm_i915_gem_create_ext { /** * @size: Requested size for the object. * * The (page-aligned) allocated size for the object will be returned. * * On platforms like DG2/ATS the kernel will always use 64K or larger * pages for I915_MEMORY_CLASS_DEVICE. The kernel also requires a * minimum of 64K GTT alignment for such objects. * * NOTE: Previously the ABI here required a minimum GTT alignment of 2M * on DG2/ATS, due to how the hardware implemented 64K GTT page support, * where we had the following complications: * * 1) The entire PDE (which covers a 2MB virtual address range), must * contain only 64K PTEs, i.e mixing 4K and 64K PTEs in the same * PDE is forbidden by the hardware. * * 2) We still need to support 4K PTEs for I915_MEMORY_CLASS_SYSTEM * objects. * * However on actual production HW this was completely changed to now * allow setting a TLB hint at the PTE level (see PS64), which is a lot * more flexible than the above. With this the 2M restriction was * dropped where we now only require 64K. */ __u64 size; /** * @handle: Returned handle for the object. * * Object handles are nonzero. */ __u32 handle; /** * @flags: Optional flags. * * Supported values: * * I915_GEM_CREATE_EXT_FLAG_NEEDS_CPU_ACCESS - Signal to the kernel that * the object will need to be accessed via the CPU. * * Only valid when placing objects in I915_MEMORY_CLASS_DEVICE, and only * strictly required on configurations where some subset of the device * memory is directly visible/mappable through the CPU (which we also * call small BAR), like on some DG2+ systems. Note that this is quite * undesirable, but due to various factors like the client CPU, BIOS etc * it's something we can expect to see in the wild. See * &drm_i915_memory_region_info.probed_cpu_visible_size for how to * determine if this system applies. * * Note that one of the placements MUST be I915_MEMORY_CLASS_SYSTEM, to * ensure the kernel can always spill the allocation to system memory, * if the object can't be allocated in the mappable part of * I915_MEMORY_CLASS_DEVICE. * * Also note that since the kernel only supports flat-CCS on objects * that can *only* be placed in I915_MEMORY_CLASS_DEVICE, we therefore * don't support I915_GEM_CREATE_EXT_FLAG_NEEDS_CPU_ACCESS together with * flat-CCS. * * Without this hint, the kernel will assume that non-mappable * I915_MEMORY_CLASS_DEVICE is preferred for this object. Note that the * kernel can still migrate the object to the mappable part, as a last * resort, if userspace ever CPU faults this object, but this might be * expensive, and so ideally should be avoided. * * On older kernels which lack the relevant small-bar uAPI support (see * also &drm_i915_memory_region_info.probed_cpu_visible_size), * usage of the flag will result in an error, but it should NEVER be * possible to end up with a small BAR configuration, assuming we can * also successfully load the i915 kernel module. In such cases the * entire I915_MEMORY_CLASS_DEVICE region will be CPU accessible, and as * such there are zero restrictions on where the object can be placed. */ #define I915_GEM_CREATE_EXT_FLAG_NEEDS_CPU_ACCESS (1 << 0) __u32 flags; /** * @extensions: The chain of extensions to apply to this object. * * This will be useful in the future when we need to support several * different extensions, and we need to apply more than one when * creating the object. See struct i915_user_extension. * * If we don't supply any extensions then we get the same old gem_create * behaviour. * * For I915_GEM_CREATE_EXT_MEMORY_REGIONS usage see * struct drm_i915_gem_create_ext_memory_regions. * * For I915_GEM_CREATE_EXT_PROTECTED_CONTENT usage see * struct drm_i915_gem_create_ext_protected_content. * * For I915_GEM_CREATE_EXT_SET_PAT usage see * struct drm_i915_gem_create_ext_set_pat. */ #define I915_GEM_CREATE_EXT_MEMORY_REGIONS 0 #define I915_GEM_CREATE_EXT_PROTECTED_CONTENT 1 #define I915_GEM_CREATE_EXT_SET_PAT 2 __u64 extensions; }; /** * struct drm_i915_gem_create_ext_memory_regions - The * I915_GEM_CREATE_EXT_MEMORY_REGIONS extension. * * Set the object with the desired set of placements/regions in priority * order. Each entry must be unique and supported by the device. * * This is provided as an array of struct drm_i915_gem_memory_class_instance, or * an equivalent layout of class:instance pair encodings. See struct * drm_i915_query_memory_regions and DRM_I915_QUERY_MEMORY_REGIONS for how to * query the supported regions for a device. * * As an example, on discrete devices, if we wish to set the placement as * device local-memory we can do something like: * * .. code-block:: C * * struct drm_i915_gem_memory_class_instance region_lmem = { * .memory_class = I915_MEMORY_CLASS_DEVICE, * .memory_instance = 0, * }; * struct drm_i915_gem_create_ext_memory_regions regions = { * .base = { .name = I915_GEM_CREATE_EXT_MEMORY_REGIONS }, * .regions = (uintptr_t)®ion_lmem, * .num_regions = 1, * }; * struct drm_i915_gem_create_ext create_ext = { * .size = 16 * PAGE_SIZE, * .extensions = (uintptr_t)®ions, * }; * * int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext); * if (err) ... * * At which point we get the object handle in &drm_i915_gem_create_ext.handle, * along with the final object size in &drm_i915_gem_create_ext.size, which * should account for any rounding up, if required. * * Note that userspace has no means of knowing the current backing region * for objects where @num_regions is larger than one. The kernel will only * ensure that the priority order of the @regions array is honoured, either * when initially placing the object, or when moving memory around due to * memory pressure * * On Flat-CCS capable HW, compression is supported for the objects residing * in I915_MEMORY_CLASS_DEVICE. When such objects (compressed) have other * memory class in @regions and migrated (by i915, due to memory * constraints) to the non I915_MEMORY_CLASS_DEVICE region, then i915 needs to * decompress the content. But i915 doesn't have the required information to * decompress the userspace compressed objects. * * So i915 supports Flat-CCS, on the objects which can reside only on * I915_MEMORY_CLASS_DEVICE regions. */ struct drm_i915_gem_create_ext_memory_regions { /** @base: Extension link. See struct i915_user_extension. */ struct i915_user_extension base; /** @pad: MBZ */ __u32 pad; /** @num_regions: Number of elements in the @regions array. */ __u32 num_regions; /** * @regions: The regions/placements array. * * An array of struct drm_i915_gem_memory_class_instance. */ __u64 regions; }; /** * struct drm_i915_gem_create_ext_protected_content - The * I915_OBJECT_PARAM_PROTECTED_CONTENT extension. * * If this extension is provided, buffer contents are expected to be protected * by PXP encryption and require decryption for scan out and processing. This * is only possible on platforms that have PXP enabled, on all other scenarios * using this extension will cause the ioctl to fail and return -ENODEV. The * flags parameter is reserved for future expansion and must currently be set * to zero. * * The buffer contents are considered invalid after a PXP session teardown. * * The encryption is guaranteed to be processed correctly only if the object * is submitted with a context created using the * I915_CONTEXT_PARAM_PROTECTED_CONTENT flag. This will also enable extra checks * at submission time on the validity of the objects involved. * * Below is an example on how to create a protected object: * * .. code-block:: C * * struct drm_i915_gem_create_ext_protected_content protected_ext = { * .base = { .name = I915_GEM_CREATE_EXT_PROTECTED_CONTENT }, * .flags = 0, * }; * struct drm_i915_gem_create_ext create_ext = { * .size = PAGE_SIZE, * .extensions = (uintptr_t)&protected_ext, * }; * * int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext); * if (err) ... */ struct drm_i915_gem_create_ext_protected_content { /** @base: Extension link. See struct i915_user_extension. */ struct i915_user_extension base; /** @flags: reserved for future usage, currently MBZ */ __u32 flags; }; /** * struct drm_i915_gem_create_ext_set_pat - The * I915_GEM_CREATE_EXT_SET_PAT extension. * * If this extension is provided, the specified caching policy (PAT index) is * applied to the buffer object. * * Below is an example on how to create an object with specific caching policy: * * .. code-block:: C * * struct drm_i915_gem_create_ext_set_pat set_pat_ext = { * .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, * .pat_index = 0, * }; * struct drm_i915_gem_create_ext create_ext = { * .size = PAGE_SIZE, * .extensions = (uintptr_t)&set_pat_ext, * }; * * int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext); * if (err) ... */ struct drm_i915_gem_create_ext_set_pat { /** @base: Extension link. See struct i915_user_extension. */ struct i915_user_extension base; /** * @pat_index: PAT index to be set * PAT index is a bit field in Page Table Entry to control caching * behaviors for GPU accesses. The definition of PAT index is * platform dependent and can be found in hardware specifications, */ __u32 pat_index; /** @rsvd: reserved for future use */ __u32 rsvd; }; /* ID of the protected content session managed by i915 when PXP is active */ #define I915_PROTECTED_CONTENT_DEFAULT_SESSION 0xf #if defined(__cplusplus) } #endif #endif /* _I915_DRM_H_ */ btop-1.4.5/src/linux/intel_gpu_top/i915_pciids.h000066400000000000000000000660641506333644200215000ustar00rootroot00000000000000/* * Copyright 2013 Intel Corporation * All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sub license, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice (including the * next paragraph) shall be included in all copies or substantial portions * of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ #ifndef _I915_PCIIDS_H #define _I915_PCIIDS_H /* * A pci_device_id struct { * __u32 vendor, device; * __u32 subvendor, subdevice; * __u32 class, class_mask; * kernel_ulong_t driver_data; * }; * Don't use C99 here because "class" is reserved and we want to * give userspace flexibility. */ #define INTEL_VGA_DEVICE(id, info) { \ 0x8086, id, \ ~0, ~0, \ 0x030000, 0xff0000, \ (unsigned long) info } #define INTEL_QUANTA_VGA_DEVICE(info) { \ 0x8086, 0x16a, \ 0x152d, 0x8990, \ 0x030000, 0xff0000, \ (unsigned long) info } #define INTEL_I810_IDS(MACRO__, ...) \ MACRO__(0x7121, ## __VA_ARGS__), /* I810 */ \ MACRO__(0x7123, ## __VA_ARGS__), /* I810_DC100 */ \ MACRO__(0x7125, ## __VA_ARGS__) /* I810_E */ #define INTEL_I815_IDS(MACRO__, ...) \ MACRO__(0x1132, ## __VA_ARGS__) /* I815*/ #define INTEL_I830_IDS(MACRO__, ...) \ MACRO__(0x3577, ## __VA_ARGS__) #define INTEL_I845G_IDS(MACRO__, ...) \ MACRO__(0x2562, ## __VA_ARGS__) #define INTEL_I85X_IDS(MACRO__, ...) \ MACRO__(0x3582, ## __VA_ARGS__), /* I855_GM */ \ MACRO__(0x358e, ## __VA_ARGS__) #define INTEL_I865G_IDS(MACRO__, ...) \ MACRO__(0x2572, ## __VA_ARGS__) /* I865_G */ #define INTEL_I915G_IDS(MACRO__, ...) \ MACRO__(0x2582, ## __VA_ARGS__), /* I915_G */ \ MACRO__(0x258a, ## __VA_ARGS__) /* E7221_G */ #define INTEL_I915GM_IDS(MACRO__, ...) \ MACRO__(0x2592, ## __VA_ARGS__) /* I915_GM */ #define INTEL_I945G_IDS(MACRO__, ...) \ MACRO__(0x2772, ## __VA_ARGS__) /* I945_G */ #define INTEL_I945GM_IDS(MACRO__, ...) \ MACRO__(0x27a2, ## __VA_ARGS__), /* I945_GM */ \ MACRO__(0x27ae, ## __VA_ARGS__) /* I945_GME */ #define INTEL_I965G_IDS(MACRO__, ...) \ MACRO__(0x2972, ## __VA_ARGS__), /* I946_GZ */ \ MACRO__(0x2982, ## __VA_ARGS__), /* G35_G */ \ MACRO__(0x2992, ## __VA_ARGS__), /* I965_Q */ \ MACRO__(0x29a2, ## __VA_ARGS__) /* I965_G */ #define INTEL_G33_IDS(MACRO__, ...) \ MACRO__(0x29b2, ## __VA_ARGS__), /* Q35_G */ \ MACRO__(0x29c2, ## __VA_ARGS__), /* G33_G */ \ MACRO__(0x29d2, ## __VA_ARGS__) /* Q33_G */ #define INTEL_I965GM_IDS(MACRO__, ...) \ MACRO__(0x2a02, ## __VA_ARGS__), /* I965_GM */ \ MACRO__(0x2a12, ## __VA_ARGS__) /* I965_GME */ #define INTEL_GM45_IDS(MACRO__, ...) \ MACRO__(0x2a42, ## __VA_ARGS__) /* GM45_G */ #define INTEL_G45_IDS(MACRO__, ...) \ MACRO__(0x2e02, ## __VA_ARGS__), /* IGD_E_G */ \ MACRO__(0x2e12, ## __VA_ARGS__), /* Q45_G */ \ MACRO__(0x2e22, ## __VA_ARGS__), /* G45_G */ \ MACRO__(0x2e32, ## __VA_ARGS__), /* G41_G */ \ MACRO__(0x2e42, ## __VA_ARGS__), /* B43_G */ \ MACRO__(0x2e92, ## __VA_ARGS__) /* B43_G.1 */ #define INTEL_PNV_G_IDS(MACRO__, ...) \ MACRO__(0xa001, ## __VA_ARGS__) #define INTEL_PNV_M_IDS(MACRO__, ...) \ MACRO__(0xa011, ## __VA_ARGS__) #define INTEL_PNV_IDS(MACRO__, ...) \ INTEL_PNV_G_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_PNV_M_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_ILK_D_IDS(MACRO__, ...) \ MACRO__(0x0042, ## __VA_ARGS__) #define INTEL_ILK_M_IDS(MACRO__, ...) \ MACRO__(0x0046, ## __VA_ARGS__) #define INTEL_ILK_IDS(MACRO__, ...) \ INTEL_ILK_D_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_ILK_M_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_SNB_D_GT1_IDS(MACRO__, ...) \ MACRO__(0x0102, ## __VA_ARGS__), \ MACRO__(0x010A, ## __VA_ARGS__) #define INTEL_SNB_D_GT2_IDS(MACRO__, ...) \ MACRO__(0x0112, ## __VA_ARGS__), \ MACRO__(0x0122, ## __VA_ARGS__) #define INTEL_SNB_D_IDS(MACRO__, ...) \ INTEL_SNB_D_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_SNB_D_GT2_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_SNB_M_GT1_IDS(MACRO__, ...) \ MACRO__(0x0106, ## __VA_ARGS__) #define INTEL_SNB_M_GT2_IDS(MACRO__, ...) \ MACRO__(0x0116, ## __VA_ARGS__), \ MACRO__(0x0126, ## __VA_ARGS__) #define INTEL_SNB_M_IDS(MACRO__, ...) \ INTEL_SNB_M_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_SNB_M_GT2_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_SNB_IDS(MACRO__, ...) \ INTEL_SNB_D_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_SNB_M_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_IVB_M_GT1_IDS(MACRO__, ...) \ MACRO__(0x0156, ## __VA_ARGS__) /* GT1 mobile */ #define INTEL_IVB_M_GT2_IDS(MACRO__, ...) \ MACRO__(0x0166, ## __VA_ARGS__) /* GT2 mobile */ #define INTEL_IVB_M_IDS(MACRO__, ...) \ INTEL_IVB_M_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_IVB_M_GT2_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_IVB_D_GT1_IDS(MACRO__, ...) \ MACRO__(0x0152, ## __VA_ARGS__), /* GT1 desktop */ \ MACRO__(0x015a, ## __VA_ARGS__) /* GT1 server */ #define INTEL_IVB_D_GT2_IDS(MACRO__, ...) \ MACRO__(0x0162, ## __VA_ARGS__), /* GT2 desktop */ \ MACRO__(0x016a, ## __VA_ARGS__) /* GT2 server */ #define INTEL_IVB_D_IDS(MACRO__, ...) \ INTEL_IVB_D_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_IVB_D_GT2_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_IVB_IDS(MACRO__, ...) \ INTEL_IVB_M_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_IVB_D_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_IVB_Q_IDS(MACRO__, ...) \ INTEL_QUANTA_VGA_DEVICE(__VA_ARGS__) /* Quanta transcode */ #define INTEL_HSW_ULT_GT1_IDS(MACRO__, ...) \ MACRO__(0x0A02, ## __VA_ARGS__), /* ULT GT1 desktop */ \ MACRO__(0x0A06, ## __VA_ARGS__), /* ULT GT1 mobile */ \ MACRO__(0x0A0A, ## __VA_ARGS__), /* ULT GT1 server */ \ MACRO__(0x0A0B, ## __VA_ARGS__) /* ULT GT1 reserved */ #define INTEL_HSW_ULX_GT1_IDS(MACRO__, ...) \ MACRO__(0x0A0E, ## __VA_ARGS__) /* ULX GT1 mobile */ #define INTEL_HSW_GT1_IDS(MACRO__, ...) \ INTEL_HSW_ULT_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_HSW_ULX_GT1_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x0402, ## __VA_ARGS__), /* GT1 desktop */ \ MACRO__(0x0406, ## __VA_ARGS__), /* GT1 mobile */ \ MACRO__(0x040A, ## __VA_ARGS__), /* GT1 server */ \ MACRO__(0x040B, ## __VA_ARGS__), /* GT1 reserved */ \ MACRO__(0x040E, ## __VA_ARGS__), /* GT1 reserved */ \ MACRO__(0x0C02, ## __VA_ARGS__), /* SDV GT1 desktop */ \ MACRO__(0x0C06, ## __VA_ARGS__), /* SDV GT1 mobile */ \ MACRO__(0x0C0A, ## __VA_ARGS__), /* SDV GT1 server */ \ MACRO__(0x0C0B, ## __VA_ARGS__), /* SDV GT1 reserved */ \ MACRO__(0x0C0E, ## __VA_ARGS__), /* SDV GT1 reserved */ \ MACRO__(0x0D02, ## __VA_ARGS__), /* CRW GT1 desktop */ \ MACRO__(0x0D06, ## __VA_ARGS__), /* CRW GT1 mobile */ \ MACRO__(0x0D0A, ## __VA_ARGS__), /* CRW GT1 server */ \ MACRO__(0x0D0B, ## __VA_ARGS__), /* CRW GT1 reserved */ \ MACRO__(0x0D0E, ## __VA_ARGS__) /* CRW GT1 reserved */ #define INTEL_HSW_ULT_GT2_IDS(MACRO__, ...) \ MACRO__(0x0A12, ## __VA_ARGS__), /* ULT GT2 desktop */ \ MACRO__(0x0A16, ## __VA_ARGS__), /* ULT GT2 mobile */ \ MACRO__(0x0A1A, ## __VA_ARGS__), /* ULT GT2 server */ \ MACRO__(0x0A1B, ## __VA_ARGS__) /* ULT GT2 reserved */ \ #define INTEL_HSW_ULX_GT2_IDS(MACRO__, ...) \ MACRO__(0x0A1E, ## __VA_ARGS__) /* ULX GT2 mobile */ \ #define INTEL_HSW_GT2_IDS(MACRO__, ...) \ INTEL_HSW_ULT_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_HSW_ULX_GT2_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x0412, ## __VA_ARGS__), /* GT2 desktop */ \ MACRO__(0x0416, ## __VA_ARGS__), /* GT2 mobile */ \ MACRO__(0x041A, ## __VA_ARGS__), /* GT2 server */ \ MACRO__(0x041B, ## __VA_ARGS__), /* GT2 reserved */ \ MACRO__(0x041E, ## __VA_ARGS__), /* GT2 reserved */ \ MACRO__(0x0C12, ## __VA_ARGS__), /* SDV GT2 desktop */ \ MACRO__(0x0C16, ## __VA_ARGS__), /* SDV GT2 mobile */ \ MACRO__(0x0C1A, ## __VA_ARGS__), /* SDV GT2 server */ \ MACRO__(0x0C1B, ## __VA_ARGS__), /* SDV GT2 reserved */ \ MACRO__(0x0C1E, ## __VA_ARGS__), /* SDV GT2 reserved */ \ MACRO__(0x0D12, ## __VA_ARGS__), /* CRW GT2 desktop */ \ MACRO__(0x0D16, ## __VA_ARGS__), /* CRW GT2 mobile */ \ MACRO__(0x0D1A, ## __VA_ARGS__), /* CRW GT2 server */ \ MACRO__(0x0D1B, ## __VA_ARGS__), /* CRW GT2 reserved */ \ MACRO__(0x0D1E, ## __VA_ARGS__) /* CRW GT2 reserved */ #define INTEL_HSW_ULT_GT3_IDS(MACRO__, ...) \ MACRO__(0x0A22, ## __VA_ARGS__), /* ULT GT3 desktop */ \ MACRO__(0x0A26, ## __VA_ARGS__), /* ULT GT3 mobile */ \ MACRO__(0x0A2A, ## __VA_ARGS__), /* ULT GT3 server */ \ MACRO__(0x0A2B, ## __VA_ARGS__), /* ULT GT3 reserved */ \ MACRO__(0x0A2E, ## __VA_ARGS__) /* ULT GT3 reserved */ #define INTEL_HSW_GT3_IDS(MACRO__, ...) \ INTEL_HSW_ULT_GT3_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x0422, ## __VA_ARGS__), /* GT3 desktop */ \ MACRO__(0x0426, ## __VA_ARGS__), /* GT3 mobile */ \ MACRO__(0x042A, ## __VA_ARGS__), /* GT3 server */ \ MACRO__(0x042B, ## __VA_ARGS__), /* GT3 reserved */ \ MACRO__(0x042E, ## __VA_ARGS__), /* GT3 reserved */ \ MACRO__(0x0C22, ## __VA_ARGS__), /* SDV GT3 desktop */ \ MACRO__(0x0C26, ## __VA_ARGS__), /* SDV GT3 mobile */ \ MACRO__(0x0C2A, ## __VA_ARGS__), /* SDV GT3 server */ \ MACRO__(0x0C2B, ## __VA_ARGS__), /* SDV GT3 reserved */ \ MACRO__(0x0C2E, ## __VA_ARGS__), /* SDV GT3 reserved */ \ MACRO__(0x0D22, ## __VA_ARGS__), /* CRW GT3 desktop */ \ MACRO__(0x0D26, ## __VA_ARGS__), /* CRW GT3 mobile */ \ MACRO__(0x0D2A, ## __VA_ARGS__), /* CRW GT3 server */ \ MACRO__(0x0D2B, ## __VA_ARGS__), /* CRW GT3 reserved */ \ MACRO__(0x0D2E, ## __VA_ARGS__) /* CRW GT3 reserved */ #define INTEL_HSW_IDS(MACRO__, ...) \ INTEL_HSW_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_HSW_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_HSW_GT3_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_VLV_IDS(MACRO__, ...) \ MACRO__(0x0f30, ## __VA_ARGS__), \ MACRO__(0x0f31, ## __VA_ARGS__), \ MACRO__(0x0f32, ## __VA_ARGS__), \ MACRO__(0x0f33, ## __VA_ARGS__) #define INTEL_BDW_ULT_GT1_IDS(MACRO__, ...) \ MACRO__(0x1606, ## __VA_ARGS__), /* GT1 ULT */ \ MACRO__(0x160B, ## __VA_ARGS__) /* GT1 Iris */ #define INTEL_BDW_ULX_GT1_IDS(MACRO__, ...) \ MACRO__(0x160E, ## __VA_ARGS__) /* GT1 ULX */ #define INTEL_BDW_GT1_IDS(MACRO__, ...) \ INTEL_BDW_ULT_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_BDW_ULX_GT1_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x1602, ## __VA_ARGS__), /* GT1 ULT */ \ MACRO__(0x160A, ## __VA_ARGS__), /* GT1 Server */ \ MACRO__(0x160D, ## __VA_ARGS__) /* GT1 Workstation */ #define INTEL_BDW_ULT_GT2_IDS(MACRO__, ...) \ MACRO__(0x1616, ## __VA_ARGS__), /* GT2 ULT */ \ MACRO__(0x161B, ## __VA_ARGS__) /* GT2 ULT */ #define INTEL_BDW_ULX_GT2_IDS(MACRO__, ...) \ MACRO__(0x161E, ## __VA_ARGS__) /* GT2 ULX */ #define INTEL_BDW_GT2_IDS(MACRO__, ...) \ INTEL_BDW_ULT_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_BDW_ULX_GT2_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x1612, ## __VA_ARGS__), /* GT2 Halo */ \ MACRO__(0x161A, ## __VA_ARGS__), /* GT2 Server */ \ MACRO__(0x161D, ## __VA_ARGS__) /* GT2 Workstation */ #define INTEL_BDW_ULT_GT3_IDS(MACRO__, ...) \ MACRO__(0x1626, ## __VA_ARGS__), /* ULT */ \ MACRO__(0x162B, ## __VA_ARGS__) /* Iris */ \ #define INTEL_BDW_ULX_GT3_IDS(MACRO__, ...) \ MACRO__(0x162E, ## __VA_ARGS__) /* ULX */ #define INTEL_BDW_GT3_IDS(MACRO__, ...) \ INTEL_BDW_ULT_GT3_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_BDW_ULX_GT3_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x1622, ## __VA_ARGS__), /* ULT */ \ MACRO__(0x162A, ## __VA_ARGS__), /* Server */ \ MACRO__(0x162D, ## __VA_ARGS__) /* Workstation */ #define INTEL_BDW_ULT_RSVD_IDS(MACRO__, ...) \ MACRO__(0x1636, ## __VA_ARGS__), /* ULT */ \ MACRO__(0x163B, ## __VA_ARGS__) /* Iris */ #define INTEL_BDW_ULX_RSVD_IDS(MACRO__, ...) \ MACRO__(0x163E, ## __VA_ARGS__) /* ULX */ #define INTEL_BDW_RSVD_IDS(MACRO__, ...) \ INTEL_BDW_ULT_RSVD_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_BDW_ULX_RSVD_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x1632, ## __VA_ARGS__), /* ULT */ \ MACRO__(0x163A, ## __VA_ARGS__), /* Server */ \ MACRO__(0x163D, ## __VA_ARGS__) /* Workstation */ #define INTEL_BDW_IDS(MACRO__, ...) \ INTEL_BDW_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_BDW_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_BDW_GT3_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_BDW_RSVD_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_CHV_IDS(MACRO__, ...) \ MACRO__(0x22b0, ## __VA_ARGS__), \ MACRO__(0x22b1, ## __VA_ARGS__), \ MACRO__(0x22b2, ## __VA_ARGS__), \ MACRO__(0x22b3, ## __VA_ARGS__) #define INTEL_SKL_ULT_GT1_IDS(MACRO__, ...) \ MACRO__(0x1906, ## __VA_ARGS__), /* ULT GT1 */ \ MACRO__(0x1913, ## __VA_ARGS__) /* ULT GT1.5 */ #define INTEL_SKL_ULX_GT1_IDS(MACRO__, ...) \ MACRO__(0x190E, ## __VA_ARGS__), /* ULX GT1 */ \ MACRO__(0x1915, ## __VA_ARGS__) /* ULX GT1.5 */ #define INTEL_SKL_GT1_IDS(MACRO__, ...) \ INTEL_SKL_ULT_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_SKL_ULX_GT1_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x1902, ## __VA_ARGS__), /* DT GT1 */ \ MACRO__(0x190A, ## __VA_ARGS__), /* SRV GT1 */ \ MACRO__(0x190B, ## __VA_ARGS__), /* Halo GT1 */ \ MACRO__(0x1917, ## __VA_ARGS__) /* DT GT1.5 */ #define INTEL_SKL_ULT_GT2_IDS(MACRO__, ...) \ MACRO__(0x1916, ## __VA_ARGS__), /* ULT GT2 */ \ MACRO__(0x1921, ## __VA_ARGS__) /* ULT GT2F */ #define INTEL_SKL_ULX_GT2_IDS(MACRO__, ...) \ MACRO__(0x191E, ## __VA_ARGS__) /* ULX GT2 */ #define INTEL_SKL_GT2_IDS(MACRO__, ...) \ INTEL_SKL_ULT_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_SKL_ULX_GT2_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x1912, ## __VA_ARGS__), /* DT GT2 */ \ MACRO__(0x191A, ## __VA_ARGS__), /* SRV GT2 */ \ MACRO__(0x191B, ## __VA_ARGS__), /* Halo GT2 */ \ MACRO__(0x191D, ## __VA_ARGS__) /* WKS GT2 */ #define INTEL_SKL_ULT_GT3_IDS(MACRO__, ...) \ MACRO__(0x1923, ## __VA_ARGS__), /* ULT GT3 */ \ MACRO__(0x1926, ## __VA_ARGS__), /* ULT GT3e */ \ MACRO__(0x1927, ## __VA_ARGS__) /* ULT GT3e */ #define INTEL_SKL_GT3_IDS(MACRO__, ...) \ INTEL_SKL_ULT_GT3_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x192A, ## __VA_ARGS__), /* SRV GT3 */ \ MACRO__(0x192B, ## __VA_ARGS__), /* Halo GT3e */ \ MACRO__(0x192D, ## __VA_ARGS__) /* SRV GT3e */ #define INTEL_SKL_GT4_IDS(MACRO__, ...) \ MACRO__(0x1932, ## __VA_ARGS__), /* DT GT4 */ \ MACRO__(0x193A, ## __VA_ARGS__), /* SRV GT4e */ \ MACRO__(0x193B, ## __VA_ARGS__), /* Halo GT4e */ \ MACRO__(0x193D, ## __VA_ARGS__) /* WKS GT4e */ #define INTEL_SKL_IDS(MACRO__, ...) \ INTEL_SKL_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_SKL_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_SKL_GT3_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_SKL_GT4_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_BXT_IDS(MACRO__, ...) \ MACRO__(0x0A84, ## __VA_ARGS__), \ MACRO__(0x1A84, ## __VA_ARGS__), \ MACRO__(0x1A85, ## __VA_ARGS__), \ MACRO__(0x5A84, ## __VA_ARGS__), /* APL HD Graphics 505 */ \ MACRO__(0x5A85, ## __VA_ARGS__) /* APL HD Graphics 500 */ #define INTEL_GLK_IDS(MACRO__, ...) \ MACRO__(0x3184, ## __VA_ARGS__), \ MACRO__(0x3185, ## __VA_ARGS__) #define INTEL_KBL_ULT_GT1_IDS(MACRO__, ...) \ MACRO__(0x5906, ## __VA_ARGS__), /* ULT GT1 */ \ MACRO__(0x5913, ## __VA_ARGS__) /* ULT GT1.5 */ #define INTEL_KBL_ULX_GT1_IDS(MACRO__, ...) \ MACRO__(0x590E, ## __VA_ARGS__), /* ULX GT1 */ \ MACRO__(0x5915, ## __VA_ARGS__) /* ULX GT1.5 */ #define INTEL_KBL_GT1_IDS(MACRO__, ...) \ INTEL_KBL_ULT_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_KBL_ULX_GT1_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x5902, ## __VA_ARGS__), /* DT GT1 */ \ MACRO__(0x5908, ## __VA_ARGS__), /* Halo GT1 */ \ MACRO__(0x590A, ## __VA_ARGS__), /* SRV GT1 */ \ MACRO__(0x590B, ## __VA_ARGS__) /* Halo GT1 */ #define INTEL_KBL_ULT_GT2_IDS(MACRO__, ...) \ MACRO__(0x5916, ## __VA_ARGS__), /* ULT GT2 */ \ MACRO__(0x5921, ## __VA_ARGS__) /* ULT GT2F */ #define INTEL_KBL_ULX_GT2_IDS(MACRO__, ...) \ MACRO__(0x591E, ## __VA_ARGS__) /* ULX GT2 */ #define INTEL_KBL_GT2_IDS(MACRO__, ...) \ INTEL_KBL_ULT_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_KBL_ULX_GT2_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x5912, ## __VA_ARGS__), /* DT GT2 */ \ MACRO__(0x5917, ## __VA_ARGS__), /* Mobile GT2 */ \ MACRO__(0x591A, ## __VA_ARGS__), /* SRV GT2 */ \ MACRO__(0x591B, ## __VA_ARGS__), /* Halo GT2 */ \ MACRO__(0x591D, ## __VA_ARGS__) /* WKS GT2 */ #define INTEL_KBL_ULT_GT3_IDS(MACRO__, ...) \ MACRO__(0x5926, ## __VA_ARGS__) /* ULT GT3 */ #define INTEL_KBL_GT3_IDS(MACRO__, ...) \ INTEL_KBL_ULT_GT3_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x5923, ## __VA_ARGS__), /* ULT GT3 */ \ MACRO__(0x5927, ## __VA_ARGS__) /* ULT GT3 */ #define INTEL_KBL_GT4_IDS(MACRO__, ...) \ MACRO__(0x593B, ## __VA_ARGS__) /* Halo GT4 */ /* AML/KBL Y GT2 */ #define INTEL_AML_KBL_GT2_IDS(MACRO__, ...) \ MACRO__(0x591C, ## __VA_ARGS__), /* ULX GT2 */ \ MACRO__(0x87C0, ## __VA_ARGS__) /* ULX GT2 */ /* AML/CFL Y GT2 */ #define INTEL_AML_CFL_GT2_IDS(MACRO__, ...) \ MACRO__(0x87CA, ## __VA_ARGS__) /* CML GT1 */ #define INTEL_CML_GT1_IDS(MACRO__, ...) \ MACRO__(0x9BA2, ## __VA_ARGS__), \ MACRO__(0x9BA4, ## __VA_ARGS__), \ MACRO__(0x9BA5, ## __VA_ARGS__), \ MACRO__(0x9BA8, ## __VA_ARGS__) #define INTEL_CML_U_GT1_IDS(MACRO__, ...) \ MACRO__(0x9B21, ## __VA_ARGS__), \ MACRO__(0x9BAA, ## __VA_ARGS__), \ MACRO__(0x9BAC, ## __VA_ARGS__) /* CML GT2 */ #define INTEL_CML_GT2_IDS(MACRO__, ...) \ MACRO__(0x9BC2, ## __VA_ARGS__), \ MACRO__(0x9BC4, ## __VA_ARGS__), \ MACRO__(0x9BC5, ## __VA_ARGS__), \ MACRO__(0x9BC6, ## __VA_ARGS__), \ MACRO__(0x9BC8, ## __VA_ARGS__), \ MACRO__(0x9BE6, ## __VA_ARGS__), \ MACRO__(0x9BF6, ## __VA_ARGS__) #define INTEL_CML_U_GT2_IDS(MACRO__, ...) \ MACRO__(0x9B41, ## __VA_ARGS__), \ MACRO__(0x9BCA, ## __VA_ARGS__), \ MACRO__(0x9BCC, ## __VA_ARGS__) #define INTEL_CML_IDS(MACRO__, ...) \ INTEL_CML_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_CML_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_CML_U_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_CML_U_GT2_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_KBL_IDS(MACRO__, ...) \ INTEL_KBL_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_KBL_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_KBL_GT3_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_KBL_GT4_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_AML_KBL_GT2_IDS(MACRO__, ## __VA_ARGS__) /* CFL S */ #define INTEL_CFL_S_GT1_IDS(MACRO__, ...) \ MACRO__(0x3E90, ## __VA_ARGS__), /* SRV GT1 */ \ MACRO__(0x3E93, ## __VA_ARGS__), /* SRV GT1 */ \ MACRO__(0x3E99, ## __VA_ARGS__) /* SRV GT1 */ #define INTEL_CFL_S_GT2_IDS(MACRO__, ...) \ MACRO__(0x3E91, ## __VA_ARGS__), /* SRV GT2 */ \ MACRO__(0x3E92, ## __VA_ARGS__), /* SRV GT2 */ \ MACRO__(0x3E96, ## __VA_ARGS__), /* SRV GT2 */ \ MACRO__(0x3E98, ## __VA_ARGS__), /* SRV GT2 */ \ MACRO__(0x3E9A, ## __VA_ARGS__) /* SRV GT2 */ /* CFL H */ #define INTEL_CFL_H_GT1_IDS(MACRO__, ...) \ MACRO__(0x3E9C, ## __VA_ARGS__) #define INTEL_CFL_H_GT2_IDS(MACRO__, ...) \ MACRO__(0x3E94, ## __VA_ARGS__), /* Halo GT2 */ \ MACRO__(0x3E9B, ## __VA_ARGS__) /* Halo GT2 */ /* CFL U GT2 */ #define INTEL_CFL_U_GT2_IDS(MACRO__, ...) \ MACRO__(0x3EA9, ## __VA_ARGS__) /* CFL U GT3 */ #define INTEL_CFL_U_GT3_IDS(MACRO__, ...) \ MACRO__(0x3EA5, ## __VA_ARGS__), /* ULT GT3 */ \ MACRO__(0x3EA6, ## __VA_ARGS__), /* ULT GT3 */ \ MACRO__(0x3EA7, ## __VA_ARGS__), /* ULT GT3 */ \ MACRO__(0x3EA8, ## __VA_ARGS__) /* ULT GT3 */ #define INTEL_CFL_IDS(MACRO__, ...) \ INTEL_CFL_S_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_CFL_S_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_CFL_H_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_CFL_H_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_CFL_U_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_CFL_U_GT3_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_AML_CFL_GT2_IDS(MACRO__, ## __VA_ARGS__) /* WHL/CFL U GT1 */ #define INTEL_WHL_U_GT1_IDS(MACRO__, ...) \ MACRO__(0x3EA1, ## __VA_ARGS__), \ MACRO__(0x3EA4, ## __VA_ARGS__) /* WHL/CFL U GT2 */ #define INTEL_WHL_U_GT2_IDS(MACRO__, ...) \ MACRO__(0x3EA0, ## __VA_ARGS__), \ MACRO__(0x3EA3, ## __VA_ARGS__) /* WHL/CFL U GT3 */ #define INTEL_WHL_U_GT3_IDS(MACRO__, ...) \ MACRO__(0x3EA2, ## __VA_ARGS__) #define INTEL_WHL_IDS(MACRO__, ...) \ INTEL_WHL_U_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_WHL_U_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_WHL_U_GT3_IDS(MACRO__, ## __VA_ARGS__) /* CNL */ #define INTEL_CNL_PORT_F_IDS(MACRO__, ...) \ MACRO__(0x5A44, ## __VA_ARGS__), \ MACRO__(0x5A4C, ## __VA_ARGS__), \ MACRO__(0x5A54, ## __VA_ARGS__), \ MACRO__(0x5A5C, ## __VA_ARGS__) #define INTEL_CNL_IDS(MACRO__, ...) \ INTEL_CNL_PORT_F_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x5A40, ## __VA_ARGS__), \ MACRO__(0x5A41, ## __VA_ARGS__), \ MACRO__(0x5A42, ## __VA_ARGS__), \ MACRO__(0x5A49, ## __VA_ARGS__), \ MACRO__(0x5A4A, ## __VA_ARGS__), \ MACRO__(0x5A50, ## __VA_ARGS__), \ MACRO__(0x5A51, ## __VA_ARGS__), \ MACRO__(0x5A52, ## __VA_ARGS__), \ MACRO__(0x5A59, ## __VA_ARGS__), \ MACRO__(0x5A5A, ## __VA_ARGS__) /* ICL */ #define INTEL_ICL_PORT_F_IDS(MACRO__, ...) \ MACRO__(0x8A50, ## __VA_ARGS__), \ MACRO__(0x8A52, ## __VA_ARGS__), \ MACRO__(0x8A53, ## __VA_ARGS__), \ MACRO__(0x8A54, ## __VA_ARGS__), \ MACRO__(0x8A56, ## __VA_ARGS__), \ MACRO__(0x8A57, ## __VA_ARGS__), \ MACRO__(0x8A58, ## __VA_ARGS__), \ MACRO__(0x8A59, ## __VA_ARGS__), \ MACRO__(0x8A5A, ## __VA_ARGS__), \ MACRO__(0x8A5B, ## __VA_ARGS__), \ MACRO__(0x8A5C, ## __VA_ARGS__), \ MACRO__(0x8A70, ## __VA_ARGS__), \ MACRO__(0x8A71, ## __VA_ARGS__) #define INTEL_ICL_IDS(MACRO__, ...) \ INTEL_ICL_PORT_F_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0x8A51, ## __VA_ARGS__), \ MACRO__(0x8A5D, ## __VA_ARGS__) /* EHL */ #define INTEL_EHL_IDS(MACRO__, ...) \ MACRO__(0x4541, ## __VA_ARGS__), \ MACRO__(0x4551, ## __VA_ARGS__), \ MACRO__(0x4555, ## __VA_ARGS__), \ MACRO__(0x4557, ## __VA_ARGS__), \ MACRO__(0x4570, ## __VA_ARGS__), \ MACRO__(0x4571, ## __VA_ARGS__) /* JSL */ #define INTEL_JSL_IDS(MACRO__, ...) \ MACRO__(0x4E51, ## __VA_ARGS__), \ MACRO__(0x4E55, ## __VA_ARGS__), \ MACRO__(0x4E57, ## __VA_ARGS__), \ MACRO__(0x4E61, ## __VA_ARGS__), \ MACRO__(0x4E71, ## __VA_ARGS__) /* TGL */ #define INTEL_TGL_GT1_IDS(MACRO__, ...) \ MACRO__(0x9A60, ## __VA_ARGS__), \ MACRO__(0x9A68, ## __VA_ARGS__), \ MACRO__(0x9A70, ## __VA_ARGS__) #define INTEL_TGL_GT2_IDS(MACRO__, ...) \ MACRO__(0x9A40, ## __VA_ARGS__), \ MACRO__(0x9A49, ## __VA_ARGS__), \ MACRO__(0x9A59, ## __VA_ARGS__), \ MACRO__(0x9A78, ## __VA_ARGS__), \ MACRO__(0x9AC0, ## __VA_ARGS__), \ MACRO__(0x9AC9, ## __VA_ARGS__), \ MACRO__(0x9AD9, ## __VA_ARGS__), \ MACRO__(0x9AF8, ## __VA_ARGS__) #define INTEL_TGL_IDS(MACRO__, ...) \ INTEL_TGL_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_TGL_GT2_IDS(MACRO__, ## __VA_ARGS__) /* RKL */ #define INTEL_RKL_IDS(MACRO__, ...) \ MACRO__(0x4C80, ## __VA_ARGS__), \ MACRO__(0x4C8A, ## __VA_ARGS__), \ MACRO__(0x4C8B, ## __VA_ARGS__), \ MACRO__(0x4C8C, ## __VA_ARGS__), \ MACRO__(0x4C90, ## __VA_ARGS__), \ MACRO__(0x4C9A, ## __VA_ARGS__) /* DG1 */ #define INTEL_DG1_IDS(MACRO__, ...) \ MACRO__(0x4905, ## __VA_ARGS__), \ MACRO__(0x4906, ## __VA_ARGS__), \ MACRO__(0x4907, ## __VA_ARGS__), \ MACRO__(0x4908, ## __VA_ARGS__), \ MACRO__(0x4909, ## __VA_ARGS__) /* ADL-S */ #define INTEL_ADLS_IDS(MACRO__, ...) \ MACRO__(0x4680, ## __VA_ARGS__), \ MACRO__(0x4682, ## __VA_ARGS__), \ MACRO__(0x4688, ## __VA_ARGS__), \ MACRO__(0x468A, ## __VA_ARGS__), \ MACRO__(0x468B, ## __VA_ARGS__), \ MACRO__(0x4690, ## __VA_ARGS__), \ MACRO__(0x4692, ## __VA_ARGS__), \ MACRO__(0x4693, ## __VA_ARGS__) /* ADL-P */ #define INTEL_ADLP_IDS(MACRO__, ...) \ MACRO__(0x46A0, ## __VA_ARGS__), \ MACRO__(0x46A1, ## __VA_ARGS__), \ MACRO__(0x46A2, ## __VA_ARGS__), \ MACRO__(0x46A3, ## __VA_ARGS__), \ MACRO__(0x46A6, ## __VA_ARGS__), \ MACRO__(0x46A8, ## __VA_ARGS__), \ MACRO__(0x46AA, ## __VA_ARGS__), \ MACRO__(0x462A, ## __VA_ARGS__), \ MACRO__(0x4626, ## __VA_ARGS__), \ MACRO__(0x4628, ## __VA_ARGS__), \ MACRO__(0x46B0, ## __VA_ARGS__), \ MACRO__(0x46B1, ## __VA_ARGS__), \ MACRO__(0x46B2, ## __VA_ARGS__), \ MACRO__(0x46B3, ## __VA_ARGS__), \ MACRO__(0x46C0, ## __VA_ARGS__), \ MACRO__(0x46C1, ## __VA_ARGS__), \ MACRO__(0x46C2, ## __VA_ARGS__), \ MACRO__(0x46C3, ## __VA_ARGS__) /* ADL-N */ #define INTEL_ADLN_IDS(MACRO__, ...) \ MACRO__(0x46D0, ## __VA_ARGS__), \ MACRO__(0x46D1, ## __VA_ARGS__), \ MACRO__(0x46D2, ## __VA_ARGS__), \ MACRO__(0x46D3, ## __VA_ARGS__), \ MACRO__(0x46D4, ## __VA_ARGS__) /* RPL-S */ #define INTEL_RPLS_IDS(MACRO__, ...) \ MACRO__(0xA780, ## __VA_ARGS__), \ MACRO__(0xA781, ## __VA_ARGS__), \ MACRO__(0xA782, ## __VA_ARGS__), \ MACRO__(0xA783, ## __VA_ARGS__), \ MACRO__(0xA788, ## __VA_ARGS__), \ MACRO__(0xA789, ## __VA_ARGS__), \ MACRO__(0xA78A, ## __VA_ARGS__), \ MACRO__(0xA78B, ## __VA_ARGS__) /* RPL-U */ #define INTEL_RPLU_IDS(MACRO__, ...) \ MACRO__(0xA721, ## __VA_ARGS__), \ MACRO__(0xA7A1, ## __VA_ARGS__), \ MACRO__(0xA7A9, ## __VA_ARGS__), \ MACRO__(0xA7AC, ## __VA_ARGS__), \ MACRO__(0xA7AD, ## __VA_ARGS__) /* RPL-P */ #define INTEL_RPLP_IDS(MACRO__, ...) \ MACRO__(0xA720, ## __VA_ARGS__), \ MACRO__(0xA7A0, ## __VA_ARGS__), \ MACRO__(0xA7A8, ## __VA_ARGS__), \ MACRO__(0xA7AA, ## __VA_ARGS__), \ MACRO__(0xA7AB, ## __VA_ARGS__) /* DG2 */ #define INTEL_DG2_G10_IDS(MACRO__, ...) \ MACRO__(0x5690, ## __VA_ARGS__), \ MACRO__(0x5691, ## __VA_ARGS__), \ MACRO__(0x5692, ## __VA_ARGS__), \ MACRO__(0x56A0, ## __VA_ARGS__), \ MACRO__(0x56A1, ## __VA_ARGS__), \ MACRO__(0x56A2, ## __VA_ARGS__), \ MACRO__(0x56BE, ## __VA_ARGS__), \ MACRO__(0x56BF, ## __VA_ARGS__) #define INTEL_DG2_G11_IDS(MACRO__, ...) \ MACRO__(0x5693, ## __VA_ARGS__), \ MACRO__(0x5694, ## __VA_ARGS__), \ MACRO__(0x5695, ## __VA_ARGS__), \ MACRO__(0x56A5, ## __VA_ARGS__), \ MACRO__(0x56A6, ## __VA_ARGS__), \ MACRO__(0x56B0, ## __VA_ARGS__), \ MACRO__(0x56B1, ## __VA_ARGS__), \ MACRO__(0x56BA, ## __VA_ARGS__), \ MACRO__(0x56BB, ## __VA_ARGS__), \ MACRO__(0x56BC, ## __VA_ARGS__), \ MACRO__(0x56BD, ## __VA_ARGS__) #define INTEL_DG2_G12_IDS(MACRO__, ...) \ MACRO__(0x5696, ## __VA_ARGS__), \ MACRO__(0x5697, ## __VA_ARGS__), \ MACRO__(0x56A3, ## __VA_ARGS__), \ MACRO__(0x56A4, ## __VA_ARGS__), \ MACRO__(0x56B2, ## __VA_ARGS__), \ MACRO__(0x56B3, ## __VA_ARGS__) #define INTEL_DG2_IDS(MACRO__, ...) \ INTEL_DG2_G10_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_DG2_G11_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_DG2_G12_IDS(MACRO__, ## __VA_ARGS__) #define INTEL_ATS_M150_IDS(MACRO__, ...) \ MACRO__(0x56C0, ## __VA_ARGS__), \ MACRO__(0x56C2, ## __VA_ARGS__) #define INTEL_ATS_M75_IDS(MACRO__, ...) \ MACRO__(0x56C1, ## __VA_ARGS__) #define INTEL_ATS_M_IDS(MACRO__, ...) \ INTEL_ATS_M150_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_ATS_M75_IDS(MACRO__, ## __VA_ARGS__) /* MTL */ #define INTEL_MTL_IDS(MACRO__, ...) \ MACRO__(0x7D40, ## __VA_ARGS__), \ MACRO__(0x7D41, ## __VA_ARGS__), \ MACRO__(0x7D45, ## __VA_ARGS__), \ MACRO__(0x7D51, ## __VA_ARGS__), \ MACRO__(0x7D55, ## __VA_ARGS__), \ MACRO__(0x7D60, ## __VA_ARGS__), \ MACRO__(0x7D67, ## __VA_ARGS__), \ MACRO__(0x7DD1, ## __VA_ARGS__), \ MACRO__(0x7DD5, ## __VA_ARGS__) #endif /* _I915_PCIIDS_H */ btop-1.4.5/src/linux/intel_gpu_top/i915_pciids_local.h000066400000000000000000000032071506333644200226400ustar00rootroot00000000000000/* SPDX-License-Identifier: MIT */ /* * Copyright © 2022 Intel Corporation */ #ifndef _I915_PCIIDS_LOCAL_H_ #define _I915_PCIIDS_LOCAL_H_ #include "i915_pciids.h" /* MTL perf */ #ifndef INTEL_MTL_M_IDS #define INTEL_MTL_M_IDS(MACRO__, ...) \ MACRO__(0x7D60, ## __VA_ARGS__), \ MACRO__(0x7D67, ## __VA_ARGS__) #endif #ifndef INTEL_MTL_P_GT2_IDS #define INTEL_MTL_P_GT2_IDS(MACRO__, ...) \ MACRO__(0x7D45, ## __VA_ARGS__) #endif #ifndef INTEL_MTL_P_GT3_IDS #define INTEL_MTL_P_GT3_IDS(MACRO__, ...) \ MACRO__(0x7D55, ## __VA_ARGS__), \ MACRO__(0x7DD5, ## __VA_ARGS__) #endif #ifndef INTEL_MTL_P_IDS #define INTEL_MTL_P_IDS(MACRO__, ...) \ INTEL_MTL_P_GT2_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_MTL_P_GT3_IDS(MACRO__, ## __VA_ARGS__) #endif #ifndef INTEL_ARL_GT1_IDS #define INTEL_ARL_GT1_IDS(MACRO__, ...) \ MACRO__(0x7D41, ## __VA_ARGS__), \ MACRO__(0x7D67, ## __VA_ARGS__) #endif #ifndef INTEL_ARL_GT2_IDS #define INTEL_ARL_GT2_IDS(MACRO__, ...) \ MACRO__(0x7D51, ## __VA_ARGS__), \ MACRO__(0x7DD1, ## __VA_ARGS__) #endif #ifndef INTEL_ARL_IDS #define INTEL_ARL_IDS(MACRO__, ...) \ INTEL_ARL_GT1_IDS(MACRO__, ## __VA_ARGS__), \ INTEL_ARL_GT2_IDS(MACRO__, ## __VA_ARGS__) #endif /* PVC */ #ifndef INTEL_PVC_IDS #define INTEL_PVC_IDS(MACRO__, ...) \ MACRO__(0x0BD0, ## __VA_ARGS__), \ MACRO__(0x0BD1, ## __VA_ARGS__), \ MACRO__(0x0BD2, ## __VA_ARGS__), \ MACRO__(0x0BD5, ## __VA_ARGS__), \ MACRO__(0x0BD6, ## __VA_ARGS__), \ MACRO__(0x0BD7, ## __VA_ARGS__), \ MACRO__(0x0BD8, ## __VA_ARGS__), \ MACRO__(0x0BD9, ## __VA_ARGS__), \ MACRO__(0x0BDA, ## __VA_ARGS__), \ MACRO__(0x0BDB, ## __VA_ARGS__) #endif #endif /* _I915_PCIIDS_LOCAL_H */ btop-1.4.5/src/linux/intel_gpu_top/igt_perf.c000066400000000000000000000101521506333644200212330ustar00rootroot00000000000000#include #include #include #include #include #include #include #ifdef __linux__ #include #include #include #endif #include #include #include #include "igt_perf.h" static char *bus_address(int i915, char *path, int pathlen) { struct stat st; int len = -1; int dir; char *s; if (fstat(i915, &st) || !S_ISCHR(st.st_mode)) return NULL; snprintf(path, pathlen, "/sys/dev/char/%d:%d", major(st.st_rdev), minor(st.st_rdev)); dir = open(path, O_RDONLY); if (dir != -1) { len = readlinkat(dir, "device", path, pathlen - 1); close(dir); } if (len < 0) return NULL; path[len] = '\0'; /* strip off the relative path */ s = strrchr(path, '/'); if (s) memmove(path, s + 1, len - (s - path) + 1); return path; } const char *i915_perf_device(int i915, char *buf, int buflen) { char *s; #define prefix "i915_" #define plen strlen(prefix) if (!buf || buflen < plen) return "i915"; memcpy(buf, prefix, plen); if (!bus_address(i915, buf + plen, buflen - plen) || strcmp(buf + plen, "0000:00:02.0") == 0) /* legacy name for igfx */ buf[plen - 1] = '\0'; /* Convert all colons in the address to '_', thanks perf! */ for (s = buf; *s; s++) if (*s == ':') *s = '_'; return buf; } const char *xe_perf_device(int xe, char *buf, int buflen) { char *s; char pref[] = "xe_"; int len = strlen(pref); if (!buf || buflen < len) return "xe"; memcpy(buf, pref, len); if (!bus_address(xe, buf + len, buflen - len)) buf[len - 1] = '\0'; /* Convert all colons in the address to '_', thanks perf! */ for (s = buf; *s; s++) if (*s == ':') *s = '_'; return buf; } uint64_t xe_perf_type_id(int xe) { char buf[80]; return igt_perf_type_id(xe_perf_device(xe, buf, sizeof(buf))); } uint64_t i915_perf_type_id(int i915) { char buf[80]; return igt_perf_type_id(i915_perf_device(i915, buf, sizeof(buf))); } uint64_t igt_perf_type_id(const char *device) { char buf[64]; ssize_t ret; int fd; snprintf(buf, sizeof(buf), "/sys/bus/event_source/devices/%s/type", device); fd = open(buf, O_RDONLY); if (fd < 0) return 0; ret = read(fd, buf, sizeof(buf) - 1); close(fd); if (ret < 1) return 0; buf[ret] = '\0'; return strtoull(buf, NULL, 0); } int igt_perf_events_dir(int i915) { char buf[80]; char path[PATH_MAX]; i915_perf_device(i915, buf, sizeof(buf)); snprintf(path, sizeof(path), "/sys/bus/event_source/devices/%s/events", buf); return open(path, O_RDONLY); } static int _perf_open(uint64_t type, uint64_t config, int group, uint64_t format) { struct perf_event_attr attr = { }; int nr_cpus = get_nprocs_conf(); int cpu = 0, ret; attr.type = type; if (attr.type == 0) return -ENOENT; if (group >= 0) format &= ~PERF_FORMAT_GROUP; attr.read_format = format; attr.config = config; attr.use_clockid = 1; attr.clockid = CLOCK_MONOTONIC; do { ret = perf_event_open(&attr, -1, cpu++, group, 0); } while ((ret < 0 && errno == EINVAL) && (cpu < nr_cpus)); return ret; } int perf_igfx_open(uint64_t config) { return _perf_open(igt_perf_type_id("i915"), config, -1, PERF_FORMAT_TOTAL_TIME_ENABLED); } int perf_igfx_open_group(uint64_t config, int group) { return _perf_open(igt_perf_type_id("i915"), config, group, PERF_FORMAT_TOTAL_TIME_ENABLED | PERF_FORMAT_GROUP); } int perf_xe_open(int xe, uint64_t config) { return _perf_open(xe_perf_type_id(xe), config, -1, PERF_FORMAT_TOTAL_TIME_ENABLED); } int perf_i915_open(int i915, uint64_t config) { return _perf_open(i915_perf_type_id(i915), config, -1, PERF_FORMAT_TOTAL_TIME_ENABLED); } int perf_i915_open_group(int i915, uint64_t config, int group) { return _perf_open(i915_perf_type_id(i915), config, group, PERF_FORMAT_TOTAL_TIME_ENABLED | PERF_FORMAT_GROUP); } int igt_perf_open(uint64_t type, uint64_t config) { return _perf_open(type, config, -1, PERF_FORMAT_TOTAL_TIME_ENABLED); } int igt_perf_open_group(uint64_t type, uint64_t config, int group) { return _perf_open(type, config, group, PERF_FORMAT_TOTAL_TIME_ENABLED | PERF_FORMAT_GROUP); } btop-1.4.5/src/linux/intel_gpu_top/igt_perf.h000066400000000000000000000045411506333644200212450ustar00rootroot00000000000000/* * Copyright © 2017 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. * */ #ifndef I915_PERF_H #define I915_PERF_H #include #ifdef __linux__ #include #endif //#include "igt_gt.h" static inline int perf_event_open(struct perf_event_attr *attr, pid_t pid, int cpu, int group_fd, unsigned long flags) { #ifndef __NR_perf_event_open #if defined(__i386__) #define __NR_perf_event_open 336 #elif defined(__x86_64__) #define __NR_perf_event_open 298 #else #define __NR_perf_event_open 0 #endif #endif attr->size = sizeof(*attr); return syscall(__NR_perf_event_open, attr, pid, cpu, group_fd, flags); } uint64_t igt_perf_type_id(const char *device); int igt_perf_events_dir(int i915); int igt_perf_open(uint64_t type, uint64_t config); int igt_perf_open_group(uint64_t type, uint64_t config, int group); const char *i915_perf_device(int i915, char *buf, int buflen); uint64_t i915_perf_type_id(int i915); const char *xe_perf_device(int xe, char *buf, int buflen); uint64_t xe_perf_type_id(int); int perf_igfx_open(uint64_t config); int perf_igfx_open_group(uint64_t config, int group); int perf_i915_open(int i915, uint64_t config); int perf_i915_open_group(int i915, uint64_t config, int group); int perf_xe_open(int xe, uint64_t config); #endif /* I915_PERF_H */ btop-1.4.5/src/linux/intel_gpu_top/intel_chipset.h000066400000000000000000000201321506333644200222720ustar00rootroot00000000000000/* * Copyright © 2007 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. * * Authors: * Eric Anholt * */ #ifndef _INTEL_CHIPSET_H #define _INTEL_CHIPSET_H #include #include #define BIT(x) (1ul <<(x)) struct intel_device_info { unsigned graphics_ver; unsigned graphics_rel; unsigned display_ver; unsigned gt; /* 0 if unknown */ bool has_4tile : 1; bool has_flatccs : 1; bool has_oam : 1; bool is_mobile : 1; bool is_whitney : 1; bool is_almador : 1; bool is_brookdale : 1; bool is_montara : 1; bool is_springdale : 1; bool is_grantsdale : 1; bool is_alviso : 1; bool is_lakeport : 1; bool is_calistoga : 1; bool is_bearlake : 1; bool is_pineview : 1; bool is_broadwater : 1; bool is_crestline : 1; bool is_eaglelake : 1; bool is_cantiga : 1; bool is_ironlake : 1; bool is_arrandale : 1; bool is_sandybridge : 1; bool is_ivybridge : 1; bool is_valleyview : 1; bool is_haswell : 1; bool is_broadwell : 1; bool is_cherryview : 1; bool is_skylake : 1; bool is_broxton : 1; bool is_kabylake : 1; bool is_geminilake : 1; bool is_coffeelake : 1; bool is_cometlake : 1; bool is_cannonlake : 1; bool is_icelake : 1; bool is_elkhartlake : 1; bool is_jasperlake : 1; bool is_tigerlake : 1; bool is_rocketlake : 1; bool is_dg1 : 1; bool is_dg2 : 1; bool is_alderlake_s : 1; bool is_raptorlake_s : 1; bool is_alderlake_p : 1; bool is_alderlake_n : 1; bool is_meteorlake : 1; bool is_pontevecchio : 1; bool is_lunarlake : 1; bool is_battlemage : 1; const char *codename; }; const struct intel_device_info *intel_get_device_info(uint16_t devid) __attribute__((pure)); extern enum pch_type intel_pch; enum pch_type { PCH_NONE, PCH_IBX, PCH_CPT, PCH_LPT, }; void intel_check_pch(void); #define HAS_IBX (intel_pch == PCH_IBX) #define HAS_CPT (intel_pch == PCH_CPT) #define HAS_LPT (intel_pch == PCH_LPT) #define IP_VER(ver, rel) ((ver) << 8 | (rel)) /* Exclude chipset #defines, they just add noise */ #ifndef __GTK_DOC_IGNORE__ #define PCI_CHIP_I810 0x7121 #define PCI_CHIP_I810_DC100 0x7123 #define PCI_CHIP_I810_E 0x7125 #define PCI_CHIP_I815 0x1132 #define PCI_CHIP_I830_M 0x3577 #define PCI_CHIP_845_G 0x2562 #define PCI_CHIP_I854_G 0x358e #define PCI_CHIP_I855_GM 0x3582 #define PCI_CHIP_I865_G 0x2572 #define PCI_CHIP_I915_G 0x2582 #define PCI_CHIP_E7221_G 0x258A #define PCI_CHIP_I915_GM 0x2592 #define PCI_CHIP_I945_G 0x2772 #define PCI_CHIP_I945_GM 0x27A2 #define PCI_CHIP_I945_GME 0x27AE #define PCI_CHIP_I965_G 0x29A2 #define PCI_CHIP_I965_Q 0x2992 #define PCI_CHIP_I965_G_1 0x2982 #define PCI_CHIP_I946_GZ 0x2972 #define PCI_CHIP_I965_GM 0x2A02 #define PCI_CHIP_I965_GME 0x2A12 #define PCI_CHIP_GM45_GM 0x2A42 #define PCI_CHIP_Q45_G 0x2E12 #define PCI_CHIP_G45_G 0x2E22 #define PCI_CHIP_G41_G 0x2E32 #endif /* __GTK_DOC_IGNORE__ */ #define IS_915G(devid) (intel_get_device_info(devid)->is_grantsdale) #define IS_915GM(devid) (intel_get_device_info(devid)->is_alviso) #define IS_915(devid) (IS_915G(devid) || IS_915GM(devid)) #define IS_945G(devid) (intel_get_device_info(devid)->is_lakeport) #define IS_945GM(devid) (intel_get_device_info(devid)->is_calistoga) #define IS_945(devid) (IS_945G(devid) || \ IS_945GM(devid) || \ IS_G33(devid)) #define IS_PINEVIEW(devid) (intel_get_device_info(devid)->is_pineview) #define IS_G33(devid) (intel_get_device_info(devid)->is_bearlake || \ intel_get_device_info(devid)->is_pineview) #define IS_BROADWATER(devid) (intel_get_device_info(devid)->is_broadwater) #define IS_CRESTLINE(devid) (intel_get_device_info(devid)->is_crestline) #define IS_GM45(devid) (intel_get_device_info(devid)->is_cantiga) #define IS_G45(devid) (intel_get_device_info(devid)->is_eaglelake) #define IS_G4X(devid) (IS_G45(devid) || IS_GM45(devid)) #define IS_IRONLAKE(devid) (intel_get_device_info(devid)->is_ironlake) #define IS_ARRANDALE(devid) (intel_get_device_info(devid)->is_arrandale) #define IS_SANDYBRIDGE(devid) (intel_get_device_info(devid)->is_sandybridge) #define IS_IVYBRIDGE(devid) (intel_get_device_info(devid)->is_ivybridge) #define IS_VALLEYVIEW(devid) (intel_get_device_info(devid)->is_valleyview) #define IS_HASWELL(devid) (intel_get_device_info(devid)->is_haswell) #define IS_BROADWELL(devid) (intel_get_device_info(devid)->is_broadwell) #define IS_CHERRYVIEW(devid) (intel_get_device_info(devid)->is_cherryview) #define IS_SKYLAKE(devid) (intel_get_device_info(devid)->is_skylake) #define IS_BROXTON(devid) (intel_get_device_info(devid)->is_broxton) #define IS_KABYLAKE(devid) (intel_get_device_info(devid)->is_kabylake) #define IS_GEMINILAKE(devid) (intel_get_device_info(devid)->is_geminilake) #define IS_COFFEELAKE(devid) (intel_get_device_info(devid)->is_coffeelake) #define IS_COMETLAKE(devid) (intel_get_device_info(devid)->is_cometlake) #define IS_CANNONLAKE(devid) (intel_get_device_info(devid)->is_cannonlake) #define IS_ICELAKE(devid) (intel_get_device_info(devid)->is_icelake) #define IS_TIGERLAKE(devid) (intel_get_device_info(devid)->is_tigerlake) #define IS_ROCKETLAKE(devid) (intel_get_device_info(devid)->is_rocketlake) #define IS_DG1(devid) (intel_get_device_info(devid)->is_dg1) #define IS_DG2(devid) (intel_get_device_info(devid)->is_dg2) #define IS_ALDERLAKE_S(devid) (intel_get_device_info(devid)->is_alderlake_s) #define IS_RAPTORLAKE_S(devid) (intel_get_device_info(devid)->is_raptorlake_s) #define IS_ALDERLAKE_P(devid) (intel_get_device_info(devid)->is_alderlake_p) #define IS_ALDERLAKE_N(devid) (intel_get_device_info(devid)->is_alderlake_n) #define IS_METEORLAKE(devid) (intel_get_device_info(devid)->is_meteorlake) #define IS_PONTEVECCHIO(devid) (intel_get_device_info(devid)->is_pontevecchio) #define IS_LUNARLAKE(devid) (intel_get_device_info(devid)->is_lunarlake) #define IS_BATTLEMAGE(devid) (intel_get_device_info(devid)->is_battlemage) #define IS_GEN(devid, x) (intel_get_device_info(devid)->graphics_ver == x) #define AT_LEAST_GEN(devid, x) (intel_get_device_info(devid)->graphics_ver >= x) #define AT_LEAST_DISPLAY(devid, x) (intel_get_device_info(devid)->display_ver >= x) #define IS_GEN2(devid) IS_GEN(devid, 2) #define IS_GEN3(devid) IS_GEN(devid, 3) #define IS_GEN4(devid) IS_GEN(devid, 4) #define IS_GEN5(devid) IS_GEN(devid, 5) #define IS_GEN6(devid) IS_GEN(devid, 6) #define IS_GEN7(devid) IS_GEN(devid, 7) #define IS_GEN8(devid) IS_GEN(devid, 8) #define IS_GEN9(devid) IS_GEN(devid, 9) #define IS_GEN10(devid) IS_GEN(devid, 10) #define IS_GEN11(devid) IS_GEN(devid, 11) #define IS_GEN12(devid) IS_GEN(devid, 12) #define IS_MOBILE(devid) (intel_get_device_info(devid)->is_mobile) #define IS_965(devid) AT_LEAST_GEN(devid, 4) #define HAS_BSD_RING(devid) AT_LEAST_GEN(devid, 5) #define HAS_BLT_RING(devid) AT_LEAST_GEN(devid, 6) #define HAS_PCH_SPLIT(devid) (AT_LEAST_GEN(devid, 5) && \ !(IS_VALLEYVIEW(devid) || \ IS_CHERRYVIEW(devid) || \ IS_BROXTON(devid))) #define HAS_4TILE(devid) (intel_get_device_info(devid)->has_4tile) #define HAS_FLATCCS(devid) (intel_get_device_info(devid)->has_flatccs) #define HAS_OAM(devid) (intel_get_device_info(devid)->has_oam) #endif /* _INTEL_CHIPSET_H */ btop-1.4.5/src/linux/intel_gpu_top/intel_device_info.c000066400000000000000000000403301506333644200231020ustar00rootroot00000000000000#include "intel_chipset.h" #include "i915_pciids.h" #include "i915_pciids_local.h" #include "xe_pciids.h" #include /* ffs() */ // from pciaccess.h #define PCI_MATCH_ANY (~0U) // from pciaccess.h struct pci_id_match { /** * \name Device / vendor matching controls * * Control the search based on the device, vendor, subdevice, or subvendor * IDs. Setting any of these fields to \c PCI_MATCH_ANY will cause the * field to not be used in the comparison. */ /*@{*/ uint32_t vendor_id; uint32_t device_id; uint32_t subvendor_id; uint32_t subdevice_id; /*@}*/ /** * \name Device class matching controls * */ /*@{*/ uint32_t device_class; uint32_t device_class_mask; /*@}*/ intptr_t match_data; }; static const struct intel_device_info intel_generic_info = { .graphics_ver = 0, .display_ver = 0, }; static const struct intel_device_info intel_i810_info = { .graphics_ver = 1, .display_ver = 1, .is_whitney = true, .codename = "solano" /* 815 == "whitney" ? or vice versa? */ }; static const struct intel_device_info intel_i815_info = { .graphics_ver = 1, .display_ver = 1, .is_whitney = true, .codename = "whitney" }; static const struct intel_device_info intel_i830_info = { .graphics_ver = 2, .display_ver = 2, .is_almador = true, .codename = "almador" }; static const struct intel_device_info intel_i845_info = { .graphics_ver = 2, .display_ver = 2, .is_brookdale = true, .codename = "brookdale" }; static const struct intel_device_info intel_i855_info = { .graphics_ver = 2, .display_ver = 2, .is_mobile = true, .is_montara = true, .codename = "montara" }; static const struct intel_device_info intel_i865_info = { .graphics_ver = 2, .display_ver = 2, .is_springdale = true, .codename = "spingdale" }; static const struct intel_device_info intel_i915_info = { .graphics_ver = 3, .display_ver = 3, .is_grantsdale = true, .codename = "grantsdale" }; static const struct intel_device_info intel_i915m_info = { .graphics_ver = 3, .display_ver = 3, .is_mobile = true, .is_alviso = true, .codename = "alviso" }; static const struct intel_device_info intel_i945_info = { .graphics_ver = 3, .display_ver = 3, .is_lakeport = true, .codename = "lakeport" }; static const struct intel_device_info intel_i945m_info = { .graphics_ver = 3, .display_ver = 3, .is_mobile = true, .is_calistoga = true, .codename = "calistoga" }; static const struct intel_device_info intel_g33_info = { .graphics_ver = 3, .display_ver = 3, .is_bearlake = true, .codename = "bearlake" }; static const struct intel_device_info intel_pineview_g_info = { .graphics_ver = 3, .display_ver = 3, .is_pineview = true, .codename = "pineview" }; static const struct intel_device_info intel_pineview_m_info = { .graphics_ver = 3, .display_ver = 3, .is_mobile = true, .is_pineview = true, .codename = "pineview" }; static const struct intel_device_info intel_i965_info = { .graphics_ver = 4, .display_ver = 4, .is_broadwater = true, .codename = "broadwater" }; static const struct intel_device_info intel_i965m_info = { .graphics_ver = 4, .display_ver = 4, .is_mobile = true, .is_crestline = true, .codename = "crestline" }; static const struct intel_device_info intel_g45_info = { .graphics_ver = 4, .display_ver = 4, .is_eaglelake = true, .codename = "eaglelake" }; static const struct intel_device_info intel_gm45_info = { .graphics_ver = 4, .display_ver = 4, .is_mobile = true, .is_cantiga = true, .codename = "cantiga" }; static const struct intel_device_info intel_ironlake_info = { .graphics_ver = 5, .display_ver = 5, .is_ironlake = true, .codename = "ironlake" /* clarkdale? */ }; static const struct intel_device_info intel_ironlake_m_info = { .graphics_ver = 5, .display_ver = 5, .is_mobile = true, .is_arrandale = true, .codename = "arrandale" }; static const struct intel_device_info intel_sandybridge_info = { .graphics_ver = 6, .display_ver = 6, .is_sandybridge = true, .codename = "sandybridge" }; static const struct intel_device_info intel_sandybridge_m_info = { .graphics_ver = 6, .display_ver = 6, .is_mobile = true, .is_sandybridge = true, .codename = "sandybridge" }; static const struct intel_device_info intel_ivybridge_info = { .graphics_ver = 7, .display_ver = 7, .is_ivybridge = true, .codename = "ivybridge" }; static const struct intel_device_info intel_ivybridge_m_info = { .graphics_ver = 7, .display_ver = 7, .is_mobile = true, .is_ivybridge = true, .codename = "ivybridge" }; static const struct intel_device_info intel_valleyview_info = { .graphics_ver = 7, .display_ver = 7, .is_valleyview = true, .codename = "valleyview" }; #define HASWELL_FIELDS \ .graphics_ver = 7, \ .display_ver = 7, \ .is_haswell = true, \ .codename = "haswell" static const struct intel_device_info intel_haswell_gt1_info = { HASWELL_FIELDS, .gt = 1, }; static const struct intel_device_info intel_haswell_gt2_info = { HASWELL_FIELDS, .gt = 2, }; static const struct intel_device_info intel_haswell_gt3_info = { HASWELL_FIELDS, .gt = 3, }; #define BROADWELL_FIELDS \ .graphics_ver = 8, \ .display_ver = 8, \ .is_broadwell = true, \ .codename = "broadwell" static const struct intel_device_info intel_broadwell_gt1_info = { BROADWELL_FIELDS, .gt = 1, }; static const struct intel_device_info intel_broadwell_gt2_info = { BROADWELL_FIELDS, .gt = 2, }; static const struct intel_device_info intel_broadwell_gt3_info = { BROADWELL_FIELDS, .gt = 3, }; static const struct intel_device_info intel_broadwell_unknown_info = { BROADWELL_FIELDS, }; static const struct intel_device_info intel_cherryview_info = { .graphics_ver = 8, .display_ver = 8, .is_cherryview = true, .codename = "cherryview" }; #define SKYLAKE_FIELDS \ .graphics_ver = 9, \ .display_ver = 9, \ .codename = "skylake", \ .is_skylake = true static const struct intel_device_info intel_skylake_gt1_info = { SKYLAKE_FIELDS, .gt = 1, }; static const struct intel_device_info intel_skylake_gt2_info = { SKYLAKE_FIELDS, .gt = 2, }; static const struct intel_device_info intel_skylake_gt3_info = { SKYLAKE_FIELDS, .gt = 3, }; static const struct intel_device_info intel_skylake_gt4_info = { SKYLAKE_FIELDS, .gt = 4, }; static const struct intel_device_info intel_broxton_info = { .graphics_ver = 9, .display_ver = 9, .is_broxton = true, .codename = "broxton" }; #define KABYLAKE_FIELDS \ .graphics_ver = 9, \ .display_ver = 9, \ .is_kabylake = true, \ .codename = "kabylake" static const struct intel_device_info intel_kabylake_gt1_info = { KABYLAKE_FIELDS, .gt = 1, }; static const struct intel_device_info intel_kabylake_gt2_info = { KABYLAKE_FIELDS, .gt = 2, }; static const struct intel_device_info intel_kabylake_gt3_info = { KABYLAKE_FIELDS, .gt = 3, }; static const struct intel_device_info intel_kabylake_gt4_info = { KABYLAKE_FIELDS, .gt = 4, }; static const struct intel_device_info intel_geminilake_info = { .graphics_ver = 9, .display_ver = 9, .is_geminilake = true, .codename = "geminilake" }; #define COFFEELAKE_FIELDS \ .graphics_ver = 9, \ .display_ver = 9, \ .is_coffeelake = true, \ .codename = "coffeelake" static const struct intel_device_info intel_coffeelake_gt1_info = { COFFEELAKE_FIELDS, .gt = 1, }; static const struct intel_device_info intel_coffeelake_gt2_info = { COFFEELAKE_FIELDS, .gt = 2, }; static const struct intel_device_info intel_coffeelake_gt3_info = { COFFEELAKE_FIELDS, .gt = 3, }; #define COMETLAKE_FIELDS \ .graphics_ver = 9, \ .display_ver = 9, \ .is_cometlake = true, \ .codename = "cometlake" static const struct intel_device_info intel_cometlake_gt1_info = { COMETLAKE_FIELDS, .gt = 1, }; static const struct intel_device_info intel_cometlake_gt2_info = { COMETLAKE_FIELDS, .gt = 2, }; static const struct intel_device_info intel_cannonlake_info = { .graphics_ver = 10, .display_ver = 10, .is_cannonlake = true, .codename = "cannonlake" }; static const struct intel_device_info intel_icelake_info = { .graphics_ver = 11, .display_ver = 11, .is_icelake = true, .codename = "icelake" }; static const struct intel_device_info intel_elkhartlake_info = { .graphics_ver = 11, .display_ver = 11, .is_elkhartlake = true, .codename = "elkhartlake" }; static const struct intel_device_info intel_jasperlake_info = { .graphics_ver = 11, .display_ver = 11, .is_jasperlake = true, .codename = "jasperlake" }; static const struct intel_device_info intel_tigerlake_gt1_info = { .graphics_ver = 12, .display_ver = 12, .is_tigerlake = true, .codename = "tigerlake", .gt = 1, }; static const struct intel_device_info intel_tigerlake_gt2_info = { .graphics_ver = 12, .display_ver = 12, .is_tigerlake = true, .codename = "tigerlake", .gt = 2, }; static const struct intel_device_info intel_rocketlake_info = { .graphics_ver = 12, .display_ver = 12, .is_rocketlake = true, .codename = "rocketlake" }; static const struct intel_device_info intel_dg1_info = { .graphics_ver = 12, .graphics_rel = 10, .display_ver = 12, .is_dg1 = true, .codename = "dg1" }; static const struct intel_device_info intel_dg2_info = { .graphics_ver = 12, .graphics_rel = 55, .display_ver = 13, .has_4tile = true, .is_dg2 = true, .codename = "dg2", .has_flatccs = true, }; static const struct intel_device_info intel_alderlake_s_info = { .graphics_ver = 12, .display_ver = 12, .is_alderlake_s = true, .codename = "alderlake_s" }; static const struct intel_device_info intel_raptorlake_s_info = { .graphics_ver = 12, .display_ver = 12, .is_raptorlake_s = true, .codename = "raptorlake_s" }; static const struct intel_device_info intel_alderlake_p_info = { .graphics_ver = 12, .display_ver = 13, .is_alderlake_p = true, .codename = "alderlake_p" }; static const struct intel_device_info intel_alderlake_n_info = { .graphics_ver = 12, .display_ver = 13, .is_alderlake_n = true, .codename = "alderlake_n" }; static const struct intel_device_info intel_ats_m_info = { .graphics_ver = 12, .graphics_rel = 55, .display_ver = 0, /* no display support */ .is_dg2 = true, .has_4tile = true, .codename = "ats_m", .has_flatccs = true, }; static const struct intel_device_info intel_meteorlake_info = { .graphics_ver = 12, .graphics_rel = 70, .display_ver = 14, .has_4tile = true, .has_oam = true, .is_meteorlake = true, .codename = "meteorlake", }; static const struct intel_device_info intel_pontevecchio_info = { .graphics_ver = 12, .graphics_rel = 60, .is_pontevecchio = true, .codename = "pontevecchio", }; static const struct intel_device_info intel_lunarlake_info = { .graphics_ver = 20, .graphics_rel = 4, .display_ver = 20, .has_4tile = true, .has_flatccs = true, .has_oam = true, .is_lunarlake = true, .codename = "lunarlake", }; static const struct intel_device_info intel_battlemage_info = { .graphics_ver = 20, .graphics_rel = 1, .display_ver = 14, .has_4tile = true, .has_flatccs = true, .is_battlemage = true, .codename = "battlemage", }; static const struct pci_id_match intel_device_match[] = { INTEL_I810_IDS(INTEL_VGA_DEVICE, &intel_i810_info), INTEL_I815_IDS(INTEL_VGA_DEVICE, &intel_i815_info), INTEL_I830_IDS(INTEL_VGA_DEVICE, &intel_i830_info), INTEL_I845G_IDS(INTEL_VGA_DEVICE, &intel_i845_info), INTEL_I85X_IDS(INTEL_VGA_DEVICE, &intel_i855_info), INTEL_I865G_IDS(INTEL_VGA_DEVICE, &intel_i865_info), INTEL_I915G_IDS(INTEL_VGA_DEVICE, &intel_i915_info), INTEL_I915GM_IDS(INTEL_VGA_DEVICE, &intel_i915m_info), INTEL_I945G_IDS(INTEL_VGA_DEVICE, &intel_i945_info), INTEL_I945GM_IDS(INTEL_VGA_DEVICE, &intel_i945m_info), INTEL_G33_IDS(INTEL_VGA_DEVICE, &intel_g33_info), INTEL_PNV_G_IDS(INTEL_VGA_DEVICE, &intel_pineview_g_info), INTEL_PNV_M_IDS(INTEL_VGA_DEVICE, &intel_pineview_m_info), INTEL_I965G_IDS(INTEL_VGA_DEVICE, &intel_i965_info), INTEL_I965GM_IDS(INTEL_VGA_DEVICE, &intel_i965m_info), INTEL_G45_IDS(INTEL_VGA_DEVICE, &intel_g45_info), INTEL_GM45_IDS(INTEL_VGA_DEVICE, &intel_gm45_info), INTEL_ILK_D_IDS(INTEL_VGA_DEVICE, &intel_ironlake_info), INTEL_ILK_M_IDS(INTEL_VGA_DEVICE, &intel_ironlake_m_info), INTEL_SNB_D_IDS(INTEL_VGA_DEVICE, &intel_sandybridge_info), INTEL_SNB_M_IDS(INTEL_VGA_DEVICE, &intel_sandybridge_m_info), INTEL_IVB_D_IDS(INTEL_VGA_DEVICE, &intel_ivybridge_info), INTEL_IVB_M_IDS(INTEL_VGA_DEVICE, &intel_ivybridge_m_info), INTEL_HSW_GT1_IDS(INTEL_VGA_DEVICE, &intel_haswell_gt1_info), INTEL_HSW_GT2_IDS(INTEL_VGA_DEVICE, &intel_haswell_gt2_info), INTEL_HSW_GT3_IDS(INTEL_VGA_DEVICE, &intel_haswell_gt3_info), INTEL_VLV_IDS(INTEL_VGA_DEVICE, &intel_valleyview_info), INTEL_BDW_GT1_IDS(INTEL_VGA_DEVICE, &intel_broadwell_gt1_info), INTEL_BDW_GT2_IDS(INTEL_VGA_DEVICE, &intel_broadwell_gt2_info), INTEL_BDW_GT3_IDS(INTEL_VGA_DEVICE, &intel_broadwell_gt3_info), INTEL_BDW_RSVD_IDS(INTEL_VGA_DEVICE, &intel_broadwell_unknown_info), INTEL_CHV_IDS(INTEL_VGA_DEVICE, &intel_cherryview_info), INTEL_SKL_GT1_IDS(INTEL_VGA_DEVICE, &intel_skylake_gt1_info), INTEL_SKL_GT2_IDS(INTEL_VGA_DEVICE, &intel_skylake_gt2_info), INTEL_SKL_GT3_IDS(INTEL_VGA_DEVICE, &intel_skylake_gt3_info), INTEL_SKL_GT4_IDS(INTEL_VGA_DEVICE, &intel_skylake_gt4_info), INTEL_BXT_IDS(INTEL_VGA_DEVICE, &intel_broxton_info), INTEL_KBL_GT1_IDS(INTEL_VGA_DEVICE, &intel_kabylake_gt1_info), INTEL_KBL_GT2_IDS(INTEL_VGA_DEVICE, &intel_kabylake_gt2_info), INTEL_KBL_GT3_IDS(INTEL_VGA_DEVICE, &intel_kabylake_gt3_info), INTEL_KBL_GT4_IDS(INTEL_VGA_DEVICE, &intel_kabylake_gt4_info), INTEL_AML_KBL_GT2_IDS(INTEL_VGA_DEVICE, &intel_kabylake_gt2_info), INTEL_GLK_IDS(INTEL_VGA_DEVICE, &intel_geminilake_info), INTEL_CFL_S_GT1_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt1_info), INTEL_CFL_S_GT2_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt2_info), INTEL_CFL_H_GT1_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt1_info), INTEL_CFL_H_GT2_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt2_info), INTEL_CFL_U_GT2_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt2_info), INTEL_CFL_U_GT3_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt3_info), INTEL_WHL_U_GT1_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt1_info), INTEL_WHL_U_GT2_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt2_info), INTEL_WHL_U_GT3_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt3_info), INTEL_AML_CFL_GT2_IDS(INTEL_VGA_DEVICE, &intel_coffeelake_gt2_info), INTEL_CML_GT1_IDS(INTEL_VGA_DEVICE, &intel_cometlake_gt1_info), INTEL_CML_GT2_IDS(INTEL_VGA_DEVICE, &intel_cometlake_gt2_info), INTEL_CML_U_GT1_IDS(INTEL_VGA_DEVICE, &intel_cometlake_gt1_info), INTEL_CML_U_GT2_IDS(INTEL_VGA_DEVICE, &intel_cometlake_gt2_info), INTEL_CNL_IDS(INTEL_VGA_DEVICE, &intel_cannonlake_info), INTEL_ICL_IDS(INTEL_VGA_DEVICE, &intel_icelake_info), INTEL_EHL_IDS(INTEL_VGA_DEVICE, &intel_elkhartlake_info), INTEL_JSL_IDS(INTEL_VGA_DEVICE, &intel_jasperlake_info), INTEL_TGL_GT1_IDS(INTEL_VGA_DEVICE, &intel_tigerlake_gt1_info), INTEL_TGL_GT2_IDS(INTEL_VGA_DEVICE, &intel_tigerlake_gt2_info), INTEL_RKL_IDS(INTEL_VGA_DEVICE, &intel_rocketlake_info), INTEL_DG1_IDS(INTEL_VGA_DEVICE, &intel_dg1_info), INTEL_DG2_IDS(INTEL_VGA_DEVICE, &intel_dg2_info), INTEL_ADLS_IDS(INTEL_VGA_DEVICE, &intel_alderlake_s_info), INTEL_RPLS_IDS(INTEL_VGA_DEVICE, &intel_raptorlake_s_info), INTEL_ADLP_IDS(INTEL_VGA_DEVICE, &intel_alderlake_p_info), INTEL_RPLU_IDS(INTEL_VGA_DEVICE, &intel_alderlake_p_info), INTEL_RPLP_IDS(INTEL_VGA_DEVICE, &intel_alderlake_p_info), INTEL_ADLN_IDS(INTEL_VGA_DEVICE, &intel_alderlake_n_info), INTEL_ATS_M_IDS(INTEL_VGA_DEVICE, &intel_ats_m_info), INTEL_MTL_IDS(INTEL_VGA_DEVICE, &intel_meteorlake_info), INTEL_PVC_IDS(INTEL_VGA_DEVICE, &intel_pontevecchio_info), XE_LNL_IDS(INTEL_VGA_DEVICE, &intel_lunarlake_info), XE_BMG_IDS(INTEL_VGA_DEVICE, &intel_battlemage_info), INTEL_VGA_DEVICE(PCI_MATCH_ANY, &intel_generic_info), }; /** * intel_get_device_info: * @devid: pci device id * * Looks up the Intel GFX device info for the given device id. * * Returns: * The associated intel_get_device_info */ const struct intel_device_info *intel_get_device_info(uint16_t devid) { static const struct intel_device_info *cache = &intel_generic_info; static uint16_t cached_devid; int i; if (cached_devid == devid) goto out; /* XXX Presort table and bsearch! */ for (i = 0; intel_device_match[i].device_id != PCI_MATCH_ANY; i++) { if (devid == intel_device_match[i].device_id) break; } cached_devid = devid; cache = (void *)intel_device_match[i].match_data; out: return cache; }btop-1.4.5/src/linux/intel_gpu_top/intel_gpu_top.c000066400000000000000000000364431506333644200223170ustar00rootroot00000000000000/* * Copyright © 2007-2023 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "intel_gpu_top.h" #include "i915_drm.h" #include "igt_perf.h" #ifdef __clang__ //? Workaround for missing asprintf when compiling with clang, taken from https://stackoverflow.com/a/4899487 int asprintf(char **ret, const char *format, ...) { va_list ap; *ret = NULL; /* Ensure value can be passed to free() */ va_start(ap, format); int count = vsnprintf(NULL, 0, format, ap); va_end(ap); if (count >= 0) { char* buffer = malloc(count + 1); if (buffer == NULL) return -1; va_start(ap, format); count = vsnprintf(buffer, count + 1, format, ap); va_end(ap); if (count < 0) { free(buffer); return count; } *ret = buffer; } return count; } #endif __attribute__((format(scanf,3,4))) static int igt_sysfs_scanf(int dir, const char *attr, const char *fmt, ...) { FILE *file; int fd; int ret = -1; fd = openat(dir, attr, O_RDONLY); if (fd < 0) return -1; file = fdopen(fd, "r"); if (file) { va_list ap; va_start(ap, fmt); ret = vfscanf(file, fmt, ap); va_end(ap); fclose(file); } else { close(fd); } return ret; } static int pmu_parse(struct pmu_counter *pmu, const char *path, const char *str) { locale_t locale, oldlocale; bool result = true; char buf[128] = {}; int dir; dir = open(path, O_RDONLY); if (dir < 0) return -errno; /* Replace user environment with plain C to match kernel format */ locale = newlocale(LC_ALL, "C", 0); oldlocale = uselocale(locale); result &= igt_sysfs_scanf(dir, "type", "%"PRIu64, &pmu->type) == 1; snprintf(buf, sizeof(buf) - 1, "events/%s", str); result &= igt_sysfs_scanf(dir, buf, "event=%"PRIx64, &pmu->config) == 1; snprintf(buf, sizeof(buf) - 1, "events/%s.scale", str); result &= igt_sysfs_scanf(dir, buf, "%lf", &pmu->scale) == 1; snprintf(buf, sizeof(buf) - 1, "events/%s.unit", str); result &= igt_sysfs_scanf(dir, buf, "%127s", buf) == 1; pmu->units = strdup(buf); uselocale(oldlocale); freelocale(locale); close(dir); if (!result) return -EINVAL; if (isnan(pmu->scale) || !pmu->scale) return -ERANGE; return 0; } static int rapl_parse(struct pmu_counter *pmu, const char *str) { const char *expected_units = "Joules"; int err; err = pmu_parse(pmu, "/sys/devices/power", str); if (err < 0) return err; if (!pmu->units || strcmp(pmu->units, expected_units)) { fprintf(stderr, "Unexpected units for RAPL %s: found '%s', expected '%s'\n", str, pmu->units, expected_units); } return 0; } static void rapl_open(struct pmu_counter *pmu, const char *domain, struct engines *engines) { int fd; if (rapl_parse(pmu, domain) < 0) return; fd = igt_perf_open_group(pmu->type, pmu->config, engines->rapl_fd); if (fd < 0) return; if (engines->rapl_fd == -1) engines->rapl_fd = fd; pmu->idx = engines->num_rapl++; pmu->present = true; } static void gpu_power_open(struct pmu_counter *pmu, struct engines *engines) { rapl_open(pmu, "energy-gpu", engines); } static void pkg_power_open(struct pmu_counter *pmu, struct engines *engines) { rapl_open(pmu, "energy-pkg", engines); } static uint64_t get_pmu_config(int dirfd, const char *name, const char *counter) { char buf[128], *p; int fd, ret; ret = snprintf(buf, sizeof(buf), "%s-%s", name, counter); if (ret < 0 || ret == sizeof(buf)) return -1; fd = openat(dirfd, buf, O_RDONLY); if (fd < 0) return -1; ret = read(fd, buf, sizeof(buf)); close(fd); if (ret <= 0) return -1; p = index(buf, '0'); if (!p) return -1; return strtoul(p, NULL, 0); } #define engine_ptr(engines, n) (&engines->engine + (n)) static const char *class_display_name(unsigned int class) { switch (class) { case I915_ENGINE_CLASS_RENDER: return "Render/3D"; case I915_ENGINE_CLASS_COPY: return "Blitter"; case I915_ENGINE_CLASS_VIDEO: return "Video"; case I915_ENGINE_CLASS_VIDEO_ENHANCE: return "VideoEnhance"; case I915_ENGINE_CLASS_COMPUTE: return "Compute"; default: return "[unknown]"; } } static const char *class_short_name(unsigned int class) { switch (class) { case I915_ENGINE_CLASS_RENDER: return "RCS"; case I915_ENGINE_CLASS_COPY: return "BCS"; case I915_ENGINE_CLASS_VIDEO: return "VCS"; case I915_ENGINE_CLASS_VIDEO_ENHANCE: return "VECS"; case I915_ENGINE_CLASS_COMPUTE: return "CCS"; default: return "UNKN"; } } static int engine_cmp(const void *__a, const void *__b) { const struct engine *a = (struct engine *)__a; const struct engine *b = (struct engine *)__b; if (a->class != b->class) return a->class - b->class; else return a->instance - b->instance; } #define is_igpu(x) (strcmp(x, "i915") == 0) struct engines *discover_engines(const char *device) { char sysfs_root[PATH_MAX]; struct engines *engines; struct dirent *dent; int ret = 0; DIR *d; snprintf(sysfs_root, sizeof(sysfs_root), "/sys/devices/%s/events", device); engines = malloc(sizeof(struct engines)); if (!engines) return NULL; memset(engines, 0, sizeof(*engines)); engines->num_engines = 0; engines->device = device; engines->discrete = !is_igpu(device); d = opendir(sysfs_root); if (!d) goto err; while ((dent = readdir(d)) != NULL) { const char *endswith = "-busy"; const unsigned int endlen = strlen(endswith); struct engine *engine = engine_ptr(engines, engines->num_engines); char buf[256]; if (dent->d_type != DT_REG) continue; if (strlen(dent->d_name) >= sizeof(buf)) { ret = ENAMETOOLONG; break; } strcpy(buf, dent->d_name); /* xxxN-busy */ if (strlen(buf) < (endlen + 4)) continue; if (strcmp(&buf[strlen(buf) - endlen], endswith)) continue; memset(engine, 0, sizeof(*engine)); buf[strlen(buf) - endlen] = 0; engine->name = strdup(buf); if (!engine->name) { ret = errno; break; } engine->busy.config = get_pmu_config(dirfd(d), engine->name, "busy"); if (engine->busy.config == -1) { ret = ENOENT; break; } /* Double check config is an engine config. */ if (engine->busy.config >= __I915_PMU_OTHER(0)) { free((void *)engine->name); continue; } engine->class = (engine->busy.config & (__I915_PMU_OTHER(0) - 1)) >> I915_PMU_CLASS_SHIFT; engine->instance = (engine->busy.config >> I915_PMU_SAMPLE_BITS) & ((1 << I915_PMU_SAMPLE_INSTANCE_BITS) - 1); ret = asprintf(&engine->display_name, "%s/%u", class_display_name(engine->class), engine->instance); if (ret <= 0) { ret = errno; break; } ret = asprintf(&engine->short_name, "%s/%u", class_short_name(engine->class), engine->instance); if (ret <= 0) { ret = errno; break; } engines->num_engines++; engines = realloc(engines, sizeof(struct engines) + engines->num_engines * sizeof(struct engine)); if (!engines) { ret = errno; break; } ret = 0; } if (ret) { errno = ret; goto err; } qsort(engine_ptr(engines, 0), engines->num_engines, sizeof(struct engine), engine_cmp); engines->root = d; return engines; err: free(engines); return NULL; } void free_engines(struct engines *engines) { struct pmu_counter **pmu, *free_list[] = { &engines->r_gpu, &engines->r_pkg, &engines->imc_reads, &engines->imc_writes, NULL }; unsigned int i; if (!engines) return; for (pmu = &free_list[0]; *pmu; pmu++) { if ((*pmu)->present) free((char *)(*pmu)->units); } for (i = 0; i < engines->num_engines; i++) { struct engine *engine = engine_ptr(engines, i); free((char *)engine->name); free((char *)engine->short_name); free((char *)engine->display_name); } closedir(engines->root); free(engines->class); free(engines); } #define _open_pmu(type, cnt, pmu, fd) \ ({ \ int fd__; \ \ fd__ = igt_perf_open_group((type), (pmu)->config, (fd)); \ if (fd__ >= 0) { \ if ((fd) == -1) \ (fd) = fd__; \ (pmu)->present = true; \ (pmu)->idx = (cnt)++; \ } \ \ fd__; \ }) static int imc_parse(struct pmu_counter *pmu, const char *str) { return pmu_parse(pmu, "/sys/devices/uncore_imc", str); } static void imc_open(struct pmu_counter *pmu, const char *domain, struct engines *engines) { int fd; if (imc_parse(pmu, domain) < 0) return; fd = igt_perf_open_group(pmu->type, pmu->config, engines->imc_fd); if (fd < 0) return; if (engines->imc_fd == -1) engines->imc_fd = fd; pmu->idx = engines->num_imc++; pmu->present = true; } static void imc_writes_open(struct pmu_counter *pmu, struct engines *engines) { imc_open(pmu, "data_writes", engines); } static void imc_reads_open(struct pmu_counter *pmu, struct engines *engines) { imc_open(pmu, "data_reads", engines); } static int get_num_gts(uint64_t type) { int fd, cnt; errno = 0; for (cnt = 0; cnt < MAX_GTS; cnt++) { fd = igt_perf_open(type, __I915_PMU_INTERRUPTS(cnt)); if (fd < 0) break; close(fd); } if (!cnt || (errno && errno != ENOENT)) cnt = -errno; return cnt; } static void init_aggregate_counters(struct engines *engines) { struct pmu_counter *pmu; pmu = &engines->freq_req; pmu->type = igt_perf_type_id(engines->device); pmu->config = I915_PMU_REQUESTED_FREQUENCY; pmu->present = true; pmu = &engines->freq_act; pmu->type = igt_perf_type_id(engines->device); pmu->config = I915_PMU_ACTUAL_FREQUENCY; pmu->present = true; pmu = &engines->rc6; pmu->type = igt_perf_type_id(engines->device); pmu->config = I915_PMU_RC6_RESIDENCY; pmu->present = true; } int pmu_init(struct engines *engines) { unsigned int i; int fd; uint64_t type = igt_perf_type_id(engines->device); engines->fd = -1; engines->num_counters = 0; engines->num_gts = get_num_gts(type); if (engines->num_gts <= 0) return -1; engines->irq.config = I915_PMU_INTERRUPTS; fd = _open_pmu(type, engines->num_counters, &engines->irq, engines->fd); if (fd < 0) return -1; init_aggregate_counters(engines); for (i = 0; i < engines->num_gts; i++) { engines->freq_req_gt[i].config = __I915_PMU_REQUESTED_FREQUENCY(i); _open_pmu(type, engines->num_counters, &engines->freq_req_gt[i], engines->fd); engines->freq_act_gt[i].config = __I915_PMU_ACTUAL_FREQUENCY(i); _open_pmu(type, engines->num_counters, &engines->freq_act_gt[i], engines->fd); engines->rc6_gt[i].config = __I915_PMU_RC6_RESIDENCY(i); _open_pmu(type, engines->num_counters, &engines->rc6_gt[i], engines->fd); } for (i = 0; i < engines->num_engines; i++) { struct engine *engine = engine_ptr(engines, i); struct { struct pmu_counter *pmu; const char *counter; } *cnt, counters[] = { { .pmu = &engine->busy, .counter = "busy" }, { .pmu = &engine->wait, .counter = "wait" }, { .pmu = &engine->sema, .counter = "sema" }, { .pmu = NULL, .counter = NULL }, }; for (cnt = counters; cnt->pmu; cnt++) { if (!cnt->pmu->config) cnt->pmu->config = get_pmu_config(dirfd(engines->root), engine->name, cnt->counter); fd = _open_pmu(type, engines->num_counters, cnt->pmu, engines->fd); if (fd >= 0) engine->num_counters++; } } engines->rapl_fd = -1; if (!engines->discrete) { gpu_power_open(&engines->r_gpu, engines); pkg_power_open(&engines->r_pkg, engines); } engines->imc_fd = -1; imc_reads_open(&engines->imc_reads, engines); imc_writes_open(&engines->imc_writes, engines); return 0; } static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val) { uint64_t buf[2 + num]; unsigned int i; ssize_t len; memset(buf, 0, sizeof(buf)); len = read(fd, buf, sizeof(buf)); assert(len == sizeof(buf)); for (i = 0; i < num; i++) val[i] = buf[2 + i]; return buf[1]; } double pmu_calc(struct pmu_pair *p, double d, double t, double s) { double v; v = p->cur - p->prev; v /= d; v /= t; v *= s; if (s == 100.0 && v > 100.0) v = 100.0; return v; } static void __update_sample(struct pmu_counter *counter, uint64_t val) { counter->val.prev = counter->val.cur; counter->val.cur = val; } static void update_sample(struct pmu_counter *counter, uint64_t *val) { if (counter->present) __update_sample(counter, val[counter->idx]); } void pmu_sample(struct engines *engines) { const int num_val = engines->num_counters; uint64_t val[2 + num_val]; unsigned int i; engines->ts.prev = engines->ts.cur; engines->ts.cur = pmu_read_multi(engines->fd, num_val, val); engines->freq_req.val.cur = engines->freq_req.val.prev = 0; engines->freq_act.val.cur = engines->freq_act.val.prev = 0; engines->rc6.val.cur = engines->rc6.val.prev = 0; for (i = 0; i < engines->num_gts; i++) { update_sample(&engines->freq_req_gt[i], val); engines->freq_req.val.cur += engines->freq_req_gt[i].val.cur; engines->freq_req.val.prev += engines->freq_req_gt[i].val.prev; update_sample(&engines->freq_act_gt[i], val); engines->freq_act.val.cur += engines->freq_act_gt[i].val.cur; engines->freq_act.val.prev += engines->freq_act_gt[i].val.prev; update_sample(&engines->rc6_gt[i], val); engines->rc6.val.cur += engines->rc6_gt[i].val.cur; engines->rc6.val.prev += engines->rc6_gt[i].val.prev; } engines->freq_req.val.cur /= engines->num_gts; engines->freq_req.val.prev /= engines->num_gts; engines->freq_act.val.cur /= engines->num_gts; engines->freq_act.val.prev /= engines->num_gts; engines->rc6.val.cur /= engines->num_gts; engines->rc6.val.prev /= engines->num_gts; update_sample(&engines->irq, val); for (i = 0; i < engines->num_engines; i++) { struct engine *engine = engine_ptr(engines, i); update_sample(&engine->busy, val); update_sample(&engine->sema, val); update_sample(&engine->wait, val); } if (engines->num_rapl) { pmu_read_multi(engines->rapl_fd, engines->num_rapl, val); update_sample(&engines->r_gpu, val); update_sample(&engines->r_pkg, val); } if (engines->num_imc) { pmu_read_multi(engines->imc_fd, engines->num_imc, val); update_sample(&engines->imc_reads, val); update_sample(&engines->imc_writes, val); } }btop-1.4.5/src/linux/intel_gpu_top/intel_gpu_top.h000066400000000000000000000034761506333644200223240ustar00rootroot00000000000000#ifndef INTEL_GPU_TOP_H #define INTEL_GPU_TOP_H #include #include #include struct pmu_pair { uint64_t cur; uint64_t prev; }; struct pmu_counter { uint64_t type; uint64_t config; unsigned int idx; struct pmu_pair val; double scale; const char *units; bool present; }; struct engine_class { unsigned int engine_class; const char *name; unsigned int num_engines; }; struct engine { const char *name; char *display_name; char *short_name; unsigned int class; unsigned int instance; unsigned int num_counters; struct pmu_counter busy; struct pmu_counter wait; struct pmu_counter sema; }; #define MAX_GTS 4 struct engines { unsigned int num_engines; unsigned int num_classes; struct engine_class *class; unsigned int num_counters; DIR *root; int fd; struct pmu_pair ts; int rapl_fd; struct pmu_counter r_gpu, r_pkg; unsigned int num_rapl; int imc_fd; struct pmu_counter imc_reads; struct pmu_counter imc_writes; unsigned int num_imc; struct pmu_counter freq_req; struct pmu_counter freq_req_gt[MAX_GTS]; struct pmu_counter freq_act; struct pmu_counter freq_act_gt[MAX_GTS]; struct pmu_counter irq; struct pmu_counter rc6; struct pmu_counter rc6_gt[MAX_GTS]; bool discrete; char *device; int num_gts; /* Do not edit below this line. * This structure is reallocated every time a new engine is * found and size is increased by sizeof (engine). */ struct engine engine; }; struct engines *discover_engines(const char *device); void free_engines(struct engines *engines); int pmu_init(struct engines *engines); void pmu_sample(struct engines *engines); double pmu_calc(struct pmu_pair *p, double d, double t, double s); char* find_intel_gpu_dir(); char* get_intel_device_id(const char* vendor_path); char *get_intel_device_name(const char *device_id); #endifbtop-1.4.5/src/linux/intel_gpu_top/intel_name_lookup_shim.c000066400000000000000000000054571506333644200241740ustar00rootroot00000000000000#include #include #include #include #include #include #include "intel_gpu_top.h" #include "intel_chipset.h" #define VENDOR_ID "0x8086" #define SYSFS_PATH "/sys/class/drm" #define VENDOR_FILE "vendor" #define DEVICE_FILE "device" char* find_intel_gpu_dir() { DIR *dir; struct dirent *entry; static char path[256]; char vendor_path[256]; char vendor_id[16]; if ((dir = opendir(SYSFS_PATH)) == NULL) { perror("opendir"); return NULL; } while ((entry = readdir(dir)) != NULL) { // Construct the path to the vendor file snprintf(vendor_path, sizeof(vendor_path), "%s/%s/device/%s", SYSFS_PATH, entry->d_name, VENDOR_FILE); // Check if the vendor file exists if (access(vendor_path, F_OK) != -1) { FILE *file = fopen(vendor_path, "r"); if (file) { if (fgets(vendor_id, sizeof(vendor_id), file)) { // Trim the newline character vendor_id[strcspn(vendor_id, "\n")] = 0; if (strcmp(vendor_id, VENDOR_ID) == 0) { fclose(file); closedir(dir); // Return the parent directory (i.e., /sys/class/drm/card*) snprintf(path, sizeof(path), "%s/%s", SYSFS_PATH, entry->d_name); return path; } } fclose(file); } } } closedir(dir); return NULL; // Intel GPU not found } char* get_intel_device_id(const char* gpu_dir) { static char device_path[256]; char device_id[16]; // Construct the path to the device file snprintf(device_path, sizeof(device_path), "%s/device/%s", gpu_dir, DEVICE_FILE); FILE *file = fopen(device_path, "r"); if (file) { if (fgets(device_id, sizeof(device_id), file)) { fclose(file); // Trim the newline character device_id[strcspn(device_id, "\n")] = 0; // Return a copy of the device ID return strdup(device_id); } fclose(file); } else { perror("fopen"); } return NULL; } char *get_intel_device_name(const char *device_id) { uint16_t devid = strtol(device_id, NULL, 16); char dev_name[256]; char full_name[256]; const struct intel_device_info *info = intel_get_device_info(devid); if (info) { if (info->codename == NULL) { strcpy(dev_name, "(unknown)"); } else { strcpy(dev_name, info->codename); dev_name[0] = toupper(dev_name[0]); } snprintf(full_name, sizeof(full_name), "Intel %s (Gen%u)", dev_name, info->graphics_ver); return strdup(full_name); } return NULL; } btop-1.4.5/src/linux/intel_gpu_top/source.txt000066400000000000000000000001351506333644200213310ustar00rootroot000000000000000f02dc176959e6296866b1bafd3982e277a5e44b https://gitlab.freedesktop.org/drm/igt-gpu-tools.gitbtop-1.4.5/src/linux/intel_gpu_top/xe_pciids.h000066400000000000000000000144251506333644200214170ustar00rootroot00000000000000/* SPDX-License-Identifier: MIT */ /* * Copyright © 2022 Intel Corporation */ #ifndef _XE_PCIIDS_H_ #define _XE_PCIIDS_H_ /* * Lists below can be turned into initializers for a struct pci_device_id * by defining INTEL_VGA_DEVICE: * * #define INTEL_VGA_DEVICE(id, info) { \ * 0x8086, id, \ * ~0, ~0, \ * 0x030000, 0xff0000, \ * (unsigned long) info } * * And then calling like: * * XE_TGL_12_GT1_IDS(INTEL_VGA_DEVICE, ## __VA_ARGS__) * * To turn them into something else, just provide a different macro passed as * first argument. */ /* TGL */ #define XE_TGL_GT1_IDS(MACRO__, ...) \ MACRO__(0x9A60, ## __VA_ARGS__), \ MACRO__(0x9A68, ## __VA_ARGS__), \ MACRO__(0x9A70, ## __VA_ARGS__) #define XE_TGL_GT2_IDS(MACRO__, ...) \ MACRO__(0x9A40, ## __VA_ARGS__), \ MACRO__(0x9A49, ## __VA_ARGS__), \ MACRO__(0x9A59, ## __VA_ARGS__), \ MACRO__(0x9A78, ## __VA_ARGS__), \ MACRO__(0x9AC0, ## __VA_ARGS__), \ MACRO__(0x9AC9, ## __VA_ARGS__), \ MACRO__(0x9AD9, ## __VA_ARGS__), \ MACRO__(0x9AF8, ## __VA_ARGS__) #define XE_TGL_IDS(MACRO__, ...) \ XE_TGL_GT1_IDS(MACRO__, ## __VA_ARGS__),\ XE_TGL_GT2_IDS(MACRO__, ## __VA_ARGS__) /* RKL */ #define XE_RKL_IDS(MACRO__, ...) \ MACRO__(0x4C80, ## __VA_ARGS__), \ MACRO__(0x4C8A, ## __VA_ARGS__), \ MACRO__(0x4C8B, ## __VA_ARGS__), \ MACRO__(0x4C8C, ## __VA_ARGS__), \ MACRO__(0x4C90, ## __VA_ARGS__), \ MACRO__(0x4C9A, ## __VA_ARGS__) /* DG1 */ #define XE_DG1_IDS(MACRO__, ...) \ MACRO__(0x4905, ## __VA_ARGS__), \ MACRO__(0x4906, ## __VA_ARGS__), \ MACRO__(0x4907, ## __VA_ARGS__), \ MACRO__(0x4908, ## __VA_ARGS__), \ MACRO__(0x4909, ## __VA_ARGS__) /* ADL-S */ #define XE_ADLS_IDS(MACRO__, ...) \ MACRO__(0x4680, ## __VA_ARGS__), \ MACRO__(0x4682, ## __VA_ARGS__), \ MACRO__(0x4688, ## __VA_ARGS__), \ MACRO__(0x468A, ## __VA_ARGS__), \ MACRO__(0x468B, ## __VA_ARGS__), \ MACRO__(0x4690, ## __VA_ARGS__), \ MACRO__(0x4692, ## __VA_ARGS__), \ MACRO__(0x4693, ## __VA_ARGS__) /* ADL-P */ #define XE_ADLP_IDS(MACRO__, ...) \ MACRO__(0x46A0, ## __VA_ARGS__), \ MACRO__(0x46A1, ## __VA_ARGS__), \ MACRO__(0x46A2, ## __VA_ARGS__), \ MACRO__(0x46A3, ## __VA_ARGS__), \ MACRO__(0x46A6, ## __VA_ARGS__), \ MACRO__(0x46A8, ## __VA_ARGS__), \ MACRO__(0x46AA, ## __VA_ARGS__), \ MACRO__(0x462A, ## __VA_ARGS__), \ MACRO__(0x4626, ## __VA_ARGS__), \ MACRO__(0x4628, ## __VA_ARGS__), \ MACRO__(0x46B0, ## __VA_ARGS__), \ MACRO__(0x46B1, ## __VA_ARGS__), \ MACRO__(0x46B2, ## __VA_ARGS__), \ MACRO__(0x46B3, ## __VA_ARGS__), \ MACRO__(0x46C0, ## __VA_ARGS__), \ MACRO__(0x46C1, ## __VA_ARGS__), \ MACRO__(0x46C2, ## __VA_ARGS__), \ MACRO__(0x46C3, ## __VA_ARGS__) /* ADL-N */ #define XE_ADLN_IDS(MACRO__, ...) \ MACRO__(0x46D0, ## __VA_ARGS__), \ MACRO__(0x46D1, ## __VA_ARGS__), \ MACRO__(0x46D2, ## __VA_ARGS__) /* RPL-S */ #define XE_RPLS_IDS(MACRO__, ...) \ MACRO__(0xA780, ## __VA_ARGS__), \ MACRO__(0xA781, ## __VA_ARGS__), \ MACRO__(0xA782, ## __VA_ARGS__), \ MACRO__(0xA783, ## __VA_ARGS__), \ MACRO__(0xA788, ## __VA_ARGS__), \ MACRO__(0xA789, ## __VA_ARGS__), \ MACRO__(0xA78A, ## __VA_ARGS__), \ MACRO__(0xA78B, ## __VA_ARGS__) /* RPL-U */ #define XE_RPLU_IDS(MACRO__, ...) \ MACRO__(0xA721, ## __VA_ARGS__), \ MACRO__(0xA7A1, ## __VA_ARGS__), \ MACRO__(0xA7A9, ## __VA_ARGS__), \ MACRO__(0xA7AC, ## __VA_ARGS__), \ MACRO__(0xA7AD, ## __VA_ARGS__) /* RPL-P */ #define XE_RPLP_IDS(MACRO__, ...) \ XE_RPLU_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0xA720, ## __VA_ARGS__), \ MACRO__(0xA7A0, ## __VA_ARGS__), \ MACRO__(0xA7A8, ## __VA_ARGS__), \ MACRO__(0xA7AA, ## __VA_ARGS__), \ MACRO__(0xA7AB, ## __VA_ARGS__) /* DG2 */ #define XE_DG2_G10_IDS(MACRO__, ...) \ MACRO__(0x5690, ## __VA_ARGS__), \ MACRO__(0x5691, ## __VA_ARGS__), \ MACRO__(0x5692, ## __VA_ARGS__), \ MACRO__(0x56A0, ## __VA_ARGS__), \ MACRO__(0x56A1, ## __VA_ARGS__), \ MACRO__(0x56A2, ## __VA_ARGS__), \ MACRO__(0x56BE, ## __VA_ARGS__), \ MACRO__(0x56BF, ## __VA_ARGS__) #define XE_DG2_G11_IDS(MACRO__, ...) \ MACRO__(0x5693, ## __VA_ARGS__), \ MACRO__(0x5694, ## __VA_ARGS__), \ MACRO__(0x5695, ## __VA_ARGS__), \ MACRO__(0x56A5, ## __VA_ARGS__), \ MACRO__(0x56A6, ## __VA_ARGS__), \ MACRO__(0x56B0, ## __VA_ARGS__), \ MACRO__(0x56B1, ## __VA_ARGS__), \ MACRO__(0x56BA, ## __VA_ARGS__), \ MACRO__(0x56BB, ## __VA_ARGS__), \ MACRO__(0x56BC, ## __VA_ARGS__), \ MACRO__(0x56BD, ## __VA_ARGS__) #define XE_DG2_G12_IDS(MACRO__, ...) \ MACRO__(0x5696, ## __VA_ARGS__), \ MACRO__(0x5697, ## __VA_ARGS__), \ MACRO__(0x56A3, ## __VA_ARGS__), \ MACRO__(0x56A4, ## __VA_ARGS__), \ MACRO__(0x56B2, ## __VA_ARGS__), \ MACRO__(0x56B3, ## __VA_ARGS__) #define XE_DG2_IDS(MACRO__, ...) \ XE_DG2_G10_IDS(MACRO__, ## __VA_ARGS__),\ XE_DG2_G11_IDS(MACRO__, ## __VA_ARGS__),\ XE_DG2_G12_IDS(MACRO__, ## __VA_ARGS__) #define XE_ATS_M150_IDS(MACRO__, ...) \ MACRO__(0x56C0, ## __VA_ARGS__), \ MACRO__(0x56C2, ## __VA_ARGS__) #define XE_ATS_M75_IDS(MACRO__, ...) \ MACRO__(0x56C1, ## __VA_ARGS__) #define XE_ATS_M_IDS(MACRO__, ...) \ XE_ATS_M150_IDS(MACRO__, ## __VA_ARGS__),\ XE_ATS_M75_IDS(MACRO__, ## __VA_ARGS__) /* MTL / ARL */ #define XE_MTL_IDS(MACRO__, ...) \ MACRO__(0x7D40, ## __VA_ARGS__), \ MACRO__(0x7D41, ## __VA_ARGS__), \ MACRO__(0x7D45, ## __VA_ARGS__), \ MACRO__(0x7D51, ## __VA_ARGS__), \ MACRO__(0x7D55, ## __VA_ARGS__), \ MACRO__(0x7D60, ## __VA_ARGS__), \ MACRO__(0x7D67, ## __VA_ARGS__), \ MACRO__(0x7DD1, ## __VA_ARGS__), \ MACRO__(0x7DD5, ## __VA_ARGS__) /* PVC */ #define XE_PVC_IDS(MACRO__, ...) \ MACRO__(0x0B69, ## __VA_ARGS__), \ MACRO__(0x0B6E, ## __VA_ARGS__), \ MACRO__(0x0BD4, ## __VA_ARGS__), \ MACRO__(0x0BD5, ## __VA_ARGS__), \ MACRO__(0x0BD6, ## __VA_ARGS__), \ MACRO__(0x0BD7, ## __VA_ARGS__), \ MACRO__(0x0BD8, ## __VA_ARGS__), \ MACRO__(0x0BD9, ## __VA_ARGS__), \ MACRO__(0x0BDA, ## __VA_ARGS__), \ MACRO__(0x0BDB, ## __VA_ARGS__), \ MACRO__(0x0BE0, ## __VA_ARGS__), \ MACRO__(0x0BE1, ## __VA_ARGS__), \ MACRO__(0x0BE5, ## __VA_ARGS__) #define XE_LNL_IDS(MACRO__, ...) \ MACRO__(0x6420, ## __VA_ARGS__), \ MACRO__(0x64A0, ## __VA_ARGS__), \ MACRO__(0x64B0, ## __VA_ARGS__) #define XE_BMG_IDS(MACRO__, ...) \ MACRO__(0xE202, ## __VA_ARGS__), \ MACRO__(0xE20B, ## __VA_ARGS__), \ MACRO__(0xE20C, ## __VA_ARGS__), \ MACRO__(0xE20D, ## __VA_ARGS__), \ MACRO__(0xE212, ## __VA_ARGS__) #endif btop-1.4.5/src/netbsd/000077500000000000000000000000001506333644200145415ustar00rootroot00000000000000btop-1.4.5/src/netbsd/btop_collect.cpp000066400000000000000000001276221506333644200177300ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Copyright 2024 Santhosh Raju (fox@NetBSD.org) 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. indent = tab tab-size = 4 */ #include #include #include #include #include // man 3 getifaddrs: "BUGS: If both and are being included, must be included before " #include #include #include #include #include #include #include // for inet_ntop stuff #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../btop_config.hpp" #include "../btop_shared.hpp" #include "../btop_tools.hpp" using std::clamp, std::string_literals::operator""s, std::cmp_equal, std::cmp_less, std::cmp_greater; using std::ifstream, std::numeric_limits, std::streamsize, std::round, std::max, std::min; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace Tools; //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Cpu { vector core_old_totals; vector core_old_idles; vector available_fields = {"total"}; vector available_sensors = {"Auto"}; cpu_info current_cpu; bool got_sensors = false, cpu_temp_only = false, supports_watts = false; //* Populate found_sensors map bool get_sensors(); //* Get current cpu clock speed string get_cpuHz(); //* Search /proc/cpuinfo for a cpu name string get_cpuName(); struct Sensor { fs::path path; string label; int64_t temp = 0; int64_t high = 0; int64_t crit = 0; }; string cpu_sensor; vector core_sensors; std::unordered_map core_mapping; } // namespace Cpu namespace Mem { double old_uptime; } namespace Shared { fs::path passwd_path; uint64_t totalMem; long pageSize, clkTck, coreCount, physicalCoreCount, arg_max; int totalMem_len, kfscale; long bootTime; size_t size; void init() { //? Shared global variables init int mib[2]; mib[0] = CTL_HW; mib[1] = HW_NCPU; int ncpu; size_t len = sizeof(ncpu); if (sysctl(mib, 2, &ncpu, &len, nullptr, 0) == -1) { Logger::warning("Could not determine number of cores, defaulting to 1."); } else { coreCount = ncpu; } size = sizeof(pageSize); if (sysctlbyname("hw.pagesize", &pageSize, &size, nullptr, 0) < 0) { pageSize = 4096; Logger::warning("Could not get system page size. Defaulting to 4096, processes memory usage might be incorrect."); } clkTck = sysconf(_SC_CLK_TCK); if (clkTck <= 0) { clkTck = 100; Logger::warning("Could not get system clock ticks per second. Defaulting to 100, processes cpu usage might be incorrect."); } size = sizeof(totalMem); if (sysctlbyname("hw.physmem64", &totalMem, &size, nullptr, 0) < 0) { Logger::warning("Could not get memory size"); } struct timeval result; size = sizeof(result); if (sysctlbyname("kern.boottime", &result, &size, nullptr, 0) < 0) { Logger::warning("Could not get boot time"); } else { bootTime = result.tv_sec; } size = sizeof(kfscale); if (sysctlbyname("kern.fscale", &kfscale, &size, nullptr, 0) == -1) { kfscale = 2048; } //* Get maximum length of process arguments arg_max = sysconf(_SC_ARG_MAX); //? Init for namespace Cpu Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {}); Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {}); Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0); Cpu::core_old_idles.insert(Cpu::core_old_idles.begin(), Shared::coreCount, 0); Cpu::collect(); for (auto &[field, vec] : Cpu::current_cpu.cpu_percent) { if (not vec.empty() and not v_contains(Cpu::available_fields, field)) Cpu::available_fields.push_back(field); } Cpu::cpuName = Cpu::get_cpuName(); Cpu::got_sensors = Cpu::get_sensors(); Cpu::core_mapping = Cpu::get_core_mapping(); //? Init for namespace Mem Mem::old_uptime = system_uptime(); Mem::collect(); } } // namespace Shared namespace Cpu { string cpuName; string cpuHz; bool has_battery = true; tuple current_bat; const array time_names = {"user", "nice", "system", "idle"}; std::unordered_map cpu_old = { {"totals", 0}, {"idles", 0}, {"user", 0}, {"nice", 0}, {"system", 0}, {"idle", 0} }; string get_cpuName() { string name; char buffer[1024]; size_t size = sizeof(buffer); if (sysctlbyname("hw.model", &buffer, &size, nullptr, 0) < 0) { Logger::error("Failed to get CPU name"); return name; } return trim_name(string(buffer)); } bool get_sensors() { got_sensors = false; prop_dictionary_t dict; prop_object_t fields_array; // List of common thermal sensors in NetBSD. const string sensors[6] = { "acpitz0", "acpitz1", "coretemp0", "coretemp1", "thinkpad0", "amdzentemp0" }; int fd = open(_PATH_SYSMON, O_RDONLY); if (fd == -1) { Logger::warning("failed to open " + string(_PATH_SYSMON)); return got_sensors; } if (prop_dictionary_recv_ioctl(fd, ENVSYS_GETDICTIONARY, &dict) != 0) { if (fd != -1) { close(fd); } Logger::warning("failed to open envsys dict"); return got_sensors; } if (prop_dictionary_count(dict) == 0) { if (fd != -1) { close(fd); } Logger::warning("no drivers registered for envsys"); return got_sensors; } // Search through a known list of sensors and break the loop on finding the first. for(const string &sensor : sensors) { fields_array = prop_dictionary_get(prop_dictionary_t(dict), sensor.c_str()); if (prop_object_type(fields_array) != PROP_TYPE_ARRAY) { Logger::warning("unknown device " + sensor); } else { Cpu::cpu_sensor = sensor; break; } } if (prop_object_type(fields_array) != PROP_TYPE_ARRAY) { if (fd != -1) { close(fd); } return got_sensors; } if (Config::getB("show_coretemp") and Config::getB("check_temp")) { got_sensors = true; } return got_sensors; } #define MUKTOC(v) ((v - 273150000) / 1000000.0) void update_sensors() { int64_t current_temp = -1; current_cpu.temp_max = 95; prop_dictionary_t dict, fields, props; int fd = open(_PATH_SYSMON, O_RDONLY); if (fd == -1) { Logger::warning("failed to open " + string(_PATH_SYSMON)); return; } if (prop_dictionary_recv_ioctl(fd, ENVSYS_GETDICTIONARY, &dict) != 0) { if (fd != -1) { close(fd); } Logger::warning("failed to open envsys dict"); return; } if (prop_dictionary_count(dict) == 0) { if (fd != -1) { close(fd); } Logger::warning("no drivers registered for envsys"); return; } prop_object_t fields_array = prop_dictionary_get(prop_dictionary_t(dict), Cpu::cpu_sensor.c_str()); if (prop_object_type(fields_array) != PROP_TYPE_ARRAY) { if (fd != -1) { close(fd); } Logger::warning("unknown device " + Cpu::cpu_sensor); return; } prop_object_iterator_t fields_iter = prop_array_iterator(prop_array_t(fields_array)); if (fields_iter == NULL) { if (fd != -1) { close(fd); } return; } string prop_description = "no description"; while ((fields = (prop_dictionary_t) prop_object_iterator_next(prop_object_iterator_t(fields_iter))) != NULL) { props = (prop_dictionary_t) prop_dictionary_get(fields, "device-properties"); if (props != NULL) continue; prop_object_t cur_value = prop_dictionary_get(fields, "cur-value"); prop_object_t max_value = prop_dictionary_get(fields, "critical-max"); prop_object_t description = prop_dictionary_get(fields, "description"); if (description == NULL || cur_value == NULL) { continue; } prop_description = prop_string_cstring(prop_string_t(description)); if (prop_description == "temperature") { current_temp = prop_number_integer_value(prop_number_t(cur_value)); if (max_value != NULL) { current_cpu.temp_max = MUKTOC(prop_number_integer_value(prop_number_t(max_value))); } } } prop_object_iterator_release(fields_iter); prop_object_release(dict); if (current_temp > -1) { current_temp = MUKTOC(current_temp); for (int i = 0; i < Shared::coreCount; i++) { if (cmp_less(i + 1, current_cpu.temp.size())) { current_cpu.temp.at(i + 1).push_back(current_temp); if (current_cpu.temp.at(i + 1).size() > 20) { current_cpu.temp.at(i + 1).pop_front(); } } } current_cpu.temp.at(0).push_back(current_temp); if (current_cpu.temp.at(0).size() > 20) { current_cpu.temp.at(0).pop_front(); } } } string get_cpuHz() { unsigned int freq = 1; size_t size = sizeof(freq); if (sysctlbyname("hw.cpuspeed", &freq, &size, nullptr, 0) < 0) { return ""; } return std::to_string(freq / 1000.0 ).substr(0, 3); // seems to be in MHz } auto get_core_mapping() -> std::unordered_map { std::unordered_map core_map; if (cpu_temp_only) return core_map; for (long i = 0; i < Shared::coreCount; i++) { core_map[i] = i; } //? If core mapping from cpuinfo was incomplete try to guess remainder, if missing completely, map 0-0 1-1 2-2 etc. if (cmp_less(core_map.size(), Shared::coreCount)) { if (Shared::coreCount % 2 == 0 and (long) core_map.size() == Shared::coreCount / 2) { for (int i = 0, n = 0; i < Shared::coreCount / 2; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[Shared::coreCount / 2 + i] = n++; } } else { core_map.clear(); for (int i = 0, n = 0; i < Shared::coreCount; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[i] = n++; } } } //? Apply user set custom mapping if any const auto &custom_map = Config::getS("cpu_core_map"); if (not custom_map.empty()) { try { for (const auto &split : ssplit(custom_map)) { const auto vals = ssplit(split, ':'); if (vals.size() != 2) continue; int change_id = std::stoi(vals.at(0)); int new_id = std::stoi(vals.at(1)); if (not core_map.contains(change_id) or cmp_greater(new_id, core_sensors.size())) continue; core_map.at(change_id) = new_id; } } catch (...) { } } return core_map; } auto get_battery() -> tuple { if (not has_battery) return {0, 0.0, 0, ""}; prop_dictionary_t dict, fields, props; int64_t total_charge = 0; int64_t total_capacity = 0; int fd = open(_PATH_SYSMON, O_RDONLY); if (fd == -1) { Logger::warning("failed to open " + string(_PATH_SYSMON)); has_battery = false; return {0, 0.0, 0, ""}; } if (prop_dictionary_recv_ioctl(fd, ENVSYS_GETDICTIONARY, &dict) != 0) { if (fd != -1) { close(fd); } has_battery = false; Logger::warning("failed to open envsys dict"); return {0, 0.0, 0, ""}; } if (prop_dictionary_count(dict) == 0) { if (fd != -1) { close(fd); } has_battery = false; Logger::warning("no drivers registered for envsys"); return {0, 0.0, 0, ""}; } prop_object_t fields_array = prop_dictionary_get(prop_dictionary_t(dict), "acpibat0"); if (prop_object_type(fields_array) != PROP_TYPE_ARRAY) { if (fd != -1) { close(fd); } has_battery = false; Logger::warning("unknown device 'acpibat0'"); return {0, 0.0, 0, ""}; } prop_object_iterator_t fields_iter = prop_array_iterator(prop_array_t(fields_array)); if (fields_iter == NULL) { if (fd != -1) { close(fd); } has_battery = false; return {0, 0.0, 0, ""}; } /* only assume battery is not present if explicitly stated */ bool is_battery = false; int64_t is_present = 1; int64_t cur_charge = 0; int64_t max_charge = 0; string status = "unknown"; string prop_description = "no description"; while ((fields = (prop_dictionary_t) prop_object_iterator_next(prop_object_iterator_t(fields_iter))) != NULL) { props = (prop_dictionary_t) prop_dictionary_get(fields, "device-properties"); if (props != NULL) continue; prop_object_t cur_value = prop_dictionary_get(fields, "cur-value"); prop_object_t max_value = prop_dictionary_get(fields, "max-value"); prop_object_t description = prop_dictionary_get(fields, "description"); if (description == NULL || cur_value == NULL) { continue; } prop_description = prop_string_cstring(prop_string_t(description)); if (prop_description == "charge") { if (max_value == NULL) { continue; } cur_charge = prop_number_integer_value(prop_number_t(cur_value)); max_charge = prop_number_integer_value(prop_number_t(max_value)); } if (prop_description == "present") { is_present = prop_number_integer_value(prop_number_t(cur_value)); } if (prop_description == "charging") { status = prop_description; string charging_type = prop_string_cstring(prop_string_t(prop_dictionary_get(fields, "type"))); is_battery = charging_type == "Battery charge" ? true : false; } if (is_battery && is_present) { total_charge += cur_charge; total_capacity += max_charge; } } prop_object_iterator_release(fields_iter); prop_object_release(dict); uint32_t percent = ((double)total_charge / (double)total_capacity) * 100.0; if (percent == 100) { status = "full"; } return {percent, -1, -1, status}; } auto collect(bool no_update) -> cpu_info & { if (Runner::stopping or (no_update and not current_cpu.cpu_percent.at("total").empty())) return current_cpu; auto &cpu = current_cpu; if (getloadavg(cpu.load_avg.data(), cpu.load_avg.size()) < 0) { Logger::error("failed to get load averages"); } vector> cpu_time(Shared::coreCount); size_t size = sizeof(long) * CPUSTATES * Shared::coreCount; if (sysctlbyname("kern.cp_time", &cpu_time[0], &size, nullptr, 0) == -1) { Logger::error("failed to get CPU time"); } long long global_totals = 0; long long global_idles = 0; vector times_summed = {0, 0, 0, 0}; for (long i = 0; i < Shared::coreCount; i++) { vector times; //? 0=user, 1=nice, 2=system, 3=idle for (int x = 0; const unsigned int c_state : {CP_USER, CP_NICE, CP_SYS, CP_IDLE}) { auto val = cpu_time[i][c_state]; times.push_back(val); times_summed.at(x++) += val; } try { //? All values const long long totals = std::accumulate(times.begin(), times.end(), 0ll); //? Idle time const long long idles = times.at(3); global_totals += totals; global_idles += idles; //? Calculate cpu total for each core if (i > Shared::coreCount) break; const long long calc_totals = max(0ll, totals - core_old_totals.at(i)); const long long calc_idles = max(0ll, idles - core_old_idles.at(i)); core_old_totals.at(i) = totals; core_old_idles.at(i) = idles; cpu.core_percent.at(i).push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph if (cpu.core_percent.at(i).size() > 40) cpu.core_percent.at(i).pop_front(); } catch (const std::exception &e) { Logger::error("Cpu::collect() : " + (string)e.what()); throw std::runtime_error("collect() : " + (string)e.what()); } } const long long calc_totals = max(1ll, global_totals - cpu_old.at("totals")); const long long calc_idles = max(1ll, global_idles - cpu_old.at("idles")); //? Populate cpu.cpu_percent with all fields from syscall for (int ii = 0; const auto &val : times_summed) { cpu.cpu_percent.at(time_names.at(ii)).push_back(clamp((long long)round((double)(val - cpu_old.at(time_names.at(ii))) * 100 / calc_totals), 0ll, 100ll)); cpu_old.at(time_names.at(ii)) = val; //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at(time_names.at(ii)).size(), width * 2)) cpu.cpu_percent.at(time_names.at(ii)).pop_front(); ii++; } cpu_old.at("totals") = global_totals; cpu_old.at("idles") = global_idles; //? Total usage of cpu cpu.cpu_percent.at("total").push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at("total").size(), width * 2)) cpu.cpu_percent.at("total").pop_front(); if (Config::getB("show_cpu_freq")) { auto hz = get_cpuHz(); if (hz != "") { cpuHz = hz; } } if (Config::getB("check_temp") and got_sensors) update_sensors(); if (Config::getB("show_battery") and has_battery) current_bat = get_battery(); return current_cpu; } } // namespace Cpu namespace Mem { bool has_swap = false; vector fstab; fs::file_time_type fstab_time; int disk_ios = 0; vector last_found; mem_info current_mem{}; uint64_t get_totalMem() { return Shared::totalMem; } void assign_values(struct disk_info& disk, int64_t readBytes, int64_t writeBytes) { disk_ios++; if (disk.io_read.empty()) { disk.io_read.push_back(0); } else { disk.io_read.push_back(max((int64_t)0, (readBytes - disk.old_io.at(0)))); } disk.old_io.at(0) = readBytes; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); if (disk.io_write.empty()) { disk.io_write.push_back(0); } else { disk.io_write.push_back(max((int64_t)0, (writeBytes - disk.old_io.at(1)))); } disk.old_io.at(1) = writeBytes; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); // no io times - need to push something anyway or we'll get an ABORT if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(clamp((long)round((double)(disk.io_write.back() + disk.io_read.back()) / (1 << 20)), 0l, 100l)); while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } void collect_disk(std::unordered_map &disks, std::unordered_map &mapping) { uint64_t total_bytes_read = 0; uint64_t total_bytes_write = 0; int num_drives = 0; int mib[3] = { CTL_HW, HW_IOSTATS, sizeof(struct io_sysctl)}; size_t size; if (sysctl(mib, 3, NULL, &size, NULL, 0) == -1) { Logger::error("sysctl hw.drivestats failed"); return; } num_drives = size / sizeof(struct io_sysctl); auto drives = std::unique_ptr { reinterpret_cast(malloc(size)), free }; if (sysctl(mib, 3, drives.get(), &size, NULL, 0) == -1) { Logger::error("sysctl hw.iostats failed"); } for (int i = 0; i < num_drives; i++) { for (auto& [ignored, disk] : disks) { if (disk.dev.string().find(drives[i].name) != string::npos) { string mountpoint = mapping.at(disk.dev); total_bytes_read = drives[i].rbytes; total_bytes_write = drives[i].wbytes; assign_values(disk, total_bytes_read, total_bytes_write); } } } } auto collect(bool no_update) -> mem_info & { if (Runner::stopping or (no_update and not current_mem.percent.at("used").empty())) return current_mem; auto show_swap = Config::getB("show_swap"); auto show_disks = Config::getB("show_disks"); auto swap_disk = Config::getB("swap_disk"); auto &mem = current_mem; static bool snapped = (getenv("BTOP_SNAPPED") != nullptr); uint64_t memActive, memWired, memCached, memFree; size_t size; static int uvmexp_mib[] = {CTL_VM, VM_UVMEXP2}; struct uvmexp_sysctl uvmexp; size = sizeof(uvmexp); if (sysctl(uvmexp_mib, 2, &uvmexp, &size, NULL, 0) == -1) { Logger::error("uvmexp sysctl failed"); bzero(&uvmexp, sizeof(uvmexp)); } memActive = uvmexp.active * Shared::pageSize; memWired = uvmexp.wired * Shared::pageSize; memFree = uvmexp.free * Shared::pageSize; memCached = (uvmexp.filepages + uvmexp.execpages + uvmexp.anonpages) * Shared::pageSize; mem.stats.at("used") = memActive + memWired; mem.stats.at("available") = Shared::totalMem - (memActive + memWired); mem.stats.at("cached") = memCached; mem.stats.at("free") = memFree; if (show_swap) { mem.stats.at("swap_total") = uvmexp.swpages * Shared::pageSize; mem.stats.at("swap_used") = uvmexp.swpginuse * Shared::pageSize; mem.stats.at("swap_free") = (uvmexp.swpages - uvmexp.swpginuse) * Shared::pageSize; } if (show_swap and mem.stats.at("swap_total") > 0) { for (const auto &name : swap_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / mem.stats.at("swap_total"))); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } has_swap = true; } else has_swap = false; //? Calculate percentages for (const auto &name : mem_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / Shared::totalMem)); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } if (show_disks) { std::unordered_map mapping; // keep mapping from device -> mountpoint, since IOKit doesn't give us the mountpoint double uptime = system_uptime(); auto &disks_filter = Config::getS("disks_filter"); bool filter_exclude = false; // auto only_physical = Config::getB("only_physical"); auto &disks = mem.disks; vector filter; if (not disks_filter.empty()) { filter = ssplit(disks_filter); if (filter.at(0).starts_with("exclude=")) { filter_exclude = true; filter.at(0) = filter.at(0).substr(8); } } struct statvfs *stvfs; int count = getmntinfo(&stvfs, MNT_WAIT); vector found; found.reserve(last_found.size()); for (int i = 0; i < count; i++) { auto fstype = string(stvfs[i].f_fstypename); if (fstype == "autofs" || fstype == "devfs" || fstype == "linprocfs" || fstype == "procfs" || fstype == "tmpfs" || fstype == "linsysfs" || fstype == "fdesckfs") { // in memory filesystems -> not useful to show continue; } std::error_code ec; string mountpoint = stvfs[i].f_mntonname; string dev = stvfs[i].f_mntfromname; mapping[dev] = mountpoint; //? Match filter if not empty if (not filter.empty()) { bool match = v_contains(filter, mountpoint); if ((filter_exclude and match) or (not filter_exclude and not match)) continue; } found.push_back(mountpoint); if (not disks.contains(mountpoint)) { disks[mountpoint] = disk_info{fs::canonical(dev, ec), fs::path(mountpoint).filename()}; if (disks.at(mountpoint).dev.empty()) disks.at(mountpoint).dev = dev; if (disks.at(mountpoint).name.empty()) disks.at(mountpoint).name = (mountpoint == "/" ? "root" : mountpoint); } if (not v_contains(last_found, mountpoint)) redraw = true; disks.at(mountpoint).free = stvfs[i].f_bfree; disks.at(mountpoint).total = stvfs[i].f_iosize; } //? Remove disks no longer mounted or filtered out if (swap_disk and has_swap) found.push_back("swap"); for (auto it = disks.begin(); it != disks.end();) { if (not v_contains(found, it->first)) it = disks.erase(it); else it++; } if (found.size() != last_found.size()) redraw = true; last_found = std::move(found); //? Get disk/partition stats for (auto &[mountpoint, disk] : disks) { if (std::error_code ec; not fs::exists(mountpoint, ec)) continue; struct statvfs vfs; if (statvfs(mountpoint.c_str(), &vfs) < 0) { Logger::warning("Failed to get disk/partition stats with statvfs() for: " + mountpoint); continue; } disk.total = vfs.f_blocks * vfs.f_frsize; disk.free = vfs.f_bfree * vfs.f_frsize; disk.used = disk.total - disk.free; if (disk.total != 0) { disk.used_percent = round((double)disk.used * 100 / disk.total); disk.free_percent = 100 - disk.used_percent; } else { disk.used_percent = 0; disk.free_percent = 0; } } //? Setup disks order in UI and add swap if enabled mem.disks_order.clear(); if (snapped and disks.contains("/mnt")) mem.disks_order.push_back("/mnt"); else if (disks.contains("/")) mem.disks_order.push_back("/"); if (swap_disk and has_swap) { mem.disks_order.push_back("swap"); if (not disks.contains("swap")) disks["swap"] = {"", "swap"}; disks.at("swap").total = mem.stats.at("swap_total"); disks.at("swap").used = mem.stats.at("swap_used"); disks.at("swap").free = mem.stats.at("swap_free"); disks.at("swap").used_percent = mem.percent.at("swap_used").back(); disks.at("swap").free_percent = mem.percent.at("swap_free").back(); } for (const auto &name : last_found) if (not is_in(name, "/", "swap", "/dev")) mem.disks_order.push_back(name); disk_ios = 0; collect_disk(disks, mapping); old_uptime = uptime; } return mem; } } // namespace Mem namespace Net { std::unordered_map current_net; net_info empty_net = {}; vector interfaces; string selected_iface; int errors = 0; std::unordered_map graph_max = {{"download", {}}, {"upload", {}}}; std::unordered_map> max_count = {{"download", {}}, {"upload", {}}}; bool rescale = true; uint64_t timestamp = 0; auto collect(bool no_update) -> net_info & { auto &net = current_net; auto &config_iface = Config::getS("net_iface"); auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto new_timestamp = time_ms(); if (not no_update and errors < 3) { //? Get interface list using getifaddrs() wrapper IfAddrsPtr if_addrs {}; if (if_addrs.get_status() != 0) { errors++; Logger::error("Net::collect() -> getifaddrs() failed with id " + to_string(if_addrs.get_status())); redraw = true; return empty_net; } int family = 0; static_assert(INET6_ADDRSTRLEN >= INET_ADDRSTRLEN); // 46 >= 16, compile-time assurance. enum { IPBUFFER_MAXSIZE = INET6_ADDRSTRLEN }; // manually using the known biggest value, guarded by the above static_assert char ip[IPBUFFER_MAXSIZE]; interfaces.clear(); string ipv4, ipv6; //? Iteration over all items in getifaddrs() list for (auto *ifa = if_addrs.get(); ifa != nullptr; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; family = ifa->ifa_addr->sa_family; const auto &iface = ifa->ifa_name; //? Update available interfaces vector and get status of interface if (not v_contains(interfaces, iface)) { interfaces.push_back(iface); net[iface].connected = (ifa->ifa_flags & IFF_RUNNING); // An interface can have more than one IP of the same family associated with it, // but we pick only the first one to show in the NET box. // Note: Interfaces without any IPv4 and IPv6 set are still valid and monitorable! net[iface].ipv4.clear(); net[iface].ipv6.clear(); } //? Get IPv4 address if (family == AF_INET) { if (net[iface].ipv4.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv4 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv4 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //? Get IPv6 address else if (family == AF_INET6) { if (net[iface].ipv6.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin6_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv6 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv6 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //else, ignoring family==AF_LINK (see man 3 getifaddrs) } std::unordered_map> ifstats; int mib[] = {CTL_NET, PF_ROUTE, 0, 0, NET_RT_IFLIST, 0}; size_t len; if (sysctl(mib, 6, nullptr, &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { std::unique_ptr buf(new char[len]); if (sysctl(mib, 6, buf.get(), &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { char *lim = buf.get() + len; char *next = nullptr; for (next = buf.get(); next < lim;) { struct if_msghdr *ifm = (struct if_msghdr *)next; next += ifm->ifm_msglen; struct if_data ifm_data = ifm->ifm_data; if (ifm->ifm_addrs & RTA_IFP) { struct sockaddr_dl *sdl = (struct sockaddr_dl *)(ifm + 1); char iface[32]; strncpy(iface, sdl->sdl_data, sdl->sdl_nlen); iface[sdl->sdl_nlen] = 0; ifstats[iface] = std::tuple(ifm_data.ifi_ibytes, ifm_data.ifi_obytes); } } } } //? Get total received and transmitted bytes + device address if no ip was found for (const auto &iface : interfaces) { for (const string dir : {"download", "upload"}) { auto &saved_stat = net.at(iface).stat.at(dir); auto &bandwidth = net.at(iface).bandwidth.at(dir); uint64_t val = dir == "download" ? std::get<0>(ifstats[iface]) : std::get<1>(ifstats[iface]); //? Update speed, total and top values if (val < saved_stat.last) { saved_stat.rollover += saved_stat.last; saved_stat.last = 0; } if (cmp_greater((unsigned long long)saved_stat.rollover + (unsigned long long)val, numeric_limits::max())) { saved_stat.rollover = 0; saved_stat.last = 0; } saved_stat.speed = round((double)(val - saved_stat.last) / ((double)(new_timestamp - timestamp) / 1000)); if (saved_stat.speed > saved_stat.top) saved_stat.top = saved_stat.speed; if (saved_stat.offset > val + saved_stat.rollover) saved_stat.offset = 0; saved_stat.total = (val + saved_stat.rollover) - saved_stat.offset; saved_stat.last = val; //? Add values to graph bandwidth.push_back(saved_stat.speed); while (cmp_greater(bandwidth.size(), width * 2)) bandwidth.pop_front(); //? Set counters for auto scaling if (net_auto and selected_iface == iface) { if (saved_stat.speed > graph_max[dir]) { ++max_count[dir][0]; if (max_count[dir][1] > 0) --max_count[dir][1]; } else if (graph_max[dir] > 10 << 10 and saved_stat.speed < graph_max[dir] / 10) { ++max_count[dir][1]; if (max_count[dir][0] > 0) --max_count[dir][0]; } } } } //? Clean up net map if needed if (net.size() > interfaces.size()) { for (auto it = net.begin(); it != net.end();) { if (not v_contains(interfaces, it->first)) it = net.erase(it); else it++; } } timestamp = new_timestamp; } //? Return empty net_info struct if no interfaces was found if (net.empty()) return empty_net; //? Find an interface to display if selected isn't set or valid if (selected_iface.empty() or not v_contains(interfaces, selected_iface)) { max_count["download"][0] = max_count["download"][1] = max_count["upload"][0] = max_count["upload"][1] = 0; redraw = true; if (net_auto) rescale = true; if (not config_iface.empty() and v_contains(interfaces, config_iface)) selected_iface = config_iface; else { //? Sort interfaces by total upload + download bytes auto sorted_interfaces = interfaces; rng::sort(sorted_interfaces, [&](const auto &a, const auto &b) { return cmp_greater(net.at(a).stat["download"].total + net.at(a).stat["upload"].total, net.at(b).stat["download"].total + net.at(b).stat["upload"].total); }); selected_iface.clear(); //? Try to set to a connected interface for (const auto &iface : sorted_interfaces) { if (net.at(iface).connected) selected_iface = iface; break; } //? If no interface is connected set to first available if (selected_iface.empty() and not sorted_interfaces.empty()) selected_iface = sorted_interfaces.at(0); else if (sorted_interfaces.empty()) return empty_net; } } //? Calculate max scale for graphs if needed if (net_auto) { bool sync = false; for (const auto &dir : {"download", "upload"}) { for (const auto &sel : {0, 1}) { if (rescale or max_count[dir][sel] >= 5) { const long long avg_speed = (net[selected_iface].bandwidth[dir].size() > 5 ? std::accumulate(net.at(selected_iface).bandwidth.at(dir).rbegin(), net.at(selected_iface).bandwidth.at(dir).rbegin() + 5, 0ll) / 5 : net[selected_iface].stat[dir].speed); graph_max[dir] = max(uint64_t(avg_speed * (sel == 0 ? 1.3 : 3.0)), (uint64_t)10 << 10); max_count[dir][0] = max_count[dir][1] = 0; redraw = true; if (net_sync) sync = true; break; } } //? Sync download/upload graphs if enabled if (sync) { const auto other = (string(dir) == "upload" ? "download" : "upload"); graph_max[other] = graph_max[dir]; max_count[other][0] = max_count[other][1] = 0; break; } } } rescale = false; return net.at(selected_iface); } } // namespace Net namespace Proc { vector current_procs; std::unordered_map uid_user; string current_sort; string current_filter; bool current_rev = false; fs::file_time_type passwd_time; uint64_t cputimes; int collapse = -1, expand = -1; uint64_t old_cputimes = 0; atomic numpids = 0; int filter_found = 0; detail_container detailed; string get_status(char s) { if (s & LSRUN) return "Running"; if (s & LSSLEEP) return "Sleeping"; if (s & SIDL) return "Idle"; if (s & SSTOP) return "Stopped"; if (s & SZOMB) return "Zombie"; return "Unknown"; } //* Get detailed info for selected process void _collect_details(const size_t pid, vector &procs) { if (pid != detailed.last_pid) { detailed = {}; detailed.last_pid = pid; detailed.skip_smaps = not Config::getB("proc_info_smaps"); } //? Copy proc_info for process from proc vector auto p_info = rng::find(procs, pid, &proc_info::pid); detailed.entry = *p_info; //? Update cpu percent deque for process cpu graph if (not Config::getB("proc_per_core")) detailed.entry.cpu_p *= Shared::coreCount; detailed.cpu_percent.push_back(clamp((long long)round(detailed.entry.cpu_p), 0ll, 100ll)); while (cmp_greater(detailed.cpu_percent.size(), width)) detailed.cpu_percent.pop_front(); //? Process runtime : current time - start time (both in unix time - seconds since epoch) struct timeval currentTime; gettimeofday(¤tTime, nullptr); detailed.elapsed = sec_to_dhms(currentTime.tv_sec - detailed.entry.cpu_s); // only interested in second granularity, so ignoring tc_usec if (detailed.elapsed.size() > 8) detailed.elapsed.resize(detailed.elapsed.size() - 3); //? Get parent process name if (detailed.parent.empty()) { auto p_entry = rng::find(procs, detailed.entry.ppid, &proc_info::pid); if (p_entry != procs.end()) detailed.parent = p_entry->name; } //? Expand process status from single char to explanative string detailed.status = get_status(detailed.entry.state); detailed.mem_bytes.push_back(detailed.entry.mem); detailed.memory = floating_humanizer(detailed.entry.mem); if (detailed.first_mem == -1 or detailed.first_mem < detailed.mem_bytes.back() / 2 or detailed.first_mem > detailed.mem_bytes.back() * 4) { detailed.first_mem = min((uint64_t)detailed.mem_bytes.back() * 2, Mem::get_totalMem()); redraw = true; } while (cmp_greater(detailed.mem_bytes.size(), width)) detailed.mem_bytes.pop_front(); } //* Collects and sorts process information from /proc auto collect(bool no_update) -> vector & { const auto &sorting = Config::getS("proc_sorting"); auto reverse = Config::getB("proc_reversed"); const auto &filter = Config::getS("proc_filter"); auto per_core = Config::getB("proc_per_core"); auto tree = Config::getB("proc_tree"); auto show_detailed = Config::getB("show_detailed"); const size_t detailed_pid = Config::getI("detailed_pid"); bool should_filter = current_filter != filter; if (should_filter) current_filter = filter; bool sorted_change = (sorting != current_sort or reverse != current_rev or should_filter); if (sorted_change) { current_sort = sorting; current_rev = reverse; } const int cmult = (per_core) ? Shared::coreCount : 1; bool got_detailed = false; static vector found; //* Use pids from last update if only changing filter, sorting or tree options if (no_update and not current_procs.empty()) { if (show_detailed and detailed_pid != detailed.last_pid) _collect_details(detailed_pid, current_procs); } else { //* ---------------------------------------------Collection start---------------------------------------------- should_filter = true; found.clear(); struct timeval currentTime; gettimeofday(¤tTime, nullptr); const double timeNow = currentTime.tv_sec + (currentTime.tv_usec / 1'000'000); int count = 0; char buf[_POSIX2_LINE_MAX]; Shared::KvmPtr kd {kvm_openfiles(nullptr, nullptr, nullptr, KVM_NO_FILES, buf)}; const struct kinfo_proc2* kprocs = kvm_getproc2(kd.get(), KERN_PROC_ALL, 0, sizeof(struct kinfo_proc2), &count); for (int i = 0; i < count; i++) { const struct kinfo_proc2* kproc = &kprocs[i]; const size_t pid = (size_t)kproc->p_pid; if (pid < 1) continue; found.push_back(pid); //? Check if pid already exists in current_procs bool no_cache = false; auto find_old = rng::find(current_procs, pid, &proc_info::pid); if (find_old == current_procs.end()) { current_procs.push_back({pid}); find_old = current_procs.end() - 1; no_cache = true; } auto &new_proc = *find_old; //? Get program name, command, username, parent pid, nice and status if (no_cache) { if (string(kproc->p_comm) == "idle"s) { current_procs.pop_back(); found.pop_back(); continue; } new_proc.name = kproc->p_comm; char** argv = kvm_getargv2(kd.get(), kproc, 0); if (argv) { for (int i = 0; argv[i] and cmp_less(new_proc.cmd.size(), 1000); i++) { new_proc.cmd += argv[i] + " "s; } if (not new_proc.cmd.empty()) new_proc.cmd.pop_back(); } if (new_proc.cmd.empty()) new_proc.cmd = new_proc.name; if (new_proc.cmd.size() > 1000) { new_proc.cmd.resize(1000); new_proc.cmd.shrink_to_fit(); } new_proc.ppid = kproc->p_ppid; new_proc.cpu_s = round(kproc->p_ustart_sec); struct passwd *pwd = getpwuid(kproc->p_uid); if (pwd) new_proc.user = pwd->pw_name; } new_proc.p_nice = kproc->p_nice; new_proc.state = kproc->p_stat; int cpu_t = 0; cpu_t = kproc->p_uctime_usec * 1'000'000 + kproc->p_uctime_sec; new_proc.mem = kproc->p_vm_rssize * Shared::pageSize; new_proc.threads = 1; // can't seem to find this in kinfo_proc //? Process cpu usage since last update new_proc.cpu_p = clamp((100.0 * kproc->p_pctcpu / Shared::kfscale) * cmult, 0.0, 100.0 * Shared::coreCount); //? Process cumulative cpu usage since process start new_proc.cpu_c = (double)(cpu_t * Shared::clkTck / 1'000'000) / max(1.0, timeNow - new_proc.cpu_s); //? Update cached value with latest cpu times new_proc.cpu_t = cpu_t; if (show_detailed and not got_detailed and new_proc.pid == detailed_pid) { got_detailed = true; } } //? Clear dead processes from current_procs auto eraser = rng::remove_if(current_procs, [&](const auto &element) { return not v_contains(found, element.pid); }); current_procs.erase(eraser.begin(), eraser.end()); //? Update the details info box for process if active if (show_detailed and got_detailed) { _collect_details(detailed_pid, current_procs); } else if (show_detailed and not got_detailed and detailed.status != "Dead") { detailed.status = "Dead"; redraw = true; } old_cputimes = cputimes; } //* ---------------------------------------------Collection done----------------------------------------------- //* Match filter if defined if (should_filter) { filter_found = 0; for (auto& p : current_procs) { if (not tree and not filter.empty()) { if (not s_contains_ic(to_string(p.pid), filter) and not s_contains_ic(p.name, filter) and not s_contains_ic(p.cmd, filter) and not s_contains_ic(p.user, filter)) { p.filtered = true; filter_found++; } else { p.filtered = false; } } else { p.filtered = false; } } } //* Sort processes if (sorted_change or not no_update) { proc_sorter(current_procs, sorting, reverse, tree); } //* Generate tree view if enabled if (tree and (not no_update or should_filter or sorted_change)) { bool locate_selection = false; if (auto find_pid = (collapse != -1 ? collapse : expand); find_pid != -1) { auto collapser = rng::find(current_procs, find_pid, &proc_info::pid); if (collapser != current_procs.end()) { if (collapse == expand) { collapser->collapsed = not collapser->collapsed; } else if (collapse > -1) { collapser->collapsed = true; } else if (expand > -1) { collapser->collapsed = false; } if (Config::ints.at("proc_selected") > 0) locate_selection = true; } collapse = expand = -1; } if (should_filter or not filter.empty()) filter_found = 0; vector tree_procs; tree_procs.reserve(current_procs.size()); for (auto& p : current_procs) { if (not v_contains(found, p.ppid)) p.ppid = 0; } //? Stable sort to retain selected sorting among processes with the same parent rng::stable_sort(current_procs, rng::less{}, & proc_info::ppid); //? Start recursive iteration over processes with the lowest shared parent pids for (auto& p : rng::equal_range(current_procs, current_procs.at(0).ppid, rng::less{}, &proc_info::ppid)) { _tree_gen(p, current_procs, tree_procs, 0, false, filter, false, no_update, should_filter); } //? Recursive sort over tree structure to account for collapsed processes in the tree int index = 0; tree_sort(tree_procs, sorting, reverse, index, current_procs.size()); //? Recursive construction of ASCII tree prefixes. for (auto t = tree_procs.begin(); t != tree_procs.end(); ++t) { _collect_prefixes(*t, t == tree_procs.end() - 1); } //? Final sort based on tree index rng::sort(current_procs, rng::less{}, & proc_info::tree_index); //? Move current selection/view to the selected process when collapsing/expanding in the tree if (locate_selection) { int loc = rng::find(current_procs, Proc::selected_pid, &proc_info::pid)->tree_index; if (Config::ints.at("proc_start") >= loc or Config::ints.at("proc_start") <= loc - Proc::select_max) Config::ints.at("proc_start") = max(0, loc - 1); Config::ints.at("proc_selected") = loc - Config::ints.at("proc_start") + 1; } } numpids = (int)current_procs.size() - filter_found; return current_procs; } } // namespace Proc namespace Tools { double system_uptime() { struct timeval ts, currTime; std::size_t len = sizeof(ts); int mib[2] = {CTL_KERN, KERN_BOOTTIME}; if (sysctl(mib, 2, &ts, &len, nullptr, 0) != -1) { gettimeofday(&currTime, nullptr); return currTime.tv_sec - ts.tv_sec; } return 0.0; } } // namespace Tools btop-1.4.5/src/openbsd/000077500000000000000000000000001506333644200147145ustar00rootroot00000000000000btop-1.4.5/src/openbsd/btop_collect.cpp000066400000000000000000001172421506333644200201000ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include #include // man 3 getifaddrs: "BUGS: If both and are being included, must be included before " #include #include #include #include #include #include #include // for inet_ntop stuff #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../btop_config.hpp" #include "../btop_shared.hpp" #include "../btop_tools.hpp" #include "./sysctlbyname.h" using std::clamp, std::string_literals::operator""s, std::cmp_equal, std::cmp_less, std::cmp_greater; using std::ifstream, std::numeric_limits, std::streamsize, std::round, std::max, std::min; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace Tools; //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Cpu { vector core_old_totals; vector core_old_idles; vector available_fields = {"total"}; vector available_sensors = {"Auto"}; cpu_info current_cpu; bool got_sensors = false, cpu_temp_only = false, supports_watts = false; //* Populate found_sensors map bool get_sensors(); //* Get current cpu clock speed string get_cpuHz(); //* Search /proc/cpuinfo for a cpu name string get_cpuName(); struct Sensor { fs::path path; string label; int64_t temp = 0; int64_t high = 0; int64_t crit = 0; }; string cpu_sensor; vector core_sensors; std::unordered_map core_mapping; } // namespace Cpu namespace Mem { double old_uptime; } namespace Shared { fs::path passwd_path; uint64_t totalMem; long pageSize, clkTck, coreCount, physicalCoreCount, arg_max; int totalMem_len, kfscale; long bootTime; void init() { //? Shared global variables init int mib[2]; mib[0] = CTL_HW; mib[1] = HW_NCPU; int ncpu; size_t len = sizeof(ncpu); if (sysctl(mib, 2, &ncpu, &len, nullptr, 0) == -1) { Logger::warning("Could not determine number of cores, defaulting to 1."); } else { coreCount = ncpu; } pageSize = sysconf(_SC_PAGE_SIZE); if (pageSize <= 0) { pageSize = 4096; Logger::warning("Could not get system page size. Defaulting to 4096, processes memory usage might be incorrect."); } clkTck = sysconf(_SC_CLK_TCK); if (clkTck <= 0) { clkTck = 100; Logger::warning("Could not get system clock ticks per second. Defaulting to 100, processes cpu usage might be incorrect."); } int64_t memsize = 0; size_t size = sizeof(memsize); if (sysctlbyname("hw.physmem", &memsize, &size, nullptr, 0) < 0) { Logger::warning("Could not get memory size"); } totalMem = memsize; struct timeval result; size = sizeof(result); if (sysctlbyname("kern.boottime", &result, &size, nullptr, 0) < 0) { Logger::warning("Could not get boot time"); } else { bootTime = result.tv_sec; } size = sizeof(kfscale); if (sysctlbyname("kern.fscale", &kfscale, &size, nullptr, 0) == -1) { kfscale = 2048; } //* Get maximum length of process arguments arg_max = sysconf(_SC_ARG_MAX); //? Init for namespace Cpu Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {}); Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {}); Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0); Cpu::core_old_idles.insert(Cpu::core_old_idles.begin(), Shared::coreCount, 0); Cpu::collect(); for (auto &[field, vec] : Cpu::current_cpu.cpu_percent) { if (not vec.empty() and not v_contains(Cpu::available_fields, field)) Cpu::available_fields.push_back(field); } Cpu::cpuName = Cpu::get_cpuName(); Cpu::got_sensors = Cpu::get_sensors(); Cpu::core_mapping = Cpu::get_core_mapping(); //? Init for namespace Mem Mem::old_uptime = system_uptime(); Mem::collect(); } } // namespace Shared namespace Cpu { string cpuName; string cpuHz; bool has_battery = true; tuple current_bat; const array time_names = {"user", "nice", "system", "idle"}; std::unordered_map cpu_old = { {"totals", 0}, {"idles", 0}, {"user", 0}, {"nice", 0}, {"system", 0}, {"idle", 0} }; string get_cpuName() { string name; char buffer[1024]; size_t size = sizeof(buffer); if (sysctlbyname("hw.model", &buffer, &size, nullptr, 0) < 0) { Logger::error("Failed to get CPU name"); return name; } return trim_name(string(buffer)); } int64_t get_sensor(string device, sensor_type type, int num) { int64_t temp = -1; struct sensordev sensordev; struct sensor sensor; size_t sdlen, slen; int dev; int mib[] = {CTL_HW, HW_SENSORS, 0, 0, 0}; sdlen = sizeof(sensordev); slen = sizeof(sensor); for (dev = 0;; dev++) { mib[2] = dev; if (sysctl(mib, 3, &sensordev, &sdlen, NULL, 0) == -1) { if (errno == ENXIO) continue; if (errno == ENOENT) break; } if (strstr(sensordev.xname, device.c_str())) { mib[3] = type; mib[4] = num; if (sysctl(mib, 5, &sensor, &slen, NULL, 0) == -1) { if (errno != ENOENT) { Logger::warning("sysctl"); continue; } } temp = sensor.value; break; } } return temp; } bool get_sensors() { got_sensors = false; if (Config::getB("show_coretemp") and Config::getB("check_temp")) { if (get_sensor(string("cpu0") , SENSOR_TEMP, 0) > 0) { got_sensors = true; current_cpu.temp_max = 100; // we don't have this info } else { Logger::warning("Could not get temp sensor"); } } return got_sensors; } #define MUKTOC(v) ((v - 273150000) / 1000000.0) void update_sensors() { int temp = 0; int p_temp = 0; temp = get_sensor(string("cpu0"), SENSOR_TEMP, 0); if (temp > -1) { temp = MUKTOC(temp); p_temp = temp; for (int i = 0; i < Shared::coreCount; i++) { if (cmp_less(i + 1, current_cpu.temp.size())) { current_cpu.temp.at(i + 1).push_back(temp); if (current_cpu.temp.at(i + 1).size() > 20) current_cpu.temp.at(i + 1).pop_front(); } } current_cpu.temp.at(0).push_back(p_temp); if (current_cpu.temp.at(0).size() > 20) current_cpu.temp.at(0).pop_front(); } } string get_cpuHz() { unsigned int freq = 1; size_t size = sizeof(freq); if (sysctlbyname("hw.cpuspeed", &freq, &size, nullptr, 0) < 0) { return ""; } return std::to_string(freq / 1000.0 ).substr(0, 3); // seems to be in MHz } auto get_core_mapping() -> std::unordered_map { std::unordered_map core_map; if (cpu_temp_only) return core_map; for (long i = 0; i < Shared::coreCount; i++) { core_map[i] = i; } //? If core mapping from cpuinfo was incomplete try to guess remainder, if missing completely, map 0-0 1-1 2-2 etc. if (cmp_less(core_map.size(), Shared::coreCount)) { if (Shared::coreCount % 2 == 0 and (long) core_map.size() == Shared::coreCount / 2) { for (int i = 0, n = 0; i < Shared::coreCount / 2; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[Shared::coreCount / 2 + i] = n++; } } else { core_map.clear(); for (int i = 0, n = 0; i < Shared::coreCount; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[i] = n++; } } } //? Apply user set custom mapping if any const auto &custom_map = Config::getS("cpu_core_map"); if (not custom_map.empty()) { try { for (const auto &split : ssplit(custom_map)) { const auto vals = ssplit(split, ':'); if (vals.size() != 2) continue; int change_id = std::stoi(vals.at(0)); int new_id = std::stoi(vals.at(1)); if (not core_map.contains(change_id) or cmp_greater(new_id, core_sensors.size())) continue; core_map.at(change_id) = new_id; } } catch (...) { } } return core_map; } auto get_battery() -> tuple { if (not has_battery) return {0, 0, 0, ""}; long seconds = -1; uint32_t percent = -1; string status = "discharging"; int64_t full, remaining; full = get_sensor("acpibat0", SENSOR_AMPHOUR, 0); remaining = get_sensor("acpibat0", SENSOR_AMPHOUR, 3); int64_t state = get_sensor("acpibat0", SENSOR_INTEGER, 0); if (full < 0) { has_battery = false; Logger::warning("failed to get battery"); } else { float_t f = full / 1000; float_t r = remaining / 1000; has_battery = true; percent = r / f * 100; if (percent == 100) { status = "full"; } switch (state) { case 0: status = "full"; percent = 100; break; case 2: status = "charging"; break; } } return {percent, -1, seconds, status}; } auto collect(bool no_update) -> cpu_info & { if (Runner::stopping or (no_update and not current_cpu.cpu_percent.at("total").empty())) return current_cpu; auto &cpu = current_cpu; if (getloadavg(cpu.load_avg.data(), cpu.load_avg.size()) < 0) { Logger::error("failed to get load averages"); } auto cp_time = std::unique_ptr{ new struct cpustats[Shared::coreCount] }; size_t size = Shared::coreCount * sizeof(struct cpustats); static int cpustats_mib[] = {CTL_KERN, KERN_CPUSTATS, /*fillme*/0}; for (int i = 0; i < Shared::coreCount; i++) { cpustats_mib[2] = i / 2; if (sysctl(cpustats_mib, 3, &cp_time[i], &size, NULL, 0) == -1) { Logger::error("sysctl kern.cpustats failed"); } } long long global_totals = 0; long long global_idles = 0; vector times_summed = {0, 0, 0, 0}; for (long i = 0; i < Shared::coreCount; i++) { vector times; //? 0=user, 1=nice, 2=system, 3=idle for (int x = 0; const unsigned int c_state : {CP_USER, CP_NICE, CP_SYS, CP_IDLE}) { auto val = cp_time[i].cs_time[c_state]; times.push_back(val); times_summed.at(x++) += val; } try { //? All values const long long totals = std::accumulate(times.begin(), times.end(), 0ll); //? Idle time const long long idles = times.at(3); global_totals += totals; global_idles += idles; //? Calculate cpu total for each core if (i > Shared::coreCount) break; const long long calc_totals = max(0ll, totals - core_old_totals.at(i)); const long long calc_idles = max(0ll, idles - core_old_idles.at(i)); core_old_totals.at(i) = totals; core_old_idles.at(i) = idles; cpu.core_percent.at(i).push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph if (cpu.core_percent.at(i).size() > 40) cpu.core_percent.at(i).pop_front(); } catch (const std::exception &e) { Logger::error("Cpu::collect() : " + (string)e.what()); throw std::runtime_error("collect() : " + (string)e.what()); } } const long long calc_totals = max(1ll, global_totals - cpu_old.at("totals")); const long long calc_idles = max(1ll, global_idles - cpu_old.at("idles")); //? Populate cpu.cpu_percent with all fields from syscall for (int ii = 0; const auto &val : times_summed) { cpu.cpu_percent.at(time_names.at(ii)).push_back(clamp((long long)round((double)(val - cpu_old.at(time_names.at(ii))) * 100 / calc_totals), 0ll, 100ll)); cpu_old.at(time_names.at(ii)) = val; //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at(time_names.at(ii)).size(), width * 2)) cpu.cpu_percent.at(time_names.at(ii)).pop_front(); ii++; } cpu_old.at("totals") = global_totals; cpu_old.at("idles") = global_idles; //? Total usage of cpu cpu.cpu_percent.at("total").push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at("total").size(), width * 2)) cpu.cpu_percent.at("total").pop_front(); if (Config::getB("show_cpu_freq")) { auto hz = get_cpuHz(); if (hz != "") { cpuHz = hz; } } if (Config::getB("check_temp") and got_sensors) update_sensors(); if (Config::getB("show_battery") and has_battery) current_bat = get_battery(); return cpu; } } // namespace Cpu namespace Mem { bool has_swap = false; vector fstab; fs::file_time_type fstab_time; int disk_ios = 0; vector last_found; mem_info current_mem{}; uint64_t get_totalMem() { return Shared::totalMem; } void assign_values(struct disk_info& disk, int64_t readBytes, int64_t writeBytes) { disk_ios++; if (disk.io_read.empty()) { disk.io_read.push_back(0); } else { disk.io_read.push_back(max((int64_t)0, (readBytes - disk.old_io.at(0)))); } disk.old_io.at(0) = readBytes; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); if (disk.io_write.empty()) { disk.io_write.push_back(0); } else { disk.io_write.push_back(max((int64_t)0, (writeBytes - disk.old_io.at(1)))); } disk.old_io.at(1) = writeBytes; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); // no io times - need to push something anyway or we'll get an ABORT if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(clamp((long)round((double)(disk.io_write.back() + disk.io_read.back()) / (1 << 20)), 0l, 100l)); while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } void collect_disk(std::unordered_map &disks, std::unordered_map &mapping) { uint64_t total_bytes_read = 0; uint64_t total_bytes_write = 0; int num_drives = 0; int mib[2] = { CTL_HW, HW_DISKCOUNT }; size_t size; if (sysctl(mib, 2, &num_drives, &size, NULL, 0) >= 0) { mib[0] = CTL_HW; mib[1] = HW_DISKSTATS; size = num_drives * sizeof(struct diskstats); auto p = std::unique_ptr { reinterpret_cast(malloc(size)), free }; if (sysctl(mib, 2, p.get(), &size, NULL, 0) == -1) { Logger::error("failed to get disk stats"); return; } for (int i = 0; i < num_drives; i++) { for (auto& [ignored, disk] : disks) { if (disk.dev.string().find(p[i].ds_name) != string::npos) { string mountpoint = mapping.at(disk.dev); total_bytes_read = p[i].ds_rbytes; total_bytes_write = p[i].ds_wbytes; assign_values(disk, total_bytes_read, total_bytes_write); } } } } } auto collect(bool no_update) -> mem_info & { if (Runner::stopping or (no_update and not current_mem.percent.at("used").empty())) return current_mem; auto show_swap = Config::getB("show_swap"); auto show_disks = Config::getB("show_disks"); auto swap_disk = Config::getB("swap_disk"); auto &mem = current_mem; static bool snapped = (getenv("BTOP_SNAPPED") != nullptr); u_int memActive, memWire, cachedMem; // u_int freeMem; size_t size; static int uvmexp_mib[] = {CTL_VM, VM_UVMEXP}; static int bcstats_mib[] = {CTL_VFS, VFS_GENERIC, VFS_BCACHESTAT}; struct uvmexp uvmexp; struct bcachestats bcstats; size = sizeof(uvmexp); if (sysctl(uvmexp_mib, 2, &uvmexp, &size, NULL, 0) == -1) { Logger::error("sysctl failed"); bzero(&uvmexp, sizeof(uvmexp)); } size = sizeof(bcstats); if (sysctl(bcstats_mib, 3, &bcstats, &size, NULL, 0) == -1) { Logger::error("sysctl failed"); bzero(&bcstats, sizeof(bcstats)); } memActive = uvmexp.active * Shared::pageSize; memWire = uvmexp.wired; // freeMem = uvmexp.free * Shared::pageSize; cachedMem = bcstats.numbufpages * Shared::pageSize; mem.stats.at("used") = memActive; mem.stats.at("available") = Shared::totalMem - memActive - memWire; mem.stats.at("cached") = cachedMem; mem.stats.at("free") = Shared::totalMem - memActive - memWire; if (show_swap) { int total = uvmexp.swpages * Shared::pageSize; mem.stats.at("swap_total") = total; int swapped = uvmexp.swpgonly * Shared::pageSize; mem.stats.at("swap_used") = swapped; mem.stats.at("swap_free") = total - swapped; } if (show_swap and mem.stats.at("swap_total") > 0) { for (const auto &name : swap_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / mem.stats.at("swap_total"))); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } has_swap = true; } else has_swap = false; //? Calculate percentages for (const auto &name : mem_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / Shared::totalMem)); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } if (show_disks) { std::unordered_map mapping; // keep mapping from device -> mountpoint, since IOKit doesn't give us the mountpoint double uptime = system_uptime(); auto &disks_filter = Config::getS("disks_filter"); bool filter_exclude = false; // auto only_physical = Config::getB("only_physical"); auto &disks = mem.disks; vector filter; if (not disks_filter.empty()) { filter = ssplit(disks_filter); if (filter.at(0).starts_with("exclude=")) { filter_exclude = true; filter.at(0) = filter.at(0).substr(8); } } struct statfs *stfs; int count = getmntinfo(&stfs, MNT_WAIT); vector found; found.reserve(last_found.size()); for (int i = 0; i < count; i++) { auto fstype = string(stfs[i].f_fstypename); if (fstype == "autofs" || fstype == "devfs" || fstype == "linprocfs" || fstype == "procfs" || fstype == "tmpfs" || fstype == "linsysfs" || fstype == "fdesckfs") { // in memory filesystems -> not useful to show continue; } std::error_code ec; string mountpoint = stfs[i].f_mntonname; string dev = stfs[i].f_mntfromname; mapping[dev] = mountpoint; //? Match filter if not empty if (not filter.empty()) { bool match = v_contains(filter, mountpoint); if ((filter_exclude and match) or (not filter_exclude and not match)) continue; } found.push_back(mountpoint); if (not disks.contains(mountpoint)) { disks[mountpoint] = disk_info{fs::canonical(dev, ec), fs::path(mountpoint).filename()}; if (disks.at(mountpoint).dev.empty()) disks.at(mountpoint).dev = dev; if (disks.at(mountpoint).name.empty()) disks.at(mountpoint).name = (mountpoint == "/" ? "root" : mountpoint); } if (not v_contains(last_found, mountpoint)) redraw = true; disks.at(mountpoint).free = stfs[i].f_bfree; disks.at(mountpoint).total = stfs[i].f_iosize; } //? Remove disks no longer mounted or filtered out if (swap_disk and has_swap) found.push_back("swap"); for (auto it = disks.begin(); it != disks.end();) { if (not v_contains(found, it->first)) it = disks.erase(it); else it++; } if (found.size() != last_found.size()) redraw = true; last_found = std::move(found); //? Get disk/partition stats for (auto &[mountpoint, disk] : disks) { if (std::error_code ec; not fs::exists(mountpoint, ec)) continue; struct statvfs vfs; if (statvfs(mountpoint.c_str(), &vfs) < 0) { Logger::warning("Failed to get disk/partition stats with statvfs() for: " + mountpoint); continue; } disk.total = vfs.f_blocks * vfs.f_frsize; disk.free = vfs.f_bfree * vfs.f_frsize; disk.used = disk.total - disk.free; if (disk.total != 0) { disk.used_percent = round((double)disk.used * 100 / disk.total); disk.free_percent = 100 - disk.used_percent; } else { disk.used_percent = 0; disk.free_percent = 0; } } //? Setup disks order in UI and add swap if enabled mem.disks_order.clear(); if (snapped and disks.contains("/mnt")) mem.disks_order.push_back("/mnt"); else if (disks.contains("/")) mem.disks_order.push_back("/"); if (swap_disk and has_swap) { mem.disks_order.push_back("swap"); if (not disks.contains("swap")) disks["swap"] = {"", "swap"}; disks.at("swap").total = mem.stats.at("swap_total"); disks.at("swap").used = mem.stats.at("swap_used"); disks.at("swap").free = mem.stats.at("swap_free"); disks.at("swap").used_percent = mem.percent.at("swap_used").back(); disks.at("swap").free_percent = mem.percent.at("swap_free").back(); } for (const auto &name : last_found) if (not is_in(name, "/", "swap", "/dev")) mem.disks_order.push_back(name); disk_ios = 0; collect_disk(disks, mapping); old_uptime = uptime; } return mem; } } // namespace Mem namespace Net { std::unordered_map current_net; net_info empty_net = {}; vector interfaces; string selected_iface; int errors = 0; std::unordered_map graph_max = {{"download", {}}, {"upload", {}}}; std::unordered_map> max_count = {{"download", {}}, {"upload", {}}}; bool rescale = true; uint64_t timestamp = 0; auto collect(bool no_update) -> net_info & { auto &net = current_net; auto &config_iface = Config::getS("net_iface"); auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto new_timestamp = time_ms(); if (not no_update and errors < 3) { //? Get interface list using getifaddrs() wrapper IfAddrsPtr if_addrs {}; if (if_addrs.get_status() != 0) { errors++; Logger::error("Net::collect() -> getifaddrs() failed with id " + to_string(if_addrs.get_status())); redraw = true; return empty_net; } int family = 0; static_assert(INET6_ADDRSTRLEN >= INET_ADDRSTRLEN); // 46 >= 16, compile-time assurance. enum { IPBUFFER_MAXSIZE = INET6_ADDRSTRLEN }; // manually using the known biggest value, guarded by the above static_assert char ip[IPBUFFER_MAXSIZE]; interfaces.clear(); string ipv4, ipv6; //? Iteration over all items in getifaddrs() list for (auto *ifa = if_addrs.get(); ifa != nullptr; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; family = ifa->ifa_addr->sa_family; const auto &iface = ifa->ifa_name; //? Update available interfaces vector and get status of interface if (not v_contains(interfaces, iface)) { interfaces.push_back(iface); net[iface].connected = (ifa->ifa_flags & IFF_RUNNING); // An interface can have more than one IP of the same family associated with it, // but we pick only the first one to show in the NET box. // Note: Interfaces without any IPv4 and IPv6 set are still valid and monitorable! net[iface].ipv4.clear(); net[iface].ipv6.clear(); } //? Get IPv4 address if (family == AF_INET) { if (net[iface].ipv4.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv4 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv4 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //? Get IPv6 address else if (family == AF_INET6) { if (net[iface].ipv6.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin6_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv6 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv6 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //else, ignoring family==AF_LINK (see man 3 getifaddrs) } std::unordered_map> ifstats; int mib[] = {CTL_NET, PF_ROUTE, 0, 0, NET_RT_IFLIST, 0}; size_t len; if (sysctl(mib, 6, nullptr, &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { std::unique_ptr buf(new char[len]); if (sysctl(mib, 6, buf.get(), &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { char *lim = buf.get() + len; char *next = nullptr; for (next = buf.get(); next < lim;) { struct if_msghdr *ifm = (struct if_msghdr *)next; next += ifm->ifm_msglen; struct if_data ifm_data = ifm->ifm_data; if (ifm->ifm_addrs & RTA_IFP) { struct sockaddr_dl *sdl = (struct sockaddr_dl *)(ifm + 1); char iface[32]; strncpy(iface, sdl->sdl_data, sdl->sdl_nlen); iface[sdl->sdl_nlen] = 0; ifstats[iface] = std::tuple(ifm_data.ifi_ibytes, ifm_data.ifi_obytes); } } } } //? Get total received and transmitted bytes + device address if no ip was found for (const auto &iface : interfaces) { for (const string dir : {"download", "upload"}) { auto &saved_stat = net.at(iface).stat.at(dir); auto &bandwidth = net.at(iface).bandwidth.at(dir); uint64_t val = dir == "download" ? std::get<0>(ifstats[iface]) : std::get<1>(ifstats[iface]); //? Update speed, total and top values if (val < saved_stat.last) { saved_stat.rollover += saved_stat.last; saved_stat.last = 0; } if (cmp_greater((unsigned long long)saved_stat.rollover + (unsigned long long)val, numeric_limits::max())) { saved_stat.rollover = 0; saved_stat.last = 0; } saved_stat.speed = round((double)(val - saved_stat.last) / ((double)(new_timestamp - timestamp) / 1000)); if (saved_stat.speed > saved_stat.top) saved_stat.top = saved_stat.speed; if (saved_stat.offset > val + saved_stat.rollover) saved_stat.offset = 0; saved_stat.total = (val + saved_stat.rollover) - saved_stat.offset; saved_stat.last = val; //? Add values to graph bandwidth.push_back(saved_stat.speed); while (cmp_greater(bandwidth.size(), width * 2)) bandwidth.pop_front(); //? Set counters for auto scaling if (net_auto and selected_iface == iface) { if (saved_stat.speed > graph_max[dir]) { ++max_count[dir][0]; if (max_count[dir][1] > 0) --max_count[dir][1]; } else if (graph_max[dir] > 10 << 10 and saved_stat.speed < graph_max[dir] / 10) { ++max_count[dir][1]; if (max_count[dir][0] > 0) --max_count[dir][0]; } } } } //? Clean up net map if needed if (net.size() > interfaces.size()) { for (auto it = net.begin(); it != net.end();) { if (not v_contains(interfaces, it->first)) it = net.erase(it); else it++; } } timestamp = new_timestamp; } //? Return empty net_info struct if no interfaces was found if (net.empty()) return empty_net; //? Find an interface to display if selected isn't set or valid if (selected_iface.empty() or not v_contains(interfaces, selected_iface)) { max_count["download"][0] = max_count["download"][1] = max_count["upload"][0] = max_count["upload"][1] = 0; redraw = true; if (net_auto) rescale = true; if (not config_iface.empty() and v_contains(interfaces, config_iface)) selected_iface = config_iface; else { //? Sort interfaces by total upload + download bytes auto sorted_interfaces = interfaces; rng::sort(sorted_interfaces, [&](const auto &a, const auto &b) { return cmp_greater(net.at(a).stat["download"].total + net.at(a).stat["upload"].total, net.at(b).stat["download"].total + net.at(b).stat["upload"].total); }); selected_iface.clear(); //? Try to set to a connected interface for (const auto &iface : sorted_interfaces) { if (net.at(iface).connected) selected_iface = iface; break; } //? If no interface is connected set to first available if (selected_iface.empty() and not sorted_interfaces.empty()) selected_iface = sorted_interfaces.at(0); else if (sorted_interfaces.empty()) return empty_net; } } //? Calculate max scale for graphs if needed if (net_auto) { bool sync = false; for (const auto &dir : {"download", "upload"}) { for (const auto &sel : {0, 1}) { if (rescale or max_count[dir][sel] >= 5) { const long long avg_speed = (net[selected_iface].bandwidth[dir].size() > 5 ? std::accumulate(net.at(selected_iface).bandwidth.at(dir).rbegin(), net.at(selected_iface).bandwidth.at(dir).rbegin() + 5, 0ll) / 5 : net[selected_iface].stat[dir].speed); graph_max[dir] = max(uint64_t(avg_speed * (sel == 0 ? 1.3 : 3.0)), (uint64_t)10 << 10); max_count[dir][0] = max_count[dir][1] = 0; redraw = true; if (net_sync) sync = true; break; } } //? Sync download/upload graphs if enabled if (sync) { const auto other = (string(dir) == "upload" ? "download" : "upload"); graph_max[other] = graph_max[dir]; max_count[other][0] = max_count[other][1] = 0; break; } } } rescale = false; return net.at(selected_iface); } } // namespace Net namespace Proc { vector current_procs; std::unordered_map uid_user; string current_sort; string current_filter; bool current_rev = false; fs::file_time_type passwd_time; uint64_t cputimes; int collapse = -1, expand = -1; uint64_t old_cputimes = 0; atomic numpids = 0; int filter_found = 0; detail_container detailed; string get_status(char s) { if (s & SRUN) return "Running"; if (s & SSLEEP) return "Sleeping"; if (s & SIDL) return "Idle"; if (s & SSTOP) return "Stopped"; if (s & SZOMB) return "Zombie"; return "Unknown"; } //* Get detailed info for selected process void _collect_details(const size_t pid, vector &procs) { if (pid != detailed.last_pid) { detailed = {}; detailed.last_pid = pid; detailed.skip_smaps = not Config::getB("proc_info_smaps"); } //? Copy proc_info for process from proc vector auto p_info = rng::find(procs, pid, &proc_info::pid); detailed.entry = *p_info; //? Update cpu percent deque for process cpu graph if (not Config::getB("proc_per_core")) detailed.entry.cpu_p *= Shared::coreCount; detailed.cpu_percent.push_back(clamp((long long)round(detailed.entry.cpu_p), 0ll, 100ll)); while (cmp_greater(detailed.cpu_percent.size(), width)) detailed.cpu_percent.pop_front(); //? Process runtime : current time - start time (both in unix time - seconds since epoch) struct timeval currentTime; gettimeofday(¤tTime, nullptr); detailed.elapsed = sec_to_dhms(currentTime.tv_sec - detailed.entry.cpu_s); // only interested in second granularity, so ignoring tc_usec if (detailed.elapsed.size() > 8) detailed.elapsed.resize(detailed.elapsed.size() - 3); //? Get parent process name if (detailed.parent.empty()) { auto p_entry = rng::find(procs, detailed.entry.ppid, &proc_info::pid); if (p_entry != procs.end()) detailed.parent = p_entry->name; } //? Expand process status from single char to explanative string detailed.status = get_status(detailed.entry.state); detailed.mem_bytes.push_back(detailed.entry.mem); detailed.memory = floating_humanizer(detailed.entry.mem); if (detailed.first_mem == -1 or detailed.first_mem < detailed.mem_bytes.back() / 2 or detailed.first_mem > detailed.mem_bytes.back() * 4) { detailed.first_mem = min((uint64_t)detailed.mem_bytes.back() * 2, Mem::get_totalMem()); redraw = true; } while (cmp_greater(detailed.mem_bytes.size(), width)) detailed.mem_bytes.pop_front(); } //* Collects and sorts process information from /proc auto collect(bool no_update) -> vector & { const auto &sorting = Config::getS("proc_sorting"); auto reverse = Config::getB("proc_reversed"); const auto &filter = Config::getS("proc_filter"); auto per_core = Config::getB("proc_per_core"); auto tree = Config::getB("proc_tree"); auto show_detailed = Config::getB("show_detailed"); const size_t detailed_pid = Config::getI("detailed_pid"); bool should_filter = current_filter != filter; if (should_filter) current_filter = filter; bool sorted_change = (sorting != current_sort or reverse != current_rev or should_filter); if (sorted_change) { current_sort = sorting; current_rev = reverse; } const int cmult = (per_core) ? Shared::coreCount : 1; bool got_detailed = false; static vector found; //* Use pids from last update if only changing filter, sorting or tree options if (no_update and not current_procs.empty()) { if (show_detailed and detailed_pid != detailed.last_pid) _collect_details(detailed_pid, current_procs); } else { //* ---------------------------------------------Collection start---------------------------------------------- should_filter = true; found.clear(); struct timeval currentTime; gettimeofday(¤tTime, nullptr); const double timeNow = currentTime.tv_sec + (currentTime.tv_usec / 1'000'000); int count = 0; char buf[_POSIX2_LINE_MAX]; Shared::KvmPtr kd {kvm_openfiles(nullptr, nullptr, nullptr, KVM_NO_FILES, buf)}; const struct kinfo_proc* kprocs = kvm_getprocs(kd.get() , KERN_PROC_ALL, 0, sizeof(struct kinfo_proc), &count); for (int i = 0; i < count; i++) { const struct kinfo_proc* kproc = &kprocs[i]; const size_t pid = (size_t)kproc->p_pid; if (pid < 1) continue; found.push_back(pid); //? Check if pid already exists in current_procs bool no_cache = false; auto find_old = rng::find(current_procs, pid, &proc_info::pid); if (find_old == current_procs.end()) { current_procs.push_back({pid}); find_old = current_procs.end() - 1; no_cache = true; } auto &new_proc = *find_old; //? Get program name, command, username, parent pid, nice and status if (no_cache) { if (string(kproc->p_comm) == "idle"s) { current_procs.pop_back(); found.pop_back(); continue; } new_proc.name = kproc->p_comm; char** argv = kvm_getargv(kd.get(), kproc, 0); if (argv) { for (int i = 0; argv[i] and cmp_less(new_proc.cmd.size(), 1000); i++) { new_proc.cmd += argv[i] + " "s; } if (not new_proc.cmd.empty()) new_proc.cmd.pop_back(); } if (new_proc.cmd.empty()) new_proc.cmd = new_proc.name; if (new_proc.cmd.size() > 1000) { new_proc.cmd.resize(1000); new_proc.cmd.shrink_to_fit(); } new_proc.ppid = kproc->p_ppid; new_proc.cpu_s = round(kproc->p_ustart_sec); struct passwd *pwd = getpwuid(kproc->p_uid); if (pwd) new_proc.user = pwd->pw_name; } new_proc.p_nice = kproc->p_nice; new_proc.state = kproc->p_stat; int cpu_t = 0; cpu_t = kproc->p_uctime_usec * 1'000'000 + kproc->p_uctime_sec; new_proc.mem = kproc->p_vm_rssize * Shared::pageSize; new_proc.threads = 1; // can't seem to find this in kinfo_proc //? Process cpu usage since last update new_proc.cpu_p = clamp((100.0 * kproc->p_pctcpu / Shared::kfscale) * cmult, 0.0, 100.0 * Shared::coreCount); //? Process cumulative cpu usage since process start new_proc.cpu_c = (double)(cpu_t * Shared::clkTck / 1'000'000) / max(1.0, timeNow - new_proc.cpu_s); //? Update cached value with latest cpu times new_proc.cpu_t = cpu_t; if (show_detailed and not got_detailed and new_proc.pid == detailed_pid) { got_detailed = true; } } //? Clear dead processes from current_procs auto eraser = rng::remove_if(current_procs, [&](const auto &element) { return not v_contains(found, element.pid); }); current_procs.erase(eraser.begin(), eraser.end()); //? Update the details info box for process if active if (show_detailed and got_detailed) { _collect_details(detailed_pid, current_procs); } else if (show_detailed and not got_detailed and detailed.status != "Dead") { detailed.status = "Dead"; redraw = true; } old_cputimes = cputimes; } //* ---------------------------------------------Collection done----------------------------------------------- //* Match filter if defined if (should_filter) { filter_found = 0; for (auto& p : current_procs) { if (not tree and not filter.empty()) { if (!matches_filter(p, filter)) { p.filtered = true; filter_found++; } else { p.filtered = false; } } else { p.filtered = false; } } } //* Sort processes if (sorted_change or not no_update) { proc_sorter(current_procs, sorting, reverse, tree); } //* Generate tree view if enabled if (tree and (not no_update or should_filter or sorted_change)) { bool locate_selection = false; if (auto find_pid = (collapse != -1 ? collapse : expand); find_pid != -1) { auto collapser = rng::find(current_procs, find_pid, &proc_info::pid); if (collapser != current_procs.end()) { if (collapse == expand) { collapser->collapsed = not collapser->collapsed; } else if (collapse > -1) { collapser->collapsed = true; } else if (expand > -1) { collapser->collapsed = false; } if (Config::ints.at("proc_selected") > 0) locate_selection = true; } collapse = expand = -1; } if (should_filter or not filter.empty()) filter_found = 0; vector tree_procs; tree_procs.reserve(current_procs.size()); for (auto& p : current_procs) { if (not v_contains(found, p.ppid)) p.ppid = 0; } //? Stable sort to retain selected sorting among processes with the same parent rng::stable_sort(current_procs, rng::less{}, & proc_info::ppid); //? Start recursive iteration over processes with the lowest shared parent pids for (auto& p : rng::equal_range(current_procs, current_procs.at(0).ppid, rng::less{}, &proc_info::ppid)) { _tree_gen(p, current_procs, tree_procs, 0, false, filter, false, no_update, should_filter); } //? Recursive sort over tree structure to account for collapsed processes in the tree int index = 0; tree_sort(tree_procs, sorting, reverse, index, current_procs.size()); //? Recursive construction of ASCII tree prefixes. for (auto t = tree_procs.begin(); t != tree_procs.end(); ++t) { _collect_prefixes(*t, t == tree_procs.end() - 1); } //? Final sort based on tree index rng::sort(current_procs, rng::less{}, & proc_info::tree_index); //? Move current selection/view to the selected process when collapsing/expanding in the tree if (locate_selection) { int loc = rng::find(current_procs, Proc::selected_pid, &proc_info::pid)->tree_index; if (Config::ints.at("proc_start") >= loc or Config::ints.at("proc_start") <= loc - Proc::select_max) Config::ints.at("proc_start") = max(0, loc - 1); Config::ints.at("proc_selected") = loc - Config::ints.at("proc_start") + 1; } } numpids = (int)current_procs.size() - filter_found; return current_procs; } } // namespace Proc namespace Tools { double system_uptime() { struct timeval ts, currTime; std::size_t len = sizeof(ts); int mib[2] = {CTL_KERN, KERN_BOOTTIME}; if (sysctl(mib, 2, &ts, &len, nullptr, 0) != -1) { gettimeofday(&currTime, nullptr); return currTime.tv_sec - ts.tv_sec; } return 0.0; } } // namespace Tools btop-1.4.5/src/openbsd/internal.h000066400000000000000000000165141506333644200167100ustar00rootroot00000000000000/* * Copyright (c) 2019-2021 Brian Callahan * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ struct sysctls { const char *name; int mib0; int mib1; int mib2; } sysctlnames[] = { { "hw.machine", CTL_HW, HW_MACHINE, 0 }, { "hw.model", CTL_HW, HW_MODEL, 0 }, { "hw.ncpu", CTL_HW, HW_NCPU, 0 }, { "hw.byteorder", CTL_HW, HW_BYTEORDER, 0 }, { "hw.pagesize", CTL_HW, HW_PAGESIZE, 0 }, { "hw.disknames", CTL_HW, HW_DISKNAMES, 0 }, { "hw.diskcount", CTL_HW, HW_DISKCOUNT, 0 }, { "hw.sensors", CTL_HW, HW_SENSORS, 0 }, { "hw.model", CTL_HW, HW_MODEL, 0 }, { "hw.ncpu", CTL_HW, HW_NCPU, 0 }, { "hw.byteorder", CTL_HW, HW_BYTEORDER, 0 }, { "hw.pagesize", CTL_HW, HW_PAGESIZE, 0 }, { "hw.disknames", CTL_HW, HW_DISKNAMES, 0 }, { "hw.diskcount", CTL_HW, HW_DISKCOUNT, 0 }, { "hw.sensors", CTL_HW, HW_SENSORS, 0 }, { "hw.cpuspeed", CTL_HW, HW_CPUSPEED, 0 }, { "hw.setperf", CTL_HW, HW_SETPERF, 0 }, { "hw.vendor", CTL_HW, HW_VENDOR, 0 }, { "hw.product", CTL_HW, HW_PRODUCT, 0 }, { "hw.serialno", CTL_HW, HW_SERIALNO, 0 }, { "hw.uuid", CTL_HW, HW_UUID, 0 }, { "hw.physmem", CTL_HW, HW_PHYSMEM64, 0 }, { "hw.usermem", CTL_HW, HW_USERMEM64, 0 }, { "hw.ncpufound", CTL_HW, HW_NCPUFOUND, 0 }, { "hw.allowpowerdown", CTL_HW, HW_ALLOWPOWERDOWN, 0 }, { "hw.perfpolicy", CTL_HW, HW_PERFPOLICY, 0 }, { "hw.smt", CTL_HW, HW_SMT, 0 }, { "hw.ncpuonline", CTL_HW, HW_NCPUONLINE, 0 }, { "hw.cpuspeed", CTL_HW, HW_CPUSPEED, 0 }, { "hw.setperf", CTL_HW, HW_SETPERF, 0 }, { "hw.vendor", CTL_HW, HW_VENDOR, 0 }, { "hw.product", CTL_HW, HW_PRODUCT, 0 }, { "hw.serialno", CTL_HW, HW_SERIALNO, 0 }, { "hw.uuid", CTL_HW, HW_UUID, 0 }, { "hw.physmem", CTL_HW, HW_PHYSMEM64, 0 }, { "hw.usermem", CTL_HW, HW_USERMEM64, 0 }, { "hw.ncpufound", CTL_HW, HW_NCPUFOUND, 0 }, { "hw.allowpowerdown", CTL_HW, HW_ALLOWPOWERDOWN, 0 }, { "hw.perfpolicy", CTL_HW, HW_PERFPOLICY, 0 }, { "hw.smt", CTL_HW, HW_SMT, 0 }, { "hw.ncpuonline", CTL_HW, HW_NCPUONLINE, 0 }, { "kern.ostype", CTL_KERN, KERN_OSTYPE, 0 }, { "kern.osrelease", CTL_KERN, KERN_OSRELEASE, 0 }, { "kern.osrevision", CTL_KERN, KERN_OSREV, 0 }, { "kern.version", CTL_KERN, KERN_VERSION, 0 }, { "kern.maxvnodes", CTL_KERN, KERN_MAXVNODES, 0 }, { "kern.maxproc", CTL_KERN, KERN_MAXPROC, 0 }, { "kern.maxfiles", CTL_KERN, KERN_MAXFILES, 0 }, { "kern.argmax", CTL_KERN, KERN_ARGMAX, 0 }, { "kern.securelevel", CTL_KERN, KERN_SECURELVL, 0 }, { "kern.hostname", CTL_KERN, KERN_HOSTNAME, 0 }, { "kern.hostid", CTL_KERN, KERN_HOSTID, 0 }, { "kern.clockrate", CTL_KERN, KERN_CLOCKRATE, 0 }, { "kern.profiling", CTL_KERN, KERN_PROF, 0 }, { "kern.posix1version", CTL_KERN, KERN_POSIX1, 0 }, { "kern.ngroups", CTL_KERN, KERN_NGROUPS, 0 }, { "kern.job_control", CTL_KERN, KERN_JOB_CONTROL, 0 }, { "kern.saved_ids", CTL_KERN, KERN_SAVED_IDS, 0 }, { "kern.boottime", CTL_KERN, KERN_BOOTTIME, 0 }, { "kern.domainname", CTL_KERN, KERN_DOMAINNAME, 0 }, { "kern.maxpartitions", CTL_KERN, KERN_MAXPARTITIONS, 0 }, { "kern.rawpartition", CTL_KERN, KERN_RAWPARTITION, 0 }, { "kern.maxthread", CTL_KERN, KERN_MAXTHREAD, 0 }, { "kern.nthreads", CTL_KERN, KERN_NTHREADS, 0 }, { "kern.osversion", CTL_KERN, KERN_OSVERSION, 0 }, { "kern.somaxconn", CTL_KERN, KERN_SOMAXCONN, 0 }, { "kern.sominconn", CTL_KERN, KERN_SOMINCONN, 0 }, { "kern.nosuidcoredump", CTL_KERN, KERN_NOSUIDCOREDUMP, 0 }, { "kern.fsync", CTL_KERN, KERN_FSYNC, 0 }, { "kern.sysvmsg", CTL_KERN, KERN_SYSVMSG, 0 }, { "kern.sysvsem", CTL_KERN, KERN_SYSVSEM, 0 }, { "kern.sysvshm", CTL_KERN, KERN_SYSVSHM, 0 }, { "kern.msgbufsize", CTL_KERN, KERN_MSGBUFSIZE, 0 }, { "kern.malloc", CTL_KERN, KERN_MALLOCSTATS, 0 }, { "kern.cp_time", CTL_KERN, KERN_CPTIME, 0 }, { "kern.nchstats", CTL_KERN, KERN_NCHSTATS, 0 }, { "kern.forkstat", CTL_KERN, KERN_FORKSTAT, 0 }, { "kern.tty", CTL_KERN, KERN_TTY, 0 }, { "kern.ccpu", CTL_KERN, KERN_CCPU, 0 }, { "kern.fscale", CTL_KERN, KERN_FSCALE, 0 }, { "kern.nprocs", CTL_KERN, KERN_NPROCS, 0 }, { "kern.msgbuf", CTL_KERN, KERN_MSGBUF, 0 }, { "kern.pool", CTL_KERN, KERN_POOL, 0 }, { "kern.stackgap_random", CTL_KERN, KERN_STACKGAPRANDOM, 0 }, { "kern.sysvipc_info", CTL_KERN, KERN_SYSVIPC_INFO, 0 }, { "kern.allowkmem", CTL_KERN, KERN_ALLOWKMEM, 0 }, { "kern.witnesswatch", CTL_KERN, KERN_WITNESSWATCH, 0 }, { "kern.splassert", CTL_KERN, KERN_SPLASSERT, 0 }, { "kern.procargs", CTL_KERN, KERN_PROC_ARGS, 0 }, { "kern.nfiles", CTL_KERN, KERN_NFILES, 0 }, { "kern.ttycount", CTL_KERN, KERN_TTYCOUNT, 0 }, { "kern.numvnodes", CTL_KERN, KERN_NUMVNODES, 0 }, { "kern.mbstat", CTL_KERN, KERN_MBSTAT, 0 }, { "kern.witness", CTL_KERN, KERN_WITNESS, 0 }, { "kern.seminfo", CTL_KERN, KERN_SEMINFO, 0 }, { "kern.shminfo", CTL_KERN, KERN_SHMINFO, 0 }, { "kern.intrcnt", CTL_KERN, KERN_INTRCNT, 0 }, { "kern.watchdog", CTL_KERN, KERN_WATCHDOG, 0 }, { "kern.proc", CTL_KERN, KERN_PROC, 0 }, { "kern.maxclusters", CTL_KERN, KERN_MAXCLUSTERS, 0 }, { "kern.evcount", CTL_KERN, KERN_EVCOUNT, 0 }, { "kern.timecounter", CTL_KERN, KERN_TIMECOUNTER, 0 }, { "kern.maxlocksperuid", CTL_KERN, KERN_MAXLOCKSPERUID, 0 }, { "kern.cp_time2", CTL_KERN, KERN_CPTIME2, 0 }, { "kern.bufcachepercent", CTL_KERN, KERN_CACHEPCT, 0 }, { "kern.file", CTL_KERN, KERN_FILE, 0 }, { "kern.wxabort", CTL_KERN, KERN_WXABORT, 0 }, { "kern.consdev", CTL_KERN, KERN_CONSDEV, 0 }, { "kern.netlivelocks", CTL_KERN, KERN_NETLIVELOCKS, 0 }, { "kern.pool_debug", CTL_KERN, KERN_POOL_DEBUG, 0 }, { "kern.proc_cwd", CTL_KERN, KERN_PROC_CWD, 0 }, { "kern.proc_nobroadcastkill", CTL_KERN, KERN_PROC_NOBROADCASTKILL, 0 }, { "kern.proc_vmap", CTL_KERN, KERN_PROC_VMMAP, 0 }, { "kern.global_ptrace", CTL_KERN, KERN_GLOBAL_PTRACE, 0 }, { "kern.consbufsize", CTL_KERN, KERN_CONSBUFSIZE, 0 }, { "kern.consbuf", CTL_KERN, KERN_CONSBUF, 0 }, { "kern.audio", CTL_KERN, KERN_AUDIO, 0 }, { "kern.cpustats", CTL_KERN, KERN_CPUSTATS, 0 }, { "kern.pfstatus", CTL_KERN, KERN_PFSTATUS, 0 }, { "kern.timeout_stats", CTL_KERN, KERN_TIMEOUT_STATS, 0 }, { "kern.utc_offset", CTL_KERN, KERN_UTC_OFFSET, 0 }, { "vm.vmmeter", CTL_VM, VM_METER, 0 }, { "vm.loadavg", CTL_VM, VM_LOADAVG, 0 }, { "vm.psstrings", CTL_VM, VM_PSSTRINGS, 0 }, { "vm.uvmexp", CTL_VM, VM_UVMEXP, 0 }, { "vm.swapencrypt", CTL_VM, VM_SWAPENCRYPT, 0 }, { "vm.nkmempages", CTL_VM, VM_NKMEMPAGES, 0 }, { "vm.anonmin", CTL_VM, VM_ANONMIN, 0 }, { "vm.vtextmin", CTL_VM, VM_VTEXTMIN, 0 }, { "vm.vnodemin", CTL_VM, VM_VNODEMIN, 0 }, { "vm.maxslp", CTL_VM, VM_MAXSLP, 0 }, { "vm.uspace", CTL_VM, VM_USPACE, 0 }, { "vm.malloc_conf", CTL_VM, VM_MALLOC_CONF, 0 }, { NULL, 0, 0, 0 }, }; btop-1.4.5/src/openbsd/sysctlbyname.cpp000066400000000000000000000025501506333644200201370ustar00rootroot00000000000000/* * Copyright (c) 2019-2021 Brian Callahan * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include "internal.h" #include "../btop_tools.hpp" int sysctlbyname(const char *name, void *oldp, size_t *oldlenp, void *newp, size_t newlen) { int i, mib[2]; for (i = 0; i < 132; i++) { // for (i = 0; i < sizeof(sysctlnames) / sizeof(sysctlnames[0]); i++) { if (!strcmp(name, sysctlnames[i].name)) { mib[0] = sysctlnames[i].mib0; mib[1] = sysctlnames[i].mib1; return sysctl(mib, 2, oldp, oldlenp, newp, newlen); } } errno = ENOENT; return (-1); } btop-1.4.5/src/openbsd/sysctlbyname.h000066400000000000000000000016251506333644200176060ustar00rootroot00000000000000/* * Copyright (c) 2019 Brian Callahan * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include extern int sysctlbyname(const char *, void *, size_t *, void *, size_t); btop-1.4.5/src/osx/000077500000000000000000000000001506333644200140735ustar00rootroot00000000000000btop-1.4.5/src/osx/btop_collect.cpp000066400000000000000000001353651506333644200172650ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include #include #include #include // BUGS // If both and are being included, must be // included before . // from: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man3/getifaddrs.3.html #include #include #include #include #include #include #include #include #include #include #include // for inet_ntop #include #include #include #include #include #include #include #include #include #include "../btop_config.hpp" #include "../btop_shared.hpp" #include "../btop_tools.hpp" #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 #include "sensors.hpp" #endif #include "smc.hpp" using std::clamp, std::string_literals::operator""s, std::cmp_equal, std::cmp_less, std::cmp_greater; using std::ifstream, std::numeric_limits, std::streamsize, std::round, std::max, std::min; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace Tools; //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Cpu { vector core_old_totals; vector core_old_idles; vector available_fields = {"Auto", "total"}; vector available_sensors = {"Auto"}; cpu_info current_cpu; bool got_sensors = false, cpu_temp_only = false, supports_watts = false; int core_offset = 0; //* Populate found_sensors map bool get_sensors(); //* Get current cpu clock speed string get_cpuHz(); //* Search /proc/cpuinfo for a cpu name string get_cpuName(); struct Sensor { fs::path path; string label; int64_t temp = 0; int64_t high = 0; int64_t crit = 0; }; string cpu_sensor; vector core_sensors; std::unordered_map core_mapping; } // namespace Cpu namespace Mem { double old_uptime; } class MachProcessorInfo { public: processor_info_array_t info_array; mach_msg_type_number_t info_count; MachProcessorInfo() {} virtual ~MachProcessorInfo() {vm_deallocate(mach_task_self(), (vm_address_t)info_array, (vm_size_t)sizeof(processor_info_array_t) * info_count);} }; namespace Shared { fs::path passwd_path; uint64_t totalMem; long pageSize, coreCount, clkTck, physicalCoreCount, arg_max; double machTck; int totalMem_len; void init() { //? Shared global variables init coreCount = sysconf(_SC_NPROCESSORS_ONLN); // this returns all logical cores (threads) if (coreCount < 1) { coreCount = 1; Logger::warning("Could not determine number of cores, defaulting to 1."); } size_t physicalCoreCountSize = sizeof(physicalCoreCount); if (sysctlbyname("hw.physicalcpu", &physicalCoreCount, &physicalCoreCountSize, nullptr, 0) < 0) { Logger::error("Could not get physical core count"); } pageSize = sysconf(_SC_PAGE_SIZE); if (pageSize <= 0) { pageSize = 4096; Logger::warning("Could not get system page size. Defaulting to 4096, processes memory usage might be incorrect."); } mach_timebase_info_data_t convf; if (mach_timebase_info(&convf) == KERN_SUCCESS) { machTck = convf.numer / convf.denom; } else { Logger::warning("Could not get mach clock tick conversion factor. Defaulting to 100, processes cpu usage might be incorrect."); machTck = 100; } clkTck = sysconf(_SC_CLK_TCK); if (clkTck <= 0) { clkTck = 100; Logger::warning("Could not get system clock ticks per second. Defaulting to 100, processes cpu usage might be incorrect."); } int64_t memsize = 0; size_t size = sizeof(memsize); if (sysctlbyname("hw.memsize", &memsize, &size, nullptr, 0) < 0) { Logger::warning("Could not get memory size"); } totalMem = memsize; //* Get maximum length of process arguments arg_max = sysconf(_SC_ARG_MAX); //? Init for namespace Cpu Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {}); Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {}); Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0); Cpu::core_old_idles.insert(Cpu::core_old_idles.begin(), Shared::coreCount, 0); Cpu::collect(); for (auto &[field, vec] : Cpu::current_cpu.cpu_percent) { if (not vec.empty() and not v_contains(Cpu::available_fields, field)) Cpu::available_fields.push_back(field); } Cpu::cpuName = Cpu::get_cpuName(); Cpu::got_sensors = Cpu::get_sensors(); Cpu::core_mapping = Cpu::get_core_mapping(); //? Init for namespace Mem Mem::old_uptime = system_uptime(); Mem::collect(); } } // namespace Shared namespace Cpu { string cpuName; string cpuHz; bool has_battery = true; bool macM1 = false; tuple current_bat; const array time_names = {"user", "nice", "system", "idle"}; std::unordered_map cpu_old = { {"totals", 0}, {"idles", 0}, {"user", 0}, {"nice", 0}, {"system", 0}, {"idle", 0} }; string get_cpuName() { string name; char buffer[1024]; size_t size = sizeof(buffer); if (sysctlbyname("machdep.cpu.brand_string", &buffer, &size, nullptr, 0) < 0) { Logger::error("Failed to get CPU name"); return name; } return trim_name(string(buffer)); } bool get_sensors() { Logger::debug("get_sensors(): show_coretemp=" + std::to_string(Config::getB("show_coretemp")) + " check_temp=" + std::to_string(Config::getB("check_temp"))); got_sensors = false; if (Config::getB("show_coretemp") and Config::getB("check_temp")) { #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 ThermalSensors sensors; if (sensors.getSensors() > 0) { Logger::debug("M1 sensors found"); got_sensors = true; cpu_temp_only = true; macM1 = true; } else { #endif // try SMC (intel) Logger::debug("checking intel"); SMCConnection smcCon; try { long long t = smcCon.getTemp(-1); // check if we have package T if (t > -1) { Logger::debug("intel sensors found"); got_sensors = true; t = smcCon.getTemp(0); if (t == -1) { // for some macs the core offset is 1 - check if we get a sane value with 1 if (smcCon.getTemp(1) > -1) { Logger::debug("intel sensors with offset 1"); core_offset = 1; } } } else { Logger::debug("no intel sensors found"); got_sensors = false; } } catch (std::runtime_error &e) { // ignore, we don't have temp got_sensors = false; } #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 } #endif } return got_sensors; } void update_sensors() { current_cpu.temp_max = 95; // we have no idea how to get the critical temp try { if (macM1) { #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 ThermalSensors sensors; current_cpu.temp.at(0).push_back(sensors.getSensors()); if (current_cpu.temp.at(0).size() > 20) current_cpu.temp.at(0).pop_front(); #endif } else { SMCConnection smcCon; int threadsPerCore = Shared::coreCount / Shared::physicalCoreCount; long long packageT = smcCon.getTemp(-1); // -1 returns package T current_cpu.temp.at(0).push_back(packageT); for (int core = 0; core < Shared::coreCount; core++) { long long temp = smcCon.getTemp((core / threadsPerCore) + core_offset); // same temp for all threads of same physical core if (cmp_less(core + 1, current_cpu.temp.size())) { current_cpu.temp.at(core + 1).push_back(temp); if (current_cpu.temp.at(core + 1).size() > 20) current_cpu.temp.at(core + 1).pop_front(); } } } } catch (std::runtime_error &e) { got_sensors = false; Logger::error("failed getting CPU temp"); } } string get_cpuHz() { unsigned int freq = 1; size_t size = sizeof(freq); int mib[] = {CTL_HW, HW_CPU_FREQ}; if (sysctl(mib, 2, &freq, &size, nullptr, 0) < 0) { // this fails on Apple Silicon macs. Apparently you're not allowed to know return ""; } return std::to_string(freq / 1000.0 / 1000.0 / 1000.0).substr(0, 3); } auto get_core_mapping() -> std::unordered_map { std::unordered_map core_map; if (cpu_temp_only) return core_map; natural_t cpu_count; natural_t i; MachProcessorInfo info {}; kern_return_t error; error = host_processor_info(mach_host_self(), PROCESSOR_CPU_LOAD_INFO, &cpu_count, &info.info_array, &info.info_count); if (error != KERN_SUCCESS) { Logger::error("Failed getting CPU info"); return core_map; } for (i = 0; i < cpu_count; i++) { core_map[i] = i; } //? If core mapping from cpuinfo was incomplete try to guess remainder, if missing completely, map 0-0 1-1 2-2 etc. if (cmp_less(core_map.size(), Shared::coreCount)) { if (Shared::coreCount % 2 == 0 and (long) core_map.size() == Shared::coreCount / 2) { for (int i = 0, n = 0; i < Shared::coreCount / 2; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[Shared::coreCount / 2 + i] = n++; } } else { core_map.clear(); for (int i = 0, n = 0; i < Shared::coreCount; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[i] = n++; } } } //? Apply user set custom mapping if any const auto &custom_map = Config::getS("cpu_core_map"); if (not custom_map.empty()) { try { for (const auto &split : ssplit(custom_map)) { const auto vals = ssplit(split, ':'); if (vals.size() != 2) continue; int change_id = std::stoi(vals.at(0)); int new_id = std::stoi(vals.at(1)); if (not core_map.contains(change_id) or cmp_greater(new_id, core_sensors.size())) continue; core_map.at(change_id) = new_id; } } catch (...) { } } return core_map; } class IOPSInfo_Wrap { CFTypeRef data; public: IOPSInfo_Wrap() { data = IOPSCopyPowerSourcesInfo(); } CFTypeRef& operator()() { return data; } ~IOPSInfo_Wrap() { CFRelease(data); } }; class IOPSList_Wrap { CFArrayRef data; public: IOPSList_Wrap(CFTypeRef cft_ref) { data = IOPSCopyPowerSourcesList(cft_ref); } CFArrayRef& operator()() { return data; } ~IOPSList_Wrap() { CFRelease(data); } }; auto get_battery() -> tuple { if (not has_battery) return {0, 0, 0, ""}; uint32_t percent = -1; long seconds = -1; string status = "discharging"; IOPSInfo_Wrap ps_info{}; if (ps_info()) { IOPSList_Wrap one_ps_descriptor(ps_info()); if (one_ps_descriptor()) { if (CFArrayGetCount(one_ps_descriptor())) { CFDictionaryRef one_ps = IOPSGetPowerSourceDescription(ps_info(), CFArrayGetValueAtIndex(one_ps_descriptor(), 0)); has_battery = true; CFNumberRef remaining = (CFNumberRef)CFDictionaryGetValue(one_ps, CFSTR(kIOPSTimeToEmptyKey)); int32_t estimatedMinutesRemaining; if (remaining) { CFNumberGetValue(remaining, kCFNumberSInt32Type, &estimatedMinutesRemaining); seconds = estimatedMinutesRemaining * 60; } CFNumberRef charge = (CFNumberRef)CFDictionaryGetValue(one_ps, CFSTR(kIOPSCurrentCapacityKey)); if (charge) { CFNumberGetValue(charge, kCFNumberSInt32Type, &percent); } CFBooleanRef charging = (CFBooleanRef)CFDictionaryGetValue(one_ps, CFSTR(kIOPSIsChargingKey)); if (charging) { bool isCharging = CFBooleanGetValue(charging); if (isCharging) { status = "charging"; } } if (percent == 100) { status = "full"; } } else { has_battery = false; } } else { has_battery = false; } } return {percent, -1, seconds, status}; } auto collect(bool no_update) -> cpu_info & { if (Runner::stopping or (no_update and not current_cpu.cpu_percent.at("total").empty())) return current_cpu; auto &cpu = current_cpu; if (getloadavg(cpu.load_avg.data(), cpu.load_avg.size()) < 0) { Logger::error("failed to get load averages"); } natural_t cpu_count; natural_t i; kern_return_t error; processor_cpu_load_info_data_t *cpu_load_info = nullptr; MachProcessorInfo info{}; error = host_processor_info(mach_host_self(), PROCESSOR_CPU_LOAD_INFO, &cpu_count, &info.info_array, &info.info_count); if (error != KERN_SUCCESS) { Logger::error("Failed getting CPU load info"); } cpu_load_info = (processor_cpu_load_info_data_t *)info.info_array; long long global_totals = 0; long long global_idles = 0; vector times_summed = {0, 0, 0, 0}; for (i = 0; i < cpu_count; i++) { vector times; //? 0=user, 1=nice, 2=system, 3=idle for (int x = 0; const unsigned int c_state : {CPU_STATE_USER, CPU_STATE_NICE, CPU_STATE_SYSTEM, CPU_STATE_IDLE}) { auto val = cpu_load_info[i].cpu_ticks[c_state]; times.push_back(val); times_summed.at(x++) += val; } try { //? All values const long long totals = std::accumulate(times.begin(), times.end(), 0ll); //? Idle time const long long idles = times.at(3); global_totals += totals; global_idles += idles; //? Calculate cpu total for each core if (i > Shared::coreCount) break; const long long calc_totals = max(0ll, totals - core_old_totals.at(i)); const long long calc_idles = max(0ll, idles - core_old_idles.at(i)); core_old_totals.at(i) = totals; core_old_idles.at(i) = idles; cpu.core_percent.at(i).push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph if (cpu.core_percent.at(i).size() > 40) cpu.core_percent.at(i).pop_front(); } catch (const std::exception &e) { Logger::error("Cpu::collect() : " + (string)e.what()); throw std::runtime_error("collect() : " + (string)e.what()); } } const long long calc_totals = max(1ll, global_totals - cpu_old.at("totals")); const long long calc_idles = max(1ll, global_idles - cpu_old.at("idles")); //? Populate cpu.cpu_percent with all fields from syscall for (int ii = 0; const auto &val : times_summed) { cpu.cpu_percent.at(time_names.at(ii)).push_back(clamp((long long)round((double)(val - cpu_old.at(time_names.at(ii))) * 100 / calc_totals), 0ll, 100ll)); cpu_old.at(time_names.at(ii)) = val; //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at(time_names.at(ii)).size(), width * 2)) cpu.cpu_percent.at(time_names.at(ii)).pop_front(); ii++; } cpu_old.at("totals") = global_totals; cpu_old.at("idles") = global_idles; //? Total usage of cpu cpu.cpu_percent.at("total").push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at("total").size(), width * 2)) cpu.cpu_percent.at("total").pop_front(); if (Config::getB("show_cpu_freq")) { auto hz = get_cpuHz(); if (hz != "") { cpuHz = hz; } } if (Config::getB("check_temp") and got_sensors) update_sensors(); if (Config::getB("show_battery") and has_battery) current_bat = get_battery(); return cpu; } } // namespace Cpu namespace Mem { bool has_swap = false; vector fstab; fs::file_time_type fstab_time; int disk_ios = 0; vector last_found; mem_info current_mem{}; uint64_t get_totalMem() { return Shared::totalMem; } int64_t getCFNumber(CFDictionaryRef dict, const void *key) { CFNumberRef ref = (CFNumberRef)CFDictionaryGetValue(dict, key); if (ref) { int64_t value; CFNumberGetValue(ref, kCFNumberSInt64Type, &value); return value; } return 0; } string getCFString(io_registry_entry_t volumeRef, CFStringRef key) { CFStringRef bsdNameRef = (CFStringRef)IORegistryEntryCreateCFProperty(volumeRef, key, kCFAllocatorDefault, 0); if (bsdNameRef) { char buf[200]; CFStringGetCString(bsdNameRef, buf, 200, kCFStringEncodingASCII); CFRelease(bsdNameRef); return string(buf); } return ""; } bool isWhole(io_registry_entry_t volumeRef) { CFBooleanRef isWhole = (CFBooleanRef)IORegistryEntryCreateCFProperty(volumeRef, CFSTR("Whole"), kCFAllocatorDefault, 0); Boolean val = CFBooleanGetValue(isWhole); CFRelease(isWhole); return bool(val); } class IOObject { public: IOObject(string name, io_object_t& obj) : name(name), object(obj) {} virtual ~IOObject() { IOObjectRelease(object); } private: string name; io_object_t &object; }; void collect_disk(std::unordered_map &disks, std::unordered_map &mapping) { io_registry_entry_t drive; io_iterator_t drive_list; mach_port_t libtop_master_port; if (IOMasterPort(bootstrap_port, &libtop_master_port)) { Logger::error("error getting master port"); return; } /* Get the list of all drive objects. */ if (IOServiceGetMatchingServices(libtop_master_port, IOServiceMatching("IOMediaBSDClient"), &drive_list)) { Logger::error("Error in IOServiceGetMatchingServices()"); return; } auto d = IOObject("drive list", drive_list); // dummy var so it gets destroyed while ((drive = IOIteratorNext(drive_list)) != 0) { auto dr = IOObject("drive", drive); io_registry_entry_t volumeRef; IORegistryEntryGetParentEntry(drive, kIOServicePlane, &volumeRef); if (volumeRef) { if (!isWhole(volumeRef)) { string bsdName = getCFString(volumeRef, CFSTR("BSD Name")); string device = getCFString(volumeRef, CFSTR("VolGroupMntFromName")); if (!mapping.contains(device)) { device = "/dev/" + bsdName; // try again with BSD name - not all volumes seem to have VolGroupMntFromName property } if (device != "") { if (mapping.contains(device)) { string mountpoint = mapping.at(device); if (disks.contains(mountpoint)) { auto& disk = disks.at(mountpoint); CFDictionaryRef properties; IORegistryEntryCreateCFProperties(volumeRef, (CFMutableDictionaryRef *)&properties, kCFAllocatorDefault, 0); if (properties) { CFDictionaryRef statistics = (CFDictionaryRef)CFDictionaryGetValue(properties, CFSTR("Statistics")); if (statistics) { disk_ios++; int64_t readBytes = getCFNumber(statistics, CFSTR("Bytes read from block device")); if (disk.io_read.empty()) disk.io_read.push_back(0); else disk.io_read.push_back(max((int64_t)0, (readBytes - disk.old_io.at(0)))); disk.old_io.at(0) = readBytes; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); int64_t writeBytes = getCFNumber(statistics, CFSTR("Bytes written to block device")); if (disk.io_write.empty()) disk.io_write.push_back(0); else disk.io_write.push_back(max((int64_t)0, (writeBytes - disk.old_io.at(1)))); disk.old_io.at(1) = writeBytes; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); // IOKit does not give us IO times, (use IO read + IO write with 1 MiB being 100% to get some activity indication) if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(clamp((long)round((double)(disk.io_write.back() + disk.io_read.back()) / (1 << 20)), 0l, 100l)); while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } } CFRelease(properties); } } } } } } } auto collect(bool no_update) -> mem_info & { if (Runner::stopping or (no_update and not current_mem.percent.at("used").empty())) return current_mem; auto show_swap = Config::getB("show_swap"); auto show_disks = Config::getB("show_disks"); auto swap_disk = Config::getB("swap_disk"); auto &mem = current_mem; static bool snapped = (getenv("BTOP_SNAPPED") != nullptr); vm_statistics64 p; mach_msg_type_number_t info_size = HOST_VM_INFO64_COUNT; if (host_statistics64(mach_host_self(), HOST_VM_INFO64, (host_info64_t)&p, &info_size) == 0) { mem.stats.at("free") = p.free_count * Shared::pageSize; mem.stats.at("cached") = p.external_page_count * Shared::pageSize; mem.stats.at("used") = (p.active_count + p.wire_count) * Shared::pageSize; mem.stats.at("available") = Shared::totalMem - mem.stats.at("used"); } int mib[2] = {CTL_VM, VM_SWAPUSAGE}; struct xsw_usage swap; size_t len = sizeof(struct xsw_usage); if (sysctl(mib, 2, &swap, &len, nullptr, 0) == 0) { mem.stats.at("swap_total") = swap.xsu_total; mem.stats.at("swap_free") = swap.xsu_avail; mem.stats.at("swap_used") = swap.xsu_used; } if (show_swap and mem.stats.at("swap_total") > 0) { for (const auto &name : swap_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / mem.stats.at("swap_total"))); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } has_swap = true; } else has_swap = false; //? Calculate percentages for (const auto &name : mem_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / Shared::totalMem)); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } if (show_disks) { std::unordered_map mapping; // keep mapping from device -> mountpoint, since IOKit doesn't give us the mountpoint double uptime = system_uptime(); auto &disks_filter = Config::getS("disks_filter"); bool filter_exclude = false; // auto only_physical = Config::getB("only_physical"); auto &disks = mem.disks; vector filter; if (not disks_filter.empty()) { filter = ssplit(disks_filter); if (filter.at(0).starts_with("exclude=")) { filter_exclude = true; filter.at(0) = filter.at(0).substr(8); } } struct statfs *stfs; int count = getmntinfo(&stfs, MNT_WAIT); vector found; found.reserve(last_found.size()); for (int i = 0; i < count; i++) { std::error_code ec; string mountpoint = stfs[i].f_mntonname; string dev = stfs[i].f_mntfromname; mapping[dev] = mountpoint; if (string(stfs[i].f_fstypename) == "autofs") { continue; } //? Match filter if not empty if (not filter.empty()) { bool match = v_contains(filter, mountpoint); if ((filter_exclude and match) or (not filter_exclude and not match)) continue; } found.push_back(mountpoint); if (not disks.contains(mountpoint)) { disks[mountpoint] = disk_info{fs::canonical(dev, ec), fs::path(mountpoint).filename()}; if (disks.at(mountpoint).dev.empty()) disks.at(mountpoint).dev = dev; if (disks.at(mountpoint).name.empty()) disks.at(mountpoint).name = (mountpoint == "/" ? "root" : mountpoint); } if (not v_contains(last_found, mountpoint)) redraw = true; disks.at(mountpoint).free = stfs[i].f_bfree; disks.at(mountpoint).total = stfs[i].f_iosize; } //? Remove disks no longer mounted or filtered out if (swap_disk and has_swap) found.push_back("swap"); for (auto it = disks.begin(); it != disks.end();) { if (not v_contains(found, it->first)) it = disks.erase(it); else it++; } if (found.size() != last_found.size()) redraw = true; last_found = std::move(found); //? Get disk/partition stats for (auto &[mountpoint, disk] : disks) { if (std::error_code ec; not fs::exists(mountpoint, ec)) continue; struct statvfs vfs; if (statvfs(mountpoint.c_str(), &vfs) < 0) { Logger::warning("Failed to get disk/partition stats with statvfs() for: " + mountpoint); continue; } disk.total = vfs.f_blocks * vfs.f_frsize; disk.free = vfs.f_bfree * vfs.f_frsize; disk.used = disk.total - disk.free; if (disk.total != 0) { disk.used_percent = round((double)disk.used * 100 / disk.total); disk.free_percent = 100 - disk.used_percent; } else { disk.used_percent = 0; disk.free_percent = 0; } } //? Setup disks order in UI and add swap if enabled mem.disks_order.clear(); if (snapped and disks.contains("/mnt")) mem.disks_order.push_back("/mnt"); else if (disks.contains("/")) mem.disks_order.push_back("/"); if (swap_disk and has_swap) { mem.disks_order.push_back("swap"); if (not disks.contains("swap")) disks["swap"] = {"", "swap"}; disks.at("swap").total = mem.stats.at("swap_total"); disks.at("swap").used = mem.stats.at("swap_used"); disks.at("swap").free = mem.stats.at("swap_free"); disks.at("swap").used_percent = mem.percent.at("swap_used").back(); disks.at("swap").free_percent = mem.percent.at("swap_free").back(); } for (const auto &name : last_found) if (not is_in(name, "/", "swap", "/dev")) mem.disks_order.push_back(name); disk_ios = 0; collect_disk(disks, mapping); old_uptime = uptime; } return mem; } } // namespace Mem namespace Net { std::unordered_map current_net; net_info empty_net = {}; vector interfaces; string selected_iface; int errors = 0; std::unordered_map graph_max = {{"download", {}}, {"upload", {}}}; std::unordered_map> max_count = {{"download", {}}, {"upload", {}}}; bool rescale = true; uint64_t timestamp = 0; //* RAII wrapper for getifaddrs class getifaddr_wrapper { struct ifaddrs *ifaddr; public: int status; getifaddr_wrapper() { status = getifaddrs(&ifaddr); } ~getifaddr_wrapper() { freeifaddrs(ifaddr); } auto operator()() -> struct ifaddrs * { return ifaddr; } }; auto collect(bool no_update) -> net_info & { auto &net = current_net; auto &config_iface = Config::getS("net_iface"); auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto new_timestamp = time_ms(); if (not no_update and errors < 3) { //? Get interface list using getifaddrs() wrapper getifaddr_wrapper if_wrap{}; if (if_wrap.status != 0) { errors++; Logger::error("Net::collect() -> getifaddrs() failed with id " + to_string(if_wrap.status)); redraw = true; return empty_net; } int family = 0; static_assert(INET6_ADDRSTRLEN >= INET_ADDRSTRLEN); // 46 >= 16, compile-time assurance. enum { IPBUFFER_MAXSIZE = INET6_ADDRSTRLEN }; // manually using the known biggest value, guarded by the above static_assert char ip[IPBUFFER_MAXSIZE]; interfaces.clear(); string ipv4, ipv6; //? Iteration over all items in getifaddrs() list for (auto *ifa = if_wrap(); ifa != nullptr; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; family = ifa->ifa_addr->sa_family; const auto &iface = ifa->ifa_name; //? Update available interfaces vector and get status of interface if (not v_contains(interfaces, iface)) { interfaces.push_back(iface); net[iface].connected = (ifa->ifa_flags & IFF_RUNNING); // An interface can have more than one IP of the same family associated with it, // but we pick only the first one to show in the NET box. // Note: Interfaces without any IPv4 and IPv6 set are still valid and monitorable! net[iface].ipv4.clear(); net[iface].ipv6.clear(); } //? Get IPv4 address if (family == AF_INET) { if (net[iface].ipv4.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv4 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv4 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //? Get IPv6 address else if (family == AF_INET6) { if (net[iface].ipv6.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin6_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv6 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv6 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } // else, ignoring family==AF_LINK (see man 3 getifaddrs) } std::unordered_map> ifstats; int mib[] = {CTL_NET, PF_ROUTE, 0, 0, NET_RT_IFLIST2, 0}; size_t len; if (sysctl(mib, 6, nullptr, &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { std::unique_ptr buf(new char[len]); if (sysctl(mib, 6, buf.get(), &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { char *lim = buf.get() + len; char *next = nullptr; for (next = buf.get(); next < lim;) { struct if_msghdr *ifm = (struct if_msghdr *)next; next += ifm->ifm_msglen; if (ifm->ifm_type == RTM_IFINFO2) { struct if_msghdr2 *if2m = (struct if_msghdr2 *)ifm; struct sockaddr_dl *sdl = (struct sockaddr_dl *)(if2m + 1); char iface[32]; strncpy(iface, sdl->sdl_data, sdl->sdl_nlen); iface[sdl->sdl_nlen] = 0; ifstats[iface] = std::tuple(if2m->ifm_data.ifi_ibytes, if2m->ifm_data.ifi_obytes); } } } } //? Get total received and transmitted bytes + device address if no ip was found for (const auto &iface : interfaces) { for (const string dir : {"download", "upload"}) { auto &saved_stat = net.at(iface).stat.at(dir); auto &bandwidth = net.at(iface).bandwidth.at(dir); uint64_t val = dir == "download" ? std::get<0>(ifstats[iface]) : std::get<1>(ifstats[iface]); //? Update speed, total and top values if (val < saved_stat.last) { saved_stat.rollover += saved_stat.last; saved_stat.last = 0; } if (cmp_greater((unsigned long long)saved_stat.rollover + (unsigned long long)val, numeric_limits::max())) { saved_stat.rollover = 0; saved_stat.last = 0; } saved_stat.speed = round((double)(val - saved_stat.last) / ((double)(new_timestamp - timestamp) / 1000)); if (saved_stat.speed > saved_stat.top) saved_stat.top = saved_stat.speed; if (saved_stat.offset > val + saved_stat.rollover) saved_stat.offset = 0; saved_stat.total = (val + saved_stat.rollover) - saved_stat.offset; saved_stat.last = val; //? Add values to graph bandwidth.push_back(saved_stat.speed); while (cmp_greater(bandwidth.size(), width * 2)) bandwidth.pop_front(); //? Set counters for auto scaling if (net_auto and selected_iface == iface) { if (saved_stat.speed > graph_max[dir]) { ++max_count[dir][0]; if (max_count[dir][1] > 0) --max_count[dir][1]; } else if (graph_max[dir] > 10 << 10 and saved_stat.speed < graph_max[dir] / 10) { ++max_count[dir][1]; if (max_count[dir][0] > 0) --max_count[dir][0]; } } } } //? Clean up net map if needed if (net.size() > interfaces.size()) { for (auto it = net.begin(); it != net.end();) { if (not v_contains(interfaces, it->first)) it = net.erase(it); else it++; } } timestamp = new_timestamp; } //? Return empty net_info struct if no interfaces was found if (net.empty()) return empty_net; //? Find an interface to display if selected isn't set or valid if (selected_iface.empty() or not v_contains(interfaces, selected_iface)) { max_count["download"][0] = max_count["download"][1] = max_count["upload"][0] = max_count["upload"][1] = 0; redraw = true; if (net_auto) rescale = true; if (not config_iface.empty() and v_contains(interfaces, config_iface)) selected_iface = config_iface; else { //? Sort interfaces by total upload + download bytes auto sorted_interfaces = interfaces; rng::sort(sorted_interfaces, [&](const auto &a, const auto &b) { return cmp_greater(net.at(a).stat["download"].total + net.at(a).stat["upload"].total, net.at(b).stat["download"].total + net.at(b).stat["upload"].total); }); selected_iface.clear(); //? Try to set to a connected interface for (const auto &iface : sorted_interfaces) { if (net.at(iface).connected) selected_iface = iface; break; } //? If no interface is connected set to first available if (selected_iface.empty() and not sorted_interfaces.empty()) selected_iface = sorted_interfaces.at(0); else if (sorted_interfaces.empty()) return empty_net; } } //? Calculate max scale for graphs if needed if (net_auto) { bool sync = false; for (const auto &dir : {"download", "upload"}) { for (const auto &sel : {0, 1}) { if (rescale or max_count[dir][sel] >= 5) { const long long avg_speed = (net[selected_iface].bandwidth[dir].size() > 5 ? std::accumulate(net.at(selected_iface).bandwidth.at(dir).rbegin(), net.at(selected_iface).bandwidth.at(dir).rbegin() + 5, 0ll) / 5 : net[selected_iface].stat[dir].speed); graph_max[dir] = max(uint64_t(avg_speed * (sel == 0 ? 1.3 : 3.0)), (uint64_t)10 << 10); max_count[dir][0] = max_count[dir][1] = 0; redraw = true; if (net_sync) sync = true; break; } } //? Sync download/upload graphs if enabled if (sync) { const auto other = (string(dir) == "upload" ? "download" : "upload"); graph_max[other] = graph_max[dir]; max_count[other][0] = max_count[other][1] = 0; break; } } } rescale = false; return net.at(selected_iface); } } // namespace Net namespace Proc { vector current_procs; std::unordered_map uid_user; string current_sort; string current_filter; bool current_rev = false; fs::file_time_type passwd_time; uint64_t cputimes; int collapse = -1, expand = -1; uint64_t old_cputimes = 0; atomic numpids = 0; int filter_found = 0; detail_container detailed; string get_status(char s) { if (s & SRUN) return "Running"; if (s & SSLEEP) return "Sleeping"; if (s & SIDL) return "Idle"; if (s & SSTOP) return "Stopped"; if (s & SZOMB) return "Zombie"; return "Unknown"; } //* Get detailed info for selected process void _collect_details(const size_t pid, vector &procs) { if (pid != detailed.last_pid) { detailed = {}; detailed.last_pid = pid; detailed.skip_smaps = not Config::getB("proc_info_smaps"); } //? Copy proc_info for process from proc vector auto p_info = rng::find(procs, pid, &proc_info::pid); detailed.entry = *p_info; //? Update cpu percent deque for process cpu graph if (not Config::getB("proc_per_core")) detailed.entry.cpu_p *= Shared::coreCount; detailed.cpu_percent.push_back(clamp((long long)round(detailed.entry.cpu_p), 0ll, 100ll)); while (cmp_greater(detailed.cpu_percent.size(), width)) detailed.cpu_percent.pop_front(); //? Process runtime : current time - start time (both in unix time - seconds since epoch) struct timeval currentTime; gettimeofday(¤tTime, nullptr); detailed.elapsed = sec_to_dhms(currentTime.tv_sec - (detailed.entry.cpu_s / 1'000'000)); if (detailed.elapsed.size() > 8) detailed.elapsed.resize(detailed.elapsed.size() - 3); //? Get parent process name if (detailed.parent.empty()) { auto p_entry = rng::find(procs, detailed.entry.ppid, &proc_info::pid); if (p_entry != procs.end()) detailed.parent = p_entry->name; } //? Expand process status from single char to explanative string detailed.status = get_status(detailed.entry.state); detailed.mem_bytes.push_back(detailed.entry.mem); detailed.memory = floating_humanizer(detailed.entry.mem); if (detailed.first_mem == -1 or detailed.first_mem < detailed.mem_bytes.back() / 2 or detailed.first_mem > detailed.mem_bytes.back() * 4) { detailed.first_mem = min((uint64_t)detailed.mem_bytes.back() * 2, Mem::get_totalMem()); redraw = true; } while (cmp_greater(detailed.mem_bytes.size(), width)) detailed.mem_bytes.pop_front(); rusage_info_current rusage; if (proc_pid_rusage(pid, RUSAGE_INFO_CURRENT, (void **)&rusage) == 0) { // this fails for processes we don't own - same as in Linux detailed.io_read = floating_humanizer(rusage.ri_diskio_bytesread); detailed.io_write = floating_humanizer(rusage.ri_diskio_byteswritten); } } //* Collects and sorts process information from /proc auto collect(bool no_update) -> vector & { const auto &sorting = Config::getS("proc_sorting"); auto reverse = Config::getB("proc_reversed"); const auto &filter = Config::getS("proc_filter"); auto per_core = Config::getB("proc_per_core"); auto tree = Config::getB("proc_tree"); auto show_detailed = Config::getB("show_detailed"); const size_t detailed_pid = Config::getI("detailed_pid"); bool should_filter = current_filter != filter; if (should_filter) current_filter = filter; bool sorted_change = (sorting != current_sort or reverse != current_rev or should_filter); if (sorted_change) { current_sort = sorting; current_rev = reverse; } const int cmult = (per_core) ? Shared::coreCount : 1; bool got_detailed = false; static vector found; //* Use pids from last update if only changing filter, sorting or tree options if (no_update and not current_procs.empty()) { if (show_detailed and detailed_pid != detailed.last_pid) _collect_details(detailed_pid, current_procs); } else { //* ---------------------------------------------Collection start---------------------------------------------- { //* Get CPU totals natural_t cpu_count; kern_return_t error; processor_cpu_load_info_data_t *cpu_load_info = nullptr; MachProcessorInfo info{}; error = host_processor_info(mach_host_self(), PROCESSOR_CPU_LOAD_INFO, &cpu_count, &info.info_array, &info.info_count); if (error != KERN_SUCCESS) { Logger::error("Failed getting CPU load info"); } cpu_load_info = (processor_cpu_load_info_data_t *)info.info_array; cputimes = 0; for (natural_t i = 0; i < cpu_count; i++) { cputimes += (cpu_load_info[i].cpu_ticks[CPU_STATE_USER] + cpu_load_info[i].cpu_ticks[CPU_STATE_NICE] + cpu_load_info[i].cpu_ticks[CPU_STATE_SYSTEM] + cpu_load_info[i].cpu_ticks[CPU_STATE_IDLE]); } } should_filter = true; int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0}; found.clear(); size_t size = 0; const auto timeNow = time_micros(); if (sysctl(mib, 4, nullptr, &size, nullptr, 0) < 0 || size == 0) { Logger::error("Unable to get size of kproc_infos"); } uint64_t cpu_t = 0; std::unique_ptr processes(new kinfo_proc[size / sizeof(kinfo_proc)]); if (sysctl(mib, 4, processes.get(), &size, nullptr, 0) == 0) { size_t count = size / sizeof(struct kinfo_proc); for (size_t i = 0; i < count; i++) { //* iterate over all processes in kinfo_proc struct kinfo_proc& kproc = processes.get()[i]; const size_t pid = (size_t)kproc.kp_proc.p_pid; if (pid < 1) continue; found.push_back(pid); //? Check if pid already exists in current_procs bool no_cache = false; auto find_old = rng::find(current_procs, pid, &proc_info::pid); if (find_old == current_procs.end()) { current_procs.push_back({pid}); find_old = current_procs.end() - 1; no_cache = true; } auto &new_proc = *find_old; //? Get program name, command, username, parent pid, nice and status if (no_cache) { char fullname[PROC_PIDPATHINFO_MAXSIZE]; int rc = proc_pidpath(pid, fullname, sizeof(fullname)); string f_name = ""; if (rc != 0) { f_name = std::string(fullname); size_t lastSlash = f_name.find_last_of('/'); f_name = f_name.substr(lastSlash + 1); } new_proc.name = f_name; //? Get process arguments if possible, fallback to process path in case of failure if (Shared::arg_max > 0) { std::unique_ptr proc_chars(new char[Shared::arg_max]); int mib[] = {CTL_KERN, KERN_PROCARGS2, (int)pid}; size_t argmax = Shared::arg_max; if (sysctl(mib, 3, proc_chars.get(), &argmax, nullptr, 0) == 0) { int argc = 0; memcpy(&argc, &proc_chars.get()[0], sizeof(argc)); std::string_view proc_args(proc_chars.get(), argmax); if (size_t null_pos = proc_args.find('\0', sizeof(argc)); null_pos != string::npos) { if (size_t start_pos = proc_args.find_first_not_of('\0', null_pos); start_pos != string::npos) { while (argc-- > 0 and null_pos != string::npos and cmp_less(new_proc.cmd.size(), 1000)) { null_pos = proc_args.find('\0', start_pos); new_proc.cmd += (string)proc_args.substr(start_pos, null_pos - start_pos) + ' '; start_pos = null_pos + 1; } } } if (not new_proc.cmd.empty()) new_proc.cmd.pop_back(); } } if (new_proc.cmd.empty()) new_proc.cmd = f_name; if (new_proc.cmd.size() > 1000) { new_proc.cmd.resize(1000); new_proc.cmd.shrink_to_fit(); } new_proc.ppid = kproc.kp_eproc.e_ppid; new_proc.cpu_s = kproc.kp_proc.p_starttime.tv_sec * 1'000'000 + kproc.kp_proc.p_starttime.tv_usec; struct passwd *pwd = getpwuid(kproc.kp_eproc.e_ucred.cr_uid); if (pwd != nullptr) { new_proc.user = pwd->pw_name; } else { new_proc.user = std::to_string(kproc.kp_eproc.e_ucred.cr_uid); } } new_proc.p_nice = kproc.kp_proc.p_nice; new_proc.state = kproc.kp_proc.p_stat; //? Get threads, mem and cpu usage struct proc_taskinfo pti{}; if (sizeof(pti) == proc_pidinfo(new_proc.pid, PROC_PIDTASKINFO, 0, &pti, sizeof(pti))) { new_proc.threads = pti.pti_threadnum; new_proc.mem = pti.pti_resident_size; cpu_t = pti.pti_total_user + pti.pti_total_system; if (new_proc.cpu_t == 0) new_proc.cpu_t = cpu_t; } else { // Reset memory value if process info cannot be accessed (bad permissions or zombie processes) new_proc.threads = 0; new_proc.mem = 0; cpu_t = new_proc.cpu_t; } //? Process cpu usage since last update new_proc.cpu_p = clamp(round(((cpu_t - new_proc.cpu_t) * Shared::machTck) / ((cputimes - old_cputimes) * Shared::clkTck)) * cmult / 1000.0, 0.0, 100.0 * Shared::coreCount); //? Process cumulative cpu usage since process start new_proc.cpu_c = (double)(cpu_t * Shared::machTck) / (timeNow - new_proc.cpu_s); //? Update cached value with latest cpu times new_proc.cpu_t = cpu_t; if (show_detailed and not got_detailed and new_proc.pid == detailed_pid) { got_detailed = true; } } // //? Clear dead processes from current_procs auto eraser = rng::remove_if(current_procs, [&](const auto &element) { return not v_contains(found, element.pid); }); current_procs.erase(eraser.begin(), eraser.end()); //? Update the details info box for process if active if (show_detailed and got_detailed) { _collect_details(detailed_pid, current_procs); } else if (show_detailed and not got_detailed and detailed.status != "Dead") { detailed.status = "Dead"; redraw = true; } old_cputimes = cputimes; } } //* ---------------------------------------------Collection done----------------------------------------------- //* Match filter if defined if (should_filter) { filter_found = 0; for (auto &p : current_procs) { if (not tree and not filter.empty()) { if (!matches_filter(p, filter)) { p.filtered = true; filter_found++; } else { p.filtered = false; } } else { p.filtered = false; } } } //* Sort processes if (sorted_change or not no_update) { proc_sorter(current_procs, sorting, reverse, tree); } //* Generate tree view if enabled if (tree and (not no_update or should_filter or sorted_change)) { bool locate_selection = false; if (auto find_pid = (collapse != -1 ? collapse : expand); find_pid != -1) { auto collapser = rng::find(current_procs, find_pid, &proc_info::pid); if (collapser != current_procs.end()) { if (collapse == expand) { collapser->collapsed = not collapser->collapsed; } else if (collapse > -1) { collapser->collapsed = true; } else if (expand > -1) { collapser->collapsed = false; } if (Config::ints.at("proc_selected") > 0) locate_selection = true; } collapse = expand = -1; } if (should_filter or not filter.empty()) filter_found = 0; vector tree_procs; tree_procs.reserve(current_procs.size()); for (auto& p : current_procs) { if (not v_contains(found, p.ppid)) p.ppid = 0; } //? Stable sort to retain selected sorting among processes with the same parent rng::stable_sort(current_procs, rng::less{}, & proc_info::ppid); //? Start recursive iteration over processes with the lowest shared parent pids for (auto& p : rng::equal_range(current_procs, current_procs.at(0).ppid, rng::less{}, &proc_info::ppid)) { _tree_gen(p, current_procs, tree_procs, 0, false, filter, false, no_update, should_filter); } //? Recursive sort over tree structure to account for collapsed processes in the tree int index = 0; tree_sort(tree_procs, sorting, reverse, index, current_procs.size()); //? Recursive construction of ASCII tree prefixes. for (auto t = tree_procs.begin(); t != tree_procs.end(); ++t) { _collect_prefixes(*t, t == tree_procs.end() - 1); } //? Final sort based on tree index rng::sort(current_procs, rng::less{}, & proc_info::tree_index); //? Move current selection/view to the selected process when collapsing/expanding in the tree if (locate_selection) { int loc = rng::find(current_procs, Proc::selected_pid, &proc_info::pid)->tree_index; if (Config::ints.at("proc_start") >= loc or Config::ints.at("proc_start") <= loc - Proc::select_max) Config::ints.at("proc_start") = max(0, loc - 1); Config::ints.at("proc_selected") = loc - Config::ints.at("proc_start") + 1; } } numpids = (int)current_procs.size() - filter_found; return current_procs; } } // namespace Proc namespace Tools { double system_uptime() { struct timeval ts, currTime; std::size_t len = sizeof(ts); int mib[2] = {CTL_KERN, KERN_BOOTTIME}; if (sysctl(mib, 2, &ts, &len, nullptr, 0) != -1) { gettimeofday(&currTime, nullptr); return currTime.tv_sec - ts.tv_sec; } return 0.0; } } // namespace Tools btop-1.4.5/src/osx/sensors.cpp000066400000000000000000000103611506333644200162740ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 #include "sensors.hpp" #include #include #include #include #include extern "C" { typedef struct __IOHIDEvent *IOHIDEventRef; typedef struct __IOHIDServiceClient *IOHIDServiceClientRef; #ifdef __LP64__ typedef double IOHIDFloat; #else typedef float IOHIDFloat; #endif #define IOHIDEventFieldBase(type) (type << 16) #define kIOHIDEventTypeTemperature 15 IOHIDEventSystemClientRef IOHIDEventSystemClientCreate(CFAllocatorRef allocator); int IOHIDEventSystemClientSetMatching(IOHIDEventSystemClientRef client, CFDictionaryRef match); int IOHIDEventSystemClientSetMatchingMultiple(IOHIDEventSystemClientRef client, CFArrayRef match); IOHIDEventRef IOHIDServiceClientCopyEvent(IOHIDServiceClientRef, int64_t, int32_t, int64_t); CFStringRef IOHIDServiceClientCopyProperty(IOHIDServiceClientRef service, CFStringRef property); IOHIDFloat IOHIDEventGetFloatValue(IOHIDEventRef event, int32_t field); // create a dict ref, like for temperature sensor {"PrimaryUsagePage":0xff00, "PrimaryUsage":0x5} CFDictionaryRef matching(int page, int usage) { CFNumberRef nums[2]; CFStringRef keys[2]; keys[0] = CFStringCreateWithCString(0, "PrimaryUsagePage", 0); keys[1] = CFStringCreateWithCString(0, "PrimaryUsage", 0); nums[0] = CFNumberCreate(0, kCFNumberSInt32Type, &page); nums[1] = CFNumberCreate(0, kCFNumberSInt32Type, &usage); CFDictionaryRef dict = CFDictionaryCreate(0, (const void **)keys, (const void **)nums, 2, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); CFRelease(keys[0]); CFRelease(keys[1]); return dict; } double getValue(IOHIDServiceClientRef sc) { IOHIDEventRef event = IOHIDServiceClientCopyEvent(sc, kIOHIDEventTypeTemperature, 0, 0); // here we use ...CopyEvent IOHIDFloat temp = 0.0; if (event != 0) { temp = IOHIDEventGetFloatValue(event, IOHIDEventFieldBase(kIOHIDEventTypeTemperature)); CFRelease(event); } return temp; } } // extern C long long Cpu::ThermalSensors::getSensors() { CFDictionaryRef thermalSensors = matching(0xff00, 5); // 65280_10 = FF00_16 // thermalSensors's PrimaryUsagePage should be 0xff00 for M1 chip, instead of 0xff05 // can be checked by ioreg -lfx IOHIDEventSystemClientRef system = IOHIDEventSystemClientCreate(kCFAllocatorDefault); IOHIDEventSystemClientSetMatching(system, thermalSensors); CFArrayRef matchingsrvs = IOHIDEventSystemClientCopyServices(system); std::vector temps; if (matchingsrvs) { long count = CFArrayGetCount(matchingsrvs); for (int i = 0; i < count; i++) { IOHIDServiceClientRef sc = (IOHIDServiceClientRef)CFArrayGetValueAtIndex(matchingsrvs, i); if (sc) { CFStringRef name = IOHIDServiceClientCopyProperty(sc, CFSTR("Product")); // here we use ...CopyProperty if (name) { char buf[200]; CFStringGetCString(name, buf, 200, kCFStringEncodingASCII); std::string n(buf); // this is just a guess, nobody knows which sensors mean what // on my system PMU tdie 3 and 9 are missing... // there is also PMU tdev1-8 but it has negative values?? // there is also eACC for efficiency package but it only has 2 entries // and pACC for performance but it has 7 entries (2 - 9) WTF if (n.starts_with("eACC") or n.starts_with("pACC")) { temps.push_back(getValue(sc)); } CFRelease(name); } } } CFRelease(matchingsrvs); } CFRelease(system); CFRelease(thermalSensors); if (temps.empty()) return 0ll; return round(std::accumulate(temps.begin(), temps.end(), 0ll) / temps.size()); } #endif btop-1.4.5/src/osx/sensors.hpp000066400000000000000000000014541506333644200163040ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 namespace Cpu { class ThermalSensors { public: long long getSensors(); }; } // namespace Cpu #endif btop-1.4.5/src/osx/smc.cpp000066400000000000000000000113101506333644200153550ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #include "smc.hpp" static constexpr size_t MaxIndexCount = sizeof("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ") - 1; static constexpr const char *KeyIndexes = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; static UInt32 _strtoul(char *str, int size, int base) { UInt32 total = 0; int i; for (i = 0; i < size; i++) { if (base == 16) { total += str[i] << (size - 1 - i) * 8; } else { total += (unsigned char)(str[i] << (size - 1 - i) * 8); } } return total; } static void _ultostr(char *str, UInt32 val) { str[0] = '\0'; snprintf(str, 5, "%c%c%c%c", (unsigned int)val >> 24, (unsigned int)val >> 16, (unsigned int)val >> 8, (unsigned int)val); } namespace Cpu { SMCConnection::SMCConnection() { CFMutableDictionaryRef matchingDictionary = IOServiceMatching("AppleSMC"); result = IOServiceGetMatchingServices(0, matchingDictionary, &iterator); if (result != kIOReturnSuccess) { throw std::runtime_error("failed to get AppleSMC"); } device = IOIteratorNext(iterator); IOObjectRelease(iterator); if (device == 0) { throw std::runtime_error("failed to get SMC device"); } result = IOServiceOpen(device, mach_task_self(), 0, &conn); IOObjectRelease(device); if (result != kIOReturnSuccess) { throw std::runtime_error("failed to get SMC connection"); } } SMCConnection::~SMCConnection() { IOServiceClose(conn); } long long SMCConnection::getSMCTemp(char *key) { SMCVal_t val; kern_return_t result; result = SMCReadKey(key, &val); if (result == kIOReturnSuccess) { if (val.dataSize > 0) { if (strcmp(val.dataType, DATATYPE_SP78) == 0) { // convert sp78 value to temperature int intValue = val.bytes[0] * 256 + (unsigned char)val.bytes[1]; return static_cast(intValue / 256.0); } } } return -1; } // core means physical core in SMC, while in core map it's cpu threads :-/ Only an issue on hackintosh? // this means we can only get the T per physical core // another issue with the SMC API is that the key is always 4 chars -> what with systems with more than 9 physical cores? // no Mac models with more than 18 threads are released, so no problem so far // according to VirtualSMC docs (hackintosh fake SMC) the enumeration follows with alphabetic chars - not implemented yet here (nor in VirtualSMC) long long SMCConnection::getTemp(int core) { char key[] = SMC_KEY_CPU_TEMP; if (core >= 0) { if ((size_t)core > MaxIndexCount) { return -1; } snprintf(key, 5, "TC%1cc", KeyIndexes[core]); } long long result = getSMCTemp(key); if (result == -1) { // try again with C snprintf(key, 5, "TC%1dC", KeyIndexes[core]); result = getSMCTemp(key); } return result; } kern_return_t SMCConnection::SMCReadKey(UInt32Char_t key, SMCVal_t *val) { kern_return_t result; SMCKeyData_t inputStructure; SMCKeyData_t outputStructure; memset(&inputStructure, 0, sizeof(SMCKeyData_t)); memset(&outputStructure, 0, sizeof(SMCKeyData_t)); memset(val, 0, sizeof(SMCVal_t)); inputStructure.key = _strtoul(key, 4, 16); inputStructure.data8 = SMC_CMD_READ_KEYINFO; result = SMCCall(KERNEL_INDEX_SMC, &inputStructure, &outputStructure); if (result != kIOReturnSuccess) return result; val->dataSize = outputStructure.keyInfo.dataSize; _ultostr(val->dataType, outputStructure.keyInfo.dataType); inputStructure.keyInfo.dataSize = val->dataSize; inputStructure.data8 = SMC_CMD_READ_BYTES; result = SMCCall(KERNEL_INDEX_SMC, &inputStructure, &outputStructure); if (result != kIOReturnSuccess) return result; memcpy(val->bytes, outputStructure.bytes, sizeof(outputStructure.bytes)); return kIOReturnSuccess; } kern_return_t SMCConnection::SMCCall(int index, SMCKeyData_t *inputStructure, SMCKeyData_t *outputStructure) { size_t structureInputSize; size_t structureOutputSize; structureInputSize = sizeof(SMCKeyData_t); structureOutputSize = sizeof(SMCKeyData_t); return IOConnectCallStructMethod(conn, index, // inputStructure inputStructure, structureInputSize, // outputStructure outputStructure, &structureOutputSize); } } // namespace Cpu btop-1.4.5/src/osx/smc.hpp000066400000000000000000000051761506333644200153770ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) 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. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include #define VERSION "0.01" #define KERNEL_INDEX_SMC 2 #define SMC_CMD_READ_BYTES 5 #define SMC_CMD_WRITE_BYTES 6 #define SMC_CMD_READ_INDEX 8 #define SMC_CMD_READ_KEYINFO 9 #define SMC_CMD_READ_PLIMIT 11 #define SMC_CMD_READ_VERS 12 #define DATATYPE_FPE2 "fpe2" #define DATATYPE_UINT8 "ui8 " #define DATATYPE_UINT16 "ui16" #define DATATYPE_UINT32 "ui32" #define DATATYPE_SP78 "sp78" // key values #define SMC_KEY_CPU_TEMP "TC0P" // proximity temp? #define SMC_KEY_CPU_DIODE_TEMP "TC0D" // diode temp? #define SMC_KEY_CPU_DIE_TEMP "TC0F" // die temp? #define SMC_KEY_CPU1_TEMP "TC1C" #define SMC_KEY_CPU2_TEMP "TC2C" // etc #define SMC_KEY_FAN0_RPM_CUR "F0Ac" typedef struct { char major; char minor; char build; char reserved[1]; UInt16 release; } SMCKeyData_vers_t; typedef struct { UInt16 version; UInt16 length; UInt32 cpuPLimit; UInt32 gpuPLimit; UInt32 memPLimit; } SMCKeyData_pLimitData_t; typedef struct { UInt32 dataSize; UInt32 dataType; char dataAttributes; } SMCKeyData_keyInfo_t; typedef char SMCBytes_t[32]; typedef struct { UInt32 key; SMCKeyData_vers_t vers; SMCKeyData_pLimitData_t pLimitData; SMCKeyData_keyInfo_t keyInfo; char result; char status; char data8; UInt32 data32; SMCBytes_t bytes; } SMCKeyData_t; typedef char UInt32Char_t[5]; typedef struct { UInt32Char_t key; UInt32 dataSize; UInt32Char_t dataType; SMCBytes_t bytes; } SMCVal_t; namespace Cpu { class SMCConnection { public: SMCConnection(); virtual ~SMCConnection(); long long getTemp(int core); private: kern_return_t SMCReadKey(UInt32Char_t key, SMCVal_t *val); long long getSMCTemp(char *key); kern_return_t SMCCall(int index, SMCKeyData_t *inputStructure, SMCKeyData_t *outputStructure); io_connect_t conn; kern_return_t result; mach_port_t masterPort; io_iterator_t iterator; io_object_t device; }; } // namespace Cpu btop-1.4.5/themes/000077500000000000000000000000001506333644200137605ustar00rootroot00000000000000btop-1.4.5/themes/HotPurpleTrafficLight.theme000066400000000000000000000044771506333644200212310ustar00rootroot00000000000000#HotPurpleTrafficLight #by Pete Allebone - mess with the best... you know the rest. #Designed to flash up bright red with danger when loads are high and attention is needed. # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#000000" # Main text color theme[main_fg]="#d1d1e0" # Title color for boxes theme[title]="#d1d1e0" # Highlight color for keyboard shortcuts theme[hi_fg]="#9933ff" # Background color of selected item in processes box theme[selected_bg]="#6666ff" # Foreground color of selected item in processes box theme[selected_fg]="#d1d1e0" # Color of inactive/disabled text theme[inactive_fg]="#9999ff" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#9933ff" # Background color of the percentage meters theme[meter_bg]="#4d4dff" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#9933ff" # Cpu box outline color theme[cpu_box]="#a64dff" # Memory/disks box outline color theme[mem_box]="#a64dff" # Net up/down box outline color theme[net_box]="#a64dff" # Processes box outline color theme[proc_box]="#a64dff" # Box divider line and small boxes line color theme[div_line]="#4d4dff" # Temperature graph colors theme[temp_start]="#00ff00" theme[temp_mid]="#ff9933" theme[temp_end]="#ff0000" # CPU graph colors theme[cpu_start]="#00ff00" theme[cpu_mid]="#ccff66" theme[cpu_end]="#ff0000" # Mem/Disk free meter theme[free_end]="#00ff00" theme[free_mid]="#ccff66" theme[free_start]="#ff0000" # Mem/Disk cached meter theme[cached_start]="#00ff00" theme[cached_mid]="#ccff66" theme[cached_end]="#ff0000" # Mem/Disk available meter theme[available_start]="#ff0000" theme[available_mid]="#ccff66" theme[available_end]="#00ff00" # Mem/Disk used meter theme[used_start]="#00ff00" theme[used_mid]="#ccff66" theme[used_end]="#ff0000" # Download graph colors theme[download_start]="#00ff00" theme[download_mid]="#ff9933" theme[download_end]="#ff0000" # Upload graph colors theme[upload_start]="#00ff00" theme[upload_mid]="#ff9933" theme[upload_end]="#ff0000" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#9999ff" theme[process_mid]="#4d4dff" theme[process_end]="#a64dff" btop-1.4.5/themes/adapta.theme000066400000000000000000000042501506333644200162370ustar00rootroot00000000000000#Bashtop Adapta theme #by olokelo # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="" # Main text color theme[main_fg]="#cfd8dc" # Title color for boxes theme[title]="#ff" # Highlight color for keyboard shortcuts theme[hi_fg]="#90" # Background color of selected item in processes box theme[selected_bg]="#bb0040" # Foreground color of selected item in processes box theme[selected_fg]="#ff" # Color of inactive/disabled text theme[inactive_fg]="#40" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#55bcea" # Cpu box outline color theme[cpu_box]="#00bcd4" # Memory/disks box outline color theme[mem_box]="#00bcd4" # Net up/down box outline color theme[net_box]="#00bcd4" # Processes box outline color theme[proc_box]="#00bcd4" # Box divider line and small boxes line color theme[div_line]="#50" # Temperature graph colors theme[temp_start]="#00bcd4" theme[temp_mid]="#d4d400" theme[temp_end]="#ff0040" # CPU graph colors theme[cpu_start]="#00bcd4" theme[cpu_mid]="#d4d400" theme[cpu_end]="#ff0040" # Mem/Disk free meter theme[free_start]="#00bcd4" theme[free_mid]="#1090a0" theme[free_end]="#206f79" # Mem/Disk cached meter theme[cached_start]="#991199" theme[cached_mid]="#770a55" theme[cached_end]="#550055" # Mem/Disk available meter theme[available_start]="#00b0ff" theme[available_mid]="#1099cc" theme[available_end]="#2070aa" # Mem/Disk used meter theme[used_start]="#ff0040" theme[used_mid]="#ff2060" theme[used_end]="#ff4080" # Download graph colors theme[download_start]="#00bcd4" theme[download_mid]="#991199" theme[download_end]="#ff0040" # Upload graph colors theme[upload_start]="#00bcd4" theme[upload_mid]="#991199" theme[upload_end]="#ff0040" btop-1.4.5/themes/adwaita-dark.theme000066400000000000000000000034741506333644200173450ustar00rootroot00000000000000#Bashtop Adwaita Dark theme #by k0tran # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#1d1d1d" # Main text color theme[main_fg]="#deddda" # Title color for boxes theme[title]="#deddda" # Highlight color for keyboard shortcuts theme[hi_fg]="#62a0ea" # Background color of selected item in processes box theme[selected_bg]="#1c71d8" # Foreground color of selected item in processes box theme[selected_fg]="#ffffff" # Color of inactive/disabled text theme[inactive_fg]="#77767b" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#1a5fb4" # Cpu box outline color theme[cpu_box]="#77767b" # Memory/disks box outline color theme[mem_box]="#77767b" # Net up/down box outline color theme[net_box]="#77767b" # Processes box outline color theme[proc_box]="#77767b" # Box divider line and small boxes line color theme[div_line]="#77767b" # Temperature graph colors theme[temp_start]="#62a0ea" theme[temp_mid]="#1c71d8" theme[temp_end]="#e01b24" # CPU graph colors theme[cpu_start]="#62a0ea" theme[cpu_mid]="#1c71d8" theme[cpu_end]="#e01b24" # Mem/Disk free meter theme[free_start]="#62a0ea" theme[free_mid]="#1c71d8" theme[free_end]="#c01b24" # Mem/Disk cached meter theme[cached_start]="#62a0ea" theme[cached_mid]="#1c71d8" theme[cached_end]="#c01b24" # Mem/Disk available meter theme[available_start]="#62a0ea" theme[available_mid]="#1c71d8" theme[available_end]="#c01b24" # Mem/Disk used meter theme[used_start]="#62a0ea" theme[used_mid]="#1c71d8" theme[used_end]="#c01b24" # Download graph colors theme[download_start]="#62a0ea" theme[download_mid]="#1c71d8" theme[download_end]="#c01b24" # Upload graph colors theme[upload_start]="#62a0ea" theme[upload_mid]="#1c71d8" theme[upload_end]="#c01b24" btop-1.4.5/themes/adwaita.theme000066400000000000000000000043111506333644200164150ustar00rootroot00000000000000#Bashtop Adwaita theme #by flipflop133 # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#f6f5f4" # Main text color theme[main_fg]="#2e3436" # Title color for boxes theme[title]="#2e3436" # Highlight color for keyboard shortcuts theme[hi_fg]="#1a5fb4" # Background color of selected item in processes box theme[selected_bg]="#1c71d8" # Foreground color of selected item in processes box theme[selected_fg]="#ffffff" # Color of inactive/disabled text theme[inactive_fg]="#5e5c64" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#1a5fb4" # Cpu box outline color theme[cpu_box]="#2e3436" # Memory/disks box outline color theme[mem_box]="#3d3c14" # Net up/down box outline color theme[net_box]="#2e3436" # Processes box outline color theme[proc_box]="#2e3436" # Box divider line and small boxes line color theme[div_line]="#2e3436" # Temperature graph colors theme[temp_start]="#1a5fb4" theme[temp_mid]="#1a5fb4" theme[temp_end]="#c01c28" # CPU graph colors theme[cpu_start]="#1a5fb4" theme[cpu_mid]="#1a5fb4" theme[cpu_end]="#c01c28" # Mem/Disk free meter theme[free_start]="#1a5fb4" theme[free_mid]="#1a5fb4" theme[free_end]="#c01c28" # Mem/Disk cached meter theme[cached_start]="#1a5fb4" theme[cached_mid]="#1a5fb4" theme[cached_end]="#c01c28" # Mem/Disk available meter theme[available_start]="#1a5fb4" theme[available_mid]="#1a5fb4" theme[available_end]="#c01c28" # Mem/Disk used meter theme[used_start]="#1a5fb4" theme[used_mid]="#1a5fb4" theme[used_end]="#c01c28" # Download graph colors theme[download_start]="#1a5fb4" theme[download_mid]="#1a5fb4" theme[download_end]="#c01c28" # Upload graph colors theme[upload_start]="#1a5fb4" theme[upload_mid]="#1a5fb4" theme[upload_end]="#c01c28" btop-1.4.5/themes/ayu.theme000066400000000000000000000041461506333644200156070ustar00rootroot00000000000000# Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#0B0E14" # Main text color theme[main_fg]="#BFBDB6" # Title color for boxes theme[title]="#BFBDB6" # Highlight color for keyboard shortcuts theme[hi_fg]="#E6B450" # Background color of selected item in processes box theme[selected_bg]="#E6B450" # Foreground color of selected item in processes box theme[selected_fg]="#f8f8f2" # Color of inactive/disabled text theme[inactive_fg]="#565B66" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#BFBDB6" # Background color of the percentage meters theme[meter_bg]="#565B66" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#DFBFFF" # Cpu box outline color theme[cpu_box]="#DFBFFF" # Memory/disks box outline color theme[mem_box]="#95E6CB" # Net up/down box outline color theme[net_box]="#F28779" # Processes box outline color theme[proc_box]="#E6B673" # Box divider line and small boxes line color theme[div_line]="#565B66" # Temperature graph colors theme[temp_start]="#DFBFFF" theme[temp_mid]="#D2A6FF" theme[temp_end]="#A37ACC" # CPU graph colors theme[cpu_start]="#DFBFFF" theme[cpu_mid]="#D2A6FF" theme[cpu_end]="#A37ACC" # Mem/Disk free meter theme[free_start]="#95E6CB" theme[free_mid]="#95E6CB" theme[free_end]="#4CBF99" # Mem/Disk cached meter theme[cached_start]="#95E6CB" theme[cached_mid]="#95E6CB" theme[cached_end]="#4CBF99" # Mem/Disk available meter theme[available_start]="#95E6CB" theme[available_mid]="#95E6CB" theme[available_end]="#4CBF99" # Mem/Disk used meter theme[used_start]="#95E6CB" theme[used_mid]="#95E6CB" theme[used_end]="#4CBF99" # Download graph colors theme[download_start]="#F28779" theme[download_mid]="#F07178" theme[download_end]="#F07171" # Upload graph colors theme[upload_start]="#73D0FF" theme[upload_mid]="#59C2FF" theme[upload_end]="#399EE6" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#FFCC66" theme[process_mid]="#E6B450" theme[process_end]="#FFAA33" btop-1.4.5/themes/dracula.theme000066400000000000000000000041461506333644200164240ustar00rootroot00000000000000# Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#282a36" # Main text color theme[main_fg]="#f8f8f2" # Title color for boxes theme[title]="#f8f8f2" # Highlight color for keyboard shortcuts theme[hi_fg]="#6272a4" # Background color of selected item in processes box theme[selected_bg]="#ff79c6" # Foreground color of selected item in processes box theme[selected_fg]="#f8f8f2" # Color of inactive/disabled text theme[inactive_fg]="#44475a" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#f8f8f2" # Background color of the percentage meters theme[meter_bg]="#44475a" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#bd93f9" # Cpu box outline color theme[cpu_box]="#bd93f9" # Memory/disks box outline color theme[mem_box]="#50fa7b" # Net up/down box outline color theme[net_box]="#ff5555" # Processes box outline color theme[proc_box]="#8be9fd" # Box divider line and small boxes line color theme[div_line]="#44475a" # Temperature graph colors theme[temp_start]="#bd93f9" theme[temp_mid]="#ff79c6" theme[temp_end]="#ff33a8" # CPU graph colors theme[cpu_start]="#bd93f9" theme[cpu_mid]="#8be9fd" theme[cpu_end]="#50fa7b" # Mem/Disk free meter theme[free_start]="#ffa6d9" theme[free_mid]="#ff79c6" theme[free_end]="#ff33a8" # Mem/Disk cached meter theme[cached_start]="#b1f0fd" theme[cached_mid]="#8be9fd" theme[cached_end]="#26d7fd" # Mem/Disk available meter theme[available_start]="#ffd4a6" theme[available_mid]="#ffb86c" theme[available_end]="#ff9c33" # Mem/Disk used meter theme[used_start]="#96faaf" theme[used_mid]="#50fa7b" theme[used_end]="#0dfa49" # Download graph colors theme[download_start]="#bd93f9" theme[download_mid]="#50fa7b" theme[download_end]="#8be9fd" # Upload graph colors theme[upload_start]="#8c42ab" theme[upload_mid]="#ff79c6" theme[upload_end]="#ff33a8" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#50fa7b" theme[process_mid]="#59b690" theme[process_end]="#6272a4" btop-1.4.5/themes/dusklight.theme000066400000000000000000000045441506333644200170110ustar00rootroot00000000000000#Bpytop theme comprised of blues, oranges, cyan, and yellow. #by Drazil100 # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#04142E" # Main text color theme[main_fg]="#99DFFF" # Title color for boxes theme[title]="#99FFFF" # Highlight color for keyboard shortcuts theme[hi_fg]="#FF7F00" # Background color of selected item in processes box theme[selected_bg]="#722B01" # Foreground color of selected item in processes box theme[selected_fg]="#99FFFF" # Color of inactive/disabled text theme[inactive_fg]="#052E51" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#79A1B4" # Background color of the percentage meters theme[meter_bg]="#052E51" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#B46718" # Cpu box outline color theme[cpu_box]="#00FFFF" # Memory/disks box outline color theme[mem_box]="#00FFFF" # Net up/down box outline color theme[net_box]="#00FFFF" # Processes box outline color theme[proc_box]="#00FFFF" # Box divider line and small boxes line color theme[div_line]="#A55800" # Temperature graph colors theme[temp_start]="#00ADFF" theme[temp_mid]="#00FFFF" theme[temp_end]="#FFF86B" # CPU graph colors theme[cpu_start]="#00D4FF" theme[cpu_mid]="#FFF86B" theme[cpu_end]="#FF7F00" # Mem/Disk free meter theme[free_start]="#0187CB" theme[free_mid]="" theme[free_end]="" # Mem/Disk cached meter theme[cached_start]="#B4BB63" theme[cached_mid]="" theme[cached_end]="" # Mem/Disk available meter theme[available_start]="#01C0CB" theme[available_mid]="" theme[available_end]="" # Mem/Disk used meter theme[used_start]="#B46718" theme[used_mid]="" theme[used_end]="" # Download graph colors theme[download_start]="#009EFF" theme[download_mid]="" theme[download_end]="#00FFFF" # Upload graph colors theme[upload_start]="#FF7F00" theme[upload_mid]="" theme[upload_end]="#FFF86B" btop-1.4.5/themes/elementarish.theme000066400000000000000000000034011506333644200174620ustar00rootroot00000000000000# Theme: Elementarish # (inspired by Elementary OS) # By: Dennis Mayr # Main bg theme[main_bg]="#333333" # Main text color theme[main_fg]="#eee8d5" # Title color for boxes theme[title]="#eee8d5" # Highlight color for keyboard shortcuts theme[hi_fg]="#d1302c" # Background color of selected item in processes box theme[selected_bg]="#268ad0" # Foreground color of selected item in processes box theme[selected_fg]="#eee8d5" # Color of inactive/disabled text theme[inactive_fg]="#657b83" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#268ad0" # Cpu box outline color theme[cpu_box]="#657b83" # Memory/disks box outline color theme[mem_box]="#657b83" # Net up/down box outline color theme[net_box]="#657b83" # Processes box outline color theme[proc_box]="#657b83" # Box divider line and small boxes line color theme[div_line]="#657b83" # Temperature graph colors theme[temp_start]="#859900" theme[temp_mid]="#b28602" theme[temp_end]="#d1302c" # CPU graph colors theme[cpu_start]="#859900" theme[cpu_mid]="#b28602" theme[cpu_end]="#d1302c" # Mem/Disk free meter theme[free_start]="#268ad0" theme[free_mid]="#6c71c4" theme[free_end]="#2a9d95" # Mem/Disk cached meter theme[cached_start]="#268ad0" theme[cached_mid]="#6c71c4" theme[cached_end]="#d1302c" # Mem/Disk available meter theme[available_start]="#268ad0" theme[available_mid]="#6c71c4" theme[available_end]="#d1302c" # Mem/Disk used meter theme[used_start]="#859900" theme[used_mid]="#b28602" theme[used_end]="#d1302c" # Download graph colors theme[download_start]="#268ad0" theme[download_mid]="#6c71c4" theme[download_end]="#d1302c" # Upload graph colors theme[upload_start]="#268ad0" theme[upload_mid]="#6c71c4" theme[upload_end]="#d1302c" btop-1.4.5/themes/everforest-dark-hard.theme000066400000000000000000000043341506333644200210270ustar00rootroot00000000000000# All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#272e33" # Main text color theme[main_fg]="#d3c6aa" # Title color for boxes theme[title]="#d3c6aa" # Highlight color for keyboard shortcuts theme[hi_fg]="#e67e80" # Background color of selected items theme[selected_bg]="#374145" # Foreground color of selected items theme[selected_fg]="#dbbc7f" # Color of inactive/disabled text theme[inactive_fg]="#272e33" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#d3c6aa" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#a7c080" # Cpu box outline color theme[cpu_box]="#374145" # Memory/disks box outline color theme[mem_box]="#374145" # Net up/down box outline color theme[net_box]="#374145" # Processes box outline color theme[proc_box]="#374145" # Box divider line and small boxes line color theme[div_line]="#374145" # Temperature graph colors theme[temp_start]="#a7c080" theme[temp_mid]="#dbbc7f" theme[temp_end]="#f85552" # CPU graph colors theme[cpu_start]="#a7c080" theme[cpu_mid]="#dbbc7f" theme[cpu_end]="#f85552" # Mem/Disk free meter theme[free_start]="#f85552" theme[free_mid]="#dbbc7f" theme[free_end]="#a7c080" # Mem/Disk cached meter theme[cached_start]="#7fbbb3" theme[cached_mid]="#83c092" theme[cached_end]="#a7c080" # Mem/Disk available meter theme[available_start]="#f85552" theme[available_mid]="#dbbc7f" theme[available_end]="#a7c080" # Mem/Disk used meter theme[used_start]="#a7c080" theme[used_mid]="#dbbc7f" theme[used_end]="#f85552" # Download graph colors theme[download_start]="#a7c080" theme[download_mid]="#83c092" theme[download_end]="#7fbbb3" # Upload graph colors theme[upload_start]="#dbbc7f" theme[upload_mid]="#e69875" theme[upload_end]="#e67e80" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#a7c080" theme[process_mid]="#f85552" theme[process_end]="#CC241D" btop-1.4.5/themes/everforest-dark-medium.theme000066400000000000000000000043351506333644200213720ustar00rootroot00000000000000# All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#2d353b" # Main text color theme[main_fg]="#d3c6aa" # Title color for boxes theme[title]="#d3c6aa" # Highlight color for keyboard shortcuts theme[hi_fg]="#e67e80" # Background color of selected items theme[selected_bg]="#3d484d" # Foreground color of selected items theme[selected_fg]="#dbbc7f" # Color of inactive/disabled text theme[inactive_fg]="#2d353b" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#d3c6aa" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#a7c080" # Cpu box outline color theme[cpu_box]="#3d484d" # Memory/disks box outline color theme[mem_box]="#3d484d" # Net up/down box outline color theme[net_box]="#3d484d" # Processes box outline color theme[proc_box]="#3d484d" # Box divider line and small boxes line color theme[div_line]="#3d484d" # Temperature graph colors theme[temp_start]="#a7c080" theme[temp_mid]="#dbbc7f" theme[temp_end]="#f85552" # CPU graph colors theme[cpu_start]="#a7c080" theme[cpu_mid]="#dbbc7f" theme[cpu_end]="#f85552" # Mem/Disk free meter theme[free_start]="#f85552" theme[free_mid]="#dbbc7f" theme[free_end]="#a7c080" # Mem/Disk cached meter theme[cached_start]="#7fbbb3" theme[cached_mid]="#83c092" theme[cached_end]="#a7c080" # Mem/Disk available meter theme[available_start]="#f85552" theme[available_mid]="#dbbc7f" theme[available_end]="#a7c080" # Mem/Disk used meter theme[used_start]="#a7c080" theme[used_mid]="#dbbc7f" theme[used_end]="#f85552" # Download graph colors theme[download_start]="#a7c080" theme[download_mid]="#83c092" theme[download_end]="#7fbbb3" # Upload graph colors theme[upload_start]="#dbbc7f" theme[upload_mid]="#e69875" theme[upload_end]="#e67e80" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#a7c080" theme[process_mid]="#e67e80" theme[process_end]="#f85552" btop-1.4.5/themes/everforest-light-medium.theme000066400000000000000000000043331506333644200215560ustar00rootroot00000000000000# All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#fdf6e3" # Main text color theme[main_fg]="#5c6a72" # Title color for boxes theme[title]="#5c6a72" # Highlight color for keyboard shortcuts theme[hi_fg]="#df69ba" # Background color of selected items theme[selected_bg]="#4F585E" # Foreground color of selected items theme[selected_fg]="#dfa000" # Color of inactive/disabled text theme[inactive_fg]="#9DA9A0" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#5c6a72" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#8da101" # Cpu box outline color theme[cpu_box]="#4F585E" # Memory/disks box outline color theme[mem_box]="#4F585E" # Net up/down box outline color theme[net_box]="#4F585E" # Processes box outline color theme[proc_box]="#4F585E" # Box divider line and small boxes line color theme[div_line]="#4F585E" # Temperature graph colors theme[temp_start]="#8da101" theme[temp_mid]="#dfa000" theme[temp_end]="#f85552" # CPU graph colors theme[cpu_start]="#8da101" theme[cpu_mid]="#dfa000" theme[cpu_end]="#f85552" # Mem/Disk free meter theme[free_start]="#f85552" theme[free_mid]="#dfa000" theme[free_end]="#8da101" # Mem/Disk cached meter theme[cached_start]="#3994c5" theme[cached_mid]="#35a77c" theme[cached_end]="#8da101" # Mem/Disk available meter theme[available_start]="#f85552" theme[available_mid]="#dfa000" theme[available_end]="#8da101" # Mem/Disk used meter theme[used_start]="#8da101" theme[used_mid]="#dfa000" theme[used_end]="#f85552" # Download graph colors theme[download_start]="#8da101" theme[download_mid]="#35a77c" theme[download_end]="#3994c5" # Upload graph colors theme[upload_start]="#dfa000" theme[upload_mid]="#e66868" theme[upload_end]="#df69ba" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#8da101" theme[process_mid]="#df69ba" theme[process_end]="#f85552" btop-1.4.5/themes/flat-remix-light.theme000066400000000000000000000043501506333644200201630ustar00rootroot00000000000000#Bashtop theme with flat-remix colors #by Daniel Ruiz de Alegría # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#e4e4e7" # Main text color theme[main_fg]="#737680" # Title color for boxes theme[title]="#272a34" # Highlight color for keyboard shortcuts theme[hi_fg]="#90" # Background color of selected item in processes box theme[selected_bg]="#b8174c" # Foreground color of selected item in processes box theme[selected_fg]="#ff" # Color of inactive/disabled text theme[inactive_fg]="#40" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#367bf0" # Cpu box outline color theme[cpu_box]="#367bf0" # Memory/disks box outline color theme[mem_box]="#19a187" # Net up/down box outline color theme[net_box]="#fd3535" # Processes box outline color theme[proc_box]="#4aaee6" # Box divider line and small boxes line color theme[div_line]="#50" # Temperature graph colors theme[temp_start]="#367bf0" theme[temp_mid]="#b8174c" theme[temp_end]="#d41919" # CPU graph colors theme[cpu_start]="#367bf0" theme[cpu_mid]="#4aaee6" theme[cpu_end]="#54bd8e" # Mem/Disk free meter theme[free_start]="#811035" theme[free_mid]="#b8174c" theme[free_end]="#d41919" # Mem/Disk cached meter theme[cached_start]="#2656a8" theme[cached_mid]="#4aaee6" theme[cached_end]="#23bac2" # Mem/Disk available meter theme[available_start]="#fea44c" theme[available_mid]="#fd7d00" theme[available_end]="#fe7171" # Mem/Disk used meter theme[used_start]="#12715f" theme[used_mid]="#19a187" theme[used_end]="#23bac2" # Download graph colors theme[download_start]="#367bf0" theme[download_mid]="#19a187" theme[download_end]="#4aaee6" # Upload graph colors theme[upload_start]="#8c42ab" theme[upload_mid]="#b8174c" theme[upload_end]="#d41919" btop-1.4.5/themes/flat-remix.theme000066400000000000000000000043351506333644200170610ustar00rootroot00000000000000#Bashtop theme with flat-remix colors #by Daniel Ruiz de Alegría # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="" # Main text color theme[main_fg]="#E6E6E6" # Title color for boxes theme[title]="#ff" # Highlight color for keyboard shortcuts theme[hi_fg]="#90" # Background color of selected item in processes box theme[selected_bg]="#b8174c" # Foreground color of selected item in processes box theme[selected_fg]="#ff" # Color of inactive/disabled text theme[inactive_fg]="#40" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#367bf0" # Cpu box outline color theme[cpu_box]="#367bf0" # Memory/disks box outline color theme[mem_box]="#19a187" # Net up/down box outline color theme[net_box]="#fd3535" # Processes box outline color theme[proc_box]="#4aaee6" # Box divider line and small boxes line color theme[div_line]="#50" # Temperature graph colors theme[temp_start]="#367bf0" theme[temp_mid]="#b8174c" theme[temp_end]="#d41919" # CPU graph colors theme[cpu_start]="#367bf0" theme[cpu_mid]="#4aaee6" theme[cpu_end]="#54bd8e" # Mem/Disk free meter theme[free_start]="#811035" theme[free_mid]="#b8174c" theme[free_end]="#d41919" # Mem/Disk cached meter theme[cached_start]="#2656a8" theme[cached_mid]="#4aaee6" theme[cached_end]="#23bac2" # Mem/Disk available meter theme[available_start]="#fea44c" theme[available_mid]="#fd7d00" theme[available_end]="#fe7171" # Mem/Disk used meter theme[used_start]="#12715f" theme[used_mid]="#19a187" theme[used_end]="#23bac2" # Download graph colors theme[download_start]="#367bf0" theme[download_mid]="#19a187" theme[download_end]="#4aaee6" # Upload graph colors theme[upload_start]="#8c42ab" theme[upload_mid]="#b8174c" theme[upload_end]="#d41919" btop-1.4.5/themes/greyscale.theme000066400000000000000000000040371506333644200167660ustar00rootroot00000000000000#Bashtop grayscale theme #by aristocratos # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#00" # Main text color theme[main_fg]="#bb" # Title color for boxes theme[title]="#cc" # Highlight color for keyboard shortcuts theme[hi_fg]="#90" # Background color of selected item in processes box theme[selected_bg]="#ff" # Foreground color of selected item in processes box theme[selected_fg]="#00" # Color of inactive/disabled text theme[inactive_fg]="#30" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#90" # Cpu box outline color theme[cpu_box]="#90" # Memory/disks box outline color theme[mem_box]="#90" # Net up/down box outline color theme[net_box]="#90" # Processes box outline color theme[proc_box]="#90" # Box divider line and small boxes line color theme[div_line]="#30" # Temperature graph colors theme[temp_start]="#50" theme[temp_mid]="" theme[temp_end]="#ff" # CPU graph colors theme[cpu_start]="#50" theme[cpu_mid]="" theme[cpu_end]="#ff" # Mem/Disk free meter theme[free_start]="#50" theme[free_mid]="" theme[free_end]="#ff" # Mem/Disk cached meter theme[cached_start]="#50" theme[cached_mid]="" theme[cached_end]="#ff" # Mem/Disk available meter theme[available_start]="#50" theme[available_mid]="" theme[available_end]="#ff" # Mem/Disk used meter theme[used_start]="#50" theme[used_mid]="" theme[used_end]="#ff" # Download graph colors theme[download_start]="#30" theme[download_mid]="" theme[download_end]="#ff" # Upload graph colors theme[upload_start]="#30" theme[upload_mid]="" theme[upload_end]="#ff"btop-1.4.5/themes/gruvbox_dark.theme000066400000000000000000000044461506333644200175110ustar00rootroot00000000000000#Bashtop gruvbox (https://github.com/morhetz/gruvbox) theme #by BachoSeven # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#1d2021" # Main text color theme[main_fg]="#a89984" # Title color for boxes theme[title]="#ebdbb2" # Highlight color for keyboard shortcuts theme[hi_fg]="#d79921" # Background color of selected items theme[selected_bg]="#282828" # Foreground color of selected items theme[selected_fg]="#fabd2f" # Color of inactive/disabled text theme[inactive_fg]="#282828" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#585858" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#98971a" # Cpu box outline color theme[cpu_box]="#a89984" # Memory/disks box outline color theme[mem_box]="#a89984" # Net up/down box outline color theme[net_box]="#a89984" # Processes box outline color theme[proc_box]="#a89984" # Box divider line and small boxes line color theme[div_line]="#a89984" # Temperature graph colors theme[temp_start]="#458588" theme[temp_mid]="#d3869b" theme[temp_end]="#fb4394" # CPU graph colors theme[cpu_start]="#b8bb26" theme[cpu_mid]="#d79921" theme[cpu_end]="#fb4934" # Mem/Disk free meter theme[free_start]="#4e5900" theme[free_mid]="" theme[free_end]="#98971a" # Mem/Disk cached meter theme[cached_start]="#458588" theme[cached_mid]="" theme[cached_end]="#83a598" # Mem/Disk available meter theme[available_start]="#d79921" theme[available_mid]="" theme[available_end]="#fabd2f" # Mem/Disk used meter theme[used_start]="#cc241d" theme[used_mid]="" theme[used_end]="#fb4934" # Download graph colors theme[download_start]="#3d4070" theme[download_mid]="#6c71c4" theme[download_end]="#a3a8f7" # Upload graph colors theme[upload_start]="#701c45" theme[upload_mid]="#b16286" theme[upload_end]="#d3869b" btop-1.4.5/themes/gruvbox_dark_v2.theme000066400000000000000000000050711506333644200201130ustar00rootroot00000000000000# Bashtop gruvbox (https://github.com/morhetz/gruvbox) theme # First version created By BachoSeven # Adjustments to proper colors by Pietryszak (https://github.com/pietryszak/) # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#282828" # Main text color theme[main_fg]="#EBDBB2" # Title color for boxes theme[title]="#EBDBB2" # Highlight color for keyboard shortcuts theme[hi_fg]="#CC241D" # Background color of selected items theme[selected_bg]="#32302F" # Foreground color of selected items theme[selected_fg]="#D3869B" # Color of inactive/disabled text theme[inactive_fg]="#3C3836" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#A89984" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#98971A" # Cpu box outline color theme[cpu_box]="#A89984" # Memory/disks box outline color theme[mem_box]="#A89984" # Net up/down box outline color theme[net_box]="#A89984" # Processes box outline color theme[proc_box]="#A89984" # Box divider line and small boxes line color theme[div_line]="#A89984" # Temperature graph colors theme[temp_start]="#98971A" theme[temp_mid]="" theme[temp_end]="#CC241D" # CPU graph colors theme[cpu_start]="#8EC07C" theme[cpu_mid]="#D79921" theme[cpu_end]="#CC241D" # Mem/Disk free meter theme[free_start]="#CC241D" theme[free_mid]="#D79921" theme[free_end]="#8EC07C" # Mem/Disk cached meter theme[cached_start]="#458588" theme[cached_mid]="#83A598" theme[cached_end]="#8EC07C" # Mem/Disk available meter theme[available_start]="#CC241D" theme[available_mid]="#D65D0E" theme[available_end]="#FABD2F" # Mem/Disk used meter theme[used_start]="#8EC07C" theme[used_mid]="#D65D0E" theme[used_end]="#CC241D" # Download graph colors theme[download_start]="#98971A" theme[download_mid]="#689d6A" theme[download_end]="#B8BB26" # Upload graph colors theme[upload_start]="#CC241D" theme[upload_mid]="#D65d0E" theme[upload_end]="#FABF2F" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#8EC07C" theme[process_mid]="#FE8019" theme[process_end]="#CC241D" btop-1.4.5/themes/gruvbox_light.theme000066400000000000000000000040411506333644200176660ustar00rootroot00000000000000# Btop gruvbox_light theme # by kk9uk # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#fbf1c7" # Main text color theme[main_fg]="#3c3836" # Title color for boxes theme[title]="#3c3836" # Highlight color for keyboard shortcuts theme[hi_fg]="#cc241d" # Background color of selected items theme[selected_bg]="#f2e5bc" # Foreground color of selected items theme[selected_fg]="#8f3f71" # Color of inactive/disabled text theme[inactive_fg]="#ebdbb2" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#a89984" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#98971a" # Cpu box outline color theme[cpu_box]="#a89984" # Memory/disks box outline color theme[mem_box]="#a89984" # Net up/down box outline color theme[net_box]="#a89984" # Processes box outline color theme[proc_box]="#a89984" # Box divider line and small boxes line color theme[div_line]="#a89984" # Temperature graph colors theme[temp_start]="#98971a" theme[temp_mid]="" theme[temp_end]="#cc241d" # CPU graph colors theme[cpu_start]="#427b58" theme[cpu_mid]="#d79921" theme[cpu_end]="#cc241d" # Mem/Disk free meter theme[free_start]="#cc241d" theme[free_mid]="#d79921" theme[free_end]="#427b58" # Mem/Disk cached meter theme[cached_start]="#458588" theme[cached_mid]="#076678" theme[cached_end]="#427b58" # Mem/Disk available meter theme[available_start]="#cc241d" theme[available_mid]="#d65d0e" theme[available_end]="#b57614" # Mem/Disk used meter theme[used_start]="#427b58" theme[used_mid]="#d65d0e" theme[used_end]="#cc241d" # Download graph colors theme[download_start]="#98971a" theme[download_mid]="#689d6a" theme[download_end]="#79740e" # Upload graph colors theme[upload_start]="#cc241d" theme[upload_mid]="#d65d0e" theme[upload_end]="#b57614" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#427b58" theme[process_mid]="#af3a03" theme[process_end]="#cc241d" btop-1.4.5/themes/gruvbox_material_dark.theme000066400000000000000000000044111506333644200213570ustar00rootroot00000000000000# Btop gruvbox material dark (https://github.com/sainnhe/gruvbox-material) theme # by Marco Radocchia # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#282828" # Main text color theme[main_fg]="#d4be98" # Title color for boxes theme[title]="#d4be98" # Highlight color for keyboard shortcuts theme[hi_fg]="#ea6962" # Background color of selected items theme[selected_bg]="#d8a657" # Foreground color of selected items theme[selected_fg]="#282828" # Color of inactive/disabled text theme[inactive_fg]="#282828" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#665c54" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#a9b665" # Cpu box outline color theme[cpu_box]="#7c6f64" # Memory/disks box outline color theme[mem_box]="#7c6f64" # Net up/down box outline color theme[net_box]="#7c6f64" # Processes box outline color theme[proc_box]="#7c6f64" # Box divider line and small boxes line color theme[div_line]="#7c6f64" # Temperature graph colors theme[temp_start]="#7daea3" theme[temp_mid]="#e78a4e" theme[temp_end]="#ea6962" # CPU graph colors theme[cpu_start]="#a9b665" theme[cpu_mid]="#d8a657" theme[cpu_end]="#ea6962" # Mem/Disk free meter theme[free_start]="#89b482" theme[free_mid]="" theme[free_end]="" # Mem/Disk cached meter theme[cached_start]="#7daea3" theme[cached_mid]="" theme[cached_end]="" # Mem/Disk available meter theme[available_start]="#d8a657" theme[available_mid]="" theme[available_end]="" # Mem/Disk used meter theme[used_start]="#ea6962" theme[used_mid]="" theme[used_end]="" # Download graph colors theme[download_start]="#e78a4e" theme[download_mid]="" theme[download_end]="" # Upload graph colors theme[upload_start]="#d3869b" theme[upload_mid]="" theme[upload_end]="" btop-1.4.5/themes/horizon.theme000066400000000000000000000041041506333644200164730ustar00rootroot00000000000000# All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#1C1E26" # Main text color theme[main_fg]="#f8f8f2" # Title color for boxes theme[title]="#f8f8f2" # Highlight color for keyboard shortcuts theme[hi_fg]="#B877DB" # Background color of selected items theme[selected_bg]="#282b37" # Foreground color of selected items theme[selected_fg]="#f8f8f2" # Color of inactive/disabled text theme[inactive_fg]="#272e33" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#f8f8f2" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#27D796" # Cpu box outline color theme[cpu_box]="#B877DB" # Memory/disks box outline color theme[mem_box]="#27D796" # Net up/down box outline color theme[net_box]="#E95678" # Processes box outline color theme[proc_box]="#25B2BC" # Box divider line and small boxes line color theme[div_line]="#272e33" # Temperature graph colors theme[temp_start]="#27D796" theme[temp_mid]="#FAC29A" theme[temp_end]="#E95678" # CPU graph colors theme[cpu_start]="#27D796" theme[cpu_mid]="#FAC29A" theme[cpu_end]="#E95678" # Mem/Disk free meter theme[free_start]="#E95678" theme[free_mid]="#FAC29A" theme[free_end]="#27D796" # Mem/Disk cached meter theme[cached_start]="#27D796" theme[cached_mid]="#FAC29A" theme[cached_end]="#E95678" # Mem/Disk available meter theme[available_start]="#27D796" theme[available_mid]="#FAC29A" theme[available_end]="#E95678" # Mem/Disk used meter theme[used_start]="#27D796" theme[used_mid]="#FAC29A" theme[used_end]="#E95678" # Download graph colors theme[download_start]="#27D796" theme[download_mid]="#FAC29A" theme[download_end]="#E95678" # Upload graph colors theme[upload_start]="#27D796" theme[upload_mid]="#FAC29A" theme[upload_end]="#E95678" btop-1.4.5/themes/kanagawa-lotus.theme000066400000000000000000000036541506333644200177320ustar00rootroot00000000000000# Bashtop Kanagawa-lotus (https://github.com/rebelot/kanagawa.nvim) theme # By: philikarus # Main bg theme[main_bg]="#F2ECBC" # Main text color theme[main_fg]="#545464" # Title color for boxes theme[title]="#545464" # Highlight color for keyboard shortcuts theme[hi_fg]="#C84053" # Background color of selected item in processes box theme[selected_bg]="#c9cbd1" # Foreground color of selected item in processes box theme[selected_fg]="#43436c" # Color of inactive/disabled text theme[inactive_fg]="#8A8980" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#597B75" # Cpu box outline color theme[cpu_box]="#8A8980" # Memory/disks box outline color theme[mem_box]="#8A8980" # Net up/down box outline color theme[net_box]="#8A8980" # Processes box outline color theme[proc_box]="#8A8980" # Box divider line and small boxes line color theme[div_line]="#8A8980" # Temperature graph colors theme[temp_start]="#6E915F" theme[temp_mid]="#CC6D00" theme[temp_end]="#D7474B" # CPU graph colors theme[cpu_start]="#6E915F" theme[cpu_mid]="#CC6D00" theme[cpu_end]="#D7474B" # Mem/Disk free meter theme[free_start]="#D7474B" theme[free_mid]="#C84053" theme[free_end]="#FF5D62" # Mem/Disk cached meter theme[cached_start]="#77713F" theme[cached_mid]="#CC6D00" theme[cached_end]="#FF9E3B" # Mem/Disk available meter theme[available_start]="#766b90" theme[available_mid]="#624c83" theme[available_end]="#9fb5c9" # Mem/Disk used meter theme[used_start]="#B5CBD2" theme[used_mid]="#4d699b" theme[used_end]="#4e8ca2" # Download graph colors theme[download_start]="#4d699b" theme[download_mid]="#624c83" theme[download_end]="#766b90" # Upload graph colors theme[upload_start]="#CC6D00" theme[upload_mid]="#E98A00" theme[upload_end]="#D7474B" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#6E915F" theme[process_mid]="#CC6D00" theme[process_end]="#C84053" btop-1.4.5/themes/kanagawa-wave.theme000066400000000000000000000036531506333644200175250ustar00rootroot00000000000000# Bashtop Kanagawa-wave (https://github.com/rebelot/kanagawa.nvim) theme # By: philikarus # Main bg theme[main_bg]="#16161D" # Main text color theme[main_fg]="#dcd7ba" # Title color for boxes theme[title]="#dcd7ba" # Highlight color for keyboard shortcuts theme[hi_fg]="#C34043" # Background color of selected item in processes box theme[selected_bg]="#223249" # Foreground color of selected item in processes box theme[selected_fg]="#dca561" # Color of inactive/disabled text theme[inactive_fg]="#727169" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#7aa89f" # Cpu box outline color theme[cpu_box]="#727169" # Memory/disks box outline color theme[mem_box]="#727169" # Net up/down box outline color theme[net_box]="#727169" # Processes box outline color theme[proc_box]="#727169" # Box divider line and small boxes line color theme[div_line]="#727169" # Temperature graph colors theme[temp_start]="#98BB6C" theme[temp_mid]="#DCA561" theme[temp_end]="#E82424" # CPU graph colors theme[cpu_start]="#98BB6C" theme[cpu_mid]="#DCA561" theme[cpu_end]="#E82424" # Mem/Disk free meter theme[free_start]="#E82424" theme[free_mid]="#C34043" theme[free_end]="#FF5D62" # Mem/Disk cached meter theme[cached_start]="#C0A36E" theme[cached_mid]="#DCA561" theme[cached_end]="#FF9E3B" # Mem/Disk available meter theme[available_start]="#938AA9" theme[available_mid]="#957FBB" theme[available_end]="#9CABCA" # Mem/Disk used meter theme[used_start]="#658594" theme[used_mid]="#7E9CDB" theme[used_end]="#7FB4CA" # Download graph colors theme[download_start]="#7E9CDB" theme[download_mid]="#938AA9" theme[download_end]="#957FBB" # Upload graph colors theme[upload_start]="#DCA561" theme[upload_mid]="#E6C384" theme[upload_end]="#E82424" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#98BB6C" theme[process_mid]="#DCA561" theme[process_end]="#C34043" btop-1.4.5/themes/kyli0x.theme000066400000000000000000000042371506333644200162320ustar00rootroot00000000000000#Bashtop Kyli0x Theme #by Kyli0x # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#222222" # Main text color theme[main_fg]="#e8f6f5" # Title color for boxes theme[title]="#e8f6f5" # Highlight color for keyboard shortcuts theme[hi_fg]="#21d6c9" # Background color of selected item in processes box theme[selected_bg]="#1aaba0" # Foreground color of selected item in processes box theme[selected_fg]="#e8f6f5" # Color of inactive/disabled text theme[inactive_fg]="#5ec4bc" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#ba1a84" # Background color of the percentage meters theme[meter_bg]="#5ec4bc" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#21d6c9" # Cpu box outline color theme[cpu_box]="#d486d4" # Memory/disks box outline color theme[mem_box]="#d486d4" # Net up/down box outline color theme[net_box]="#d486d4" # Processes box outline color theme[proc_box]="#d486d4" # Box divider line and small boxes line color theme[div_line]="#80638e" # Temperature graph colors theme[temp_start]="#21d6c9" theme[temp_mid]="#1aaba0" theme[temp_end]="#5ec4bc" # CPU graph colors theme[cpu_start]="#21d6c9" theme[cpu_mid]="#1aaba0" theme[cpu_end]="#5ec4bc" # Mem/Disk free meter theme[free_start]="#21d6c9" theme[free_mid]="#1aaba0" theme[free_end]="#5ec4bc" # Mem/Disk cached meter theme[cached_start]="#21d6c9" theme[cached_mid]="#1aaba0" theme[cached_end]="#5ec4bc" # Mem/Disk available meter theme[available_start]="#21d6c9" theme[available_mid]="#1aaba0" theme[available_end]="#5ec4bc" # Mem/Disk used meter theme[used_start]="#21d6c9" theme[used_mid]="#1aaba0" theme[used_end]="#5ec4bc" # Download graph colors theme[download_start]="#21d6c9" theme[download_mid]="#1aaba0" theme[download_end]="#5ec4bc" # Upload graph colors theme[upload_start]="#ec95ec" theme[upload_mid]="#1aaba0" theme[upload_end]="#5ec4bc" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#21d6c9" theme[process_mid]="#1aaba0" theme[process_end]="#ba1a84" btop-1.4.5/themes/matcha-dark-sea.theme000066400000000000000000000045131506333644200177310ustar00rootroot00000000000000#Bashtop matcha-dark-sea theme #by TheCynicalTeam # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="" # Main text color theme[main_fg]="#F8F8F2" # Title color for boxes theme[title]="#F8F8F2" # Highlight color for keyboard shortcuts theme[hi_fg]="#2eb398" # Background color of selected item in processes box theme[selected_bg]="#0d493d" # Foreground color of selected item in processes box theme[selected_fg]="#F8F8F2" # Color of inactive/disabled text theme[inactive_fg]="#595647" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#797667" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#33b165" # Cpu box outline color theme[cpu_box]="#75715E" # Memory/disks box outline color theme[mem_box]="#75715E" # Net up/down box outline color theme[net_box]="#75715E" # Processes box outline color theme[proc_box]="#75715E" # Box divider line and small boxes line color theme[div_line]="#595647" # Temperature graph colors theme[temp_start]="#7976B7" theme[temp_mid]="#D8B8B2" theme[temp_end]="#33b165" # CPU graph colors theme[cpu_start]="#33b165" theme[cpu_mid]="#F8F8F2" #2eb398" theme[cpu_end]="#2eb398" # Mem/Disk free meter theme[free_start]="#75715E" theme[free_mid]="#a9c474" theme[free_end]="#e2f5bc" # Mem/Disk cached meter theme[cached_start]="#75715E" theme[cached_mid]="#66D9EF" theme[cached_end]="#aae7f2" # Mem/Disk available meter theme[available_start]="#75715E" theme[available_mid]="#E6DB74" theme[available_end]="#f2ecb6" # Mem/Disk used meter theme[used_start]="#75715E" theme[used_mid]="#2eb398" theme[used_end]="#33b165" # Download graph colors theme[download_start]="#2d2042" theme[download_mid]="#2eb398" theme[download_end]="#33b165" # Upload graph colors theme[upload_start]="#0d493d" theme[upload_mid]="#2eb398" theme[upload_end]="#33b165" btop-1.4.5/themes/monokai.theme000066400000000000000000000045101506333644200164410ustar00rootroot00000000000000#Bashtop monokai theme #by aristocratos # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#060604" # Main text color theme[main_fg]="#F8F8F2" # Title color for boxes theme[title]="#F8F8F2" # Highlight color for keyboard shortcuts theme[hi_fg]="#F92672" # Background color of selected item in processes box theme[selected_bg]="#7a1137" # Foreground color of selected item in processes box theme[selected_fg]="#F8F8F2" # Color of inactive/disabled text theme[inactive_fg]="#595647" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#797667" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#A6E22E" # Cpu box outline color theme[cpu_box]="#75715E" # Memory/disks box outline color theme[mem_box]="#75715E" # Net up/down box outline color theme[net_box]="#75715E" # Processes box outline color theme[proc_box]="#75715E" # Box divider line and small boxes line color theme[div_line]="#595647" # Temperature graph colors theme[temp_start]="#7976B7" theme[temp_mid]="#D8B8B2" theme[temp_end]="#F92672" # CPU graph colors theme[cpu_start]="#A6E22E" theme[cpu_mid]="#F8F8F2" #b05475" theme[cpu_end]="#F92672" # Mem/Disk free meter theme[free_start]="#75715E" theme[free_mid]="#a9c474" theme[free_end]="#e2f5bc" # Mem/Disk cached meter theme[cached_start]="#75715E" theme[cached_mid]="#66D9EF" theme[cached_end]="#aae7f2" # Mem/Disk available meter theme[available_start]="#75715E" theme[available_mid]="#E6DB74" theme[available_end]="#f2ecb6" # Mem/Disk used meter theme[used_start]="#75715E" theme[used_mid]="#F92672" theme[used_end]="#ff87b2" # Download graph colors theme[download_start]="#2d2042" theme[download_mid]="#7352a8" theme[download_end]="#ccaefc" # Upload graph colors theme[upload_start]="#570d33" theme[upload_mid]="#cf277d" theme[upload_end]="#fa91c7" btop-1.4.5/themes/night-owl.theme000066400000000000000000000044161506333644200167210ustar00rootroot00000000000000#Bashtop theme with night-owl colors #by zkourouma # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#011627" # Main text color theme[main_fg]="#d6deeb" # Title color for boxes theme[title]="#ffffff" # Highlight color for keyboard shortcuts theme[hi_fg]="#addb67" # Background color of selected items theme[selected_bg]="#000000" # Foreground color of selected items theme[selected_fg]="#ffeb95" # Color of inactive/disabled text theme[inactive_fg]="#575656" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#585858" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#22da6e" # Cpu box outline color theme[cpu_box]="#ffffff" # Memory/disks box outline color theme[mem_box]="#ffffff" # Net up/down box outline color theme[net_box]="#ffffff" # Processes box outline color theme[proc_box]="#ffffff" # Box divider line and small boxes line color theme[div_line]="#ffffff" # Temperature graph colors theme[temp_start]="#82aaff" theme[temp_mid]="#c792ea" theme[temp_end]="#fb4394" # CPU graph colors theme[cpu_start]="#22da6e" theme[cpu_mid]="#addb67" theme[cpu_end]="#ef5350" # Mem/Disk free meter theme[free_start]="#4e5900" theme[free_mid]="" theme[free_end]="#22da6e" # Mem/Disk cached meter theme[cached_start]="#82aaff" theme[cached_mid]="" theme[cached_end]="#82aaff" # Mem/Disk available meter theme[available_start]="#addb67" theme[available_mid]="" theme[available_end]="#ffeb95" # Mem/Disk used meter theme[used_start]="#ef5350" theme[used_mid]="" theme[used_end]="#ef5350" # Download graph colors theme[download_start]="#3d4070" theme[download_mid]="#6c71c4" theme[download_end]="#a3a8f7" # Upload graph colors theme[upload_start]="#701c45" theme[upload_mid]="#c792ea" theme[upload_end]="#c792ea" btop-1.4.5/themes/nord.theme000066400000000000000000000044101506333644200157450ustar00rootroot00000000000000#Bashtop theme with nord palette (https://www.nordtheme.com) #by Justin Zobel # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#2E3440" # Main text color theme[main_fg]="#D8DEE9" # Title color for boxes theme[title]="#8FBCBB" # Highlight color for keyboard shortcuts theme[hi_fg]="#5E81AC" # Background color of selected item in processes box theme[selected_bg]="#4C566A" # Foreground color of selected item in processes box theme[selected_fg]="#ECEFF4" # Color of inactive/disabled text theme[inactive_fg]="#4C566A" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#5E81AC" # Cpu box outline color theme[cpu_box]="#4C566A" # Memory/disks box outline color theme[mem_box]="#4C566A" # Net up/down box outline color theme[net_box]="#4C566A" # Processes box outline color theme[proc_box]="#4C566A" # Box divider line and small boxes line color theme[div_line]="#4C566A" # Temperature graph colors theme[temp_start]="#81A1C1" theme[temp_mid]="#88C0D0" theme[temp_end]="#ECEFF4" # CPU graph colors theme[cpu_start]="#81A1C1" theme[cpu_mid]="#88C0D0" theme[cpu_end]="#ECEFF4" # Mem/Disk free meter theme[free_start]="#81A1C1" theme[free_mid]="#88C0D0" theme[free_end]="#ECEFF4" # Mem/Disk cached meter theme[cached_start]="#81A1C1" theme[cached_mid]="#88C0D0" theme[cached_end]="#ECEFF4" # Mem/Disk available meter theme[available_start]="#81A1C1" theme[available_mid]="#88C0D0" theme[available_end]="#ECEFF4" # Mem/Disk used meter theme[used_start]="#81A1C1" theme[used_mid]="#88C0D0" theme[used_end]="#ECEFF4" # Download graph colors theme[download_start]="#81A1C1" theme[download_mid]="#88C0D0" theme[download_end]="#ECEFF4" # Upload graph colors theme[upload_start]="#81A1C1" theme[upload_mid]="#88C0D0" theme[upload_end]="#ECEFF4" btop-1.4.5/themes/onedark.theme000066400000000000000000000033351506333644200164330ustar00rootroot00000000000000# Theme: OneDark # By: Vitor Melo # Main bg theme[main_bg]="#282c34" # Main text color theme[main_fg]="#abb2bf" # Title color for boxes theme[title]="#abb2bf" # Highlight color for keyboard shortcuts theme[hi_fg]="#61afef" # Background color of selected item in processes box theme[selected_bg]="#2c313c" # Foreground color of selected item in processes box theme[selected_fg]="#abb2bf" # Color of inactive/disabled text theme[inactive_fg]="#5c6370" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#61afef" # Cpu box outline color theme[cpu_box]="#5c6370" # Memory/disks box outline color theme[mem_box]="#5c6370" # Net up/down box outline color theme[net_box]="#5c6370" # Processes box outline color theme[proc_box]="#5c6370" # Box divider line and small boxes line color theme[div_line]="#5c6370" # Temperature graph colors theme[temp_start]="#98c379" theme[temp_mid]="#e5c07b" theme[temp_end]="#e06c75" # CPU graph colors theme[cpu_start]="#98c379" theme[cpu_mid]="#e5c07b" theme[cpu_end]="#e06c75" # Mem/Disk free meter theme[free_start]="#98c379" theme[free_mid]="#e5c07b" theme[free_end]="#e06c75" # Mem/Disk cached meter theme[cached_start]="#98c379" theme[cached_mid]="#e5c07b" theme[cached_end]="#e06c75" # Mem/Disk available meter theme[available_start]="#98c379" theme[available_mid]="#e5c07b" theme[available_end]="#e06c75" # Mem/Disk used meter theme[used_start]="#98c379" theme[used_mid]="#e5c07b" theme[used_end]="#e06c75" # Download graph colors theme[download_start]="#98c379" theme[download_mid]="#e5c07b" theme[download_end]="#e06c75" # Upload graph colors theme[upload_start]="#98c379" theme[upload_mid]="#e5c07b" theme[upload_end]="#e06c75" btop-1.4.5/themes/paper.theme000066400000000000000000000034671506333644200161250ustar00rootroot00000000000000# Bashtop Paper theme # c/o @s6muel # inspired by @yorickpeterse's vim-paper theme at https://gitlab.com/yorickpeterse/vim-paper # # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#F2EEDE" # Main text color theme[main_fg]="#00" # Title color for boxes theme[title]="#00" # Highlight color for keyboard shortcuts theme[hi_fg]="#CC3E28" # Background color of selected item in processes box theme[selected_bg]="#D8D5C7" # Foreground color of selected item in processes box theme[selected_fg]="#00" # Color of inactive/disabled text theme[inactive_fg]="#d8d5c7" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#00" # Cpu box outline color theme[cpu_box]="#00" # Memory/disks box outline color theme[mem_box]="#00" # Net up/down box outline color theme[net_box]="#00" # Processes box outline color theme[proc_box]="#00" # Box divider line and small boxes line color theme[div_line]="#00" # Temperature graph colors theme[temp_start]="#55" theme[temp_mid]="#00" theme[temp_end]="#CC3E28" # CPU graph colors theme[cpu_start]="#55" theme[cpu_mid]="#00" theme[cpu_end]="#CC3E28" # Mem/Disk free meter theme[free_start]="#216609" theme[free_mid]="" theme[free_end]="#216609" # Mem/Disk cached meter theme[cached_start]="#1e6fcc" theme[cached_mid]="" theme[cached_end]="#1e6fcc" # Mem/Disk available meter theme[available_start]="#216609" theme[available_mid]="" theme[available_end]="#216609" # Mem/Disk used meter theme[used_start]="#CC3E28" theme[used_mid]="" theme[used_end]="#CC3E28" # Download graph colors theme[download_start]="#55" theme[download_mid]="#00" theme[download_end]="#CC3E28" # Upload graph colors theme[upload_start]="#55" theme[upload_mid]="#00" theme[upload_end]="#CC3E28" btop-1.4.5/themes/phoenix-night.theme000066400000000000000000000041461506333644200175720ustar00rootroot00000000000000# Theme: Phoenix Night # By: Firehawke # A combination of: # Base theme colors from Pascal Jaeger's tokyo-night # Graph theme colors from Pete Allebone's HotPurpleTrafficLight # ...basically, I wanted most of Tokyo Night with a significantly more visible graph bar coloration. # Main bg theme[main_bg]="#1a1b26" # Main text color theme[main_fg]="#cfc9c2" # Title color for boxes theme[title]="#cfc9c2" # Highlight color for keyboard shortcuts theme[hi_fg]="#7dcfff" # Background color of selected item in processes box theme[selected_bg]="#414868" # Foreground color of selected item in processes box theme[selected_fg]="#cfc9c2" # Color of inactive/disabled text theme[inactive_fg]="#565f89" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#7dcfff" # Cpu box outline color theme[cpu_box]="#565f89" # Memory/disks box outline color theme[mem_box]="#565f89" # Net up/down box outline color theme[net_box]="#565f89" # Processes box outline color theme[proc_box]="#565f89" # Box divider line and small boxes line color theme[div_line]="#565f89" # Temperature graph colors theme[temp_start]="#00ff00" theme[temp_mid]="#ff9933" theme[temp_end]="#ff0000" # CPU graph colors theme[cpu_start]="#00ff00" theme[cpu_mid]="#ccff66" theme[cpu_end]="#ff0000" # Mem/Disk free meter theme[free_end]="#00ff00" theme[free_mid]="#ccff66" theme[free_start]="#ff0000" # Mem/Disk cached meter theme[cached_start]="#00ff00" theme[cached_mid]="#ccff66" theme[cached_end]="#ff0000" # Mem/Disk available meter theme[available_start]="#ff0000" theme[available_mid]="#ccff66" theme[available_end]="#00ff00" # Mem/Disk used meter theme[used_start]="#00ff00" theme[used_mid]="#ccff66" theme[used_end]="#ff0000" # Download graph colors theme[download_start]="#00ff00" theme[download_mid]="#ff9933" theme[download_end]="#ff0000" # Upload graph colors theme[upload_start]="#00ff00" theme[upload_mid]="#ff9933" theme[upload_end]="#ff0000" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#9999ff" theme[process_mid]="#4d4dff" theme[process_end]="#a64dff" btop-1.4.5/themes/solarized_dark.theme000066400000000000000000000042171506333644200200050ustar00rootroot00000000000000#Bashtop solarized theme #by aristocratos # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#002b36" # Main text color theme[main_fg]="#eee8d5" # Title color for boxes theme[title]="#fdf6e3" # Highlight color for keyboard shortcuts theme[hi_fg]="#b58900" # Background color of selected items theme[selected_bg]="#073642" # Foreground color of selected items theme[selected_fg]="#d6a200" # Color of inactive/disabled text theme[inactive_fg]="#073642" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#bad600" # Cpu box outline color theme[cpu_box]="#586e75" # Memory/disks box outline color theme[mem_box]="#586e75" # Net up/down box outline color theme[net_box]="#586e75" # Processes box outline color theme[proc_box]="#586e75" # Box divider line and small boxes line color theme[div_line]="#586e75" # Temperature graph colors theme[temp_start]="#268bd2" theme[temp_mid]="#ccb5f7" theme[temp_end]="#fc5378" # CPU graph colors theme[cpu_start]="#adc700" theme[cpu_mid]="#d6a200" theme[cpu_end]="#e65317" # Mem/Disk free meter theme[free_start]="#4e5900" theme[free_mid]="" theme[free_end]="#bad600" # Mem/Disk cached meter theme[cached_start]="#114061" theme[cached_mid]="" theme[cached_end]="#268bd2" # Mem/Disk available meter theme[available_start]="#705500" theme[available_mid]="" theme[available_end]="#edb400" # Mem/Disk used meter theme[used_start]="#6e1718" theme[used_mid]="" theme[used_end]="#e02f30" # Download graph colors theme[download_start]="#3d4070" theme[download_mid]="#6c71c4" theme[download_end]="#a3a8f7" # Upload graph colors theme[upload_start]="#701c45" theme[upload_mid]="#d33682" theme[upload_end]="#f56caf"btop-1.4.5/themes/solarized_light.theme000066400000000000000000000042411506333644200201700ustar00rootroot00000000000000#solarized_light theme #modified from solarized_dark theme # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#fdf6e3" # Main text color theme[main_fg]="#586e75" # Title color for boxes theme[title]="#002b36" # Highlight color for keyboard shortcuts theme[hi_fg]="#b58900" # Background color of selected items theme[selected_bg]="#eee8d5" # Foreground color of selected items theme[selected_fg]="#b58900" # Color of inactive/disabled text theme[inactive_fg]="#eee8d5" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#d33682" # Cpu box outline color theme[cpu_box]="#93a1a1" # Memory/disks box outline color theme[mem_box]="#93a1a1" # Net up/down box outline color theme[net_box]="#93a1a1" # Processes box outline color theme[proc_box]="#93a1a1" # Box divider line and small boxes line color theme[div_line]="#93a1a1" # Temperature graph colors theme[temp_start]="#268bd2" theme[temp_mid]="#ccb5f7" theme[temp_end]="#fc5378" # CPU graph colors theme[cpu_start]="#adc700" theme[cpu_mid]="#d6a200" theme[cpu_end]="#e65317" # Mem/Disk free meter theme[free_start]="#4e5900" theme[free_mid]="" theme[free_end]="#bad600" # Mem/Disk cached meter theme[cached_start]="#114061" theme[cached_mid]="" theme[cached_end]="#268bd2" # Mem/Disk available meter theme[available_start]="#705500" theme[available_mid]="" theme[available_end]="#edb400" # Mem/Disk used meter theme[used_start]="#6e1718" theme[used_mid]="" theme[used_end]="#e02f30" # Download graph colors theme[download_start]="#3d4070" theme[download_mid]="#6c71c4" theme[download_end]="#a3a8f7" # Upload graph colors theme[upload_start]="#701c45" theme[upload_mid]="#d33682" theme[upload_end]="#f56caf" btop-1.4.5/themes/tokyo-night.theme000066400000000000000000000033441506333644200172640ustar00rootroot00000000000000# Theme: tokyo-night # By: Pascal Jaeger # Main bg theme[main_bg]="#1a1b26" # Main text color theme[main_fg]="#cfc9c2" # Title color for boxes theme[title]="#cfc9c2" # Highlight color for keyboard shortcuts theme[hi_fg]="#7dcfff" # Background color of selected item in processes box theme[selected_bg]="#414868" # Foreground color of selected item in processes box theme[selected_fg]="#cfc9c2" # Color of inactive/disabled text theme[inactive_fg]="#565f89" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#7dcfff" # Cpu box outline color theme[cpu_box]="#565f89" # Memory/disks box outline color theme[mem_box]="#565f89" # Net up/down box outline color theme[net_box]="#565f89" # Processes box outline color theme[proc_box]="#565f89" # Box divider line and small boxes line color theme[div_line]="#565f89" # Temperature graph colors theme[temp_start]="#9ece6a" theme[temp_mid]="#e0af68" theme[temp_end]="#f7768e" # CPU graph colors theme[cpu_start]="#9ece6a" theme[cpu_mid]="#e0af68" theme[cpu_end]="#f7768e" # Mem/Disk free meter theme[free_start]="#9ece6a" theme[free_mid]="#e0af68" theme[free_end]="#f7768e" # Mem/Disk cached meter theme[cached_start]="#9ece6a" theme[cached_mid]="#e0af68" theme[cached_end]="#f7768e" # Mem/Disk available meter theme[available_start]="#9ece6a" theme[available_mid]="#e0af68" theme[available_end]="#f7768e" # Mem/Disk used meter theme[used_start]="#9ece6a" theme[used_mid]="#e0af68" theme[used_end]="#f7768e" # Download graph colors theme[download_start]="#9ece6a" theme[download_mid]="#e0af68" theme[download_end]="#f7768e" # Upload graph colors theme[upload_start]="#9ece6a" theme[upload_mid]="#e0af68" theme[upload_end]="#f7768e" btop-1.4.5/themes/tokyo-storm.theme000066400000000000000000000033441506333644200173170ustar00rootroot00000000000000# Theme: tokyo-storm # By: Pascal Jaeger # Main bg theme[main_bg]="#24283b" # Main text color theme[main_fg]="#cfc9c2" # Title color for boxes theme[title]="#cfc9c2" # Highlight color for keyboard shortcuts theme[hi_fg]="#7dcfff" # Background color of selected item in processes box theme[selected_bg]="#414868" # Foreground color of selected item in processes box theme[selected_fg]="#cfc9c2" # Color of inactive/disabled text theme[inactive_fg]="#565f89" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#7dcfff" # Cpu box outline color theme[cpu_box]="#565f89" # Memory/disks box outline color theme[mem_box]="#565f89" # Net up/down box outline color theme[net_box]="#565f89" # Processes box outline color theme[proc_box]="#565f89" # Box divider line and small boxes line color theme[div_line]="#565f89" # Temperature graph colors theme[temp_start]="#9ece6a" theme[temp_mid]="#e0af68" theme[temp_end]="#f7768e" # CPU graph colors theme[cpu_start]="#9ece6a" theme[cpu_mid]="#e0af68" theme[cpu_end]="#f7768e" # Mem/Disk free meter theme[free_start]="#9ece6a" theme[free_mid]="#e0af68" theme[free_end]="#f7768e" # Mem/Disk cached meter theme[cached_start]="#9ece6a" theme[cached_mid]="#e0af68" theme[cached_end]="#f7768e" # Mem/Disk available meter theme[available_start]="#9ece6a" theme[available_mid]="#e0af68" theme[available_end]="#f7768e" # Mem/Disk used meter theme[used_start]="#9ece6a" theme[used_mid]="#e0af68" theme[used_end]="#f7768e" # Download graph colors theme[download_start]="#9ece6a" theme[download_mid]="#e0af68" theme[download_end]="#f7768e" # Upload graph colors theme[upload_start]="#9ece6a" theme[upload_mid]="#e0af68" theme[upload_end]="#f7768e" btop-1.4.5/themes/tomorrow-night.theme000066400000000000000000000043621506333644200200100ustar00rootroot00000000000000#Nord theme but using the Tomorrow Night palette #by Appuchia # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#1d1f21" # Main text color theme[main_fg]="#c5c8c6" # Title color for boxes theme[title]="#c5c8c6" # Highlight color for keyboard shortcuts theme[hi_fg]="#81beb7" # Background color of selected item in processes box theme[selected_bg]="#282a2e" # Foreground color of selected item in processes box theme[selected_fg]="#c5c8c6" # Color of inactive/disabled text theme[inactive_fg]="#373b41" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#969896" # Cpu box outline color theme[cpu_box]="#81a2be" # Memory/disks box outline color theme[mem_box]="#81a2be" # Net up/down box outline color theme[net_box]="#81a2be" # Processes box outline color theme[proc_box]="#81a2be" # Box divider line and small boxes line color theme[div_line]="#81a2be" # Temperature graph colors theme[temp_start]="#b5bd68" theme[temp_mid]="#f0c674" theme[temp_end]="#cc6666" # CPU graph colors theme[cpu_start]="#b5bd68" theme[cpu_mid]="#f0c674" theme[cpu_end]="#cc6666" # Mem/Disk free meter theme[free_start]="#b5bd68" theme[free_mid]="#f0c674" theme[free_end]="#cc6666" # Mem/Disk cached meter theme[cached_start]="#b5bd68" theme[cached_mid]="#f0c674" theme[cached_end]="#cc6666" # Mem/Disk available meter theme[available_start]="#b5bd68" theme[available_mid]="#f0c674" theme[available_end]="#cc6666" # Mem/Disk used meter theme[used_start]="#b5bd68" theme[used_mid]="#f0c674" theme[used_end]="#cc6666" # Download graph colors theme[download_start]="#b5bd68" theme[download_mid]="#f0c674" theme[download_end]="#cc6666" # Upload graph colors theme[upload_start]="#b5bd68" theme[upload_mid]="#f0c674" theme[upload_end]="#cc6666" btop-1.4.5/themes/whiteout.theme000066400000000000000000000042641506333644200166620ustar00rootroot00000000000000#Bashtop "whiteout" theme #by aristocratos # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#ff" # Main text color theme[main_fg]="#30" # Title color for boxes theme[title]="#10" # Highlight color for keyboard shortcuts theme[hi_fg]="#284d75" # Background color of selected item in processes box theme[selected_bg]="#15283d" # Foreground color of selected item in processes box theme[selected_fg]="#ff" # Color of inactive/disabled text theme[inactive_fg]="#dd" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#03521d" # Cpu box outline color theme[cpu_box]="#1a361e" # Memory/disks box outline color theme[mem_box]="#3d3c14" # Net up/down box outline color theme[net_box]="#1a1742" # Processes box outline color theme[proc_box]="#3b1515" # Box divider line and small boxes line color theme[div_line]="#80" # Temperature graph colors theme[temp_start]="#184567" theme[temp_mid]="#122c87" theme[temp_end]="#9e0061" # CPU graph colors theme[cpu_start]="#0b8e44" theme[cpu_mid]="#a49104" theme[cpu_end]="#8d0202" # Mem/Disk free meter theme[free_start]="#b0d090" theme[free_mid]="#70ba26" theme[free_end]="#496600" # Mem/Disk cached meter theme[cached_start]="#26c5ff" theme[cached_mid]="#74e6fc" theme[cached_end]="#0b1a29" # Mem/Disk available meter theme[available_start]="#ffb814" theme[available_mid]="#ffd77a" theme[available_end]="#292107" # Mem/Disk used meter theme[used_start]="#ff4769" theme[used_mid]="#d9626d" theme[used_end]="#3b1f1c" # Download graph colors theme[download_start]="#8d82de" theme[download_mid]="#413786" theme[download_end]="#130f29" # Upload graph colors theme[upload_start]="#f590f9" theme[upload_mid]="#722e76" theme[upload_end]="#2b062d"