<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/117979>117979</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
An error occurred while performing AST parsing on the line `string fileName = picturePath;`.
</td>
</tr>
<tr>
<th>Labels</th>
<td>
new issue
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
ljtodo
</td>
</tr>
</table>
<pre>
Maybe the implicit construct semantics of C++ are not supported, and ClangIR may not properly parse implicitly called constructors, causing problems in handling default parameters or lvalue operations called by implicit constructors.
https://godbolt.org/
C++ source:
```C++
#include <iostream>
#include <fstream>
#include <cstring>
#include <map>
#include <math.h>
using namespace std;
size_t pictureDataSize = 0;
void *pictureHostData;
void *pictureDeviceData;
void ReadPictureTotHost(const char *picturePath)
{
string fileName = picturePath;
ifstream binFile(fileName, ifstream::binary);
binFile.seekg(0, binFile.end);
pictureDataSize = binFile.tellg();
binFile.seekg(0, binFile.beg);
binFile.read((char*)pictureHostData, pictureDataSize);
binFile.close();
}
```
the output:
```shell
clang version 20.0.0git (https://github.com/llvm/clangir.git b414f2b7d8b8b97b626d5b0b2bf448a3f61d39ff)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /opt/compiler-explorer/clang-clangir-trunk-20241108/bin
Build config: +assertions
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/11
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/11
Candidate multilib: .;@m64
Candidate multilib: 32;@m32
Candidate multilib: x32;@mx32
Selected multilib: .;@m64
(in-process)
"/opt/compiler-explorer/clang-clangir-trunk-20241108/bin/clang-20" -cc1 -triple x86_64-unknown-linux-gnu -S -disable-free -clear-ast-before-backend -main-file-name example.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -fno-verbose-asm -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/app -v -fcoverage-compilation-dir=/app -resource-dir /opt/compiler-explorer/clang-clangir-trunk-20241108/lib/clang/20 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/x86_64-linux-gnu/c++/11 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/backward -internal-isystem /opt/compiler-explorer/clang-clangir-trunk-20241108/lib/clang/20/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdeprecated-macro -ferror-limit 19 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fcolor-diagnostics -fclangir -emit-cir -mllvm --x86-asm-syntax=intel -mmlir --mlir-print-ir-before-all -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /app/output.s -x c++ <source>
clang -cc1 version 20.0.0git based upon LLVM 20.0.0git default target x86_64-unknown-linux-gnu
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"
ignoring nonexistent directory "/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/x86_64-linux-gnu/c++/11
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/backward
/opt/compiler-explorer/clang-clangir-trunk-20241108/lib/clang/20/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
loc("<source>":14:21): error: l-value not implemented for 'CXXDefaultArgExpr'
clang++: /root/llvm-project/clang/lib/CIR/CodeGen/CIRGenExpr.cpp:2548: cir::LValue cir::CIRGenFunction::buildLValue(const clang::Expr*): Assertion `0 && "not implemented"' failed.
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace, preprocessed source, and associated run script.
Stack dump:
0. Program arguments: /opt/compiler-explorer/clang-clangir-trunk/bin/clang++ -gdwarf-4 -g -o /app/output.s -mllvm --x86-asm-syntax=intel -fno-verbose-asm -S -Xclang -fclangir -fcolor-diagnostics -fno-crash-diagnostics -Xclang -emit-cir -v -mmlir --mlir-print-ir-before-all <source>
1. <eof> parser at end of file
2. <source>:12:6: LLVM IR generation of declaration 'ReadPictureTotHost'
#0 0x0000000002bd8cf8 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x2bd8cf8)
#1 0x0000000002bd69fc llvm::sys::CleanupOnSignal(unsigned long) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x2bd69fc)
#2 0x0000000002b2c508 CrashRecoverySignalHandler(int) CrashRecoveryContext.cpp:0:0
#3 0x000077bb98442520 (/lib/x86_64-linux-gnu/libc.so.6+0x42520)
#4 0x000077bb984969fc pthread_kill (/lib/x86_64-linux-gnu/libc.so.6+0x969fc)
#5 0x000077bb98442476 gsignal (/lib/x86_64-linux-gnu/libc.so.6+0x42476)
#6 0x000077bb984287f3 abort (/lib/x86_64-linux-gnu/libc.so.6+0x287f3)
#7 0x000077bb9842871b (/lib/x86_64-linux-gnu/libc.so.6+0x2871b)
#8 0x000077bb98439e96 (/lib/x86_64-linux-gnu/libc.so.6+0x39e96)
#9 0x00000000042ac60d cir::CIRGenFunction::buildLValue(clang::Expr const*) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x42ac60d)
#10 0x00000000042ae33b cir::CIRGenFunction::buildReferenceBindingToExpr(clang::Expr const*) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x42ae33b)
#11 0x00000000042797ed cir::CIRGenFunction::buildCallArg(cir::CallArgList&, clang::Expr const*, clang::QualType) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x42797ed)
#12 0x0000000004279f26 cir::CIRGenFunction::buildCallArgs(cir::CallArgList&, cir::CIRGenFunction::PrototypeWrapper, llvm::iterator_range<clang::Stmt::CastIterator<clang::Expr, clang::Expr const* const, clang::Stmt const* const>>, cir::CIRGenFunction::AbstractCallee, unsigned int, cir::CIRGenFunction::EvaluationOrder) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x4279f26)
#13 0x0000000004365b2f cir::CIRGenFunction::buildCXXConstructorCall(clang::CXXConstructorDecl const*, clang::CXXCtorType, bool, bool, cir::AggValueSlot, clang::CXXConstructExpr const*) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x4365b2f)
#14 0x00000000042e1cee cir::CIRGenFunction::buildCXXConstructExpr(clang::CXXConstructExpr const*, cir::AggValueSlot) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x42e1cee)
#15 0x00000000042ce59e (anonymous namespace)::AggExprEmitter::VisitCXXConstructExpr(clang::CXXConstructExpr const*) CIRGenExprAgg.cpp:0:0
#16 0x00000000042d7688 (anonymous namespace)::AggExprEmitter::VisitCastExpr(clang::CastExpr*) CIRGenExprAgg.cpp:0:0
#17 0x00000000042dabb8 (anonymous namespace)::AggExprEmitter::VisitExprWithCleanups(clang::ExprWithCleanups*) CIRGenExprAgg.cpp:0:0
#18 0x00000000042d3774 cir::CIRGenFunction::buildAggExpr(clang::Expr const*, cir::AggValueSlot) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x42d3774)
#19 0x0000000004289afe cir::CIRGenFunction::buildExprAsInit(clang::Expr const*, clang::ValueDecl const*, cir::LValue, bool) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x4289afe)
#20 0x000000000428df79 cir::CIRGenFunction::buildAutoVarInit(cir::CIRGenFunction::AutoVarEmission const&) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x428df79)
#21 0x00000000042940af cir::CIRGenFunction::buildVarDecl(clang::VarDecl const&) (.part.0) CIRGenDecl.cpp:0:0
#22 0x000000000429457e cir::CIRGenFunction::buildDecl(clang::Decl const&) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x429457e)
#23 0x000000000431ccbf cir::CIRGenFunction::buildDeclStmt(clang::DeclStmt const&) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x431ccbf)
#24 0x0000000004322edf cir::CIRGenFunction::buildStmt(clang::Stmt const*, bool, llvm::ArrayRef<clang::Attr const*>) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x4322edf)
#25 0x00000000043257f7 cir::CIRGenFunction::buildCompoundStmtWithoutScope(clang::CompoundStmt const&, bool, cir::AggValueSlot) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x43257f7)
#26 0x00000000042ff9c0 cir::CIRGenFunction::buildFunctionBody(clang::Stmt const*) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x42ff9c0)
#27 0x000000000430b7a5 cir::CIRGenFunction::generateCode(clang::GlobalDecl, mlir::cir::FuncOp, cir::CIRGenFunctionInfo const&) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x430b7a5)
#28 0x0000000004252652 cir::CIRGenModule::buildGlobalFunctionDefinition(clang::GlobalDecl, mlir::Operation*) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x4252652)
#29 0x0000000004253d27 cir::CIRGenModule::buildGlobal(clang::GlobalDecl) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x4253d27)
#30 0x0000000004254346 cir::CIRGenModule::buildTopLevelDecl(clang::Decl*) (.part.0) CIRGenModule.cpp:0:0
#31 0x00000000042385d9 cir::CIRGenerator::HandleTopLevelDecl(clang::DeclGroupRef) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x42385d9)
#32 0x000000000411caaf cir::CIRGenConsumer::HandleTopLevelDecl(clang::DeclGroupRef) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x411caaf)
#33 0x000000000658b184 clang::ParseAST(clang::Sema&, bool, bool) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x658b184)
#34 0x000000000411ed48 cir::CIRGenAction::ExecuteAction() (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x411ed48)
#35 0x00000000037f9819 clang::FrontendAction::Execute() (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x37f9819)
#36 0x00000000037765be clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x37765be)
#37 0x00000000038df9bc clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x38df9bc)
#38 0x0000000001090e1f cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x1090e1f)
#39 0x0000000001088cfa ExecuteCC1Tool(llvm::SmallVectorImpl<char const*>&, llvm::ToolContext const&) driver.cpp:0:0
#40 0x000000000357f599 void llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<std::optional<llvm::StringRef>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*, bool*) const::'lambda'()>(long) Job.cpp:0:0
#41 0x0000000002b2c9b4 llvm::CrashRecoveryContext::RunSafely(llvm::function_ref<void ()>) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x2b2c9b4)
#42 0x000000000357fb8f clang::driver::CC1Command::Execute(llvm::ArrayRef<std::optional<llvm::StringRef>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*, bool*) const (.part.0) Job.cpp:0:0
#43 0x0000000003545d1d clang::driver::Compilation::ExecuteCommand(clang::driver::Command const&, clang::driver::Command const*&, bool) const (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x3545d1d)
#44 0x0000000003546e0d clang::driver::Compilation::ExecuteJobs(clang::driver::JobList const&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&, bool) const (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x3546e0d)
#45 0x000000000354e2b5 clang::driver::Driver::ExecuteCompilation(clang::driver::Compilation&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x354e2b5)
#46 0x000000000108de39 clang_main(int, char**, llvm::ToolContext const&) (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x108de39)
#47 0x0000000000fa17f4 main (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0xfa17f4)
#48 0x000077bb98429d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
#49 0x000077bb98429e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
#50 0x00000000010887ae _start (/opt/compiler-explorer/clang-clangir-trunk/bin/clang+++0x10887ae)
clang++: error: clang frontend command failed with exit code 134 (use -v to see invocation)
Compiler returned: 134
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzke19v2ziz96dRbwgaEiXb8kUuVDvpdtF9t29TdPfOoKiRzCcUKZBU6jyf_oCUHFmyk7pdZ3GAs9jGNjUc_mY4f2maGsMrCXATzN8H88072tqd0jfiP1YV6l2uiqebP-hTDsjuAPG6EZxxi5iSxuqWWWSgptJyZpAq0Tog7wPyHlENSCqLTNs0SlsoArJGVBZoLaisPn5BNX3yBI1WDWjxhBqqzcBfPCFGhYBiWEhp45gw2houKzcxF1AbxCXaUVkIN1hASVthHTNagwVtkNJIPFLRAnILUcuVNAfe-dMZgZQ2syDMdtY2JoizgNwF5K5SRa6EnSlduYEwC8LsIKtRrWbgSP1wsAi7__vnbojEXDLRFoCCeM2VsRpoHcS36ORh-cozZqzmsjr7rKbNC-N2N9v1jzrNSVqDaSgDZGwRxO872Ib_F7YWNZzZVsOGWnrP_-tYbFAYxO_d9EfFCxSQrKf5TRnr6M4_3cAjZ9A_75bwFF-AFp87kq_KOh4BSb3yEdtRfcThM7W7gKy8TEvHAnXyo5IL-H-07sAdE3dAEOK9FlHO5R0XEJD0MMeZEH9WchbEWc4l1U8BWT1P72fNDMBDFZA0dJMOgyCLY9pz-jqQWhDCzb-Ydw7VEe1hVAMtPJfUKSggWUBW0y0g6ymSM4yYUAae8Xi1bo4Nttsl5-aqtU1rT03a7ECIIMyY82L0CNpwJREJZ-EsrLhFAUknfsPtrs1nTNUBuRPi0b34yVzP3IQ8iZKS5MsizdN8tcwXZFHM8zAneZkkKY3LRVTEq7J0kMPsK9UVOFhony62iwS38kGq7xILLts9rmTriHZOYahWBQhH2ijD90GYfZTGerffcO3GA3KnGuvwqLrhAjSGfSOUBn3AiHuk2OpWPmASkiSKwjQgdzmXQZi9b7nwAarkVcfxPTUGtI8xQZjdqVYWiFFZ8IJaQB_Wa8Q7FD4O9Sha41YUPHf6Yiwgd710g1TkLgqvzTAKwuweBDALxT_ntH4GVbfCcjclztDM2VkS1ovkRZKY9DQxeZFm_0y091TPsF9cy1kil7jRioExnfWggJB_uukHIhIGhCDMWISw1bwR8KJJInyPcMENzQXgUgMgzARQjamxOIdSacA5ZQ8gC4RryiV2sQq7KI1gT-vGeW7TIFxrEIr57cHeup3LI9xwhgU8gkCk-8ANbjggXJcuCeJGcWlBB_GGCoFw6TICBq2lQrgsG8yUtJoyG8QbJREupcLa2RmXFXa03dAj6FwZwNTUCNdHyRJTwakBg3DZyu9cFtg6SU0QbwjC1nssZk3r9IMXCcK2leAHKpCgnQQF5G2FuSwVfuCyCOLNEX-Ei-9Ul7gPNkG8SfoZFWjHzGfETVXkCJcdp25vO0UVztk3AbmjToWPCJdMPYKmFbxCpqHL6W74H8WJznP844DckRBhvxeSCszNk7FQ_4yXkbvZ7PRPn-zdOn3B4YjfdqUzs_69xY9Xcm5J2cN3qovzi15t6wYIr0qnGBUXkv6iIs7Qnq4Ge_eGna768h6-Pvvnl_Du2Ghg1EKBa8q0CzigtdJY8JpbFK0QLivZsmPnnpFZhHBpHniDVaEx2wF7wFziqi6d9-73GPYMmq6Qx-XoA1NCaVxwWkllfE-Cy36HEYaaW8zcu9pVIghjF5KoqbF5kpbug3jjhBMI17VwZNi94EZzaTHXh1jdRVFaFNrwCuHNdvthvd7-ln273W7-yr7cke367uM2u_8jiDcRwgp1UcXZoq-qZgbhPeqN2JXoh_7h9rmw8nnltLrKqYECtY2S6NOnb38cPTn0PV24fa064pVUvoiWSsKeGwvSooJrcLH2qU-Rb2WgjvuFEEYzjlsaQmZuFYIMUM12yFiqrUE70IcWbNT_OOL49kXiN4tL12X9g3j7loIMAbZf5Q0i6hj_OISOnr2ikXNkYXYrC6TKw_YLbqzr7YVivg0iI-9zH7MoCeKMRL5FypCPVu6NwN0ZglTWHxlADdIVoKVyBcJy_fffm84FM13d7hsdkOXBm3tldgW1Vsr2nZArTv8DzB7ppNPQ-uMX91cV8AFk9_kDSMfV1YEO3jxJHT_mG5kgzj598-CeP3cz7lrJ-lretbmuWekIh4bbr-sfd6CzXu7s0MagYBGGKCCLgCyc703k9766RCXlAgqn2c-fbrP7W2Ta3AV4ivK2QhoapS2yCv24N5wohhvTggnInT87Ori161CZpmaHnGm64tW39Y2Gvt6H4nAo0586UWMU4y4RId1KZJjmjbeEe0vZAyrauuniQTgLwtVnrSpNa0R11To5za-0i-OGoY_2uOqK2QTh6oXU8KPcdFKM3yP8d582hlx3NhNKhb3axsOHyUN6fLwgA07yVuT0FsRrUKULt_4wTyNqEXQO6FqaIMxITzZMjbPIud3CqdgntY9fusbA1-VuagFM0P5jQJbnzo-WnffHIQr34eE_khcpK1PkLcvbuHky3ZvPTiC_9V8740kHIk2_bw8HdM7sXV9s_TGUixj_3AYC8j7c99ie-9I4miBfrEp2DvlaAJVt86e855V0YTJtpT--LZBQbomr43RIBpxkjJOweZiitTOqL-Abq6cO2G9UFsItl_baG9GslbSwt304C_2_jn_c818u83yVJgmZk7CXqAuOZzKa4DmbGTVbeMh-ygA4GTNcecU21p8RbR-4s-Sf4b4aq2M-hZssF6gyXgU_CztZLgbGizFjki7LGNHcxdGfYusnDmyXJ2yj_KcZRvnAMB0zjFewWvwcQz9lYLg6NrCEULYIi59KbOOU1h3rd4ntqp7RQ-uAOwcOJ8AhjvMLgH-BEjRIBu-5P3L5qrpM_G8K4qAOgkRjQZarJVyyA2sqRKYrh_yZthv6xB1wH0pfFmr07P-3VHx9auD6snppBlnJVNaSLC6X1fxA2Nf4fNbKKvvUwF-aNo2TZH0U77l1CVDpraaygiBeHynn3tb2sKSxH3vKMU1nQy_r-_BmROEYTylchr79oTBZbvwRotMB-KLrOSv58P-D6beutvYJ_k9dOFVcf9dLshh2PR7teryY56S8ZNf__ns9nEs6WcduOn6-ASZesm9HaZXuTHyNcqXE8eszlKyqfFy7F2q6WceLvW186PQzaC8Z-wxEDC5pPaaAX9bdaWQ4r49rW4mXZJBzPpaTwXwFbkUqlXyqVWuGL1K7rqkD6NDf1tz6I3c39o0bbn9Z-hUa2r-sqiYlk8O5GOMslos0_XWc1JzD9zx6EaLlBBHN819H5Eb_4nbXV77mNDWOn16EMJ0gjJfL5AIb7kG-mp3_NXP1oAdznRRO6YqWl7il15H5KLn9kVTDMy_UaXwbn0YMAe3agnvRngUnk8IrLcrl6pK9bK36RvVB8lfTW0d6W3PjT2R7qRdvIJoDP4g2KcVWSUgvSVTfqM8-4w3tB6fgZw3VdhYOTuOITj2GkCmU-fIS8zrFcQ7EFTXogQ0anKT6iLH8Eg06kL7OOoF-XCRdH34HcIA_zrUxIVBcAv8U-qi2O641hpoz05o-fYFyXElm1h7FAVcLXltkL9Qg8nwi8nxZLi8pL1TdqFZ60V1CUK29Z6qZtITHVEe7-MPS6-oyO6kGmScpvCxXLLxA5sPQe1U8vbrd13YyD3CAP873cZgv6fx1-P0JH6xVMdmhD0LlVHRhY41qceDyzM4x-rN5paf4KEv1hh7qpRtkn1QSc7KYkymyP1TRCjjauE7IA-ANlFxyr5yLVPHn4R7jm-ytl2CQb1JWzOOCnLjjC_K9LM3VMTtUz5jjSUUwT-LkpKs_wfxVNZ_gEcT5jDWo-iRhdpxOU2Y8yd5xOi9OCpND8-5GujPT13F80KptXJC-ug49vEGH43wfRYyelh6uZ2lr-N8AvwM4wB_l_cU8zaM0OS5hP1NtILv_OgmbUNNJQniLErbHM6BNJsqGIkmnys6OD0z2wFoL_ZC_0HltdToIA8BRUo6X5SqNVsfqvNNKWpDFGZBvAK8HMMBbjOEtF_Mc0CTtuwX9FVDJ4LwWX5bn-nmkBzmIMMqhcVqUq5yNj-882EGSx_4q4GmBM5L0-imiBzdAH6XAKFyFEJWIsWhbU8cgPV9i7uikrlyj8RhZo0fFizeQoMc4SLAaS5CmrKTooPF19NXHgCM57msqxDd_X-Vj3Yiz4izG1bXj0X_tNSpOCs0fQZ9mj2SUxOL5spyvVl4hR0zLvoLYaq_T_gZ-d7_7tq-bqBA5ZQ_bUo4L-27h3mrW0VrVNZXF1HXP7p3_2YAbU_7iFXUKOFKOv6TvKQ-Hx88Ttlu230dRn3ap4Wx7-E3DurvcfkTsBrZWU27N4fGEHRX-Qmx3-t0_dyRHHY43nv4s200JyFLQOi9o4CqGg6pIevj29HeVn9mMaPq15ypPjvbh3Jeb3ZMvrbynJYinkS5f37erf4fr4T5be0KmlpWnJfq_bBmTsu68CcRjrSXzIipe1Npws3gavb0qRyF7MtERjFrTy0izUd1yJNj14n4n82BHyUQjCwh_WiO_q9y8rI7fVf6Jm3Gn_loUft7-hrriaX348ulCDfY28vZ6dJoa9Dif6BFIPn8J8-bo_agkOFMLvKT_f1GPV648Ot0MmltM8nYBcV-WHmqPA_LDD6eyy7LydasNj2tAPSr1wpJGyzJBDu9Vl-34DqtObmqQVbH6yZs1fsrAcDVlCEmItls3Z-vv2W6PZLp4CUiGJebhtC5bUkAd82tvkWPdLXz88PgKqB9HZd8ZINZbfXf3EX3ndodg739IWgCK4sQhbA0g_IisQgYA8aOi3a10KNaRBttqCc7p3MzjX9y9K27iYhWv6Du4iZYxWaYxWYTvdjdQFCycR2E6X6U0WUZlns7TJS1KskyjRZi-4zfd3VuShmkSheFsWaRhEqV0xYpilZNlkIRQUy5mzh9mSlfv_HXLmyharpard4LmIIz_VTAhEr4j_zQgJJhv3ukbf1MzbysTJKHgxpqBjeVWwE0mO90hxVirtdPRjgtADehS6ZrLCmX3X_1VQfdeSX-vU3AJKFiEP_6pZ7AIZ-9aLW5-_VZpL-njDfmfAAAA__-AbeIX">