Files
boc/aamos-ledger-rust/target/debug/deps/libunicode_ident-97a90cd3b511d6df.rlib
T

59 lines
54 KiB
Plaintext
Raw Normal View History

!<arch>
/ 0 0 0 0 576 `
_ZN13unicode_ident12is_xid_start17h105d65f2da70396fE_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$3get17hae1e9c51c2dee832E_ZN4core6option15Option$LT$T$GT$9unwrap_or17h59050ecb54513e1eE_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$13get_unchecked17h2ae3e60199bd88caE_ZN13unicode_ident15is_xid_continue17h768a47ee3b063953E_ZN75_$LT$usize$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$13get_unchecked17h55189d61464939e3E_ZN75_$LT$usize$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$3get17h0b75bc2c0fb6c8e0E// 76 `
unicode_ident-97a90cd3b511d6df.unicode_ident.112dc486b320e36b-cgu.0.rcgu.o/
lib.rmeta/ 0 0 0 644 33464 `
ELF·8@@GNUÀrust
ð~#rustc 1.96.0 (ac68faa20 2026-05-25)ÁíàÄTËŸ ÜJîÄ)'ß\¥!-3d1337db07d0b3aeÁ¤°ð ¾ä-±($²ï=©Ã-7e98a21bfd32b0edÁíZEROÁ is_xid_startÁis_xid_continueÁtablesÁAlign8Á
¥ˆAlign64Á
¥ˆUNICODE_VERSIONÁ ASCII_STARTÁASCII_CONTINUEÁCHUNKÁ
TRIE_STARTÁ 
TRIE_CONTINUEÁ LEAFÁ T  Ó Óüå5ÓÓÓd€*þÿÿþÿÿ!0x7fffffe07fffffe0000000000000000Áÿþÿÿ‡þÿÿÁ!0x7fffffe87fffffe03ff000000000000Á@64Á±411Á±1793Á±7808ÁÜ÷ ¥)ûˆ V×Ìoé`4wbipä¸ &šˆ ¢©–– _fm
íº|Ý\ ât‚] Ð\’] ÷,Ÿ] °$¦]˜l¬] ƒT»]
üÆdü¦£ [![github]](https://github.com/dtolnay/unicode-ident)&ensp;[![crates-io]](https://crates.io/crates/unicode-ident)&ensp;[![docs-rs]](https://docs.rs/unicode-ident)Á§úü«jg [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=githubÁü–nk [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rustÁü…mj [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rsÁóú <br>Áúü„NK Implementation of [Unicode Standard Annex #31][tr31] for determining whichÁüÓ@= `char` values are valid in programming language identifiers.Áúü˜1. [tr31]: https://www.unicode.org/reports/tr31/ÁÊúüÎNK This crate is a better optimized implementation of the older `unicode-xid`ÁüLI crate. This crate uses less static storage, and is able to classify bothÁüêPM ASCII and non-ASCII codepoints with better performance, 6&times; faster thanÁ”» `unicode-xid`.ÁÎúÐ
Ûúüß  ## Comparison of performanceÁúü„JG The following table shows a comparison between five Unicode identifierÁ¤Ï implementations.Áäúüè$! - `unicode-ident` is this crate;Áü IF - [`unicode-xid`] is a widely used crate run by the "unicode-rs" org;Áü× C@ - `ucd-trie` and `fst` are two data structures supported by theÁä›
 [`ucd-generate`] tool;Áü¸
=: - [`roaring`] is a Rust implementation of Roaring bitmap.Áö
úüú
PM The *static storage* column shows the total size of `static` tables that theÁüË =: crate bakes into your binary, measured in 1000s of bytes.Á úü JG The remaining columns show the **cost per call** to evaluate whether aÁüØ GD single `char` has the XID\_Start or XID\_Continue Unicode property,Áü 
MJ comparing across different ratios of ASCII to non-ASCII codepoints in theÁ
 input data.Áþ
úü‚>; [`unicode-xid`]: https://github.com/unicode-rs/unicode-xidÁüÁ@= [`ucd-generate`]: https://github.com/BurntSushi/ucd-generateÁü‚<9 [`roaring`]: https://github.com/RoaringBitmap/roaring-rsÁ¿úüÃA> | | static storage | 0% nonascii | 1% | 10% | 100% nonascii |Áì… |---|---|---|---|---|---|Áü£LI | **`unicode-ident`** | 10.3 K | 0.41 ns | 0.44 ns | 0.44 ns | 0.93 ns |ÁüðJG | **`unicode-xid`** | 12.0 K | 2.43 ns | 2.50 ns | 2.85 ns | 8.65 ns |Áü»GD | **`ucd-trie`** | 10.4 K | 1.28 ns | 1.25 ns | 1.20 ns | 1.97 ns |ÁüƒA> | **`fst`** | 144 K | 50.9 ns | 51.0 ns | 48.5 ns | 26.7 ns |ÁüÅFC | **`roaring`** | 66.1 K | 4.28 ns | 4.22 ns | 4.25 ns | 4.61 ns |ÁŒúüNK Source code for the benchmark is provided in the *bench* directory of thisÁüß:7 repo and may be repeated by running `cargo criterion`.ÁšúÐ
§úü«$! ## Comparison of data structuresÁÐú¤Ô #### unicode-xidÁéúüíOL They use a sorted array of character ranges, and do a binary search to lookÁü½B? up whether a given character lands inside one of those ranges.Áú\„ ```rustÁü" # const _: &str = stringify! {Áü³63 static XID_Continue_table: [(char, char); 763] = [Áüê%" ('\u{30}', '\u{39}'), // 0-9Áü%" ('\u{41}', '\u{5a}'), // A-ZÁ # "Á …Á˜%üÒ# ('\u{e0100}', '\u{e01ef}'),Á ];Á # };Á<† ```ÁŽúü’LI The static storage used by this data structure scales with the number ofÁüßLI contiguous ranges of identifier codepoints in Unicode. Every table entryÁü¬LI consumes 8 bytes, because it consists of a pair of 32-bit `char` values.ÁùúüýIF In some ranges of the Unicode codepoint space, this is quite a sparseÁüÇKH representation &ndash; there are some ranges where tens of thousands ofÁü“MJ adjacent codepoints are all valid identifier characters. In other places,ÁüáLI the representation is quite inefficient. A characater like `µ` (U+00B5)Áü®LI which is surrounded by non-identifier codepoints consumes 64 bits in theÁüû:7 table, while it would be just 1 bit in a dense bitmap.ÁúüºNK On a system with 64-byte cache lines, binary searching the table touches 7Áü‰FC cache lines on average. Each cache line fits only 8 table entries.ÁüÐNK Additionally, the branching performed during the binary search is probablyÁüŸ1. mostly unpredictable to the branch predictor.ÁÑúüÕMJ Overall, the crate ends up being about 6&times; slower on non-ASCII inputÁü£ " compared to the fastest crate.ÁÆ úüÊ NK A potential improvement would be to pack the table entries more compactly.Áü™!OL Rust's `char` type is a 21-bit integer padded to 32 bits, which means everyÁüé!LI table entry is holding 22 bits of wasted space, adding up to 3.9 K. TheyÁü¶"MJ could instead fit every table entry into 6 bytes, leaving out some of theÁü„#PM padding, for a 25% improvement in space used. With some cleverness it may beÁüÕ#KH possible to fit in 5 bytes or even 4 bytes by storing a low char and anÁü¡$NK extent, instead of low char and high char. I don't expect that performanceÁüð$PM would improve much but this could be the most efficient for space across allÁüÁ%30 the libraries, needing only about 7 K to store.Áõ%úŒù% ####
ÿÿÿôÎ\lò\  33FFYYnnƒƒ|É]$Ð]Óüž^%üß]>; Whether the character has the Unicode property XID\_Start.Ád¥^
chÁ²^üÂa(ü€aA> Whether the character has the Unicode property XID\_Continue.Á|Éa
ÐwÙaT¹\¦
skipÁlª\„¨\4½\4‰¥Íì ²V×Ìoé`4w²S²
acd“¥ªz Ò­¢©–– ­J­
acüå'Šüœ"\­Áüä%Áì°±üÕ/ûˆ V×Ìoé`4wÓ± 
!%+/26:>¥CGKïïïïïïïïïïïïPïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïORVZïïïïïïïïïïïïïïïïïïïïï0î^bdhlpðtvz~‚†ŠŽ’–šžïA¢åïï¤ïïïïïï)ï©Õï®Ë²ïïïïïïïïïïïïïﶬ&¸»ÄƹÍÑØÜàäïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïçïïïïïïïïéïïïïïïïïïïëïïïïïïïïïïïïïïíïÖïïïïïïïïïïïïïïïïïïïïïïïïïòÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ±üŸ3ûˆ V×Ìoé`4wÓ±ˆ #(-/48<@¥EIMïïïïïïïïïïïïPïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïOTX\ïïïïïïïïïïïïïïïïïïïïï0î`bfjnrðtx|€„ˆŒ”˜œ ïA¢åïï§ïïïïïï)ï©Òï°Â´ïïïïïïïïïïïïïﶬ&¸¾«¿¼ÁÄÈʹÏÔÚÞâäªïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïçïïïïïïïïéïïïïïïïïïïëïïïïïïïïïïïïïïíïÖïïïïïïïïïïïïïïïïïïïïïïïïïòÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿˆ±ü­q+$¿qšˆ ¢©–– Ó±€=ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÃÿP߸@×ÿÿûÿÿÿÿÿÿÿÿÿ¿ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÃÿPÿÿÿÿÿÿÿÿÿÿÿÿÿÿ߸À×ÿÿûÿÿÿ
ÿÿûÿÿÿÿÀ½ÿ¿ÿÿÿÿÿÿÿÿÿïŸùÿÿýíûŸ9àÏÿKÿÿÿÿ¿ÿ¥÷ÿÿÿÿÿÿÿÿÿÿÿÿ°ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÃÿÿÿÿÿÿÿÿ¿ÿÿÿÿÿÿÿ?ÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿçÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿòoÿÿÿÿüÿÿÿÿ
ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿòoÿÿÿ¿ùÿÿüÿÿÿÿÿüøÿÿÿÿðÿÿÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ#ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýÿÿÿüÿÿÿûÿÿÿÿ@¿ýÿÿÿÿÿÿÿÿÿýÿÿÿÿÿÿüÿÿÿüÿÿþûÿÿÿÿ´ÿÿ¿ýÿÿÿûÿÿÿÿÿÿÿÿÿôÿýÿÿÿÿÿÿÿýÿÿÿÿÇÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ~ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ??ÿÿÿÿ??ÿªÿÿÿ?ÿÿÿÿÿÿß_ÜÏÿÜÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿïoÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿøÿÿàÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿøÿÿàÿÿÿÿÿÿÿÿÿÿÿÿÿùÿÿÿÿÿÿÿÿÿÿÿøÿ |ÿÿÿÿÿÿÿÿÿÿÿùÿÿÿÿÿÿÿÿÿÿÿ‡ÿÿÿÿÿÿÿ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿàÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿàãøç<ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿcÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿßÿÿÿÿÿÿÿÿßdÞÿëïÿÿÿÿÿÿÿ¿çßßÿÿÿ{_üýÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿýÿÿ÷ÿÿÿ÷ÿÿßÿÿÿßÿÿÿÿÿÿÿÿýÿÿÿýÿÿ÷ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿýÿÿ÷ÿÿÿ÷ÿÿßÿÿÿßÿÿÿÿÿÿÿÿýÿÿÿýÿÿ÷Ïÿÿÿÿÿÿÿÿÿÿÿÿøÿÿÿÿÿ øþÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿ€?@ÿÿùÛÿÿÿÿÿÿÿ?ÿÿÿÿÿÿ?ÿCÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿ·?Àoÿÿÿÿÿÿ?Àoÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿïÿÿÿ–þ÷
„ê–ª–÷÷^ÿûÿîûÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿ¿ÿÿÿÿÿýÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€=$Òq±K*https://github.com/BurntSushi/ucd-generateÁroaringÁ+https://github.com/RoaringBitmap/roaring-rsÁ\https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=githubÁdocs-rsÁhttps://docs.rs/unicode-identÁUnicode Standard Annex #31Á!https://github.com/BurntSushi/fstÁRoaring BitmapÁ https://roaringbitmap.org/about/Á ucd-generateÁîÏÐ^https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rsÁÙÐ&https://crates.io/crates/unicode-identÁºÑÆÑfinite state transducerÁ‡Ò­Ò)https://github.com/unicode-rs/unicode-xidÁåÒîÏ]https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rustÁ‚Ó crates-ioÁëÓºÑÙÐ,https://github.com/rust-lang/rust/pull/33098Á¢Ô‡Ò unicode-xidÁÊÔåÒ!https://crates.io/crates/croaringÁ„Õ(https://github.com/dtolnay/unicode-identÁìÕëÓ‚Órust-lang/rust#33098ÁŒÖ¢Ô%https://www.unicode.org/reports/tr31/ÁÉÖÊÔcroaringÁåÖgithubÁ‘×ìÕ„Õ©ÐÐ׌ÖèÑõ×ÉÖÀҫؾØåÖ‘×ЩÐÐׯÑèÑõ×­ÒÀҫؾØkã ³†Ä-1“¿–j¨6xâhš~$ÏÚ%±zhâ‘X­…Âã÷‹GªÌ˜œÔ玂·¡EÔgÍ:5©
8b=õÝg%3,w†=ó9VeÕìû38^Äjg‰3¤9¸½qBÄžMDò“Ó€ý‰ì>Ï*Íó-%x”¸-jVU«CŠ pAW­PBs¾‰ÆT„=[,aÿ3}m·‹ì¡p0ã5,ø!W¼véºÁ¤÷£x¶scßóß‚€òš8~·”0Ô¿ï̹UÄ6Š0‚ÁÎä˜ÎÌÖŸÔyÀÌq3»''G1ÒS¨t)Z0n µÿèZû3AIÛEoUº™FHÖ¡Ó^:šó-;[;_<<'=<=Ï=>#>8>@öHZ:} <Ó<{= ' '    Y:D;º;?<{<<õ<)=B==Ñ=ê=þ=>'>O>¢@
I•ñ:÷:ú:;; ;;;;#;);V;Ø;[<ˆ<Ý<=#=9=…=¾=Ë=á=õ=
>>3>w@†@âHñHÝgô:þ:;;;; ;&;-;£;(<w<<à<='=>=ˆ=À=Ï=æ=ú=>#>8>@öHL;È;M<§< = =3=X=±=È=Û=ñ=>>/>W>@ª@ìHIçgF;Â;G<”<==+=E=©=Â=Ó=ë=>>)>Q>{@¤@æHIágN;Ê;O<¹<=7=a=·=ß=ó=>>1>Y>ƒ@¬@îHIég»;@<<D=»;@<Ô<ø<|= =1;§;,<â<Š=<>@úH"=Ê=ÿ}».j¦»Ñè|÷-
=µ=&C³ÈÞõ*Gƒ·ÌâùÎ;S<P;—>ê@UIW:u<<<=É<q=»<c=ˆšž¢¦ª®²ÁÔê÷$(/6L^s¨¬·Ì<t=ìg…@ðHëg 
€tÓ±üsÓ±²T Ó¡kÓŸkÓ"%¦ kã ³†Ä-«XÁò™W¢„
rustfmt::skipÁo8[kã ³†Ä-ñL7e«Rßþtt†t§tÌt—t¼tîtðODHT !@·ÞÖŸÔyÀÌq3cßóß‚€ò‰ÆT„=[,ï̹UÄ6Š0kã ³†Ä-»''G1ÒSAIÛEoUºÓ€ý‰ì>Ï
5©
8b…Âã÷‹GªÌqBÄžMDò“ ˜œÔ玂·¡p0ã5,FHÖ¡Ó š8~·”0Ô¿-jVU«C1“¿j¨6¨t)Z0n W›­PBs¾‚ÁÎä˜ÎÌìû38^Äj
%±zhâ‘X­Š pAg‰3¤9¸½ =õÝg%3,w*Íó-%x”¸¡EÔgÍ:µÿèZû3aÿ3}m·‹ìø!W¼véºÁ¤÷£x¶s†=ó9VeÕ xâhš~$ÏÚyÿÿ)]g1fÿI[ÿiÿÿ_!P_ÿÿÿÿ5ÿÿÿV ^;\?ÿÿÿÿvÿÿÿÿÿÿÿÿ`ÿjÿÿÿÿmÿyÿÿ)]g1fÿI[ÿc/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rsÁU/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24Ác/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rsÁ 1[ÕíŽ?-¼_µf ‰ï‰ïQ@3+,6HK$;dddddddddddddddddddddddddF?dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd
8dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd·ºÌ?!-cÊþ`/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rsÁU/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24Á`/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rsÁ J¥ž^Ÿ¨BçLÅ ×MÛátÇdÇd™§kon OA2OMQ !K%JD>Q>KHN?A=BMKHBGO; %PC #7&& $ MMMJLNMM;OGO2N#OPMNQLOQ4LAI **&*%&QLONPJQ3OPGON,PQ'QMQONP
MKN#-?NNLO'IE7QQJJJPQNQ#4PP(QFFPP9 5 ¡¤
QNEOOQPMLJ;NHOON<PJ @
  (Z?(5MGQB+8 &GQÆ¡o«CßKatð†4U|&¼„xs|aarch64-unknown-linux-gnuÁžìëÞ¥û¸sÜMÓçr‚
unicode_identÁ-97a90cd3b511d6dfÁkã ³†Ä-»ýRÑØ!ˆ `-!< !!@ B@!!B!BB? *@,!0B0*!!BB* @((!(B(!BÅÚrust-end-file.note.gnu.property.shstrtab.strtab.symtab.rmeta@ .`ƒ€&è€5/0 0 0 0 644 21312 `
ELF·ÀG@@.ÿÑý{©ýÑè* #Ѩƒ¸7¨ƒ_¸ €R Éš €Réù Éš‘h3€Rá*!”ê@9é*(}Ê›)}ª›©ø¨µ ¨ƒ_¸è ùêªñè'ŸIñé'ŸJñ7T¨_øI€R Éš¨ƒ_¸
€R Êš
€Rë
*
ËšJ} 
ë(‹èù ëT”âЃRá*c@9蹨ƒ_¸
€R Ê)}
 k à¹!”é@¹èŸ¨ó8”¨ó_8ý{C©ÿ‘À_Öë @ùêªm@’(€Rì*€R®ñ 
ëˆ!Íš‰%ÉšO!Íš)ªŒ!Κ®ñ1Šš­ñ)1Œšk@òK‰šég²HŠ) Š
Ê)
Ê ªñ蟨ó8ßÿÿ”ÿÑý{©ýÑè* #Ѩƒ¸7¨ƒ_¸ €R Éš €Réù Éš‘(à€Rá*!”ê@9é*(}Ê›)}ª›©ø¨µ ¨ƒ_¸è ùêªñè'ŸIñé'ŸJñ7V¨_øI€R Éš¨ƒ_¸