tinyxml2-6.0.0/000077500000000000000000000000001321340066700133055ustar00rootroot00000000000000tinyxml2-6.0.0/.gitignore000066400000000000000000000003171321340066700152760ustar00rootroot00000000000000# intermediate files Win32/ x64/ ipch/ resources/out/ tinyxml2/tinyxml2-cbp/bin/ tinyxml2/tinyxml2-cbp/obj/ tinyxml2/bin/ tinyxml2/temp/ *.sdf *.suo *.opensdf *.user *.depend *.layout *.o *.vc.db *.vc.opendbtinyxml2-6.0.0/.travis.yml000066400000000000000000000001761321340066700154220ustar00rootroot00000000000000language: cpp os: - linux - osx compiler: - g++ - clang before_script: cmake . script: - make -j3 - make test tinyxml2-6.0.0/CMakeLists.txt000066400000000000000000000135441321340066700160540ustar00rootroot00000000000000IF(BIICODE) ADD_BIICODE_TARGETS() if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/resources) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/resources DESTINATION ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) ENDIF() RETURN() ENDIF(BIICODE) cmake_minimum_required(VERSION 2.6 FATAL_ERROR) cmake_policy(VERSION 2.6) if(POLICY CMP0063) cmake_policy(SET CMP0063 OLD) endif() project(tinyxml2) include(GNUInstallDirs) include(CTest) #enable_testing() #CMAKE_BUILD_TOOL ################################ # set lib version here set(GENERIC_LIB_VERSION "6.0.0") set(GENERIC_LIB_SOVERSION "6") ################################ # Add definitions set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -DDEBUG") ################################ # Add targets # By Default shared libray is being built # To build static libs also - Do cmake . -DBUILD_STATIC_LIBS:BOOL=ON # User can choose not to build shared library by using cmake -DBUILD_SHARED_LIBS:BOOL=OFF # To build only static libs use cmake . -DBUILD_SHARED_LIBS:BOOL=OFF -DBUILD_STATIC_LIBS:BOOL=ON # To build the tests, use cmake . -DBUILD_TESTS:BOOL=ON # To disable the building of the tests, use cmake . -DBUILD_TESTS:BOOL=OFF option(BUILD_SHARED_LIBS "build as shared library" ON) option(BUILD_STATIC_LIBS "build as static library" OFF) option(BUILD_TESTS "build xmltest (deprecated: Use BUILD_TESTING)" ON) set(CMAKE_CXX_VISIBILITY_PRESET hidden) set(CMAKE_VISIBILITY_INLINES_HIDDEN 1) # to distinguish between debug and release lib set(CMAKE_DEBUG_POSTFIX "d") if(BUILD_SHARED_LIBS) add_library(tinyxml2 SHARED tinyxml2.cpp tinyxml2.h) set_target_properties(tinyxml2 PROPERTIES COMPILE_DEFINITIONS "TINYXML2_EXPORT" VERSION "${GENERIC_LIB_VERSION}" SOVERSION "${GENERIC_LIB_SOVERSION}") if(DEFINED CMAKE_VERSION AND NOT "${CMAKE_VERSION}" VERSION_LESS "2.8.11") target_include_directories(tinyxml2 PUBLIC $ $) if(MSVC) target_compile_definitions(tinyxml2 PUBLIC -D_CRT_SECURE_NO_WARNINGS) endif(MSVC) else() include_directories(${PROJECT_SOURCE_DIR}) if(MSVC) add_definitions(-D_CRT_SECURE_NO_WARNINGS) endif(MSVC) endif() # export targets for find_package config mode export(TARGETS tinyxml2 FILE ${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}Targets.cmake) install(TARGETS tinyxml2 EXPORT ${CMAKE_PROJECT_NAME}Targets RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) endif() if(BUILD_STATIC_LIBS) add_library(tinyxml2_static STATIC tinyxml2.cpp tinyxml2.h) set_target_properties(tinyxml2_static PROPERTIES COMPILE_DEFINITONS "TINYXML2_EXPORT" VERSION "${GENERIC_LIB_VERSION}" SOVERSION "${GENERIC_LIB_SOVERSION}") set_target_properties( tinyxml2_static PROPERTIES OUTPUT_NAME tinyxml2 ) target_compile_definitions(tinyxml2_static PUBLIC -D_CRT_SECURE_NO_WARNINGS) if(DEFINED CMAKE_VERSION AND NOT "${CMAKE_VERSION}" VERSION_LESS "2.8.11") target_include_directories(tinyxml2_static PUBLIC $ $) if(MSVC) target_compile_definitions(tinyxml2_static PUBLIC -D_CRT_SECURE_NO_WARNINGS) endif(MSVC) else() include_directories(${PROJECT_SOURCE_DIR}) if(MSVC) add_definitions(-D_CRT_SECURE_NO_WARNINGS) endif(MSVC) endif() # export targets for find_package config mode export(TARGETS tinyxml2_static FILE ${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}Targets.cmake) install(TARGETS tinyxml2_static EXPORT ${CMAKE_PROJECT_NAME}Targets RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) endif() if(BUILD_TESTING AND BUILD_TESTS) add_executable(xmltest xmltest.cpp) if(BUILD_SHARED_LIBS) add_dependencies(xmltest tinyxml2) target_link_libraries(xmltest tinyxml2) else(BUILD_STATIC_LIBS) add_dependencies(xmltest tinyxml2_static) target_link_libraries(xmltest tinyxml2_static) endif() # Copy test resources and create test output directory add_custom_command(TARGET xmltest POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/resources $/resources COMMAND ${CMAKE_COMMAND} -E make_directory $/resources/out COMMENT "Configuring xmltest resources directory: ${CMAKE_BINARY_DIR}/resources" ) add_test(NAME xmltest COMMAND xmltest) endif() install(FILES tinyxml2.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) foreach(p LIB INCLUDE) set(var CMAKE_INSTALL_${p}DIR) if(NOT IS_ABSOLUTE "${${var}}") set(${var} "${CMAKE_INSTALL_PREFIX}/${${var}}") endif() endforeach() configure_file(tinyxml2.pc.in tinyxml2.pc @ONLY) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/tinyxml2.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) # uninstall target if(NOT TARGET uninstall) configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" IMMEDIATE @ONLY) add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) endif() file(WRITE ${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}Config.cmake "include(\${CMAKE_CURRENT_LIST_DIR}/${CMAKE_PROJECT_NAME}Targets.cmake)\n") install(FILES ${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}Config.cmake DESTINATION lib/cmake/${CMAKE_PROJECT_NAME}) install(EXPORT ${CMAKE_PROJECT_NAME}Targets DESTINATION lib/cmake/${CMAKE_PROJECT_NAME}) tinyxml2-6.0.0/Makefile000066400000000000000000000011541321340066700147460ustar00rootroot00000000000000all: xmltest staticlib rebuild: clean all xmltest: xmltest.cpp libtinyxml2.a effc: gcc -Werror -Wall -Wextra -Wshadow -Wpedantic -Wformat-nonliteral \ -Wformat-security -Wswitch-default -Wuninitialized -Wundef \ -Wpointer-arith -Woverloaded-virtual -Wctor-dtor-privacy \ -Wnon-virtual-dtor -Woverloaded-virtual -Wsign-promo \ -Wno-unused-parameter -Weffc++ xmltest.cpp tinyxml2.cpp -o xmltest clean: $(RM) *.o xmltest libtinyxml2.a test: clean xmltest ./xmltest staticlib: libtinyxml2.a libtinyxml2.a: tinyxml2.o $(AR) $(ARFLAGS)s $@ $^ tinyxml2.o: tinyxml2.cpp tinyxml2.h tinyxml2-6.0.0/TinyXML2_small.png000066400000000000000000006437011321340066700166040ustar00rootroot00000000000000PNG  IHDRz4|GIDATxܒɱAD_R.`9*tmPhv(HW??7)χq) }kvVOT륿Ht;v ol~s5VUv D,ѣf&㳆O3 .B4uT꽾|*yOF9gt|dy>_u.8녤uBDޝY&0*?ew oQ/Y^<< ixI<ʦgrrB]Pѕ4wYY|v4;g N 0 ~4 A̶YYd2#.1j#׃wz@3O^Ϟ/wfcKoDcho"I >5e] ̩#^+?#v -t_ҏHgsuQocx#owl|~ ?OKAr >D' '{;+GcPN!@X=E=F6K4yGdBpwQvY di/[ Z0)Ck!9ǜGP/ ^%&VڬsSGmrDN׵ i 9G Y1s}p_t[cuRi2 4^ J o㍘}k(4gF;"H1#&y "j1H,˂q3{Z{5 ,ֶ,70ϓy΂oSh6Zj1O|<(Զ4vN5 R3IwQwa㳜j#Om-( KU4Cxy^_ l4&µp"`ai{6u9NQrCG>s݃_@AdקZ@n/At]vmBpYUںv{DCKp_+7ŻˀlB~fgNblFLrX͠/( ^2]6M٦+"(,늘Ɣ0Y }Kc,ϗe)ì^Di_yy\5Я{g6Xm8J[$1},4OWJŲߨwom (8OBr/UTxPfkAm]Z+윁wx`>+Tlp-kY /k\m٭^~5?HCmi, Qj'rqj۝AV2X!pH~|2C/PAag}ޏq)B;сs9jZ`g+g,>ik,1lg>e +:e;\`c{ޙmLx [y51պDuGc Hw^W > X8|QpX03 .z' P^l>1o_I6@#kJ v֎[EF~l"A$Na{n89sݴq<ۚY\^?4~C88Na}~R OD2 y{UR' _8idCyt>=Ggzi;sayX#Tndx:.? iWup =k3>V}~MinpIȷc_ OjuaQ2/WK/W]ڴ}Q mjd r\=mƘXy 'Mz&XΕ<+7Mt5;^i=c@1MU!xAdl{#% 8V}EA@,&f og`D)YH%/Vo:|ߎz1اB uh k4qHsXqP8[Y {3$3ptLWkN\i6NvcEJ=3t:lmGkgS_XǓ͂gDNrC7ھpyrm|$^=Jֱ=Rz=.]\ÃgoUz7AZ>?_9OzsRJGHZ[ X

OgO8w]itAd1RmwOQivuNk.浅gd?@F#C ҳE#lW%t!z1&GAXyr.צvCs{.5nPp`lոV5#46iv=^7)8Chޤ6`Ec}qo05k_A^]n6w_ {~}ݴe ]43m y^%t({zMQމZ5-PZ׺xr&B<S<HRX8ᰈ&Y6B << 'EKۯ]lZgC1jU'YK)/25˨fDh$>x Dc63e]ൡ{thVy%1 > _D"R9 xnM#3.cGV D_@ߘ.Hf^>Տ[=]>hJjz>Qgٚ\8wx븭ɇHVa42nFgƖwDMKRotö61΁Su `%6|,R$D4?^dؒ uΜM)'PϭXȎS{R{:i&yo.ȓ5a }"עh#7hyj8 hWG y|)JۜdM,sMٖFXp-5J3ôσbHc_S:?C˵Ź&9\Z)djN>c QYot9M ^Xoc;- T6Qfm8Ȓ3g+JfgDyїM 7^Cl9'E,M =ZLʕ184^cT܊Yڛ?N_>Л#q̽,Sc Qw PWd|,RCԲT%do)'㆗-\SP{.'맽T4/U@;8\I4~5 X'jKd:.4 BҐ9'dGBx4@ؠ氦@+ &OÂ=P;>Oجw{#X1#q\pmF-q{"}~?&]߃xndWQ}~ɫ*羯LVk&e͕3}CUϬU=3Uڢf2UAֽiEۥ(m,X,6z6`c'H @:m V+6g}=Y@*`&zhcq>i􁒋Q҂*\eS!3ZI<7kB+!\t蛬:LzHvwwǠ袟M3 )aU:w~zMMf,,dJ72J677:R7rs$C=ċJNiwh0 (G?)Jmt~{i7//ss.-,e8U^ǩX׾ M ϙۑ5~i̓Thpxzr&ށG2=s|kܜo# ẍ֧9sn/?{ڐ݈CℾD"g,`/HNjbb35X?|wm W>80dwq^TYӗeoNi='bq$'e38)sK#DXdȾر۾?c;NmMX΂cq_¦WX$gQ oq;97v+͓'DdYk` {0 KjvӖsiJJ7EϺP޹ od]R1I lʄGxKkB%2ts|j4lVcRJb,ȓ ?v_Kr@h5$tCP.ءkODGwS&++w B"v(.`J[]W 6 VB M`g,'ܟf5" pW[IʐK/Bիk{x#", Au[NibgE+Y,FB7?޸(-; q[ޱ1CZ$~_Qإ!fL'+T{ԛK],ztC.f$*O, v+ϲ$RbaiQ9 0pD] _ )xH4!^ycTw)Zl`ھg%Ws,iP4>^mbYA/tJ*p/1|XsYl^g@J,c,"Gmn ={(0"'=|N' -;0MG8X9e׿VcX܀27rI[aưc8}AG7&r^i/x+kfup+GbVjy%Y-Ƶ WʟOg,ٔW`;N՘k9գf;FCA_E`Ox%@,qB/Asu*e(͎ 8OʃZcuB3hSMz{:!.wU̕}q_5I&.]7@zS@"6BziքZx~G+U 1L&1 4wU\׺ hDT,K=}fqCʐT/k^$h{X*=\>]]]$>r,o HmIpղO}~zECrs.=bXe^w2X~$$tݷNxb!hՍo?"pz~*"w4~p{[?+7mbPp6*c}ՒYf h"'| Y`͂\@ZrY[LeWrl2G_Qr,i?ܘmx MXxyI|ƴ+׵ݔm:{swϱ"s3yDSб8f/CJ<;6*7b.ZC!IۀﶓލegSӇ2iJ<~`yw7yyM= ~͍;TNp¡&r{]3@f[K̔ MSpȥ?".;ww,ٿ|rw=u5Ʒn/4 A hil)x ܘx7ŹvOLB_4Ze2=]ovZZW׉Q$7YLj ;c@1.$+:kM܇Iv- %߬>LͭƳvbJeLTY:a/JLb ~@id+;QlHؓ:b<#6LZMXXww y]{ HxƝeD UV_glk u;^0Q~s=^s|+PeXW!-YF'Y\x}7cq)O=οy-w ɁEyo ~[R_X0rU3YzaDY$8Z׭rc=nYB'B] p2w`7 ƔxPr ӬN6ٺӻb;WWb $DŽN,(/_R< 6gW q%W/D/;g ap3ޑO/E2*_1>ZZŃG/Gs'ڸs&u.R9UPM;낁~c}Oƣъr-bG|Rv.?dd )ztlM۷`h70l*Hx@h򎁟 R="O4nXOѢ%+2n|8 -A1˻{鯸(~VSvZ# $3P{h7 v'$`>!BJj,L ELr#F)NOc])a& ͂M),ܹ-nZ>Sä?_΅W.ǥK'y#EPsO݊ >(l'[.M.F6j, suu}ǂYC@V-B{*c]~'K`0E2 -{w4xD :q g-+ m BL#(X3P.ԇ/CjluiY+ۺcks)CJ67 =ÓīI(-:%,`J2w%>xiwuVi܏ @,SB#l,0FEϹy!wBY-!nŃѦ[C1r P4x-L 7.v;(Qɦ/ ˌQBA³Áe(#rRxwKUez9l%LX 5u~v=WdyvdFHŎ߭8ӷ9(lbJ dC :ڀK]낭^IУٖkRd⧬2 Y1HKu~ƄNj*3N9 zWz~{E4+A%EH%XB9ʀшy=ה!P#H9.a%UP]#4ŗ3?" Ȍ1wyK*MDM6]Wԇ?l6c)In$9H\;^}(}}K7ޕ 4 .QLy y~p_Xp-/[Gk5IrN&cR"A/LwooV1uNֵ5+]zwl6V+h^h3ao9- ;c}uE~"9n{]IA3mxƫ/~8"Gx?4:dz;Y uOhɻcS u4]r#%m܃^ %s\3՜дc%q^zcllb\뚥5M.` ?Ӧ@S䜹|A!\ja0F>Tay&4~o"`s Oq?LnP/4C"@$*J<\-$yCX 6QNb\U{Գ&;bkQ\<~Zd7'@=;'u?9 )R5N6Gb7Q6!`t,|j6k@Io/5Iݞ;Zg-Q#jm+uM=,Y  3x@+nv[\g13(.IC2sy}%SVt+:w~y#Z&5X|Lr˿ZA; 2i  ĵȂ4@ Fqmp}#{t{=ڿM!|7#A DԃLP4M_RDv8[V{2EKdi:w7H` tTq~p? nÂQ]m5ڵ<" K[aa\w"x] LZ% mb~+X.ؼv+wmw۶Ce  -c Q0(ʔ4%FϷ@-Y,0 z̺ c:7phjiQ+7| b̍R4BWɺXp3ۘ) P>i|Vt3lhsk7L3(4ܷ\xx'cvNy8#'tu2#?$ygl:6*.%nS#YՖEʤ5[V) ?]lTH%Aiy<^#!dU¥C󞑷.\oO!i,Ur-!K,~)s]vt2CÒiSkG#vٿw řkI|6V#EbGwLĩa;7ٹgKUm4)s_2u*J!, `ZHV/Q20iTD@xxYƴC3㭼n6ti~,X{𾻻ߥVw2< svqCDe YyDgi: 0mrf8KY0osvW{+?$.յ,l,ĩNY RuƱH*c;J{O 8)#V@ JY}AAvwڶB5S>ɖω&ńq? _︮Qs39 2wЇGٹr ߴ+nrI O^l^#)|.\ iu%=ۆc8m9_8J3vMW]⡄`V%˖)Y0}vf1WXU͚7N2 XcGuR^ƕ4۾';IW̖3Am󬰝9meeɷ9dp1M.Xu'uEMϸ;i0P6v|q'Pv\YPO#5(ֽw 99^& rSOfN,i/xKsX ՘1xR]g9E*Z׽MvXLAhw,kAzd,!-2 (}nRY/SĜyV.U[澛 dl$gTʯ#w1f:hGIN>]ӝ"2ݝG]Tk1)SGnh,bV{7]:Âc)ĺ5ldԽd|5y D9,JMy%B8&z赛$)-t e Ya9rQ γf8) 0`NOL&m̸g۩ YzI8?[+ga6{wBTm޷}e69ɫ߈#r_%DvBFsIx2tyw'xE-`q^b %m*c^N3_bM҄-ྟKff-1-qfW߅$Ţ2lOK2 bk%rfQh.oz襾K1g֪&$CU侧4|dmg?ڠޢ>j1[Z%[=Kx9b9Sx>ZL$ G|j=u'ΟⅪ~&s(#Hs@x.ǬM0׸Df}vm/y3vDL!ct{=zҬ6Nֱ@|Q?$qƕLh2JCU?[yl-rDdPd1}GfHZ: On=높$M$d.*["yBY'l3Ǿk`_5"鶑NVy>=$9XM*(^j`ΈKQr}Ү`ef^z`%ڠ9^iWv9 z;3@GG4Z=AvDh PݳH><,-]eyHC[P~C0Rddr<=d/M9"1^`1 |Fk%d;gSg:`6 xVY`z5f]* ]k#ٯ"o?Ђ)_T9kfE8=euM(k$ӄ1e3{p=&6!dԊ;Yc",w}yY8d Phhݫ-Gr!gXϳeg8[cf\w,Qbf4?U5Z ~`Y3g+BI,Yq?V+Z 4`B_3\;يgypf븓-r^!Cyeܹ6Kygݜ.}уǸ,_ZWI:ˆBynf _"2'*Z@ Zφ4>VPJt*zb@,`4\]^)Juiv~敜 |\==k[_ѳnʕw7[bǓ s9bBWqAh:n}@0^@h[jfm# u0$/1XBX K,3t緟.侌$!>|ʺ zC68cIOI,C;kedga%M.?g 'r/r}u^mh"Xv` 6) SLԜTJ0O-& t*q7intB5 X~_1զMsëCh+$w _}߱b6@L 3IйX 7I.β`&oiso龲,KF.sM[xFʌa^ܾ]7ɬv;!ޯyn4=k XA |:&TUX+弳 灝zRb@нi jLxg9ީJ㍉G>lxX]fx/ 8~3jJ6\jV r\}'s9gjLN N8b<5;ːڔElFnL{{j\} 8hwzME\cG:masU`ywo'{FJo^3aELEȱM43|Bm+>5 Pcu66v5tq l.γ,ש_G58$<1-m,yR0Uu񿈺8*^g0F߬M@ŷVȵk4 z~SQUu$vj^c3XT 3MCƮgNd7ՑT2;({hy)bU`: ,Ż٤ܣ8}fTM%o(J48wuo?+^nLs(XzSg7^K `Ӿ_ xC(4ق/fsuQavQt71/""5ұ#}L-CՇi?J(9-W_/c`RNzJ[X`ETAF#] &~7Å|"OUP>ϣ{kz?\ub|&lI]=1QMXr~l~O(yq5 &KMڪiϖ8v>SgFl2A.@#ƻWt&i=Khx%le٩pC[ަJdy4qS". |jb/,,ײ{,-{uje;Lk2kկ>,j~bcd T@ <ӟjdI)8@~4ud5in 6֜.Xк6)Ew;kɯ?M_%L ݾYOes"OLtNV 1wƂzz9 7iĠ{l-:e+6I?P X1.`e}UWy8-<.b|&Ì?7vWz\_ })v._۟QI<}+g?9/(VSu Ā:?t֞Qfb685̎'ܣS`9uч/ֲVc~&po_ԛͦ-"{wng+uWl4BSlUcL0sbQk/g7aD{`c/\07&vE %}L+Nv.ZQ˛ir}ظ&z8ǜWzX0*jz~8>lv[xsH͛$xsSL?e,Wq= C^RVlUܸߪiuvNyZ K̢q $|0`V*`w}1߳\ǓǮM>cܮ]dl ėx`cGRsM{  g~Zo.qykA6L|6ꞛn&<3_s|K^kOfjYn4^yf2IQiYHnt{Txye@*luũIuDJz3#|*k ':f jK5 5;5NJ+49z5C ]ȃo,6]l%lf&:q|^>c׃;Ql'p}(j䕬LlzB/{19S]ZӫĠoaZ/yj>pKM2:K_$ &;y ]U||%V4kа; ?L]y' e2/]^ , 0K[ҿ9sgMlCf~30K==\ϪAK٩^d,o(rnWɳY/L⦽zv]Uڍ7|Sh8\5YTkCo]]g#YA޳9m !"Qu){TxWoyfmx],dVe w߃ԱGm''lPjnׯﮜ<+ `E=E]ǙiϳK]\s|J#C\@l`'_il/k{c`-ܿ2a5'хb%75YUZ.~-#~-UYiNhhwrI ǩM6 /d͐m6 M% P"F5~7 O6m u6(t]'ӵ15{{Ue< YEG"@&)eb2ymjoؚ站ȹ}r)+ydTMQNmy\^^ũ =a lkM`5ۄ@SIuKb懅`"'V"m\1 DGiĤ +^0 7B@3 K$, G [k֌@:S[lIۘD V~_<>`=;^"FStƘGn_$ͥ#P='11x U;nScA|F./ק8mayl7]Ke~inwQ)޸؁ S_%.o'(ΤIy&$:!s^arlaU @/? :|(!X!G0 O?빢vf|L9qqԤ#fχgs X.Vm<*[uobhֶET%͇hGջ_;P)I"rPg;CeL ɡ ڼ*ExfBfPDP BV D.{Rc> ]ooMטzAm*; dF0 '\̢\{J-v" l?aGP5XNq_]#z:[հYJ3iN/a֬wOTfN]g=lts9 {7؏$!5?CzN|mQ%`p@=g*'$J}$[6PPaBdU"T_x~ayajYLa㼌sr&UPL#羅[_vT[*byԚBt60CY1p1gÀsvӲ OY>fg._yxaU-}SV}4"Xb5Rl&U gl$HX\aʧ?- Mԝf`Ԩ|mڃ@L0QϖPO<>?ڥLTx³06?bboxhoݧ 3P׺w$1:3YJRܓ` VF5]xM"?X}W8X4~g5eJMz@{ Ļ4%t\=`Cxao1u$&̱^_e x%E5 e!HrMʾ0P序r+њ G'TNzK'XX@ݯݩk,Ʃz13ˆead8^hH}n=]b駙x!s {Du"AnQo! zbˤ`={h_Je޾TTuzbp㫰4#xJ~}Ïc 1m9WrWg{3Ũ؀ s {z }4}dcrt &4yc\x@ղ[i6q"r~5hhtt6q3-/3+ c! 9|kj)꩜b~'9m;uzԵ=(8x˯rN?kXɶyP>l| p~8QeӼCToz% piN~zkbz<vd:c]a1H{s Gj[Wa9šm"ɂGv0mGeHO6|QU:I G]@T')P E/8PR6Q4`Fm&lts_Ɯgr`Hv,.PJ& vZDzqz*^\~D@Q<z`˽FE]LQ5@Z9_Sz~nػ 0L3vͽL275ٰj̤ [])G nTwkW5 \sol5<| jx`$𶟳6 k([!XͤQ~h1gϾmm/=!{1 +LЀ\BU[ݭ1X'<:o;w71dˤa`6H>),L72ݦaT5N 0- % aôva#}S֘+IԕP6M5$0m&A 6;XReZ'E%Wl(nYm3 )`T{ι0bھ*uu_UCzmr/4;7POI<q#$U~c*` d^ #)cdD*Z 07q>6qJ!O3ҟ-| AK@"efy/3~\'YYiJ)<'ݫbuI;F0`zQֵ2GD/ .*@&38O'`ݲ ML;o"BcN{MtLfxyHPMG6W޸N`o{t8ZL&?~g > EU} 0ӤMX`bCnHvRΤ%re[|_ZRYuP"Īrڼ Vڮt/uED>sƄsJ2!Q.t^̭WFYVe`y>2oOscy-6vJ|2Gygaxl j.We [@ovPlF>s3`:55+7PeǬ&4^ruVI;d"׵x9fkXh &| = m`wTgfva`y~P=[x?~>-1GN`+UW ܱIXhvm|i) 2,7|d{I~ݜ0_ma]r~naqڰ`lT0`FkLO PSk|0y۸ϻT{iIWr \@V9"d V. _jyM43}LLIBL&NG@ڻL3\Idߜͮ4yO \[(°n|j=ۤe[@48h\ o?I֡k*p%O'-sGn4}iOCF1Y7ˏ%cʎ|N.y 1 uo2k-prt_X0Uֱ/u{b1Qo$) fkXjʚ:v +;ǧ$&˻xui*61BiUkb 9w?Ju-S6E'gn.3hmEf \{= 0_jY,U(+#wWAҵ-w6> >bo}Ucp _]aPGíqhԇˣfm9@B7lPYw1V*sm#0(q)BFF S$, %؁цQ39-GS7)3V32ٰd9L{74^ikF]OBЍFnVXVspp0քbKS`o/(1$u\^_+E4pdZ+uɨmŷga<=`дnM&iEe~TBys}+ˤ=㓹$i܃rNѕ:Ա>1ᰤigZǒyd ]W7{% Z~ǑΌãN!Uy~_%UPA6CVs2%fm`~*C5dm|S؃yFrާso,<nwwGzv +Uh7)ܫ5s ѬF)p۞jⴌFcڐ]/m۸>QTwòm&f/ɼ6P|S7Hm<(.51hh䪀N :C{耰ܤca%(e_yHht?gBϴ+ڜ\Bի1q*ʄl|% L>b{$ "Qb8Ce.>"!|I`"qs|n=nY6_9.޿xixgBLcc(3nqu0[Xg+@8Ȱ8\1.ANC4L;dsxSr⁄[Icu6 &k&Y C @o-\G_2etVSkR%m?9^6$8q}ݼ5uW="x8؃6ݜTpkNK#̎9Jh&aR_f[oT&ԧV6 w@yڦ5$A"l) U"[n%ET qbr *4~9Vb< H8yX1xG'VDvb.qQw=TƢ(5*{] @_Bj 0NAx#B%τ)rq+1e?Bx$ʦvDw]X*YOiAU=` _e%K-MD`ЫƧ~:X=sbeeٸ=$(0NOʪyfV:*1bU;O̯7ѹ> >_g9Lٸ 4Lz,nJ4&]6^Ih*=LpKje 1ƤTEJa„!;y "肌ss. Tl x%_۵4-T6*~OuPal@hQxSvN Ssed=5urգ&&NP X8 &9!t+kqpz8cC/cVl;wuڪ._@ <` NCo~/ObOysM'Gg4oR}qm$7٥[ū}Y;R CuObB͹qͮI"CTr0he<̔dp'čIyd󽙯kCĬ6V8kvy;c5>]X$HX,nu@re2,S7esm֡+e_~Ɛ{>ꚱ*s֫=>G##GgubzV07h+.;wUOvLu'ma<+uݳ  j+Frx6]ӭ{u:,߬. #]%+UIT:lc1Oh VЃA _'̢Poy(By!sښP*0\~lCGM`ٟPxVOPг!&iIO%|aPK^x]:?^-&Y9eD0Z`X\:PyR\d)DڷBM|=p*H,Cpbm<@zl10:=N'@@ `:w}[ ujMʚ`"r𧱥S2!O, zjcbT]f[pli' =۩s~皜E׋]^CkC]`en{}}`uk73X^ :#v:'(@yǃ}ޙ5zgbkwAY[EX:Z Zfۉ0ُ飣wO}gLn_Ѝ͜M]òLT8Qߥ]n %Y_5)VkFͻZ[7;EDZb&#M;dU׼Z!-f9 Xׂ5+*]SV;8Q{Z'Ĺj@ 0t_)1@@ss򎺘%`cUGy_V4H=sYM/SUιx10+ߓ6݋'?Фn΃Ò  lf<ďsUjk*~""Cࣇ&S4jb"{O0[Io~"p0¢$z6±],kq%_G_;X&z@{㿍M!`U!eQtTV="UYA efY  ~nُ!SUM:V3ZB *'+u/l=woB~{'~XBa*x50`P hl0C̴gje@r'f;X+,e) P8a@5+9l'Sc,j ?@6L@>(4wl鿪ɫp1gض#ih\ x@3ho*o_3g!PUxw ﻼ st8:mA&NJ5Y>JP}*յ]u>XܱC#`^a&p]cZ5 iTDo=3@S6K@9ˇ` 'GNh@yWty| 8~|&fY h'!5 qJOb}Fb35옳[:૽.p,RTᰢ*iq]=(2{o9Ϛ0cNĈ[s6=iC9y/qG4^S3 1+k^>F0YLT8ij +z 47%}SKE]<Ǻ!pfUb? `8Ut9e2Bئp_ HMuܱl<'!<'"Iix|71bnU;V5f1}'h)$69vteɏĸUHx O?{b_X> u֬u(Z 3r3x*$k)EMSnOY hb22a%I6ITRnT ۀ6;,37ca *U Ll:zB^/'+{'Tذ&,S{gG5Ц^N =Mupes?*6U3/̑ZդXek P#w N. $AjWd1s);u&|h2<͎^N>ХmUW[1eO}Όwcy>=S{HGߴE7 ]zP1cxYo45a:p> ZlCVi@8j0/UP 0W8apXGdӜ<+#2+ۀK9'M:U2 4M^2cZ(xL3NJ,:6uJSg5bʳ7Iy'b68f״dk5Oa "yC͘0C``iAY&Y{%w2x 5H1 o&obY"u؋~:U6Wj3}\¸wl&(*wdcզz+f0~W*2ڬ܉772WI;;ɑ𦎓 #P i 8n,KV@/@$ ,!zqK]ZBh*c7ήm `O sL {j'*XUī,T=>=dQՁ. 6qP@2J>дvus.z]Z3&(@x:[w;2߅!LjS3>A=/ >;#kwiH R' ֘`ׯڢl *%k׌ֶyՅ_0Y{*ai:GDU\u:8\U>"\T%_;IW/NjՐRA% tȳ4촋DMؚxŵ a:ЏTVYQnEɋ<[ N 9iSf)KJuQGm[IB jU?7l C*6jg贏b=.;I ۭ6^~v|z%jdl̞9i;XNXmìimˮE{<'ˣ VZ-{Eg\n4 kpdMuKuLzTeY*!KH^iKY~l0f*_nX']ԥ/adXE^'#T~K#լ(%>M-uQ@$GU.-*G8-:>vOP]N >''}ڴ FiðcOj  UkxۧG`j&&+7"î$G0|]ku*r~<>rixօàaꏉ@G휾=;⺨Mkaêw~ЇX?eԤܘl>[wu9 MPw N:$L\p.ǥZp aŜxbu0y$)r`{* 9q$Z?7:z9%{lϞ|i U"*6j8(zŅ rs0U;着sc],px"{U1E@EDsQЪ,$(WYwk0 5#-{~;JJxkӆ2-r,4VUA |~esN{$5'ږ ^Q mF:h鿪XD= TdS/@5P {d;'9f"MP.ǯ:z~4_i]#a(#(DjדO|e$%V% @V)){bibB}`I0Д[u+x{:-,[:z nU'b`I(E&dPLfLGr80WتP0;K?ڏ9xOr`~;irù=G>:9n=۪MJt*r%|OT'(=;jko2%d1{&4FxHNo?g,D؉6رI|/KFwYaBC;[(5.Ԯ^zs7CSmu)87N#tpڬS'K%rm` ٫L aDQ5}3;nj}`7YɩdA WaWm_ݤ!>E43xνȊRejy\6:<Ab$nB *䏼4{Փg@jGKĜXj[.З`8;re;R>f{*rp< x @]suõ 4=}wBm9i0'i7` {{k+p@ oiM:̛w8a3@>7܌=cK@.3. G _rA1Pfsd_12=Նuֶq[,vX7m+tO9U8՟w3;mx9聝Ům^֖@zX!> 2z38VsHj]A{^puu>0f~kgNc>\sܻ? &m=>͘:zxico&&al|h5ŷ[[Cc"x,FM:DZ,j'.Z 횮GpjĘts +sD] N*$(wyٶN{ ;U^&{Yƽ!ztlc{=z GQ5c{@i xD:`e~`dk!CIkjhl@aq~kum)aC|x+Of)`'11So婧!Rmpv$}uRY,LWz~O0̏mNhQF4#VY #?Gm~i{i6c>]~,_0,flnq#5띚vnUȝa`4!fo~+I첯`/t!U9zo?9NzoK2g#ݺf4LW'.7?TxmTyٴU:H C\euK4qFXf|ȊY/osW004ٌ,+GrQ`sYLF"1J0j31l4'Ou ƞS;leqʠ=3Lg?(;¨I{W`G<^ @" #\Qڶ1&HեݱcÀ/ E ^ji ksF9Y8QA eg>l*x]a>B cO&GPuj!5*RKNQi~d6 Q[~G5ea~L>vZXvk]5qcge%c{adV3M4ͼ$w ܜÉsG܈ڒ3 y#=)g2&ǴW>1Xv\pe4/v¦\U\Y}?߄ɴ]fn$XF6hZ7)#@R¬ksgjve j@lc/zc]ʯMv9zyjǕYCծvUetnW'.&6òh7w]6m2Cdp6&_&+ 7oEgٱ'KtxIT垉M$ DB]뺟v(U aVUbY24W\ TxlXyuԀۄq9 |3@؍Mtl{ĺ g0z5yTU2ӂ^y J|ڷmV:V[[0F Qς_Q cܲbԆpW [U^JX{?/}Cs0c 1ػs4u ٶʿuYefזV\^]KXYf+2zJ(wjAu5UM#wqUU@j^c'uu#P\Z4GdM# ,) N2nQլqgQ T꾀kn_PdԙT4Q'e캲TNlYf):m&m ^j3 PP{,'!4&!tU/@Av1ɕwoj3 |a:ݻSg`M=LVtW>_HsݰN'!ƎiOu5{!]{vA+l`GǨ.. .UrTe+dw6AG|[(eu}A(l^VY,#먎_M ;~@ ,S_~u33Qx ,Xi6kTķJ0dB{N:XX"Dtp} ca0u6"P9-҅Ve (XS`a^+yvXyPQB   8vбa5X;bD}ܫrU2ct/G݂)-$w*ek[\O*,*%FuZݍSFoX*̙$@4)snuU7dm7x|O ߓI{(;Yb6=:L~ 5vY^D6edP(9̆: XhX ;']ԟ`4]usUfSgB0CkM]ԉ5O FT G)L'=`Q}$/5q:W0d 8g;Jo*O"]JUեw:`cT\S]\aɀJ96H<$ pz-oƲ-)lߟ~R̹mc܈^{5W8Ofk֤B%&M+4?^~-sv]vڞǮOב=󮏱Y%SxU9;.UEY`weXku3@]\+BgF\/գzS3ys' 5`3WvET]guPGnV<ܠF kcƔg1j6bKn:9. Oj)e+6&b| ڱY+o.'͐ɓfNʟAf cm?!>n@zԏg `m)`@L+"um˱= t;Vr (:PszN :ϵ:ɧ},qm`SwT YzQg(z-8P_T⻄@j_[Y䔝vW[z;nR\}^򩏪=}e2a|wm+N&o]QPsFQ&h2~W`ܭ*d/c'_B0dQM|̱s";{k.Ǐ9uz; ,캲]u)ED0vD Sz3Ef|V }ﲬ^sD;x0>LE}&42UFꡛbpʸW5EʼnRk[gvZ!Yg׽MHKv՟&*0*ڏM-9`NWv*u$7o-vPg$K.̘mQm#6 e2ynqlx2޲}ƋQb~Br̆ 缑 #;n@>I2J]lJ:`Pj d|l.fVGIKdWP01Um~ɤqn}{3v`ɱZ՛1:{z2 6l>Kcek5ʤ ,`l6vit6wjBzaˢM-dq & /1^@zSsJ0u~EPȶTx$,6ĪuqDS'V <q%X+aJjݽs\^dz#o@ʹ8vWQ ;6ʮ۰=Z'xu&RN z4Rr@!^' 5Awl,|sԡ@'6k^a=YNYTڛڦa}w\me>0cUT^{|Rx?i7&q9NV-p.dMfR|/k/zb8>}VuvQ <H{MT` ̉E>7jT ZC/?bK7\d%X~Cԙ/g'hj2˧ ϟOJBȵI`+BL`x4rJ9Jьܜ '6u9*5qU;з۟5f9Q;clVp012,ؼjeduݠNmWmgV[lM{1ŏc};#7rg,b?.]eC\~!z둻QA3fA0x>ӎ#F[ci:8` WQjQ#C$N( Pw$@t!x6䲺2f45#uj|}gT<֭`; v)x= ~p€F\ ;_ uLƥw asAԘ{vZ~LȆUx}^EcnKM׹6[mN?rAڻ>m KlU,؁ӪSwҎ$ z麬&DFbަ]}'x*@Fz nĢ0[ã69D_mC H1N8+Yl o.(`hbb&&aS\!iןf:X)hTu[cOVLt82SWymغ}RQOm&ۮavCh$'цʃ`9Pkm(x$O7R @f&9йiccE5*f9SJ 7~䴶O?OvN u;4: NJ,SoaoFѤ~G5Q!Hs<*u>9gY'RY.i*vIv]a mӣՆoh}I,vYM';Cƽ_a4(`g ]6'3x9 l.,ZKH)s&d?dm:̄9"ݼbVb,03=YTG%vt=`(3BWVW{-H@۴ Zvg[Q3?1kq MJ tA|f/n缲iԣ zs3gѦۭQF60n}9˧6t;*keoKZ009-w2uAwپm5l<݊EUP. _*Y/d/,߽B1tʣT&OMIpi*8w3!o'.w-#-`?aj*"Cɔڌ9WT/e}YrvO"c"Z^j!d4j `@Sf 2:`d93@(lg^թJuSk{EE?[y-_8oD20h̹gFD8RV%םtJ7VYG`` zoMtC:>ku=6c=+jm@`J:􇢺Ew ux FE Dx*cessG)8}J24ǧ{ǓG:6X:({1]GUn`l&P>*@ £|-&1[|ul瀡kSirou6KPhSYm͗ ƹeLL~j<S~UelPNCYj3vQTcRaQ:M:QŦ.ԟ$5p'͑Ix !h;R lPJ,'uPD ;9/qi,!FD-4^?l l5nX$^Tԕ͒d~+jaB` ɫ+kZ/@HHufA9ҳR, oALnG%O]Od]ɿ:P-H܂Rր b뱒]pdè!뾼kLo3i:o-ނs,R0YCWpk[}&jc,]UW-l@b[*RyS]6ɲU{Q+Z_;~S[}CT 0ԷLCx W46_G15GZv .f'`LVέ)k,  ܻpx cz`횀ە0_4%VA"=TGu]&IW8^j\du`}RslIT)cӈLԁlHX؜[57..NQ[ٺk,WOSӜ f72!N*:pmkgL72*:Az{3&(uE`'oĻb ~ (;\qzno5Nj݆Ѝ{8MRmLǥ:R6Z]@K ջ;ևy@~o+ec* w6W=QKYX+Q{yq%4\' J7Ņ]X큸z8Qz+OwmyIxHmL$@޵PXONQ4w`TNޓ)mϵ˼G9bSLbquQ8m:Tfe}]WƛIUvZrx2~LUMxb<1M8{Uuz[}j3gیeۅ}sueqG᝝=5|LRvB]ߎl^K@ںJA`Z1/"cT֐4kt>p8ikC=lƎ=8T˼+(Y<^@QDl [4~բBr|4Qծj%CG_~ bM9:_eu 1?0c%byPW2u k4pk]d 5ڐ2]jW45qϟ>xqRZHp+ OE^fr.CsHϻm}\wvMu+D6xW.LB #}}{xN>v_!cSl/2>vۅe(ŊX5+8be[֗2Rx'˓4r!Cy @ϙf9!s͐w0&AV}Y/dt iPݨ8: %`0'pc9/R`3Søf5#Ǻ'l CUvV+ø `BׅA̫hE妹V,I{U0O@Zq]V0bюUUhvra7rR2|}/xh7BuߦtƛI9mrb?2ۀ!p|ؓaL뾣t6XQXx5<0:u/c.x+} Scڙhl7 lqbKri{g<Z&]YUgaz.069R_,rSCrژ㥔3(Xw7̓}k۫2a+\fjGIO] s Xb0olʇw7Na7_soO߾95^y@pp w0%wM82*ONSw"U;vqYN*巉0wY}&2"Djf!I3^;{g_ 'usÒ?jHS2O&$~>:7{&PGD#q0I-ͳk#sA jnɆUڈڅ.(s+F򘼇=U^Tx5"XewO%#T5]nw7Rx|'H]L-O'WLzKrY$LzgTRkꮙhϙUS:Qվj`zzaB\CRgݱtzhƪįc03w&xMܘ͡uX:5Xjt=P˳i yYYgKJťW#CrSvه-ۻ{fG kY@e-ƛ`eA Չ߹M6GmPNבIRmU%n+YV Ě1aY636FpW]6 2QW`7q40ZfjSwЫ.v,;n>1䂹QvGپG\1`kp/[:j>VղǦܱmTP A18m+@yެKϳLğ3ڱ벦CbP@AybͿJpCVi~7~F+mR#YGTN 8#9c4~~F;m6,Oእ7/mcwUΙ\i`ijnԁ[ȷ`e;~&Ф~]֣gQ -Z<ɗ;1Ưk.\h]s GQ7{9$hvMrFoF;:jXaObmT a \{,իJ?fYnm(.Lr[,{RsaNr#+찑R(ߥ0 ӱ>=hEKoj`- V@ߨ]`0Il2Sg"lm bR\(F/;=#='#U2WYfQP[mYpb)kp0VLAM!OLI%hp`?1u]wUb.O];Qd Tk&(pT[TFI6.]w쟉MAԎyջ̤,uuL:ޮ%܂}+UY=cɅ.oSa]}P>V~U,,6z^X>^Ȅ'S&032 _3Y]n?gn pRյIK6FG`V!TCNNpWiMrGu +< l|Υ:Ԫ7i5l~$5fOd`n 'a9s6lo*2I jB>uxt8/kj>fMMj ƾ(\{u P9 umvѨ2s]@CTDós;cL"D}ˆraRh".k-i#1ul/=}",iRUm>}3Y s~+!f^2 Lwm"uAo$+)ͰlJi98g~S^9  bU]0x$_>Xτiaͩ| wq;F]Ȝ!2 >fVl!.c *CxzNv`E}PiYT zlp]DYfZfRc{x {ہ>gFh_6qOU7$ǃR'^ٸ^lwSA9=ս&pB (:_i]%o9~oI*aG_29vV? shQˑX'(z5N+|=@ۍͰtOVFC6}}#5(p„n |{CWm!hw2fcg1Sݓr P_o~s(i@kh^^:9^/iV$ Є)E17SN&_4wtt>+}D b<jo琿X#/_69xbsԪv7&+E; My aZ](u\ Tp5&EdTbeGlM {~w_D]`yD5lR w hKy{5,EÝz٬iľay@y={|I#pE\bmTKa}9 5Ŭf>yjA󭋻7j`f8#G1;@wb#xӏk ꙌNoV~ #Rufl%X;~6;=r$8#?ڬcdx (GO~tdz{@##R~SzXKC-U64]]~ b"&5;ME\eךL4PvQITcTyea'vs]+@\+ 5#~ڎP~ϺO( TE60b봢L"-RԇNTyTq@9h<F \fkx[~>ڞ;aӮjԙd$$T 0՛y[_cZFdus66#_Z9=od[U1Oq4 F]>cfg$]8X'AkpG :aצ*cUVxRxh5s1oenFx6q*[N!7K :50>ODcdXSv. @x;cY"rt6?d߻15á]9 @b¤'ū}*䬡kŠ%'wkgUG3yX,ԙy?|I`đMhM@'j¦.s>f\#iV{\` dRM7R[rUN"nT0+*1uw"u@KIǘ`v+Y [7ǧ.: l1ƐTq|nϯv&oۺ d ('#N&<3ӚH?k* zc|t|Yktʱ&lgY@YB?b7rsE&՘&1f:1N),ћ~0XJsaltK,-p`g6O\w@b"qK1YH'P#P Ts"na,Nz>RbVxig5y*8]նl?`hp:`4 PLCLus?VrѨR}~Rq\Yw.] ً}=Q:8۵XxN;2`5ic:i*B7lZ~c?mLY]4~@×2߀g~hONHN}*ΨOmp ULD9FuJ]{ !(Cҗ\q\6YZ~,y!Xf""!DW dUSC_kVp* t돛8htmyG¢7UT1$_̲U:?aBvVt}[K/ n 7;>a;xwMtLuq~@2)`߁,w$BQA\Np\siyc| Q c+P:B%g;9 \IjqyeM*2Vx,h3`2l5 H_`F5cc]s'fT\}~L ȘUIF2X42j^V|IV.0)FUce=пQrپRqW:6}6+z~ONUSћ[9\OZDaiT `=06=K(V[?B],}eTh4~OQ.9k0a'~sFpе*?E~N۟ >[p5{1ds@2 Vkn9HC!!o~ېv 2;mf=fhOaJXGèy+ן;A̘]|B ./SMvbT F},TZ'Gn W Nk%cO'Cr@ʠb}F8VYf@ҵ en^KilL2h?_cf"@X=H% ﴣ˛\r`YxDӸ J@F. {jrkF .׃wP+[3PԾ*<4,FIgVqUlU=COWſ9MDQQ #p>uAd2qͺ>>=zȜa9w ' Zbǣ`؂tnԓscRAUØ]HyŝVt6+.8?lT ϖ8=m #T)1w|X*L5# ӏExfk\ϩޒCfKSiiBvF(<{k?T\h,dJ=0K]q5j5"A_~TUTEDv9e̝Ԯ d0`G,q!;MJ\I x[ uhLͫȦ܎ `##XMhddk*r zé9G} vSS䠓{+T??(Fb8-Oًۤ.|yg]ƇP{dK)_$/ePLD؎_9DIrL5>9$0h\jom8/س3//6-&>XeG=. 1fٷ~A=?'wwoTҀI8/ŸK`OV|N]ВLEc=g>KAjiy&gyc[}vYꧫ*dӽ7SW+K憤rh";jM}|woqQ7Cފ˟~6`>>DM{@p.Ȁ\Ru-%HJyi'36r63&DȀ ]Y[W(.ҔFݠ[l/:f0㻭uҭk` /ԓ7;蒸ߣV&d xFtpp+ߩ,ܴeMMaxRtZ) 67׵_=vm6nvLz&-VJ$KoV{ eS]"$ߎqa:S,@s`9Հ^|zߴ; ֤L^3*2cFous`ci1O U%h]^Wzk:1o;W{ٍ*7-;d/dӸ~1\LU[YHڦo߾Z,u:ː5fE8`,bQ2N\|p2W[䲒n s&t}t&'+~1gxzMeqe>[SٳʭEC賌r% ̅^PD66 @m)`Nw,y]Z1NX362 :: T"U<"n%5%2_M f_,9ϴd:ԭa iDL۠,*~IGvVtURbِ6nc9]RS3hԥxGTgЭn/U8m@<[ݸ ]4*A:spCDFNrE^ /]8і\(\T$MUGF+AWl.-TapKyeKNNM-o&L͛cNbtӃv"d#6'SΤAZvi08;2rdQU0Z܌b;FUU- γ]?(exT}EX)WtIOو DCE+t1T& JV[K_2$,. P\0TzVv̛P*EީPOy -1t*DS>|n~`ާ R@Ltnz._.7k}e;Sϴ< i\ N gj˷&D;;˪SEje.OvO? fuN}W헯 GyAes}GGO*"`Њ~*& 4@]-m 劔 r õqha4lEXdX, sw>YEiJ vع4&Vi^`ޥO졳 ED"}޽'O#C?Q9YeF]>+W>dUu/A5)~+7M sx;XJΖm>=K(QVoT%""%.|I?viquLJgRE:#sE.bsec&8ILQ `8[-E v'Owb=du\XRNf*{v#`PTK B{)NIl{L趘_T:c5m8)nx~pt}^9}*|id5ޞQst#*PZ!Xtף'O#Iw`߆T57 h8cVm[qc@FBДR׮Dh4¶o2L_>mI!#ݬ2tX>, D).)A *#G VZaу/s?i bcqOefX06 Jg 3|:߫M%Pmj_S+7ɸ[4қatvک4eQF*E(Yy,@'VvFžT%lw`9ڧv*q,OA/Q~9z+& X,?}^-Dӻu;ĝlYzҐNd럝tTtXK/u7E6~ ed|bCvP/ʰ5c@c,`Uruw*?n.œYYWacUi x(MsZu+.MǢ$.K~ \hkDS9j=~ϽZl vo7az;pSE EC~Af*IC `0[/hi)g6]9+)kJ~GXcP!ڹOpX87B~oJJ`S5Q ~$߳֊aME` uhS|>ߧ@JRh_z-[&X^\\y[$WCpE0o#5B3H=lr4D+Zs&YWc-`man;efRxgxQqRqjqm|_PCyk͒37[Rs,dĈR0Zdfd%K5&K%N嘦V2Se|rG|*x̍eAH(Յd"ԡ!+ i3-Ni*ۏՀtM<t `b0 `kP8)q'PUeg,!@AI wE[Ftye,EV_I } k6:L?RC95  ?Q nydp׋OTV.K~n[˔*e]E7Ӛ^݆Le8i8?ˏnKKڪh`Uo^s0 d`2&}'{o0GAq^ʌPQe_\0:egfh02,l(#y` (-eXJc(Fk+wjlM[Tν3X )AZ 7`**vMEW|s 4i?α5JChՃ# 8Cmd= p rԗsJέae{?-c^]!}/E)@u L:E*Z U٬7Tkk'e2@ӰH/Д~C^1x3v-hiN/m}IXF6+ˤ mDKAY_g% d%EiHrEl˥zql䧅=ò”խʘ6LȘWjZ+ך(76=7މcQ`>G87(3~˗u2LqEzP+Q1!%wʎߜwtX=Aoؿq|) #eYG҅,cf),Qc sb%s[(uhA+I]u`M7Lҵٳ 2i? }Xbh2N UZ$ҔW`}"_6+Kwsod[{}sSU=&ǦXmVr1x:BTr19uo3ǯ2 xj:߿Z/-J3U,[˘d`hgT{1KEuǼĭy5cjZo朷T[3rl(x^Qa($BX,1uG0і36rfB6k; v9sFَDA&Z~u@Ç}<<?7,D\^r@:`]%M^~AGH,!?|ZD}#ڃ\H]~`U J l0KQQ i95Z@V؀eQaY23V=57eô׃) 6FbNRZ zF[%ܓyPH0~\I$F0TP%;`K듎~B%y\Qy(ı٣1Mkq1)ڭy0bȗ9hT)٬ 徉PyByyV+jk3&&!v(\j/X^Ό)Tb7EZab\ &s edV&J a q u:SlAۿ;8ͻ9 tt 8A[~<&suuf[/yk?瘗|& ]&s- Sؖܿo}-S-D@U뭝=-{äv:P^/돶~Mso\^"&gc7ڸK_m~&/O Ō vH2*h 橃(d0iDoq_}RsX4=JP߷#ȉ_WW0Cc"'Cb2_́d$؅EM BJBDh~}(fR]RؒFY~.:V./&oG!Ht|Rz.@T>7\= RoTr8c\ 1K& L~o_,tV"B--߬”CJ[`YkRw 4aQ'ԧ 7eZW*Fn[MF+֘'ӭ )45Fj LO$4I!(&%;̵Xy\%!Il^Xy/p3f)6oES7#xV# `eFono٩R2k͠(]O.~ӇB|^T~ŏ[9:`";MFj ǽԽbi|ްZ|t7196tU-X1s:j1l2aƔvfl~E~5L-bfX nzjD&shdxOB >_uJV+#bD?)%"b+J8ôMIiã1NnWS`StBp"wQ"@}u D*i? slQ0Y}28;;"#UwO-U8,Q'U"%|;z"dw0Pĵ@cGXs,``)eĖE Ѐnvj,\'9]آOo$ !L ݩx 88^00=dj #:IKnS^|.AXzi3}~eT-)؁aM΀*ĽuZN@ ރ "/msmkI/U~dj@]vF_{8^i!0JB֡RsHY Y~nV4*dy{ g`sֺ܇9=1)s'[N o}]sxԨZK:ngfN'`\(:UDn)/*X|ʼnC8R` BKpvo8;~nBcNNkavާ] 4 =_I<-8nQ/69pv{ 0)@ ?&L{i*_o={1QYW~[ ebO4^ 8tc..%}!^oSNY@Xf?iD aj`*d@G }~n%te@~͠~{q/C(.b }0]-Hω_ )7$/X%SlRAR-*ZuRnRt?NYs!\8ŅV\8^*ԯsn>, =?Hs-IFnG/㼀#3[FS|"c6[(wW>GM.ԑi?%֭yD̾SZ,emT?#6`?’&!GԲ& *M7(%KbJgr>ԈdþۛW>X;֜ +snJ%+Us6LCtҼR]ߝYlHMmR01?h)l^lj ›`^LEpWR:f1wO..6s ;y賁2rlgT,7+_}8!!z޿wcv -Wk_}-պIH[fa ^pp_֍y274M9IO&5<>|]-cLR~yivYvkFچY4a6 72 ^uCIVGbޫ8xJ@+a(QXnt`}LuabAi-tc cr&vmalD1ÒR`fXwX7kI uKZRKH}!0k`+å5\Kg &X3F0Zj ~Z.<4ܫC>[gKj$e42`+1TsKULĎQ 0\鷏O:y  'Э!(놵 21r2;hVᅐv dҖϷH-RNL=rPjGvL## e ~rHvF$aIKTߝ3 Q)U$V@M;T qD*Gy}*ıHFf >Eѩ3 r6ns@5yGӧn2Jk鋑ȋU8d hcA.?%$e"cKe=oMԇb`2#9;*UB Kt.dl'?g+-'Re.u `+ӱŜhq{V&[3)\)Ɣ3 /j$߫ґ򓀔Gel^7eߙt-~ s>y[94ż2 < lС<[ٮ[wǎ I?A6XsFIkwg-di.E5VCrulpiQV6ֲX4J1k1AǜL#-ng!_YLz¾Ct7&jR1n5׺-6yB,$ُdŪLE.  }:}aU4{&O9WNZ1>@ Avt ; @T~ ıCa'n}Dg޷Cr!K0f  cN&(iH4,嫗C4*Roz/)VZtJW}~ X4J9;=GZOҒDۙߤp%܉TT)pڕfVU7~/󔺲ϨnUcO/aJFΫ!|-Lbt n.MS s!/% >kM͛niΨ2LagGjyk!5t] f}K7˵v\y0-PA:6+fƽ:xyG G+k' Q#Sn%>Tfy|4²ՀabiGmc$._O! #[L)^ |qoIa%};K'DU}OMf YYOjZE7|)pQG-KXo(R+2hhC)eNo>AP8%?En7}JO%tloy2nG+ /^zJepTmmd0O0[e .q rtpkV.U1Ҽ5Ziށq@>,%K|ڲJsսqAQ7*Rn"-fWkDL%f{=\o {L!7Tܗhe[5 H3-!@?xB=Uja>}M0}͟bLV!  ̪}9_x[:bṽxPS RNg-D;#/aͤH|Jz]O``"osz#>gW= >"ݪ @݉'Y2J۔KXpsr,{탏=.s RE:Mb =L X;YVu+X LRSJ!m(3]WHΌ Т1C$9?pu_:^:?&s4%Y8,dB86̗m$9%e LLǔw JfmD4"4 3}6E>5A`$ {:5M#252m׫I|`{ 0N 7%nHs]٫.}٦JLtu(tz2Xc3wnY/W_uĴ ̡E$7Eyeɖ/e98E$ V@͢V&dP}1/7ǸD("Ї6ciw:x/=V/ .LoK56afGKփF!觬!z0ɺ!ehx`*2vP<(('wcԜc,W .ab_S4Yiԉ"yaD2P|LoϕtN+ʘfDXׁ[dl4BaJ]bX&M+cG,/ʄ: [ \pszG2ORsٲB"f*Nzhg2]C_ׄ*-7mKtVdyc r9sn ;RiDO|WӠ`ňKT>ujϛgƨ?(}Ԙ3Rz^-QFηYyCq6Thn/_2% ?cd S#U}LxJ>eȲatwU>,w`*`FߪXW$(b{n0K_b!B(-BL(_dЂO)2^ bZC-„RQFۥ\ `ʜ1g}>c4&2幽e BD|@P3,@$AS%_|ɟ0\1 #oS5m\[{F7ǜU4Mve2 3m(]Wo:Xf& @6&q*Z}b͙*e{cʔ,Y"LdYc怀-D,M d-#ɶJekw/'296D];BLX6t.tJk&Ю G|W20[vhQι0=4" Kh +D;8jז&oֱ0=Xؗ*1@WCj|`r!Pm fZyk M !L[/A$7,B)kȅ=]G MithMQ)%]+>@ANfˏ\z@*@&.\!FԦg0T3@;`L=;A]*#3?H.0>a1'''M}"O ,KteZ z}۩CnФys\.JDVGS#<\#Iag#6McӠ> ?Yb!~zzOYƈ:/_2̾w}[[{FpG{(=Ʋ2.,mc"*km>(-sjR:-Z'?+UDSlj"66L:2}8V*0:bb}?RSmթj{`HR2͓_1`s`y-5d/Gy}d ;etȱ)!%??ń<Ͽb|yo1r1e LhJ1YŜ lmT'(yaG)Hzwgh!;R[t*(3:s 6 MJD<u0Ê`u GUW=eBHVܵ'VՙBkS@E{@`[YxWD )P}hQ=[ɌۢM|eqxDtc ;|mD4"uy]Y'w0U(p?pbIi> M~Tlwfq~,( vhAi:9V.n@F(qqzL[ }~=c?Z#,N`́J ]&v󥬬.gr~5FXPDশlF'T@j\"BV$]&8W`: 3n-L#E e:#wrq*4<*+7[3 K9'5F1wW<ؽ1>ѥ HuW_k v`V@/Qfbn*lkgM fgMezcDDOV3!92EYg,R}A>2E=Lߝh@d3TR|L5j0*5eV}/Řec;]JbdjBVM(#_v&E 77SAA|B[3GaѺ MIrBda\>oֶC,׫ߛjX'gw-LktZoZkӴ;=V4Hz nSҌ/r`Y$o0mTFN\[YVֆZz 8dZJy[vۚ[ ҮF^S[!b4wt S:IOgݨx'r̳1/oȱfRι! ȕC^M(z,e@%7O'sqiC`)~?'[>Q `ej⽍ڸgǯtfxHDUU}יS5Ѿo-Y%]#e'[31X̹qp_D!4ڸgHQҝȧuLc ED#O~&+, (TV mK M\ pSWٌY,Fgm5u|&iU@%@G:RYD:("Ƕ a "f|Ƌj>ޮ4{F 2h>DEng~tc[8#C>bdL.7Pߪ,iƕzvvJ`j x81z":0Q_mgss0#VYR(='ѻ\ $sƉLSR\}ry5E&i0e l! 0ʤu+gC--#DApc@y pot!gU P(qe2m$^vy\H{T= ~BZup!]5x3Uj쟩'y\SؘKӸSR7Ar,Vnu.ftWopkί;d$1 ԥ^f;Lܩi3[n[ZZu.۸ ? XwHȂ# Ç:nhv O'Q^2>1)>&r-ohl5åTgiN(blK@LPb6'`&ĸ67] zB\t޹t,ܡeL0o7`T!Pyyi.w9xL'5JOT]fGݎ}ŏ%)A_6u?67]'1WB sP } S. h ̗0\|HYhZA1U?LObA,! y*J >`[L4zԛsLɩU,=M!rdQ?L`몪үE!RZoHC60`uZgH#sUDž9GYLu "/Lo}x {Nz%O^]7V qoqqvFJ:*d:rp<395=0Ux'|swDLeӱ7W>I )D#l#+!ըBj:D]; DdsfJmV]:FP9->mS h32h@tdDFE ep:d :| T Iö:?H){1%R^\z}6.8p6$7XZ4O,/>/]QB:b`z6Y=[?Զ-ܢCd YLLgȅr]8늂KEA *KDŽN6MkmŁKST.yY#'$IT=Ƕ>Cx`:8 ԀnxM5LC/pl10S"-wޔR<8:"3&'@'(O](7G4@VԷ/TخQ'u5\kPMpF.##dFޞSRHak%5AL˄EνI7MgYG6KuL)E Yo H2DRS:WLM0KKSTs%pGY^gFf_l|ԦMswFn'׺e*~X9RJ/$MQ]QmGakPMƝg]ț\KN\g& 1)K,C)E3Ԩ2uꭂ:0'3ؤnbOSр1pPl&mz~NeƖ.HQ/RKW\`x Y$kAh+@M 0hN1IUGwŭ gsKD,n?DKQAKa>}o3l2>3wT,*a,N:!! |9M@n37A2?v9soKI@ `7:f5tgp*+ŦW%/KzF;j$y‹w`e g}w|ٜ}!:ͪ6 1m>d4)he&NemSC$DZf09uZ&Mɸ{:)N9tKG#Yi;X.ղF*rN߃|@է0㍡- 7/`bp4XEn#c@;>>.Z 悃wac˅p%|F*Ă\:6J#UM`Ama>x @O̢V4Hb[Lȵ)hZ pt$*萆%7 B" S<U+dsL`ce`=%L~Uij#FZ]< ~ l<_9Xґ;sG2UmS ݫWo>: װ Pl?s(J"uZUKkԭ0IsNg@`˨z Y,mYLJvF[ÔjOYE$/k`Q+V,&7!f- >qSX@mFۡL 8heݝ'[(̊5J#YEn*74"IY#CQ 7*,ȥH+tjfF<{|>F0<?Ń xQ0L^u.^wT\7"R|y8(t*.*Ƅ;`}Y>*ۦ& Vlj)@IVGKFnHM=AjM1y1oFdڑa]%bf3) g-c , KRz%'?%4gIiw`|JP?]&$1>,۱aNܫcƤ??Y"Y h _I_Ir\uYg|囕6jCGJc+..|јr@ȭRT}j]#{ab+1!D+*kb(&xQI3o;FdM9kK@Z#8j3̺]5|v4\wඤ t,zRgPjeCQ 5NlTZ>wsui@4g)<ݕ DZPmZ斷uxm)E -eR7ker :H _]˂A-֞69v'`bS`r/'$~r/Ngm?:.Ra RU4"ۊ A4db\X& R>W}rChPY3of>n#H27|h .;Bĝwwf/ń9d"0}Kޭ߈GE)eT4HR o%h_-׈ G#)&`3q_FqJf=)oXAKvڪW̿a?h1BZs$N&!oU%88xy'7I,Vb5(ڑJ̱l0e!0'36 )捩ҌR3XF"YXI'qnTɖ@J5W[uѭ|eMZO?gؓJbKI]Gmm_lWg%Q{FSdkǢy4uθ (*HrSA*-)~fȂrTd,> RCbMtx‡9OO.!2\H5PP(y ?#p.ƈX)ʔ' pm"'UdK5Z@{ 7щb /z#3,XSh :?kk|5AוyJob7Dd'(bMژ3Xڻ Dbo2W 6ͼ>% 1@&k}FoN6Ԕ,LJSJo8#v9J}f~c:M~hN,פ~j`/ Y^cƧ_O4}d)}#3JP>-`*NLVXXӂ,bǀ4+<gP&P3Z`CŤ_ݍQ,L' ZJ jZC:ϫ0[#6mg,9:RGAL3 n*9>oG3t:1=[<x!yYoV9WTFcb~LRr̃l *);)F̉#yN-){-Qǔ$ 8^^@j!HL~)$\;p^F1OAnB"^ bgˀ9S+_)+=EA~?!w0G/IڴXQy[͂`ob^D$qpN䲒sw )FK%aɇTNs8.zƨn}iisA)V8RBc3凜oc1r=A0UHzÙFqY@%v[D d}O2-J|RxT`=Yc‹K1$ZY\5{LLdY„eZ5TUIYb.L@P R''%(Ed,YDɉ94b jq @K/(a~[C`ĭHΡ޶b+7ƶ-U@2l,@kxUyu=|)ͭBۻT3e^bDBT'լGlCfvNKUyMch ̆6}<ϟrytww\ZK_;9;>rX{p`՝^6̷,(—'UH{[_zOq;Y^d0s!ڀECҰh67V 7l ~1׋SpDãHPW"JY ;n3MjɏgD'hξۚksF=f/x9)Q#d7JCϞ}&4WC{A\C OK;TFU`|>.a |Z0ʋBn5> UtTccFcf`Z !kd94Gܳs2MhۓuC)@d<#xB;DU["ZM!0;pb'1BEt sGJLr*GtT1X}cD]y(JݓuK",S*yԮ,D(=m(KeCM? }[c% 3 䘽Υ )b&ٙ`m.8hGa`/p~?pc+ނ b@ч{h2v l"df:[6 r4ȭSQiDgtE={r@Ʉy#=[ɼPPntyOwsbnxdopDv̿ƿ@\}" P>+0e^37dPqMw"H3:~oskRlC~I@uBԠso 9Glq*w,rcbIAR% 3 c`Hx:ҳrYAڽЬ$Sd(m*1}U+'Nݗ7Lֶ>;' 3#s׀*ЪTYnܯ۰ ,VX1.N}8Cm`-5 &X1Zq($6m:J\e0tsh k"vuJ!—±y8D K LF-]iR|F`H9QP"#:l/1&*"|4E*9|GN܇ZH9 $&䚰1^r`r{Be矞)֨ |r|4?[p"OG`d%kP?jĘd\XD1 /ŦxsmW`À;q)i7I[xxCp<+BhJeyo׷wnC˜)Y~NO/#JDIuGhmk#)/mX1GF"1Q#oרz 8k?Uᦟ_k2k_EuV*S#8v!/{P6)f &`<Բ'Oi;We`0?߬^c@V \4 gئ/> z4Os?,8d USٜ"JI3'Ab;LZ-AglPnz2w;CPG`S{_-@0ݼig_qd1MK`_S!g߸ݽ=[i\*TP= 7&^ .,m'L-J2"|WPcz S81W{EDUxmRgEx +,,9Jx>;;Ḿ:+@>hfS(,aG; .} LsYSã2D{خ6{V #ڈ5p̴DAN:u gWƮrQ "81 Ҋ7BBDת\&YE}JG[[Id)6;CQzYCÜ| +!kgAJfO*].d|}o䌿 ,Sk i#JzGk-ﰝzNK-J׈.X_rIVh. (E@RzgDڴE'F(q&GرS[TqlM1 :Dw1K_yeGN@X|U d 7cb3.! W*|V,JqzEa#'H%xɑ6L‘6 ~>W_a=r˥}#cE*? p~`//7n*`.w asSD61͙ZרEy 엛>Yhml)diBe֔:pu]`.ST(chYni2.<]uiV{6S=K7StlpodalROx`YS;dk0||ؽk?j޽bΠB>f,}m~QQ޳%'g4i|8*\!X.S(DNgy 9Xn"D!A*dZ^M{1 "#rbǰ\~ zR?=cHqMv.}_˱d6jg<^Hnc*Lp:;HUGӵK#}֭[9?1B7tpN%H;p*e=h,i.V;:䪎0pVf ץz ׳t}<s%ɓ#.8HuGoIEbVFI盅#Si+m<+ !T>/r*?->/To&NS=7QfՊ,G/iN0&^J8NpXaYi B7 F%(/9|bp(`q|xCmk{`>>,.ZI(ZVwv[XS_N$ lL$ .E>Z/ο|@=UG$E!_@!(6o(?O=6E Me,#UyOm9cyCΧ`g?Ԕ4>-~?ɌFk'G&[ z8lolK; zjXguwUu}2&&jRcEni3q4j'BYrB>:6/*}ʣce%L^+FvoqDbKԩevʁ>xP^FMY8J7% ZIY߹:=9^! e eg,!4` `cgY(r[q39#  Ϣo9zfKlDE`d~q |^ofʹ]]:֖?o0IlYm&3?必k}>>~נvKR|Aڢ|LPoYg1+z,T)/0Mf:$O10:/1,U|umBՏ6 Rƥp1iH`mQs(7R[\%Vawfa#ϷκT;l6TDȹamm&lL9rE Y;nmK܅ov>|64\ (~rvE.+L 0 lYT VڸDZ`>JTj<,9*b,#*y88wN…!D2|+>ͪZU'mź:[dG]c á b) s1Ċ"F`b&4=L6t|$q_U Tbu r70UшP[<.N.2SzQ[^0?BjIW%'{ anѦRh|KFYnd1ATW3M]A j{)dީڔ`U8L 3y$Ov*N\!\.} 86?xM{Y6q И?VQ|n_ .tXFp\mKtbpJؖ6}h$j)*QIaZe$E"r*_9ţi{<(B@U>M!uClm)gmtfMkrVop/ PPЖptŹxJrKu?{#k]^ VjCJ=iϘY1SQv"v93s8bD0A6O b_/k%=8bb*GA.,wd!os`X`yY֓Sćt+)) _>g- !v/(: hO> = Kc` h >wOjBп2J$i8 Ji̶b=T@k+@TtrFEmi,^D|zGMgXMvYS3Ft7QhgwpO响|2os/fXÝꦡS܇PWiVSM,|~(.).c!E-O= ~cq-c-w` lm!k!Fh!gNS.˫KCSX[iߵk &q!{ǁ5'/@ӭ߾{^MX;岓fp!A%L s*B,)E=O nslCXz0k©m&Nfْ (X2!s FTGT SkN5Y߆g c0p4]Tw>L)TɈRͶCSU%".S +ig p&Z9.iFG##"#lO㕜܄/X\1j.%Ux;9K@\]{%8j)zB{ب/ĐElhFףݢ/oN.kSKî{zdcV;r`fgKk X> :l958XpmJϰIA.!\֩)޽'yfC}A3u [m?Ė!/VL>E[o˴C}dl\k>mtGipLEl\""pSej{[o,^7//~v#qN=9oK(`_ >|Wdkմho}bIus.;g=wh6)NJ@~`*6Ϳ;Ψ<%"}e)&~_Z3+SfPvNe)Ѽt1QNˋtҪ?-Ub2K--XޔOUǁ" dQJtx F)?onkXYuP=ː6,!]hN &E^zը%IП`&Ԥ $r5_Iw3%KYb;?;HU GW==dL$9юkKF [ Ҥ_4**Xʡ*(SXW'`DQLK>ϴ;Ol>/ *8ёn>yt1~ZNkZD^6CLC*ڛ;l/x]Rnu~JPU5/M(lTJeb8%eV][e_2:7m~0r FEi$I9F*̀ʌi ebTy[:q"lSd`1TbDPqB-G aX[q9|'W>@pq覈zؿ0zM LIy؎][ď5>;mo&cJe/z O~oI6ty(d(^\4|õh@<nV} =4Er+9 p\"@tK[~>iͲeeebf@Ob#{'My̯UʟiǵSL~l>';'&ڠTQGplugnOnA@X6QIk}PJ,4Ja綖djT6?j)!6UIe|2ȑ\+1O"߬%e> o`7$a%̴l (Sl塎`[2Ϧ^^8א EL0HXC}mSPԮLRy8dBVHa/Nvh8.D0c 㩼jd;1;3kRWQoiE6qg9yN9/MY̿dl# k)I*XJZ&qük4Qi`,G.`|R[6)[k_{1xZaԆ}WHQs<b!Zisb9pƴ H7 U{Tlw R㸤Veƽ.+Pٖ219g>^bWN4cr#`$K>aorK ;sLVY_5LNC`&kEP@$!}todkESYǮ0d28m8);RI'j:bܼ2)Rݮ@`ȕ \E6/~Tr%T߫OЈheZ=t N9Ցz"l~s+2B]H엚G7Ăhc&_q8k%Vi+);_M,틀T51\j~7b[NίݫfaO|? rb[mƳp~N4`w |sv)As1$60l<{3g {{$Wgf:k}|b^{V8p62ϪLuv`?RdmڼÚG`Ƽ$dsG7a}j$=߽.i1(6[iV֬ |#ԹiMmpa_ٓM@%ukи"E'fMѕj`a'=ڇ"jRj};Fu:^UmY #)JdQ3"Hhʊ׀+|m+`cFrgΡ! 㘤y9  hÏ(U~\;Wd=|WD1=N=qP=(a7&_ @E:V0ZEe}0I<n3| v҂Jq&#wvfkE=’zyHJW@JnavĵVV&Kv«f^t9z":AƨG: P40^NX̑(W_Hf#3* 9EIb6Ȗt> Z1'c Ќ' @ {o?8z{zzru}+U_iO$AdHS;o>* tbumIuAAB2 U'E޻6^7[E:J~s-79`w|GoE*;@2*7`>נ,PSh'>P0 `Uظ/i}\GS q97>ZSqY{\?v>Mf@#DBUvJ/F΄^q\\)Ʈ(AWQnj,!(D[3ҹ_)$ĥQKm 5m$qzzy-gϟ"y4n݆,[,xs_R(vBW4mF1CMe\BNi{wW[t#U3l?0Vrd, cV|YI$J+Pto +-59Je8/4_Xn>7ks5MXsxt]>yY6 ib.mmYŊTa6%IciEې^Lc\?y> ]R-^o~ټ4ޚxh/N32P&ͳIS_y[&Tu'}&8dY)(٭[dBN+ RVRc>_$W7FZO^ ,2TQNoo |XEb"eujqrn&[͜0% (?qi`~|"f*̔_|JYBH$靴(LRF*7w`=s/I!X&|-'+RIA47olJx}wfnYVIr~h'ۿa}5>WHO)988j<+>%ZK\=XخwͮmY>MoR.G`-Pn-ric@L^7~Wb7rGC4ߟ GvC[8։fuA#Kc_>}Jv& Vӧ[ȷ%5ˇ:Sӵ%/A;PQOEFHx]%+/!xw^ 4=E.\تVhUYqg^16Q(psOs/mf$u>\ԴF#YGSawae_%`t!Rpp]WMY&X)v(lF^Zd KElJ :tA2d13g53 B33P303C05_YL%Hϖ-3 ]\.7q>Y +-f(tz)H+DV>LdT'GqxS1B f59^Ls^soʛ` GRDBKCy3O=$NwC&qZq|Tu'+~ Ql'NR`<{xZ*4$Abudfo%;Gwŋd5Z~>оq1y ͍L淥K5?G{{ {M2|8n2`Hf~us٤K6IR [~OE˰UNN#FCʳRmR}؜{D 3/#!v*>0*;@4l&ٿ-86; CK$:+O]t~;N3H6\^JC{ODn&)12(kP67GsS(*lBh:#q P >V]H߼x'8? /Iʐ7RιGnW0>=C2^{EQ `Ӧq!] ^:jWWvwK"Tbؼ+ 0{Ac xxPB~$YTj"y]R1y E K WQXIu UU(9D#bA@qtr3WOι0r]L|/Z0f9)\y̹X) C=M=4³]rr$VL9:D3ܺƚ6{m& UKI-՜aIfQMti`NFE lQ8COꝈ 1]qJ$?lGˤ cp~S^2{f[ - Ӥ{ 6 x9F-pf_.V;R]67;M,斻q~]r"l\SmX.n[,Sv@Uq-5 u>]Ń Kv\vc~ 'K..qE Ż)>Wr6ABckg?YOؘ|qlm5Zo.;_ F8d F(cUPcl,7~@җvd9B| ]H1]w do|4H^-Po^ukwlǶd>8uF )I?z[UӪqI|^O`-CHO싩@9n`7C,K8H:5ݳuì{tW+{l$8 `OQs1"@rˢY @yM9mxK1M,_R3S6Lʡ-ھ\Znh>c>B Cڏ1 Iwx+՜Hf~\C#W ]|[#7c4鷕vX'ŋ81j*G0؀ ́J" [/(IoRʆ JNc~] pI&:1K@.ˀ`b_:pr"I- k`A#ӊʁx ܬf'3Gps"|xF2h4D  +uqD88廽r8>W`-q(+^// (섶R "Ft,M%]X}jY􉬣*Rk <ٜpd!-$hݶRA jIJ+u1aʲdx|8~0׬Q<@Wԉhu%F\_$un SI]`ji5_.\ VS+ ON-~ X>;Y`V6P eM*y8ud 6d³I´yM7U.֍uDbu :iLm`?f(i3M-pҮgH2(tl_4rHK2uv"$ui&ioLW2iۀsX$K$Mk!GS2\w}YN 0rO&1!e|dɣ777<L Ai'6=Pbͱf`O䋒nRz(!PG7&EIq*GPiT'9:1`8kRzmG,U>& inqG_9%ESE1$4u =Ey-6 WK*`]1g@ G=b@x qy4z nS4.'7nlD=Y\QMNxqK)mW;`b@ S`WhOVl1-KHFSBYvzWIz TU8<dmOJݙ@~ՠe<$Y@֙dԝg\vQhSy dbuP=GE&q=$*\1:uyO;$lhuc5O.ݕzKm$I,=X shiTc]'{DZ.ڦcu:5~wK7@nU.;dG6=k+AwYd|'KnRf/Va@ҺaeNc.PA Ϝ+dzSQAp:*&i7ERP@%=8C I88Yf:Ьz@If{@#~ڮYœEIpN;Tr칞ށ,3s/ԕ݃@~n^P'egNIU}$VhURC3|Hr^K FRQ>S.QcBj= &T* rVg/>ȗJ_;ܨIybw9*5km 1ԉIP42&RbJ\3u p]ܰcdW k95#eĀ@i$.w)UdAL.8=txEǩԁvqxԚC|;&Hǩg:Ru*8ɳ na`eԣd$א?hDiY:/XoTw"N(<;WmgfjX=9FZG]B9r ›2F[%^\oNr ݪ{;羅6HZ=mp4hTh\1k r[%EIFpqv/,ZK鄇?9AXGjո6Jtlf`"V!CWnڠט;EyTY@qa]z@Sh߉eq"|FQ]&hG>_ L'\.c4r&0MN?RǔH êjg{9- {E=9d~?OH#bqSp-̨v7FtM*iz$nF6F k-U]߱:zboG v덒mPl#Ġ5\_ d \|6r +لP\i'FΜf|TuF4+ ig띞rLa񓧼J% FQ g{|$H3!K6besLc#2Y`G?jc@ӠVkIN-u9 jHDZrhf@hIִ=V;+.THuv[_SuVuOZFVFH[_cV[~ ɖtpTsvTa0ifHcUYa&$KfLF/$Ѕsb|m7o>$iŊNثF*gڱRjlֆAI%.SJw*&PQ+[ H)ۣ+{ON!rf~ w 3<õ~@VYwinWeԖT*0vI1~d-ˆM[>R{NoKOH`K]<=zZeֶTp*![iR|xOˢHmΟ"37gypSyiyX$ 6H];?h8G&kGA;_]vo: ='ڹ,dcc![ʒd_-'y{2-; 3 Oj!淋0]/9&hj Z}q.9&$Ldɹ攘B٫X0-jWmwcQه‹s(5p{9ׯMe >aE=Z!*ԩ'bڳRJEc!T\ԇBPՓ֑lS{n -`/v6g0*$#Q*+?ӟ>wrcQ0d8PG?50`pd;~=s8SgSfoQJ>ຆYQ6eգb9ů@yvreT[!: I;s*x& %X;C7٥=㉥Y^ͪH92cm/uIҐbj8B42Q<F^lSfH=Ê&JKei$Ԙ>OD嘼|ux9bgx?. cL%@Y@˝Zw|NlӅ ecMjlaVy^m_;OQ78J4^qO$ *F_ +8'|8\8ڕY\I{ Gotĵ?[gPo!ay!ċ}hLI. PvX#騀gQWYT0Rvνcfo f?+b3iXdWWf/;NҠhP "V3OZ{7&0v]{dA 6q[WgrȠ.6QxWp7mC^i9B}r.9j_-q(HMJ8G,z.y_\3 t{o9}_qKU=ehUC"DB֗wY)i&sD̜9Js±3V5X&V!-e)[l֙]뎊TN YԷqʹ6W-KZNN;i?DCiԫ <>44 O=Aƪ52#H܏\y܃0j,:yhXWQ$NsN:9K:@i'`bq >*`v5e7uέ xǶG*/ 'bCZ'.:*1* 'B~(nbgQ"}f{ ~[\@.#֥ި|D+G'?2%imyv0ؙ$҉Se)=:& x!0pE4AVYقq ]2J7|9x24^?Xgu8Fu8Yܐc `QIx2Xd4 |LqY, ]:}y뻸0!$k;n0R#T'Vq&3ti41؉,P_"YYgBtf1w!>{A;<"YC藰͂N,>YY ^ [".25gB6h5lM)n@۾*+ԈcN| / 2ui֗IܒWYL}w;˞ٷ& /L P[(nmj.ϑ`k&LgR:8a$Tϒ[p/=彜Ak{tx\)bQ  cϫ.xso4hpBs eo 6#aoD qՏxWd0ʫ*;aXN%Sn* Ql6Sb\F}-eIH15;!R[cgdT.ܾkrDd^1r|C;1bClU誗Ï1ĺ݋Mۖ~7*m7INf~(U[|Zކ*#iv0!t5Th^nLWb~kYTp#Bͣ$@B\5ѷ>X8 <B5KgT0Al}Cs8Tvfyx9wipPJ)jtл: abꚛDkeBlϲ+ˣ㓔 -v؞ݨr#ZpQ=cx lkMԷ)) *cbdIaǧ?9TƤS{+ v |jFb"^{& T8^UMvNH[V"G svsy?6*!!C}]`Rs)LJW%M[_fEJʴC`p%$TN%Pn킍dl)IJ:=+s$أY bB0f'^yX)Ϯϒq2#}bAZ"1T#oؚ]@NF#(TrGZm,C1F"y9G/W۽CSF40qmFsNf`>K)H-qL]KfV,s_α3G髏jN;8+dk6Ll{/gIZS4f8}i5pPa)\ #ج;!x=70{wٷCeR2z: |Si1[>]OJNN+hHsjb;ئ1\HQC;ù.ZR>~cb6 Bjx1*GV0'tFm̕z2D$vVziqwp *kV6ǒ#[Z5q- 6 B 1dĖ$=+~MC lVA- ڀ ͌؟ր( !B خmАWY )E /焐Sl맕Oҿ5\`>l)p7*~oWv*uZu(yΡB\3rmr<7Rn%j.)P:be "fAh{A}G#WD}}w[Dʪ"PlkTo$3raJ@^c̓#e,NK#,_~ \ 61l/lx;SuA/ALNLgkZⱧ}md9+XO# Y/ ίy,ZZDl]NκbѼtԘiK/uCz%E 4A2/y̤b UO/qnvS 2}3nhwx~[aw < 4YYԿ,E\Ix^nx߂Kq8?U&ߵ8GGMh<:,B2!G 0Qƃx..g0 uAcqݿ{F^\1GK}Vƹd۹sBwQ0lsf1dI.¨y4:&*zUM4B%e;"\`BB&(g#&g$t7iḂPE1^MŽ{we܉x~FE1i0!B1NJ8-bM!vE3p T m $zZډ.HW˹X WKJzMl$R_sL0N&R uZ٬2q:nؕzҀiP 0SVuf^e儳 vwݙbzZ&dRW>r1bek8[v% nh!40rpC2G"q ^>rguL,a6)8(|k đnk{[;Lg Vuo,}+Cn_]oP=;g,ˤwTN*s~ugV#K\6 *QcV6ZѱzwQ5,o¶VvD+%l5"](j&4WJel+f#'R K 0n|-z *7& #>O;0T3&pjOd/GԞ}vT5M .} WUYep>7nd }g0_$yL{`2~%Wϟ?ȵ&%xk^*p{^Ky if@њGloS0PA@Aףw737qTȎJ-CZ  hP=P˓9 T\cpB(9$P^})՛κl,#RsQ%6`]"l+7ɲ`NIJd4@*eDB9wBLSDu>%1R`b˅#qX( =kt7Wb>V+Gܗ2y9Lg&_E I;p2s': L!t*/>夎{]|Э[ku'io-WtUɖܱoI-"t(B|8oI:k@c%;҅ȺGNtb9gEWKN[X,~@I]?Vi 1{ꖒT *[u36MmmCWF{I{C >z6wݯ5P(}݂ $8ߓ@0*sC%l z` y/10:|mVljD".QE3~NOGʼn_Xz+"Zg)\o<NIHSrJRnO!%Yg{wb)B8Cյd{|\RG 䃥/=(/,UvŦCx&OhٓW?R)Bc̀)!+l YbvDS!!EZXb*M^;eCһ{+WtԛE9*&eؓ+3^Ctei,!$Y*GzP"ؿʷ+ˈeK=ء`@D_5)3ۭpqOb2Rtg\^ 1rpxVq\Wsl+2*#^~j}6 rq&L^kl H/ҫ^Y6Swg3pcٝZE$Pi F,03{no˱Kz=)dp,ZN/iΝnh09[*Rߏog:R $yA"0ze9ӗ,m9!#‘sreUUW%"XL|sgSQcձ=]\Bo (@C=vFN\'Nܸy0`[U]'ͨQ}DdC ț"&(BTU49-$xڮ|{7o$ ƀF*>-[EQgԞ] Hv,' P䡌rM]$N9rxt<]u4@Qowqjb۹@ܥBRc&51VRM@Kj.u[v}3%^[Fd >CebIaF?K0 nh][SK,وp7F n'5s(Oިq$RdT9rL!iɩLg;;f'La`mLWǺ,_| ʮ &GrfЀA ?E $dt$tfeouYzxqO谦kvC)զcJ:cZw)s{ۀh#tG#;$8hI'ȑ%;ffqJWToxG1/GPOu <~^!&Wz'--ͷw^+tJ@jUN b;{.3T 5W_ǡN<_qlԟeE>jߑg-%~.XV10(z?+&"סAvb?{J;ˆX/uc$_ԫ.O q5p(");}>2`h,tpƀy6pq%u*yo.e!.l!}V9^M \vM̀bqg.Ƨo>woHvÃ(mSsECi*S1C [KӸ4()A- uG ƌ;x x,#f" @ICb{)ֶ?++vb+J*XL5pK7?TtvIa6;f4ꤾY_I*/{P7Vj1M I8&G~C*] ;y6 gG {/P1\1[J>-,, d*vؔi>Vߛ%1)TK˳ ުwzC2Nf (~=y$2z]mx0'3:q3=iF5Amd}r\6)cwmkFcB O hh&խ  7y[}_SQ S0!*PYmrUeh}r|24K*oO(&KW憈$jE@.P-gVn,ܕ^.2ge_=trII\Tz~O]T= 1b,y٬|n /wDR]ىԕJՎ:f6 *gusP!CaQBC4&3"t,g?[^hvy~\DAPE}\T{1WypZʫm٧j9~S/2oq0FpQ9vF퀖nQ́2sNpqp= lp}Gh{څvev-:mUcVyh~hX mE{#}8g"t-ԟS&Asu xŲ0=FlC==(\Kw wmh=kF= ! R7+9{&I!5yvVhYP-.8lIq]4u@$M$VUl*7Arzp|zBY.P^ :pQeyJ|\NL xޚ&zr&uZEv<:Q{:\*yE]y?@$vF*i)*Ql| //|Jdp2D1*,bS (`?N& X5oöT]^Ϯ$*'sZ*CS/(!ٞ;0y[5+d }<&:2 `d/|wl}qLmt>ɑeUӧkĸwV{"}:(Tq'lw&Ie <3c8f?+_k,L Pe1nuYΓ?"A|?>sh偉/͸mPF,Hl~WᏻX"PχЩ{C=)B+8,$scx9Q~]C7mz1l(y"% KO>hjt!tWCFA`:Rӹ }VX}ߏ$UсYiZy~ 5bϠ5|n>E^=Tc1kI Ӟ܎_lGuiKޭ/@ɨoZ@BYˍ#X]gpVCJFKjcKRj"xU.s@4y+y8d)kV\a'd~T&XVh{K US[ӚH2BfiK͝k1;i'/^ɧ=NTmU‬'~)gDWE?OD%Q/#5ڭ>iOM {CնR1 * ݕ b'*hx\ZsSiED%rY>bݠNvob4 #XOjTV%y !jw,D- +"eQ߁R}G%'9'h -.FP1E!{-OV8[ǻҁ20n,Xy I7njfxhNVH+K2d  䮗z;R7m)wJkt![z^3 !RBmVrbZ"7Ol\F 7PeToT\oU Wj{4|,:hwC= 1rε@S8[@bMeO7[VX\_qw#;%?Kc( $b_AÒ/^"o}UV` 2xjQ68@L<9lܲL u|?e4,)v#LS2 ٌ_sێpds{>o.6k 9;"^Y#%3{<8iˮo.F[Rؤy%r gX׹}?>8i8w)0I! yJDl[qV}ؗumo0X6|y=I|p&C3bj"$7]vűJ\.՗jsP 0/ JDu}$O5R\"埔I LO B>LU$%uʟh֠0† E-IL-wt:IýZ|t>\d}ui_y $U zSnHP]QefPrʎ 1\,1Sbcݑ[-MM+WYRin*:q PCgRN3Q0bx> [qDT|̪@Whu{4ZI8&A&,e_{Q5eJaKٯ5+#IM6F;k8:Uc>jqqGFj1v3Dufohi h4%*w<mgp총eTWW%nhc-۝oxo>T 4c9mޯ =bos]?oHwm(Վ(o˶m,o$͝O? TMl2x.-0rƘHhjͿc>:Ӆivhr,6y[$[m78/Ҳ㈼_;z-.̒0P>;3JAT'eZGmo65XtKZfE>UIx+L@V?BJ+;FZ'A+춳7) $2!,ԏKr\òr.-z.3\|x/_`U- aS< }@=*so8Q7b4|3uڢ]}}hEَ^=% Q;ܤm\kܰG 1Mg5)JɕN z s>Q5ai 1#fsy)5o~9qfpIywٚF#ij=F^Rsݥw۵TY:yQYG$*8C%* jXXѿm*T>Z. h%igFM\ o~z矚tP $7\᱄'3% vіI# LeUF~ Ͼr/۷l*m [Z6H}{oG?m|Lf M^خN{/EӼƶ:/My M_1R9XۯI]~ stuOgF%?dȋWÆBXd ډcU%, {l\$Z"Si1OM :B؟HRӒz#5r70~NkŶffiϥw铮0 f U~|pY<& N8Nǃ6Hj$WNGNxMIkW'.iڕ"r>|.R RT&H?"^pF BW_\)qEJVBb2Eb)a #7Zx#K; .ܼyzɭOYuD9MD|$u?8.RSuÚk:=9du~5HG\2B3qG"΃A}ƘBƓfa,)"pZM F4Sփ;јgX|òCm+l3#dGĒ㲩AkА<7BVKҍċZ3^}i+y2F*:7q*zzWIM ,G͖ 4BvG`~*suqE,Uqŏ1Th<XuCux,g~\=6~z8l |$[7\#.ވxC mVY挒d ?Tݗ})`…ӂITm]J2?j&t2:"=P6d7=Y顏%a9N"2SwiV lN$ݣZ'bȅSz>Q긍8pnA2ύk5ձw12sQ>e}2u a}ќn"h"fmb!t"[Z~5HJ*{Vd!ӚsVԇ|5CIN)v]2IᮿVixU5z іHFnh;nARUZ:Pz2ܑashz,>G *T`< ~<:K0ֱ%ˆ}}ZD}\L9Yz*/([74UP NQn a %W"Sb9RnZՑo1ەۚX*`VRlS%.֩*7]ռY`+xT,EXQ'rLXv.OL5#x9-23.Pg)҈qvbk E$P&9dlH,jf n ,&Ǖ}LlD5+ |F0CpkEܶo[ZӔԿ:쁀< V9%BCvam"+dw^$V 0͏ [n(U޷T~K俀K0G>ck^є[ܕ,*C0$3Q+q 9iKb-%ϜFTcU|ZfׂT(`&,9f'@G_ Lsz$+o,8HÝdIv0?}٣b[ZĄBYV̫T:9E={~EBnlf@@cPDO!0ձ2RC /` yUIƾvK|Bta)bk=iXݐmwm/~33NH[񒈑 \;Cww|[;ԓ˫9ݡ:`R'ťtb *!y'# ѵp%@j 2(O"Yx%ۤBTǑ7Iq؄'&*a A k]_@ӺԶ&M]TF8 W,)H>Rip͟(OPKs}ǴUd)jt1KQR}x4ӍRIG+sbTg&}}PA6e~߉G1̞|x_m$VlW\k8i}pY^,GÖr(B}wy&я4$Ǎ>2a5 41eدM# @2~ Mr9$:GW7yzMk6;XT uSqӋYU0dcp &l#FIl#U<=Ի f wݦvq0 a)贀Y.OeQ#G8jic,# C8:+g/8ϲu,Y\.nNˌNyʪDth5"ud@$ JԽP89|WPbr..d=JZ ϡl̕8A Wrd. \-bFNٓZ9vb ኜU 8SiBm$qug.Su;ڏ{_ [}#<8 sBkF{+˓WI {@uHCЭElp:3۹q߰">tlxƭۉ/8"e9<5''޼O;wNb]@ݬw@Nl8 q+b6TT͚ĴMk/~٢޿,, 2u_w.k`c[JM[#k3F2ݯ ([*ehqNA@|m޴Írƚxe5hZ<7!WUQ }}/=PrHwM,u˿ 4PH%p#cދ^!<]4h,f|G釣~$׏~2+[I$RNsA~QDfCM:V}<ųrxz샫*s*xAO=<_&tΔx+.FDttclkz˦-BwO٬,p#oCl3dwE-tK DOQFGU-NP5 .ժ2Y@Rsi7%b Y&}Fg=J} `Ku͕H,pK`Iwg<)G0@l\O0FZ 4,C`^RD{)Jz!l4E?R\ o@1+˸hq>أʕjF5}47SHMroyZ A~z XsEj}lŕ"o<\k6^Js ?R*J0tr-kʵ#Q#p$YLt prA_ů`U*cw_T,b `Ib@:<(fFLU.Lacx.ZX:$VG;t\wE~oub7=j#IRmd5߇/( |v&9ݮ$騽6G_~u1ulK#,rZՒEP F;uI9&tmh<1,)W "QξgOeݾ^M9q2f'?Gr!-kGsyY,Rax0hݿ *Z<֞hG?<j*Um/1SSMdqʹ~8Kr2J5cf\Vy}fが* txb od/N+ԭdum}WKsι%  f Ƌw\8ZtGQ!KLWU <ӊ4!IC<*A\Y YY1g>s $kT6 nަl)uE'Z0jޝ ]q 5y^c C1fm92dV>0yGUX#T5 ĵx뿹ijlHа@o/x'pPsT QSFGeA 4 qgfVgK1t 3$6 wxLH;Z~>3x<Ŧ櫚q"3]qO m _Rs:[CQI׳,(7[5btIKwvYW_E* K|>y`tl `Be:ƬcAK68*ݗFHiPtњř;4j☁3ns 8Vuy옝 ICPnt{w<($׊ꧬ%#z4llwR/ٗ䐥!R?}Zؤk\bI9}:RMGsBJ (!H` 2cRʆ qȏX.(]#O}h}VZq%.дf$+51TţKXEtu֚LbfG{%F>|(B́c:cL/`t>y~~:XG?4{t7yfך9i|8JÄl-[A`mkc!}4|('ņ(_u_cxjfr"1xe"ze{YLojh.z=%p`Sje{"ղts3-$XՇ e"k_n:iY$Xj;Yp"_=Р\Xc8K[YX4`ߑH)pr +A\GUn۲q]4H(I͈6q^fM칡 mH Mc1Kʓ}`G}_;F(6\4J<-"3%;)%|g-ZͬgMy*h1Ô KݼAU.@E ]7|bѐ<4̱476\~i\KɌ2s<Sd'.Mv7[k(S1lptO/KTxY@Qvrv `!~ {DœSl f;058pnaׄ**G׵Je;rVm4mc8Eo.Ev\jΝ{jEfOQۺ"Y FE&KZJؓtuPovf`Ъ.lT^ON\6ֲw`oe_,c7|ѓ9GIvzǺXw}QI\n;v!`c=_ـ w1!'ޠP;FK߇۲?z&Pk%6<IûNΒw3bVw6MRόE#&^' Zؐح-kchnR! 4XRˤ^81֙k)H^ڵ˄z8:*JujlmHN(EI0ʩwu(flj\Eӝc'a𓛷yq7H"`h)}tX ʒV4(€6l]ʷG} G҂: -h/%Q;jJ+FvŦ*bd4dA=RO#嚬pXCF%C & mL=b?9XzU+unDe#ޣz L<<Q#P p#G@>96 uTh/R,s*y3 }}y1|ڸ s_뱩զenB3ÈR#y|7W> #WmZXΆF'&6_oz۳\48t[?MǔslZި:gH,~}Qvev1 }/~|Az I5cpf(q0`l2!UqM޴ffd[C1pv,Um@T]fr S0Rcju6֦KdRUJ59 iev}h2ˍ8<ԭE˽ r>a;5#d<~7RNv%!]K%aA'%Xɋ72h qps}Q]SDI޼ly':79(pI@/.Ycd$ea@k`2XdJJ8FJ:7XylWHQRt= 03V`Xɝ_ԅB%MPp9)Ф.\b{Ϊu؄xU4t*橓!^~6+zzI&Oi>KyT:bpS:@Ri뎑UgIГ5l(.)Y >چiwC?|gyF V{R G ZJT84h/JEtlKZv#m:f,5&i+MH~l םcG _^~82F Oyo$w('`f<2y8N*Ucs ~u8Yu9Z7޽~FHMmbSWvjg*gH?dTl+u2pR#0}Wx=ƶHz\ 5t}uҳىOpS-{v,ywhkmS̘%5EiTa#t9q2cMIe?כ^:/>-o⊭=+{07Gy>ŌtF@M **1HIXRfM%:WJPS"gt9Zm+U9eZ[_ga09.hAf0Y*(޻ʁ2$y! 3J}.>'R J[G|{zvI^ubTL9hꑩqSK@Q^ʶ#!<6׋?Dԁ`ckGD,7mF* 4< TbtO|*s'ol@+!2jF:{7'apd 8}8+ zrelk4a$)գ֙Og,btVb9!NpW[0sLR~_f u7W?,ſ(7!ΣS \c $Vz+Rcb >[nR 'xٕ}2qm4/Po$m5YHJ;wq39`ݶP{xϑ~PԵ%=$tϴ=nE|#P0]NgҢsc=n;紂t:]ݎn|7Jú*bM5bP0p١TO #L'y=#BN[rm|L{u[ ul CF{2 u=>yA@Ҭ92%Y措؞Ŵ^1Ɏr칽[<<!4r qGD9)N]4떔$ إ̋L_Vr"-ǩ<>nUB.| .aN4*rU*:$X QЫ8wYЬ]*Iv[<ȸd v.JѝB}D Y콥JH@JuL@`osӾJ=/ 61f#Y[mJdḱ W*@oᾝh޹a)ҳUb3f4ɫʕ$V%ׇ IK>QoKͫOlN~=%d><>6}<)5ptfLLV/W؎{{1BMyy H$ l,yw @Of;xk#ClUrGaUj`wRO2'DzsS6$_0uv1hWF.ey`pT=j|g( @l(X T[Bяa< ,o:cj)/X>EFuV6IU-D[)q$Pde.da=5GWØ󕷫!Q?c`YD]9u= l8}O.Mi Q O}mAxhI]*ꉳHh&`FP]dvCVd~U0/oW1؍w Q"`mK ~u/Qr-Kf 9No n!`VLx\Mۦ..ЈG0,>R)e:,S!SeFT>HWFoN@:ZT*O(F +<"ኑJ1G{MV+Uzq4g˾,֪|vzܰ)8dɒ| i h*{۩cEb-#xʓUp$jfdV'@|\ې;SHbzJLw,IJCH:ճLpwK['h l9ǘvssȚ1ASyxzX:VXz]u<ӳDj{(6dʉ.FjqE@LyAvq n2T'`O x%@E0[rlbV"em`qtr6ٲm},in8&)sYs[0Si ,EqӈF05DL){K]*\]BRY`yV9g3d g33&j) gFxg jaDMF>+v.:FbX N(V%aDEN7b5^fwvzAOϼʒOd^.NΔL<` (QAw(Uu~堢\:hnuô *s}6Sr½G%.y}G(5'=3\y.Cokwd!XsF2 #E/XV'9r|Y[[#bNCcTݎTLG`!Z>߶zP;Rٖl)u$1)&۶n^KZ tݚ Bd}1Ke< U+/*#XqBjʚ9Sh*T2ug9V{#% Nܾs‰hձ߈ >~M-p=*; -̵p|"瑎|f5pOl+MӕfNO5mU4&F.Mg"k88KMbZ/v{'q.8/ĖZ6"u4kl ]D6$ pU # [(eHFQ  ~jFl8n%eP5oqVeWA G>KXO/Kh6w )1>Vs.%1t|IҦru1Vl[~&Z TVƢPFE#9/)"?6vRYD6R:e쎑m#F4 l3|Ob*^n N[~7B|ܣ45U\F-k`&yc8O~,'#. ![!t~ $eg{ǫɫ1wX3ح}F_n?@d<ܙ]~ L#;%::F;:'a7u¤3- PҦYh:?œV(]]l.qN"VuáSi?4ݭcK,_ޝG^U}t$ 7l7^ iU\]RQ;I?MN#Iw.;_Lvҩ5u(-QZZC%B ,?ׇП1PmH2bu\}PwLߔ+f̮(]hr yLٜ$bwp.Rfxe!@y@,idUes2(uUhT_פfrR[ R= %ym[#9Mbcp+,P5T|.8Zs~f 'r:r' iJ"@ğq*Vjb$Oq &B>KB ܈۷^u3ǴXdJTv+L,^̀Ky+s== aSF6jxzJ,ן @=[r*[,Q+;{kHKʍ,KU"4 v8@'KHu%PWggS!:.%u.AOJҢ%֚F'0,{D!mZZK :kwmn7a'/RNVyTc|P{/E7]>aTmAGS ~OQm,[ook,#{:`P_(Mݩ p>X<:R൷?^@kz?c@Kzl y@XvOel -zR@U@k'Hy~dԿ\E:^Hi՜Ȥ sB\!M*6XFdevq&)y{qEԚ vS'ί-J·أf\ )TyHdzmD'ͣn}$-X%g`􁔞ѳT7ᅦ *q<)Ԣ 0Im>퉻@Ⱖ1'*Ҽ3m^ݳFvt~l"ew@k݈2#xr=<0bFЖj-˻Xq4<8Lbնdq|1Xl-s'bjť/:TW,NJY=s,c0gQsve#y2+ =` OK:4\ۀ1!<)ÍtrpmfqMl~ߐmU1HWr0z?!Q-qylIFlaɓ'zC@A 5I^KIg7`βhe?@Z, x.- ^`J{WU}]1H9IiT8u QURZc2 7nn̍Ӡ2`(.ò/~DV1Q?XvQ.~;s9,M;3T<Ⱦ$2>]KwxAiے> D@Q[Tu6^tY#"^`K\%!{48H1+N6:7Z籔sp.hx ^foi3fָ9WPԗc8\ݔ!Jyb=~/&$aL$^AŮKH掀U}^=}X`4Y@$w+SXYNoLjI 6 HĒ+n="?Y;$LSI4A>ګi.- @.]2Dۿ5>tkwkg;w劵Ln{zq:J9[CR&:|ˊ3G;d[MbwcRyaln81pb\A+'(j3q. L}u4 |Nt#2ɨ }C՘EO)e@úg캄T/6pmȰJO0cDK:OR3E3)-A̒[ͩl)Rw$)ǫb>`^#ӏFȶ@^9ҀUR;r#!r r!-ta5OCiyNo\B P (Ūg=WkDij [2C|ԉ Nj~#_zS_"?+s`pq[wFo^xlcbI!z<ͼxch~~`|HXCpTQlR-6#~ oT뚪ۡ$Sulmؑd i8] ݟ'r #.W#h}lqd'kfY=9oIgESa*s̪jGje =u6sL^# ! wnYx;m.;̚Qa7;=mEBFE:ʚ uLYj@}H˜jC>m0?7 =h߽ >uN\<h-N|H'֗HТn}>mv38}zt4#g WH+3e-X#{u5om@xz. `9@)7,3J@s:\r 8@l/aFMCwjjVqqHg0x0#u>[Q!!2WA.DL6t>'1\cGZicԩDѓ:1H((ٻ@8Nd%*%_0w ֜]LV;UmGq~Q{I1$Gd遶<닥aܪ }ǗF2w'~-|D5OwrFYv\u,JN@b[ɒ/:wˀ`g8iK$!on,V+z)$ٖI>ջU=D{R%__\*'Zkr :a,jF3_ܜϰUxf!]/w"*@U55G5j (0,} =5ꐨlOb'@yB}'%b͔'IPխyTZů){y]+> R;]D{\3i8g1pR)es jk'@bw{p?u|:^K9U}\s$LjGꚩwјDLfDVb[,s} Ne,U h$\BN nHuKڎ\ql1bSzn} GF\?gR̄x#DE8lmœ%8u42gSa}Q-F[a\a~~LT ^8$FbuJyڂШ^iDLyi!j96q `[j}G9֞l-,[\eU^@ʷzQc7e̤YNܛlFf/ņK*: {.oDAݫz9F- Dk`a 8XY̒%X⊋D>Ybyٮp\jDוIsvU]˶t8_\=/s?E:Ku-9cx"Rh,M*ٻ^w_OƖDudY}Tv7ܓz?|;ilvF qg!yJ˛@Ai2= 1Z[;*@߃`A纞gr{&x.p,ߣ uT?WRZZX9,|㰵}>p98%e>Lrj49E_)A. [E!iZ> |'fǖvvW\88*zؖ j'@y NI Va/Gnsǹ;s*bq!%RV@O}*.:}m4lĭ>/Kw$㶼.\DQg&5$\1#1%H8b~/p(歓FphѧOa@!w- XRJҋTdQ,:(3QY;'q#o@71 `ɉ@+==Me/\A"n%/>a"v\F?Q^urɶ١`&ʭ8M49:&F۵eX3j Ȑf=̭?y fFԓ:n1FUpPwhkPcƌ+ץ%p3ؼZE( b) %b ؓ@ʀp3|,SaK % }sObm}PsKajo Be^>ݧY~F_vSl>經 \uq&Y NJF]_iH rn}\%ؚr-uqT;!Wf!*x]jmʠ48r+X3Xg)_ʰ]H:fA7oWT{]3Rݥ/eL @l*ND'ci2Hu9rj3[P_Bsm,}T[¿~+`mo|Baq3ev#-!mSr¯pIm`9 s?+;)cB$aE߁pv>wQ;. <[0hJ<>]"3:lZR$SJK%XSrbR ۳*/;. XW%@REV~,D*K`|||h! 48Nw;LBFd[aS"v^rؠ4kxyY2aNIœH!zy/T1 eiジGk$^!T7(L/̅@XD _ qCJ{|Z "oۻ}>(T JkY00f`63Q~RˑQ}feyPNwRN;ٻ~$ABŬ&W9Ɨ*Z EܮVElEe|ߊ8eB}B,9V._ =ki&f^m\&V#hs6&0 4H}UWKǸ1F@i/E:?'};ܮ~7Xr |,yAfatQp<\'rI:Fk_$K\#-R-#MCҍXLvA.kTkG,Qm)<{4KMLݪO!ż.*~wN` f]gH&@m#ȈvWg %j 'JQԵQ{kIp2ι $ERR [C[XvQ3!HZպ}d/H<0ëwfΙL2Frħ0RDŶ?odl;,s)[-wgӡQgrwz;2MvvK fpP+V>|/ם} &J"Y\;R/uG |)s7yjd@KzQjyVq+urE59>hT D]rC.?j6z92M@9/)҇ՄQ썣W\E u;\T BpdeYRT:}k@_z?8^РhMʠ%1 ^ 592I 0urGURB"U1i;>\ cgx6`H{P;r5ߐ~co, V#2btm Fb6?GТ XFב(;\rmjq1{>C9h}`ufyllc ̖ 9&[&?2U<.嚶-r<8XG% (Ou~tX~ }9*J`d{I0F!~e!T8ϡ?>`1Q6H|HNZ37"9h^ ~!;eg[Y & Dju I3Jq}q:wy{{D#;WƊ:ZbeE3+to1Xso4!WdzbB!ax#%k#L2kn} f/ϟ`C0 v*[\Ŷ|Dlq8X^ /]CZ '!ǪC*єTX*[^疖rW:k;-æF͒# +ÒYo= y,$\k1 K[wN;Vvy;0àZHJNi8t{߫:]6FtGc( wĘ͞r`ovD2װ:0@{?18{[j+Xȑ*Qg\WG`Xz<[$:|l>,]{r\%vJʡLԳٛt6RjȮIUiHzLMjꏦfI NV5ۛT[*fثVVTc{(Vv!* WfHwBorFP eƩ88-P8a;~V6}{"H> ]_d1)dO&6yPL.#ЗIݻzlDBz580t8wky 4h}`}\بNP@,–(n̐DsFǪ'!eM@HKD1ܣB]V׌SB5K}\\z$V&~\3S*sᄲ,@ႫȒ)ő9 ^Jcb:dzK*>cqN`>pF𸒩C9FR=/6c:><ⰀΝs#"K4k78Q9  c8 +ӣɶ<[xw|bbbW4="$hTB#Ë`@]1R a}NSsvM)ucT̀F.\9&6V/Qϒ={( SeجI"!|F%C}N?Z+,W_5WjZny[*ͲL'XdMleW[KT 2 dkYUhd@CLi<ȧ8-&52a"ojxL/^c 87ckcU|hXPctwLr2-Zx@*iQm/ v'_dS^}.=J~]ߓ& N=^=g, ~eī3f}Gڷ>9:LJ}4>Pg툷Qc)쫧n +2!,k|x]OE|HCUQK?'~dMcHȯB!AOEhm Ͷ!^SW,,e4 {M|Հ}<+ OA:LZg!B_vLԼH@똯HwJŕu unlTUv0D/2<8dQc;_*`>8~&4R+mP>39fhU)L}=dv=ίڬP\~](4rȲ \RqU$ܐ<'TR#b6;wΗw:dqcf]8VQAkgsBews2`'\j?(Ӓ6 @VD5 ]pʖ]2즎sEO v($R*s5 MAp$vp$6ͦytudJȁ9i j+~K]!GQ:^|39SKTSeԽQ YzcGuLhAgIS%J#Su,9jLg P"{{lߡ}- NXmvm}>FNfEm16UG\'#X]>کǥ3a QƷy@4v8xO 5`Q;(}ӳl[q򞆾Q#3)jMimyTe"iXq;WO܁Zpp'~D*${(ir`ɞsÌ+\A.ѵfZׁx$͵ʳUێJc9 Z;ICu)u_K[?|OD7B&IՃ~ CuiT>>&j0`۾5Z]U냔9c o5 <:?46g?\_u^gV¼l5(ջ_QcB-p؎1(RǬi'%3+YgO,Lfs2/SSSG+yc]&$u!v?1g'H8:e4; TȏL5֞Ҏ)iLZOgU|!ZĈP)pj@ ئۃP&IVLJ3!@E2"C³0{1+"We΃N\ޖlu/ڣP#Kz-P{lѿW!Zf1g Y^|~G1q(,,'zp48؎yF!"֨шUpdqd 'I-7e?A=e >+}TS2,@Ká#9vXTr,C&@a˧TyMd]D!rLB., ]^l1CLi^>Cfk"Q 5X@:P' vAҵ4vN)յ|U>RY~TaZjU< c9l;G̒' I=Q 3p1^R.(G98 _)2(O !WU*f:V@,WxS'DFR)0^v pou$g+a1)æz9͸Z%IAl>NN=|  B+`cӢ+ <6jvc7 9Lu9$(,pؐoThe1HzaOUb͛w{i]uSf'qGҸH2ƠQ;{r{X֑Uœ#8. R6t3dLh;t}ki_Q3>HRﴘo{[O$^uTO8{pHXukP@8&׽[ .WccdN0oOC#Vc@@ 2[&TȆY2(ck'X*o D"UFWOYہWWyXN+~3b!y=]#,KH!畒ĕ$UABF9G{ѕraa%lU06~;:! g)nݽwh3NRKa4::Q;ǃ)Nj"7ShSBmE@*fy0#Q*gAϾr??zʗ6 HE]>7 )/@*9as޼,ݻ_EoD}<֘i95Z6:Rp_ `al)Nhh+%D_jK%ά}tѣ;zwm,}40tVIܤoN&]ujÏc d ZE%.v m2z#c€ѭ1}dvL9؀2TLUFc ۫~Fjg[Kea}0,;ܢ0A෍S̨7I\F&[Hi6' @Io-* 锗*KȤvӳu dVvv*J|TgxtSU𞦱GzGLJUQXNSϬw=/TY"΍*:XU'q7^{-Ή1bP+c\/R*evzX5Ter.R4_'M`@U><Ft=Q6c+/ eP2V4^R9$Ry7)R6(Y2D}]:#,1" T[vpzYЖ.1Mln5jloo$Qޝ>Fs'%jHPwo{Pխըs$Tvfе8j_vYVfy1+b\tGk3,Zqt[7̶ZZѲvC6Hb+)Q`U;V)ki"H1p4$>F4p)jHx=49،=G=o`;UR L[ՎR̴-%o [+}DW26(_R؊8o؎S> ɵ,')Y^ 0D7fZ5S~!D`P,ja@8ԩʽsƉ&+̬/Þꨇ pNn/.lvVk[K:81%H < h`dBWe.rpR1 =B~]k)+wVAyU4V},٩(,E m꟭\Tg *PQ┤j:F D}pYU*I3d]y0;Hm9,qtzQذʘIӒ{o/دXYF@wUHY )^$Hޞ);΁ jl E"Q+f52gW捔;+I{_f| ǷGȃbbPjR(-p k!܃9ީ"+0c^"3y8 `8҈~[N L_>sXk:V;0^@v3kKr,"/v_\h=埱Z O@u5{ldK"]QMeD^s0f(>nq >~=.G6厞ۣ ޯ/KԛufdT![Z6к/҈t3@搴Bdu)]lP|TLIl;`U,/BEB|%7فjF\Mm iqEEJL_$3I&\~ \g擧cn6X)S~)A}ǯW_̋#,M|qU> } 5/{ 35cnɒrEPأ [U/ 6,#p)NƑ%8P+3RbCF-?%^$L q$YLs~YP=U->G5U(/JΘc0L9VNuGJ0aVdꨂyI:s<0a۹hfխ~I987I,폒f`uz{5x<,ݻwUSyQ_dH,F߲-h+#lx~!b0@ᰀ>R!)Bpe%B).kDi y-cL$Z?VKaIbsQwbi-]21>Zc'cP1jȠ ;C9Nk1z X^;`4&cLZbtf6i>;.޽B_g:FUg5n~_$o69*U 4DhaտؒJ1ͱ\z,T{4 }Tcٳ5-:D3:Yחx16:y5<[4t=E֙IQ1eFOcew`ӊ!V`~D"7<3֜Rm)קƚa늑U'!8ESW+!-G="4I~Ip2>@Cn.d*F La> pG`BWoq(, p3'И(q]E0S#2lr6,#^}Qo+ Q)O@QKM/C8}. s.S=$%Cl$e7OlHe<|'C>f [kħw[9ŀadSA>jyȽI*'\͓7J}TN]dX2:IhVs.8 TнO$y ||n^9m=u5lOq6PrXz֛8͂c$M|ˑ]yduE*҃/=p{YsP+vxi>{5X}a)#:Pgѓ9Ss)C@*v  H\)UF7>Bb.vK6#Hܶ{?o辝eT ,_l/-J4$;T23 ,GohV,Q)\ctX]fj11Cmܱ\bO-G/oЪcuc \TS=v|Kìݛ@DklKqPXуJXlg4TP,9C$Ֆ#KB,<܀uL$Kmnu8q9lwH4{v3k}~h_ .k۳8}\gKJ}&meOs75.KNez-*v28MqhI.1 >X6~p+-8yQ%2LfF n\=zRf3(!f`Dg6FDJkNc:K;2N}zŲ8O h ĭ7kbbc '1bIroހ!)p~ӟ@k߿@Ɣxԋ*-^^_$ V$X꘢dhNJ;pI P8NNV;yG1hHr_?_`O)vJy5`0!nlڍ,;`I̵.e?;3f5k~ϊ彿:V/'z tk٧#~OEIc.ϡA#!4LSE<Đj9 {å4$X:cb]SNLԙdvʄKy?bYszrN_sޢRӐd"Ŵ̀f Mc5BTӨWa]k ,71ۏ9LA="[nokG9?k%ZI6vytAXR,ҙr_|$a2HSWa&6]׃zQK񹖃*v[dSʪ@xW\OМ aQInlc*vJ W*"9]קlx_/'/Da#R62;Rohawf05=ö->_mLPZ; %o0\g vZZDmLQa i]ܳ,h$jJ:Ke?9Fɭ/ Wy6 sX*jIUH全o,C"UCȰJVS v|@i}홮4{@2\wLdC,fkX2г=h8Ѝܲ69QwlhlSϾ(ҩsþ(˄:WhPM++CGD Rw$X U+eߌ[wZ "wQ(nbe!sGӬlb i}-2QqYDS~ #D9UMs$3Bm¡#Sq pĜ Tq5 /rFfMͻur/PN>dkK 6 hݣ:I-PTRARl>w+@ypz|?w.%pviLԄl_tβGZ*LaLA&L~э# ##4eXb;571$SR h486*5цp7L $y%F`$d6&Dr嚪+a53ZA/O:5RLF/40lB DgXΔ*RU'B'\qpZrv;ͨkhٜjDhth0KCY[}?\@8`uq{w#~n%عpG~XR,\G~/G|/sI>²xfISs6{1.֒v@ iT~7-idL*!m5s"urRK 8o\9l}_+/H2zXkvHIbz~S9NqhΚͭ=>ζ psr?z]F6a@uL-+cD9q Gi6L+n,нjϞ&qZY"b(hY G'YK8rҳkmKp)LK"Ecl.b=G>:0r>&=;%:MΪ&Bk!?͙aw+a] + (~j4U6gC QF{U 0Ne1Ȣ3#FP@~f= ke4(E@w4<*pԼFaGYԇ"AʣsN˴V9Q-+vsk?>iojCm*؆5p@:*ivZqAcdsZ4amU XVNU0 'ځ :ɖ4βeql0/:Fl睷g"nxvaEorTCvmϴl)xŊ.J1l4_etP>z?hFj}n0͔֯ѧjL1AhYW\"qzDSH,8>ۑ,.񱨹%W"< .0bYs}r6(1 ~Y կ58O qTx|[_G~iWޏG6@R 1Ri)_yd-&U9 f,_T87)qlq5.Gje9ꉫpm5FͰε )2.!)DN] x#dԦuH5Iuj?C\WrV#H Rj]K Oa**cu%K7iv$q+z9őF1;Dja8"z$a>8\pp( g/%w\ӯ6KB_m$6l`!]f7TTǫm'XѶs冏Ox'"f{+H@*iVdl:_8CN|޶gl4iuH2=|[7Rlu bgqV,'1õDwV cV'y޿7GN{NLȇKg؄oms|mhב#:Fe<-/6AN ]P^8cgKUٟBkYA6qJX8&$qiVv?%f;\o E,YrdZ7.¤TƝM=Gem^{Vבc i$n>!̉8aEQ bvj+۩HciMUC;Ӻ[Te8- X6DŚAQ?崽r`(U:>D%g!*cjھt.nBӧn7M쀠⼨|!IJIH BPv$ D<^!N OI^9G0,ުyw ɬmr\IGUІTf+D!ͦ6eg4>-%BM R  VrVJH])}g>Xλ.Q:MϚEv}@|f^cfXy'ĭcfIй :"iB&$rL=H*Lqi&nWCCOsgR.0ܡ\YulioI/bwDS)[ѿ_籄5Pͨn\cG(>A}..;۰ofa We,F湲p s8+vgsf[p%DL{}fB7K735sL]&{mMsiC+H.tm*EwI IM 6A!OCXKtkAX8,lX4w9ip2Zג@:r =S/VM@810;1ySx0>7a% k<ќmZ6$wJfs&^~Q7v&_ b- KQaX(p[>(yOq2(G b GH A eQ{lv'Ҍ %US6UTTI&P%/-9_3WKl97؇ &~+jbRd@ !Q3hdDb" E|sЅ|s.eyɌ:kTQۣ3 PJ,S#(̓@lS\;nKx?w_IE/51#E;Aǖ,)?<3;pI*Nw 5&1j[א|)+$NQ xCjDE4  e6̙AϵT3ya5q1E5rf$asz7 g=Zpg]6vmaH?Kz.},kAEaqֆh1G<?fg٪>~+D1N>$;Wg}v{8j6˔WҦ >%Vk%R)'0h9))cӾ Lľ˹ixە!MD qX3!-*-[R *Z&p\ʠ/8GpW3XV |Gve*x2Yu ( ` R1}5!lT>B:[8ޞlwM8{IfzypDwP)0f{DYqx I_%=0]+⩴dX.ڲ1Zh)F@O4&NP[H2ORB>a3mH*Kk<% di`9PTc˦QNxɤ450Uq ѷ);Ywد\ OOXE0,Ꝝ[|7l}`q";FtRgϪb^ʓ+ܧn]L=l:-#hmxwS Sgu7Z-Il,Z9܈mJ9-`Yݡ6㍙hx#pX46YK{[HQ2wfHZ @g ם*`[JUfsy#/]%3σҪM\=3] N;g̵MWYVQ3+yLh%Fi$\6F m:$^:FQ-m\c[zv_iIs@IOO%J10sZ"}$J3ҙ0s])T]y1TKqBz۾iD:[53 % Dtʖh@T{'49Iwe@E}^&ڱRj{ 09T('C$aqI2 7MZ!nˇa]!ӌ{~^LbKSnZ954Pγpk??-k? jpԱ~f?M@~˶zig7Sa>Ȓ˕;A]SiԹ:TM3 S f & BbYԓWd:!Y ^_RBo+>ټtTN02ab`=ŬT\/ -Z s/jZ?CEe&=U¦tqͶsC`c>6R{>fP_ivhtwF'($v\oYڨro(lvE*[}jKqsyǐ6ܠF$SrGmjL8N{Ez^eBd\!)!yV2,iMTgr 8G!1Hu|Jn82Qg\< ţoM, TKI9%̘`ԍ_O%-c8cDc|WQt:y`:&qPMe {m鯩LR Ēf'Rئ3H1rk%+#FK+D*1u8NU~8,X C9=d\|-OXfr( >>+.1"Ơ"Z (SnՅ{{;rSOcK5?ëS9O滥O'̛x߯GQad&OVOR hp-X 3ig)pc"+'Ũ6.`f_,G*n^vfi ڙEwm iҦ5ݮO(Ol)(,AncWdZt$,Ə؂))K"uԈ^K;kY IRMX2mNߪG+g%'tУ-Ĩv:vYB>GfO$ޘZ)MEvvVm~I9 _'U))g= x!a%nVŪ~,ԾӀ ,7'/Jj=/o"?R9.8"-T\Yك١pLbW H5snuloHp+H˪:FIXE12 OhKIP zf;ػ_gҞbm"K 0#ndK{zJ3rbx3_m9QX3w"x-r÷oߦ~5(`HeKv1i_qK'*H A Ec`s9RU arےOFw@O4]n&m\3qI(.6~eaPp^俿64:m,ͮ2G:|E? XG~ t-=.c6QҐ]G}`Ghu{+m;Wmf͑b,p2?_dǻ~! '8·ƨ0nXY o{P6FU^[QsP$ZuԲT^K&]YHLP6 7V&.O}-!wXfgg<'yYHޝZH"5 53l)%} ?kIO>ib }݆Ќe"7}@Xہwقjx@rhsG鰜Qw ^fbr3#h.TeXr$pm2^+W;b N*&D_[ R'aI@j-.fybZRK6 Ԡ~l׽\5Z!x9F 35ON luӬ~L57?`O +Bb6qLhc)6 ,]c0-Zlę^3>y PG>yE4@Ut0Ho+JqFԁ%7~q|=W c;*%#5Jҽn͂x[ePFŃ߫ʛnB 5"@칅yNnz-oI35]G[Mhb,S.26h̀fS,jrl@f7j>^?n!􀲋6پR*::ԫ__ Ahn$C׈ < =XN3ҔtRw.[&Es~˟g+K j4>Rt×~(3Mژ|ʵѨʽ6$5 ѭw& ~2xq-&'НjB9UY R[HOdc,"51ZL*&YK+\H+cPH)49Mo,@rx(Q><ų`}@f}~N iZJuֈ6 `=즫KH.DwԱKKMJxVv^wz-7/hӯzi$:HslC"E=-Rߞ\x6 dK9[dGCayv@K">9ꒊ1a{ǼѦΡ{˙&eUԧʢJx4kY PM7BP1l~;Yˤ7mˬ+}n:>B-od`ء氇2e'W:1TT"*-akԢf"9Çx8#d!UdGbzµܞKИU`pqFKdN! 5gbw ڨNq!sj@{I,YuZ?ՂM}V?4HJɬ̝EܿWr$h Aۏ$ѦJ]yǻ㓇$Ūes`6VO8~Է YrpKlMULU1Ϩ{k8`Ȩ5c@)ZC]vzXysӊe_{#_YsFIM6#\2JlFߙ)AB)ձO;Ҭ{2UYZOʶDj&Q16=Q}ˋ= t&aiV3g92bяΈ]y]ΠzZI2 <ەi Wlc3 jټ$AYwǞ4;4xy%O)cB5͋ųD&.['n$AjU.qϳT; h'_?r_LT}rZ!LH${3EZDمCD#4m$iR2U69Sl2)Rf^LYxBe}7t8*m]# "FtR48qDΜKTYٽQE.{&2zq>mPe_ *ZLT>0PTjrbO܈-g4zqޖjQY ExÀ׹..Q5o !ljo*MXpg7"ӷkvIuL8(Rj 6` eRA3,PH%i>xF@5}k#f*lY.J >5%}"qHfCYVbeƵ! `cK2Wv(|fp:8׶-c$r fEs0zK]ޮuԚ^/!p,&kr>j_˻ tWoUMK]of3Orǚ0xs_/ߨPFَWVgSsa|Y Rƌ,Tm #˪ M x\f lb[4$\Wݖ}7!IgqFؗF~g?C"0DXSME!#?H>/{+`WK]5%l&&%mZ0xH`[-7Ws ={:_UcDub?1l]ُhSk~sІ2a U34,lkIZ:SL!vQsi]@n;]ǘ<bŜs\?&/n yqU7a]u'NJ._ *z@a<ϦRH+l %;[W~`Ic6՘SM}wS ɛY?duZM]}kC!ZPgU\;j@X琏b'GfND,-D2It_E{%/AȡDF fY\ X؉>:*IF4|&݌1n/}Dilx !&꽬sSҸʽwҗTw\PE9 .y tIq&m1Ҳ x\xzf?粝^4T+ޜc,!jJ>0Mb*eR5bm]<㸴m)\Bmnw}cH0$GeѶAC.0?bm<ȲRDփzRmD1I&t̾oItm2 )֘!(9䓈o^vv H7Mͧz˓;ۖ9Ǝ9ɛv&51a:6` ZGgaТ 27 8ܤ$ c 6%%Uءh|A5rL.M$--%ob :ne/a U,SZ$,MiN%a'@0ۛ~Jf[N}'"kTb)ML'qP~6Rۥt J* pkڏ2,Zt')IsLȮg=xϫ$ekG7G1f{:sh}wmNsoIdi;M.P\weLO4 _Ôj(د}}\ڏ&'-PE:0zkM)f%a)yf",!$-"m@7n$K <&p#JM^,+iGP !FE,UGN! ˙EJ!+\\-Ol;jRF]X^E2ȣ+,2vyaĥµP3pAq\&z@bj`l@akG #9}lE^V3˒aQ&[`M.އc"Bz=^2?؍'>&Y#f;AZ|u*U#u`19) zޥZ|׳Sɤ;wNn>o4oDq_4`(~xk{x/[U"e-sX63ٷ?~8O҄]`3b;g~.A==}hv礁8t2J&U,b 'B=x\laAiC7@EaR̬,?(NF9&E/i pCn,;mB7T^R ! p8ܒu] "U: 5 e#TX H3jkJXC*; rJlp{;&kSM LF{k#׹^_$Ζ|4S QpE^}a%e>闗Z߾U\ VpRB:e*Nj&^(ZvVsH@e6Մ#dZc* #L^) b~J S<%B(tI̘N ح8 f^*p'r'QPp>yrr(6bvw *".M.o^:+òE%=R(mV7c!Ί!=\y#8_"##5joC :RjZErMb <\;>zNH^/LIzZ.I|XOh''eP2õT^Nx`x/$2)E[3mQQy (ʉzZ6dFEo.TfWRDްmS 3S7tqq^aI4{w+NZ0NܛlM %+;te(=sX7*STkqKAMjB0gtrQ ~׼&P\V]̫Qs|y|1CvS6" 7ۗLjj R]#/i.ɽuNDKC2F>̭ƏaBBP {Ǩng3f 9G܇RUޮyk١f0Kl7Ce}y[C;;$z[\([ļW*c !PN3 qjua*_WHMr>W˜}: ˃7߬= S;ϓ[ IVMܓ3AIVAaJf; buWr [zfz?q k"zDRlށ,<4leyע=xbrT^cL_*$i2ښb4w$ ,˵"++-K#O88?DR7)A*24ͨ&L[td!wt:96t~{p~<[k[l+L9)ԣ~^x}<'UJ,r\]u5xw 8X&J0g/(D`*?fY!8i ry+ޫ{mK. u@w~?xsk9QAATlԻ]|Q19Iz(8,M{57X锍@R$Kvkvx[+lpBh4L:>)`Ѝt^]p< $fs @ u,ܥ#p"a_F gq&w@tk%yvGɸ\AumAt^=K9|\LM>)_ps0JəJ]\5I\mrnZjx\9 @-b/xX4?U 2 XV$`ŒJꍘ E׸׮ xACx ;(Eof'vۿc|福ZT:OSRC$9h)<-lH7Ttrc%EJ%tq&[KW,˛ $tCµ+AOe|?\w=PGOQ.6G }̣my!ky IqbUD TlQ4.f3_‚]$H4aOgSץ "ebilD:䒵,^YK Y)nƕ1!ZS RMaL iVָڬAu;_%TEZkixZhLcՑ6|ώ1D{tC \&N0`;,8;CLl(HLi\#ܯΊ@ WɤpEzd+E@A\-QЇ_yh-KbROrKΞs\ ?!)R,޼DRZy0 "aD.X[3 %iW̔M,Cz!;jqi3Lj ~IQs(K5vE P ICQzyC n(S* Fx FS?*3q0Z!4CIXhQwpHM!ϯ*7@d6ETVG((w)k]钲 iV)b.m,ǔۋWߦs/LRxp*3۾e?r &=I^ENUf"<MN1x*9d љzRsbv6sbR|~swg  /zy;K?z9=ɐTlS q @MD6!ndSE aL`7i]eRb (. :\В{8s #"B:0#H44ji2!)VCbnC*Sxӎ_.lҾpH )P!Z/&A}McFV"ѩiPFR,@Kw5&H/uӡҰ!螫UH.ԐxL(s6p\99=f@T/mڙNOR2ߩa{@Mgu*!@eHSSZr{=v`Į"];__ՉLEkmj' lCBZfQL,_{Qo)FMhDٔ vWa,ag]5v + cw5hp[;PUm4ݣ t3%fvP8q`|B#+!͗'K{[(<NlJ^\"-lɈXi!4sޚԩj,j:79?&9&/GC*k~D!M`˿$6gdM׮Yq{tt" -ꌁ"3 %Asޒǰ{ɮ'v@:,cd7,;hG$)Nku9iEki͂蛝/CXWCMbAp`rL+.=zh} N6hCػ;JU.J'\y Xue' Vv9w\/ @D ;?󕤧I?{ji1RݶX=y)(SiZ]V=Ke(+.զ`*ا\}ֺ%}:پnrxơsU K3ʑ,Img&P"t|r7]J璢ώQAIzA,n71P@!vL!%ǎ˚b_>H28!@> cXRBֿu*3}7 f a7*3 eYcEI.0&i΃0w_Cޖ4J wlVDMB^߻1_*Țj?NT7yI ڛbqW L\QЙkQ\K:M̭PϹ2ﳵgsL9zj "_S g/ (5Z(>'EX瘕0 м5Ȯi*!5Y~,+|gB3~R^F}an:PR;<8)kZK=`/%`O W b_^LS}N[cveXmE^f2>S4XY+p 9ܬO1O2΋vq@9ah[-zSjL : 7k2Y&plDBYrt؅A?kE1OAB݅jA1dyVULaYQ*?6"e8_3 !ݢ?U< W1q"𒴃h:Vf*SM>ru~ M{~qa}۟banZ9`^-`'(eπ.s b,X~a߼0 c;sOȐ1hy'UNNW@[֮-] mv-o dt(F{}z@nj;>׈ jl Eߛ&*\U _d3\# +~]4\Ѿn&+62k&/~83'j~zX|i.a*U =ڎ PJ'U8: E"yq jOmϑwB˘;4ZG:|5m,LQol`wJ&NY]&0)42qʹ;XGͅMfb6ƀEV0R߶&wMւ̦&&{Y)d0ڣ>lOaaOZm›Ő7ԁ[:lwkY9T-& ^BȈO]|5[xށ_:ls6-˳k_ٱ伆U0X_!͎CF,c9n3"s=sa^׷P'򞎴Sm[qЍK`]OGۤx=&߲m?P˜t bqkUϞи'No<41lFe{>3O7&W00fuTȳz@rQT;xz:-``u @o1P~x}⾓`]4 s׀ފN@ QaUS,ɷVo:rk6IXLla "as^JO< zz/ZVP֐-}i@;F^ 'TXg/|ZN<3,*:)F5M yC |g?~-)d1V2zn0 ;9V|HȾF 5D.1̀|Kk9;O/8(1 7|9[L/Z5 t~N3ϋt-`7}7Ny<3:#m[:N_r&@X@rs6|go"3b:1 ^vxON)qBcv񹯝qD?vG`\v,ش?֧ypHc>3Al}`w\3tQm3M,FS8fm{:XdgU-9 Zf*뇯̲Ь ^k_VA !ôK-?pR %mg;ؾ#~uXl.Aު53,]o06~z sd:L:(VۡTur@HxWǮ}Co;mvЂfYM5(_5"#17?ǎ 7U9BǷ?],8ɀ,U G(< œejd>e5rqۧ_Ür\]8t>ѪBd &D0~|=Z<ޛN[3y9y@ F;9tK9FBL; IĂ1E~Di +ZuRga  ?Yv/TE߮7֟`q@1@h rùEK}LgXn`} 3,ٗ7ڭ հah};`xE=z {L|+)lO9l X.;_XwK+h02(j,azl|p Nΐә#T C Ucq'\T lb 3ErN x5n+CAqeM IyL3UVс 3t+e?I5D5ve-MWն.sykeskg%Dt7kRSo@젣TT{/G;9.ϟݟWWsl&Ȫ`OQ-2\\)fޓyӿ/t|vS˦XD̑V/нBϐxग़ؼ&As;ᛄJZ϶ 0``m X Z )u+ ׂ )zV|c W_yeaBhvX7;Kg3hM{j'>*_UEdOF$sVeX"&m.d|5 ƢB>wGE#ћwVR*<8/u݉_0a@zUiӶ)>'OtSԛţ1k P문هwq_׻uKp9Qs^udGEZZ'n^y0@lD̏&0=/.)A0xڂxALpYQ+B2t`~&:CW6a<6R;"ⳡ7,r1Y1a"F%LDf-n.fb$̷>!iyp? ;̀G9W<7}x5~I8.|3BeURͲ9`WUyL ى BVĶ5 &gX 0GZ8AwNt;4d"M7bniZǚbPYͺ}@ut6aXث6Nd{0ziK}Z,*P*R܊V} d b}~2B]=i ˔6[l9mE/q  _|,+П\1@k8}<4<<&heF-Ȕ%PN=Ȁ:U]c;1 mqDv=~~)&bdw$F !ׯmĭ5Aۘ8`Av%oG^ڶu AaiM,kd`[ Ce@zXIK 4xHe2T'>/_qAeFalk5nsp\ %7zOmoFs[x$‡~SrnUHԜE*z aV=I}E9&[EVzgY#Ysj^Ck,}/snc`ԊěB @S*"/Hxϰڰ\|)qxD#g 1W1lK4MVG,!ӛgh_pY҉zmD6UYƖu@*!̟XH.`հ%: }l_y㟯f0?M:>~yةb ׬)xjڴ}t z<Ѿt4c9rjߗ~%@6sX qmQ"YN5;9giiK [@98Jx{Z'RISs`,˟n4'iMy,g[2d?j"q!&{Jü]VG J8V&w; ;^BSёq鿪DY!;{umUͱ_)\pR>5Yܺ*;aPk:řQ&eq3Bضfb :<`g`ztT{:8fzH.1 <gH|'5㵺MEMBD2D6{ lg?|nYƵT|/)e,\/W 5箛2j&4oS@Lq6Z`\K!dr܆ZbJ\cĭMB36rګZI@xhI ox,)l 2CE Θm Н4*xVz` y}5eYu'@>9 ]dU}xdnUR?̺aҏW\+o8`9dp'Mqu_g-%iszzp,YZ" .WtQthMυd=pS{,adl #&hf&XZg>a5O(&ęV7a0ľzlM#WjL,#f*4$L;ӳFʴ-l@-MrVJ`kea~/!ZԌʴ_R/5C;hTyz,w_Js?yf4;y`XC_]:G͊2ps_ʣtn_qUAvttv`]Y'WsV٩ЌNs7BoNnFvLls߱.f9"PQmxg&Dr]h"SdJ'GI*LLy3M &M寸CeK:&#qƬY2^-H:T-V mq6-":h&2 ʮsmNUgrmUp ?[+Rn*U׽B,vMƼ io8Okap룝f FQ}V=-h;Tވj*-0/]eQ$Kw\݀>z+;{%xZ[xBv, / x"(Dk>Fěuhm+Tr۫ZYŧf6c{hk(Ud'1ovbvrz>x@c̎Ϧr=Okɘ/mlEO`md[Mv22u yjS/`jn)̔vW #ڵJvDSd*; 9hx0m149vH)~?/?dpĦ)X*#Yx?Stp}gK)ZZatqX0[Mg,0p\x-D@P ( D '-L}'#3Xqoq3>Xo߼[,ZR6n˰)Wu2>T2Z.B%xXvةuL#e-5>GL9Y#^?'B+N":lW79dt*n_{\s~hS J5g]k$s_zeu9Jb6Ư6 @'-f1-(; 2a&tl #+:^,02Dha~Ij\c<G =M&0\X&Dr_&L2}X'@EF;h(٣~ͪ f)4&qme*yeA;oL@Fʼnec6ObΝ{w7g޲BOgN(&d0ԃ_aVʲkb3 :++5j?^FgBTv&uMAUmR{_ eZf;@-AV0z솓 {~*4bYf3*,CT'GuMn#:te+@56tt؞27 fT11G4Sxb2 ? x >wc-d~9X#ݞ@X6'86@mNBc,fdb!49^uE=!mm[ApSMb\ |jXkm!pY^:Of}-Q`.ww8@ͷ-{az 5VwSEWuCf=|n4?,76744 +ס~-ӆR]`KZ{ʌ񹞣U !!:F0 2d1 cEyl+#YXR#ԭmgYUe5Y0hS32M{P\rS}UM[cÓ!̂it>}yd P{<̡M\gPj}+;QS_XApvdx5 9 6@Ihl!;~KV9ݙw좕r},7P% k!jö$>߷fsgR~dQ$zn^Tn )[헵4U}8IM@:z|"ڪ7 p[8`{&M00,p-Ȳ ` V瞫ZKA8ӟ|';i˿|vS}A@{(Y)ZEngπU}0X kb}=^kC쾟Qq=a'EdPV7١L ^|qIs@=+? T#HYF F./O/fh*6?Y,/6޳&e}ј\F2 @!⏙i Y>Y3 ` "rA8gy\9VUr^r4.bV6RhGv׎Mkp^YjYxzBFڑ94W sWnnY*Ͻ꙳b1]wIJ\aʳx]h**uw؄~vܙ u9`ȴ LkӤ> *.ʒV[&?bkF ]Zc f _dauդL/T.Î#^Êj)ѵ!m84iՒ19:wM1S!jMHD9!3%''#nYM&]1 oxMU0vll:}=9&|v,?&~z.)Nv'~9F"փxIv9uJON<%ߤtibaJ.b`m|܆oN}O^4XfTݿ0/XC#5-_gK,N+ڌOPsOTiaJ<&U ~X*VM{: !e ?=^kOȲ:LMq=xllkHgR==߂0Z 4px7_SSc5b~p"'Bh IY5a.H]_I&oY;v&NՀ668u.\PO?Ybb&M߼8WYܡ N7IeX""|qKIO}t$<^&iƀ2o20r(Y<3S/E+*2\hrVg{BX}z췡:>%{4HWȃ,?kT!|$\I$Y9{#{&l;VJ;YٴYH;̞:M9Dp6,K T:SNUNF1*5Z.+zc;h2OA@SSpnHXE$e}eNcLe5:ҏ xzlۼSm[9I]eULbWP޵+dW;=U#:`6N2MI v, ^89V x]S lAžME1<{ w PͽAT[AVmszI-(Y!6Y6·wd B㿙A[2DA*dym2ƺnz1-]AjiVJ]:&&~kK88q>qArRN>1|#'b\ZoTl$͍Uăyȉɭ|--T ء:o9e2e6R&>@ *rO4aRB3Gp%C]ggPߚI/2Ea=<} dRׄC\ZavVw:Gr9"+ɌnU-Vd]LW~׋*d-<ΜS͜Dn5 l;6>UIgE2vY/Q3!Ba?H{Cx\eU 1:DE2{MC`B1dMx&1ͥ}EELD ~0tx<7:Nu+M1)+8T0f;3(65ApfeɃ5#S/@AK,Y6&oӤ7^ ӣ@x)<,Jў@oDz^&%c9[*qQ~[q*}g?:.kiX\DPm_  wD';JXwmrrXVLU|{u5LoO鞄vG*?5:3! O/hM|̟'w'Ha &VER` g^U~Yk^ Ϗc ӕhw0KL2Un2ڭ4~)jR2vYcEaiAmLn2)Ux01%gvr=p8@AN>i'5U?҇'L %vB<, |! ;gĿ?6UnF\DY0ugg@$Kwc.GwPL;S<}V/}ײ$[0ƅ#&Eh /@T:YgqR5aҤZ[iy vR~cࣝ,3Uh-FlLi6|--5ip4-K3P?”791d'[+APpym 3让kGUc}LtHǪeF}hb{SD"k+I֦5![kI=9_~\ÜWKj,b`Uҷ6}߃ O> 3mP1ץUeōf)Z{kY7g~cok!m1x| fw?WN?>J,.HE (棽{{#Mnx< <>o^ 5݂ݔ%zL@0Z )\3}qLlsVJ>ڬ"p*89}a32_L1sqZ 6\0dsYvߤKߊ8fl/2`N3/6J/nԌ2ߖƪbg4}b~-xRkZ{,\E yE:`0sSl窉gT2˅iFލGF4,\`cQɾƇȀG0ŭ,J#95} Is1VֶbU~綴+L2uZdIo=SZ `XYv Nč`3#S%Cl.N)ZvXe,bdRD"tBkW[DheԂg.&6\-'5뵱͍?>rn3!$Aq196]5 В ܰP\e(i쌀i}3'>$u-@ ^MK㘊cBq}y\B¢ԅ\aQԤ,S}vĺ kERd8/B$b(8⩟Ⱦ3bXgķ j9O꽘Nev_O'm5a<`Pasp)}*}C|JMpR `r[LoJX=nGTKVӔgj$)>plJfѻ:湖Q-_X\4 a`wP5%3DAQ1Ūpy1fH:; 6}tXpB**Yhrذ{ د53T,SS`m`2ǭӻ=oZ%0#m;aW ]ݳ_Tsb|I`k%фqܒ#C%ggBs0sD Mz)iZk2[c*U6ViJ$@5*BL y@[:^Q9hd`v,Ҥ(ܶo8ɕWGg>]T|g6 jǫ H J<$ݎOso-ya<,?^E9!;|AMτd{~^kƂ`PvnU4[L2E0iZ&6r?v//&é?R#P|WLoMJcxpeeV>*I>"y[SM_X fm åD?hCM5qP3hCi7WDY2lc y|`9c7CQ$iϽHԔ7`?/C 2)zYlf" 'j~d3,kj<#;RGI?%ȹ{ϔڇuqƘ g4{*#hDoߑfmoiw{aAdxSǏ6hBqRM;r0ƀ!>)$ Cا稉^YkN εgA]\ɞ'*<\cʔ+@b`L7I:Q0vd]WLpb2_@ xٟ{ \(uQ:ZN~6Pa:ׯyl*^+:5-df/vG2Ip |XSȱ  jn6,Lw PqO4E[̭Лx|WD~W|1Q3ٙ+eYӁn/9} b2xZ1?2G lV7e^[h!,g#D|d|$ G{R<0oD=A!5~d剄,f8cfZߕQ X5%'"* lO7mNiӪ5xݱ\ / DbNYʁ϶<|:s1mC_R -3@4Ƽ&ܚcX5/^d 9h5(竹âx/yLjR'=j!UI+c*E i*M{ 0s,۠1Lsa[ugÊ xX ?Swִ N|p;t(ْ8=Իjq%հv` *ʏ==WHH ,L(p0=]7Wi0JlW&NJ{C//˓g'vbUslQr;._޺Jc?]}^|A] .h B*8[{VhOlO7vqD|ZΑRס1zk=,!ӑDbbT"&K\ov˯9|_-DL\fL;*ReW MG46%VJ@LU`L?;e0@BD̹S@c F)Oўܗ I.E–mhSCcscfNfX}yylp/CQ}Ÿ c>[]4_:ؿ6MYxmCHkQ&,SIvZW$^֔>=-/\i˵a+Ζ :dT*Z*!˩OĿ 33;z"Ik˓ͲNS| r(upg4`- F%TJa7/)?"F8V<=Z.Clu0t⚴w_ - u?tj4sBZqlJM),( ^O;7AMaOwN[JR1bqAri@?Ǿ=9FS.7|- X3ˀ@q^VAy81a>"4$rD/Sr.ֲTab" A@uiD&:M0JdgV-#:?mILPNڌ%n澑h +b Z`(lH+h)#ٚSR؜?Zsnpi˓[:Pt0+1}3k[=˹)JcdN* WM~-MiPpۉTQ:4[oF0 -#4s뻨W/ k@ @0FMw!RMo)1LfL-}=N{ִb^Mf1OB sE3hg.7 4w@;N䚷2kYhǽ{H*X_c4n9KHߞ9~kФg,~jx <^nH_ׇZ|?oUtJ0ݲE7Tѱ*LK-uL@`iz$&VMNJ1N5=}XwjJJI n/K֚0ܣr= ^g'G/S})'/LѦ.ٳ WNܣ]l-cTlNǧ}}}iO?O)<6x#cv-a/2-yM5D9^ TJML?*UE+̩jZ }R& +:WQ%_$>ǔKg 4؄$z(ZUҨ7ІV'ʓ6XV(ZZ{/q赍U>|= k061U1RϴID <,g^A`zrMݛ 8*_Z&'fIh {v=:x,JbvN.+0#HxMmbFɬ!%Ȯ@11-p`$9>=_vD%R5ָrg$"x/د3*!wu >V5k﫱[^&(D ^q̪=@ƶ mױ^ܢ zd6uL Q٨ccmt hEֹ X j f[㘜9ElYL21=h7zIKmC^][k( {R% <b.ѰW(tf>{L~Y޺-IaFWSy9n!̖C"g`BǏ*yT+<ݯu4iO{Og5\?P9bIO ŋ(et?(+QM fqZ7zNn m\a0O DF}Z!puҒg_פMN T4 p8G#gDWvPcXk%E-"yS{9㒬M(*Hc^P1نiRʢ<\Y<)/d||QnII4e-h4-BNc_G".3Sz`i=!@X``:V&Fd4&f) Q/ bp4D@ ɋt Ic:5}NM͒kp9E'~WjRLDs 7 (~|*8X3Tf[GKhj&&=ie'ZI>ˇThu~JRy6(8Ddn`8;1'_T =!w`zi]ZEh5:@Ŭ̇fIu9ޠLh$I!X0T{D뵋iN͵I/):.@\\o 䙍rT|*FBnoZq҂_jk;FdƏVPY}E`\( ]`>5z`Mezgy;PW *[l=4hƩU\O;Th-Q)gA;SLoDV;e*zX !ҏ=ڡ^גwO"cdh[qvWRIS?բ~|t|w'vAI ( aB#`jw4%!)5a$Di,C>I YnSi 0=4mN@|6yX6\XV%' E7 V Ҩ1ώ%yޘz)2w<G& |&sϻ[!Zr"AG.j<]cj{L%|e&uL1aZF: 68MG2 &`a&RҳHٛyKǑO|WKLN@( s4'% x W<nj,׏74{}3T@Vw4vûCN 윓I)cŚ6Y(gܩِ\_fY>h0ݲ,ĥlQ, )njYl(`}:6B+`^hgh-4GҤn~=.ǛjŒ *Wo;zٯ>.œ`M~)TyӤ׊L;Z+hbx.gYXY}j@``whֳH"7僾Å-I'fNq|^H2Kc&fҠ&„ 2*}s3UJdDkȔ3#m a*c9o{AӂĀ\G 1hub `ZrQktKk9z~Y {PϏ|͇Lm'v eFGlpf:~&DDI㤫CZFL}WGډ~3g^H5cnE+xzS1jƬ@wZ{9x!]U$sd ;a77WU SJ*aР5V[Z+ v(&uOr\E*fkh x$ݟN># Z "ppqs74j놾 KcMs:`Ǫ飭ў)v3 c;X,vʩ1vxl1i8>T/ vd[#:~ak'_<ݓx>mQ)ۧ>}v5K3UM0c0Z׊FF\?ND֒)4d-1}N0^LKEx8XFQ Vqq=>>ۯ2:[/ΰR#Whg[JpT-u0,%~ 䍛r;)2a<>\ע>{kVt];[2Sih;`zjZ/3~~)]GN#=m-9t~&CYSlRݏ^0"rMTT6-_cnn*Bx?L MMI(ÎZI 1KsYl >(c%A `0YB ]8PL/O4]m9^{\u?#vB/>~&S RH$f L4w|QhYui0MGk=H1Ƌ`WT4Ox ?mȶn&5кUC4tEޗ7`^yDE ʬJmFDIݛE˶LwB#8 =5I"d8.`WϹr&#^ D ZIRpfI&"Åߍңǫ4:$somTS`}kRݔOx5B?sSK;;'x I\g7`m~޼}m2- TB'2;eP6n1"c>dn{ ~2uhcL 3m_5i$ 8n"O t1O?%$Dˏ nLj_h3n&9Fy,G}IDf%;0$<9?9,sŎIxY@G"=C8$緖kCq옄4ԕ^<ttH7) ?Diώd&m17S\Ya|MHn/&n~Ģ) 4Kq 70̤}0@}ig"Eۊoսt GA u*Z[?Z'rkc(#ViJC%{"\]}8E[E-DIu3WL%"5&xMS]Y/#]G{;Nw?z0HAfބ)DP0ghMh٩q.۬GsKy w lͬY`ǿ+P&FM  ߓ|\q^n_๗$[#y-:mj+ٻjUkZ3& fvs,tץLk*Y]Ν=Mzd<>Sm je6FÞm3ɬ[{siX c*hAs0eBrMVcL~sͤvmvƗ:`VGy:lԮs]f>a 9aA>R. A(7j&Z4:iw f"|S9Ϙ)9D5RyFuD< l.??:&e"(b4Ky~9,ф(fRd%6͘N<7:aigoD퓂*ib9I8pGZ׾.;00ҁJťEZIaXeP|nYh@V5fg @gpָ0ٮ}ֻ/xо74Vpw?Ƶ ^ka>cpsyvFA+;QI {*E>`XDSh_cLK8ZmU>3zD[c06Mڞª;5Ȧڐl.Z2n 늛0R*.NUe .e6Nܷy}$-i$e1]{<-cV D@f:9g cp{T C~3jh B#[iEKJѸ٧cVe5ޘ/so! ҆`w:{]O]c] ϻ C=75\^"oE>rBʃ Y%|:}yߵ0UYE,%d) ͽih `679OjQ>)6SX0]6-y6>L LuvWSgF-W !6*Hlꮷ#H RHGh H =^˛ߙ`IpL 4&3Fc|ȏHnv O 140}cZ4si;4]zt ] Jx/(E+0}m3yg60T$̈́07˟6.pi5dtJ}$d9XVf4ǢEN<@V ,<e\Tq]3K*aeDU)쁗ctKkp'c\H͵{ڢU%·Obf3m]M,0%DM;}LO50/D'0҂p슞|P)";+X#A^p !86%:nYLme^=-\oJPUOƘ2,2jxg]Q@ =Ϳ'00'QS7n{?>ڤc4F+4{غ OTup/\}g>[j{5rjl-W7 DN!c:>|8cPFkB䎎 :p3cL ckiM2q-bQ4==F2~޳ޒg3Es)$$gCB+O Q3[+ӧp1;M=1J=C{I^ACLv-xg bkmtMysF zZ 1{u4ε 9c´}:$`\o HjNVp*FG3uQ ԅq0mEaNeEAo;kKi kO5xEW L@a7@nN7 g9`FVP%1h.3+9ͳFL9gj{h[[a ]!ӧضȾZ@iS2*fj+XR3 )Xj(Nu0R]= ?D?TX#bp%׹|9*f7{ӏh)u=q5L[K8f[I 8d'`)0̎{ԭ^glY%xv~||jۻHgf tu)dbA6Re&EsД ?,5Rn]\szdRI ~x%l)gkk͹0%;EW#|LЊ;Pp:)0^ni;Oh*u,ph'!Ѓ[|ibcn)6O:fά1 0?#pf,9 \}ڭCAXC>^4}U_]'}zE'w.*`iV3"МJ;9 %ȩ1)=hw춆?^~ܴIRLhhu„VSկys\1swƮL"1SsUAQ`{ӊ9%Zs^‘_]zxZ P3kkl[tO#Kh/UZx(8UlCP@ O~C+}Ioみp>l/UW1cL٘߹-|k~ZGc(%v5hT̵5h;Q@|ԾѸ6h9 7_⥏Chy+@&e& iEgA LwܴWR*@OONItKeڄa5_"+PFYfx>֋2q4ٿwt??ls˟AJRܒ434=97׉.&L)fgfI^G5p4}J4b7DaGqDAB 1&%11ɮ'2z)5MC EkgeLpX$yjy 2F8!h㘬ƃ4Q;P2.QRO1&I30icsNgLVOhmH-H݀@H_," w6O.vˆ̷($a\i\s$)|dJm|v2/^W0guMSOs !l C8ykil­mX0Xhh)i*?D3"ݭ(vcb44q\_WwnLV݉Y7gR2l`)9n):ѻchk~Kc;quEtӕu43!@Wy|hȼofbB]}LĀ1E葏R<ڰ jTOS%͚~D6"ohN&|+  0l7mW>XsYMtQn4L܄{*"D#Cww )Rݿ΋֒Q4mņ~a K@!3җTrGWOYd[Λ1`(4LtcJO$t6aڮB ܔP*_nX`0H`ke"Y#Ԇ.!b8@k'YT[.L~Gc䏺G-Q8eR ==D0H^h8ʏyKq0~*/E sV;cgk0{ǤDŽ0у AB6Lqo3G⃉ޚ{ir0#6Ge!=0%ђ10%gՂ05mbn3L$G~3УSQg_]$1rqo Lk\bMpe|Ѿn%MҮ2E8i(jmqgy5zzVuc@)>c4On3m0:/'9hL'<ڱT"Rc>X/s\#Rjޥ%g]{|d_k72PkY iU)g!7`&31/SWhO5\AUeͰW4 uO!;.} 9uMx2]0Q_ӱ[yf5gifU6Ki0C_שKUJ#{Zh_]bdsM J$sN0ĥ@7]*>v+؉fj,r&\G @e9AWƬu3@)D(h/cNm}yW>9&D1C :GKd>,M]`l hL@oP()4M[Yoe\Y m6iE~S^{pSrGPvޓd7]4ٓM/ )u\ ;ČtL./ۦ,#@kNC5ǎL 4j@svFnkݳ-<ڮ(<a_puR)" m7tP`h-)eKY]!/pOcqZ1 <5dWHiy/ 2D*oz/8bήS!%υ[Lty0Q4N E@Zu-P L^]>0e7{ӲgS@Am:{1X " pM^엘] ,̧ehK`-k0/wci5Ẍ<0py@O`>I#8+ [l[mi鼔P̞➩Hڹ}mpmqwxz]+5$z1zm-IlDxJcwϘi֢πi_f٩/-|Fvivot - .>.5|)i!6hR7oy3Libf{yY[hr%uiTWua#=1L66jX(6Wn[p>oj8> mڿJ{4Jw4<C+,ys9e|Z8wbiսIy<``]UN^۱b*\ޮnsg'+&~ M@5uj(' Xi|b]h>{Ζ+&{{18;xי I:Ά+P6a 4J&!&e& oY4M25;Br9s817y]t4n"äČp=v Iu&:LqcEsd~]"7钕>9-+,_:BÐ%gXH|3*v_Z-)Xi0ć|Y>*gs-ne9orhsL~ $-ᖰAq}KN? { X CPSŔ\@|T1etOAnK)V_S/LJ Sq"f7n=-dӞD+F4NO@r}#޳ݗ r@ k=77u0Y8"hf(ջ[NwRN=-`]kOvxWcLUmΞ-X-h7?%d*m\<Z8+,wYDΕ7sgIj6c5@Cįf7\]43{%m1. &!a @0LM`X ,{Fл5͍5= PVS Y1fбR]]8E}S^3Wzɿ'En>5w+cϠNu M }DXmQ"t)cx쉒ica/"sڸS`V\ Rx dQڅGl5P"ʤSLqh $5.RFaYv @^Q 9saNƥcv}TK6{`ru 5o][t>SJ!f8$,`|6&kg-L\x gpL9oO=4#tLd2ޗjHވdᗙu9c뾄̚a0L 5|̦ɩ}X81{!}y%X(_K ʜVN>6}%C1cO1ckЀT )MtjS 3>iƆ>}%Yu ZvEt&#y1kxbZl&m]CL+!H'}4CǁN'ϝHZ_%C:Y9J8Ě| $E>~*P$c_&%?0sܣ T8wV2}Go,8HaZhehM S&j&\5Gf':>ݳ秊 $+%`:];;.Hc}pF / +R2hh{ύ/}oa̭{n YutNy7z`g%oĈ::s,2epl=/Crhw]# @ԆIeq)'{{J4B#%F \hkvO"l/ʢ>;/S*.<'WAs0fuE-Vx=Ѫ)*V ~ɢ=ZNq I2}nT#=&`fBTԝJs ̘ 5<{Ƽ)5T1u;!|(cȤ:'ǴۄeJ-^SN2Z^$KDHTt#ޤo-nτIb"U:)3 ֎WH^ǯ>V$Pk|{ t1S:~ݫ+)݄fS_,@h}칣=q6v}9cl+m Іs n `xc46y^ϓ*rotia5 9HxK&vLZ/}mڅj|쳩-_8O,A y /_bN}6F-=hǕt1ҞЂiUZ.wmSzU`qxϔKMC *Qsķ@H}4y¸ǺBB㵧sSCgK i*yPrsXES?`b`'N kLB0%dvAZPL:/L4WG͒x@6^E6\t_R?>|UGZ*એ@BS.mC+@/}/>vEAr,ߑX7/6IKq<Ӗve-)9QFv)k_Hqd˿jNQq'2@ #"{Sj.9=4ҿ5Yk Ͻ>p2;xDAdlҎZҘHc tv 0V]0\fCH6똛>8w_` \vDŽŏWcVǷ\f 縗劉Hl t$!&bRhhf655y&o#7v&H#[N~fՏQ9lH1Q=hL*gќm+цT h$ !fDi@3ዖ-w|X;O>ҩI\٫ RpGuU&i y^kYX#IGАj46C:T[Rai @;iYjg[6b5~ۧ&8h=rp@_HHŪa~+5yy) oXir~ӯggIy~F1ha-{1@k635j.;(`?~1^vK? fo `py&h9NXQX  Ty-fIh&xZ F__Lc_e+*mK,;.C|w'M& X>!$>2'hfN쿇_K'P}^1ѣ= c)]Mߣx4L2 h̩2%e|ƊvE3/*>-ǧ4=$qdE@Wx=k3&Ƅ5ji]:5(툳GG&cp<',d?ؠE=& $P2eMPF!LT/%MAs>C6AFRWc6Vga~ SEC5[B@Bt` Za%L  cgK!Ha҃#!1ocͧaRZ`KËER#42+?p2B`;O`%8g;eg0IঘǟF]GG(cr?: -;W%m& Os1 7gӋǘWS}%ht?̍@%C (&v7 7cx)(-ނZ˪ I ,8 lwR.v=g_:I93"X[/ '6Y +6iK,3@}n+֝:պ7d<12\_/ }C]5TѥK=4 \:c49%8Z{SM;ѯT83}6W@8_Y$Uw>a`ʚ7D{of ӭ?vZ曯77阋?jYf3Wtt̗9+PacPv_wk,a$^iq"2Lߘ|RRMfsc}>J0մ/Tp|2=4d3kָ^ւظJC>1HDZs(r& '| _zHʺ!CCr=f)֏t)X\j/їt@o/63N Ԝ"R?@fDĚ$8 E-WLzkom,$~SLglgxƬ 1w:Ǿ7\4Ap|&tc~UE̅^)mt2x sZX5a,q= ѝe}SBl/rL&j@wbwM r^x'i嘗1XE}ESb*ӫq:o]LٸzbXݻ3.ey|û`tVب0pS 0.S ?;18ICǴy'NwgNĚm36h@o5S^s;\+V 贈:hn;ݚt8 B&5$cIß Ծ#a\V՚Wќh- |"nKk h3_ w$3/Y5T:i45k&+h?_!d=ú2I#rg+'0Ox} i(4nb 86mZ/`A&2Gg֎Sv _( UjҸV"pA5Mʝ -zmYNbzHA7gK6vtFb~,G/Ri6Yxd9qDg!3SgjofD^LzS .UcA( .0_Dٍ91/=zqpog>ZYga/KE"ݧU~Rʛ~.B ^GP+URnoE?fFpG 4Cy t/쩿CkiCu#K$W_AF_X\ɿ¥3Qe`}F]nJy:/$a0 ʲ6,lՙ\tE&N_\up֟cStկ_NjO#78ê6VD~c_cJW //>}v=~v~FI@Z'yr 4m. ~Ϭa m=w t3}.y ^Sr+6?ԙa&Zgif:BOABQs3CcMq_AIoǓ^ F1"2z(TGk+Is^Yӝ +>.=/m<י*zQ36HJM!? ahߜH3zrlgk cxڣU+Oisf묻xHr|ۥ'ciCȬ)Ě& rVJQz-._Iݟe\AVcd,HRv1ˬBaրLJAC"n"%rM6yptA5Ib6#%b@X;P bE:xYݏm.'*38k1Kq4O>+Vp,Hb ,0̓󉺟1ѤBhHr3ܜ rxk!2*%O {fMĘ8nvyN8'-;__AV$Q;fcZ,2ٚ?$GiD)w|K\&8qY!xȝ/fKn°b`r׾B`&q* |C1+A 3YU%p 61e0-73wuO!fU[H&H_Ec6`Ťzm}i ^L}{0'%Uic-)9BŔ,eLkGR2)g0?0K๤ den>X`-ʪ"alYs4auIo&n:h/2:rI\):Z*YbT B Z\ܢ39mb?(`]YРMuͽ (AeniJה:3で&YIs<:9,^1rp%]w£dZH~|r7,z-2yL8Nr;&9'U%j2e"ZUAVGD!1rmzsAb]&%p/"rĀ9C*@A.C^(Guiv^h4gs:s߳1c!@lg?p$cQ/- bcĴL#كӴw'sYt+LBĢ. Mpt-2 Dced kN <>u۷Ϸp'c΂3|C0߬'h< #$'Z'0rF/!,8C*X/W_I:3XDc[sRnr̈́gKpQw[uY7f.]*_sI@e`C \7Xw.ׄ!ߵtT'f|R>ao޼EWε ųy o4:lE5̘Bg ,)}ק4Kr+G.B9.`XWOd? 1,xgP{Qe#${wjSjֶ=.8HrNn(b,s.8d՘Ni.߀w|26Y0^>w)va&iLΨ0FXA4~к~1s{\H]ItaEBya7/ݻ C~rcO IN̲sHf+DTuq 11*oT4؂ 0}?0;Y54o Eko#E110ZTё׽OS2\.%Y{ F^Д+=?4(t-/VQk@q0YiјWdB"RP WZb"|X04e"?ghzÁqcLvf hϙW.]j0K3.s\$dr L1'g7u/#\c \Q\"!@pIs Y)XHVwԊmVR}gX4(?b?)q$Z`]@$彎z50睶LЯ`S1 ˅.?k Sӿ?\Gme.*'n0M4fbrEג}PH7@!3.":D8wӒbuaemV>BX)0wBr 7W+&RwLi3(C!!ByD՗4zf^ 9I1H]i:s0c뛣Q8Oȧ4*FIlƺ>#oj[.i[VK3^U-B?YLv1oğrOu$rk'K[U]vmoEBxL;̦~LwQ'+1)j\֔3 gi4LPЈ U n?1TxPyi4fT)X}:'|0$3w)5!vqh'*VC Չ]s8W{6*\h4l04nQl4k s5F_.$M| 2Ғ~ JYoL )+bIl1P%MsY0MhVo ߧ9[0zs$F Xތ/iK S)|w=Z4:e)3[Z\/ߺ]bL >)Ҙ4BC|hIZKҩιIYեt)\`cfҊI,o?WyͥT@\NkI? -URӔsU1kL.ܦAUÅXւM~ jlܻb#߼5"5 bC|D-MhI$@@E!̊LC wߟQߍɸ"ۢ-Zڑ(WcX?X8@Zg7o Lfb.36* Ep:?j{P)No7 bSK&=\z^eNΟr&iƘʹRL}3ta\hNDAbޞqhXʖI"xy+rx@b5coxi#LEciGX?oY13eO^%=LfL3ա#d BN&̥<λB guj I] `sѱp)Kgw̶.E…k?IM8^wͿ_Nsg 3)d.oSiLīR2@c}q.aܪ\Vѝ)U-y$xg0ףmô85n/5pֳKDEͫՓe.EYr+#YPbR_w ̜[{02wc:ݹ>bb.&l׺V 6cn^/odvWT#hp>wgi K`v|%KO{Vye3q{nrC1s9/J!ur'eft{Tw=;X]L (gbbA91ָt:ƙ˾Q+|[ z1 Ӫ=U<Ѐ¿}g1Ao*O1L`= jGbG V}7V !fgzοET|/kLVt5zJ{^}0es|WjTi4^Ę"mL8&xOqMjtQLK[֌͇ #v?ߙ17MO0-K>L^/O"zabPo~ڠa'n<,hv~WL<צT CMkHy 2tr#uXR+ů^cZ֙[mXh/NO&k~ȬG,"2D.<8Iwgipp= 7 9(5`J}Y‰o֯xC>g:XޭLX/M}CO̓OLڃ%3a d aZS 2V P\%5)4,nՄ0v88OϹt3"^ S s;y~Q78g8fw* |\A+~L׈ᱽ#Hȇ"`-:̚ bEkTR*cߖvE@iWʚƨ;J[ $UK jfրŞuSVSf!{gIh]eEa@V(=L0[LOHEڭcӐ:21GSV3'YĽS[ 딟1Sor+]d"')"nu4ì_d 4f> Z97^c\IgxVdl$:\$BF"/"^:/(smj6mqks(☿?Y&\Uښ(;ԏE5捑2{RF̼9Lku+(k~׉软 D/Tr dqLk_4n =Sq0zdk2drGPc¸#@L 4oU*/6!" yU$%t)I3rG=ƽU5P᫹ΝA򛲍bu&a'X"M'̭ Z> ~(4TڲWLn=wz+}x({XXXFHW`|q) sK|l B =-Ogo<߭,S11KEd1AB@S&V9u n?DсKU7S̿[~>%#$V|y.FY\^ds><!N[;cz)P"#k~$!˗3 @[3 ,zrЗƂ3O!XL|0 _1ZV!Ũ4ӊE[q4? ̯p m,cZzhmaoSB V#Ρ}]C fmgiMq?%UL\8p~=h^ Bnѝ5OYJ@E%J wLXŮ\wA!h 4++V0 +4汢43J+Y5";[LΨ{E`>ԨD#hyDh)Uc8<_RDOPhwkMB,'0RPoK?ZSwHSJiz4:^^%2A҉ckVLfa$9!_r0rq -٫Hm_ J˒8M}ENXjPp&!3P(-i+@_mҙ̙=CAxi|wuӺ,OV&D^6',Xgejާ|~{X;<eH AGݶ.vQ~"f`uҞjfp[wC#h6d\j<\ f8$oi gvF/3|uƂкaZ J0χZS1Ɛ1&@C[ӸNS~ZBWKhg>E6~EM Ѱ`3me`m0ҁ> uQ^{ÐՏ#˳%s_ ,'<'hXVcY>v)_[{W`% sƐ+lxʙ.Ef7Y`i2LElgþΏ;$IJFZc[p}KCkW,7N/uoB$MoB.fv0cf8g.W5xw[etDe=7[ũҥJ?+xg</ VFY$:5!RY:wI&bgSc0e_Gl޹HY۰Tc;G Xuo8[3 W/SS&3^UUZEIRڹ Ft_:L3 Q]5?$s)؏+hJ^̽3W(FgRHC( õ2.W63~oO?#Q Rez\ `P a,.43/whf>2M=V\>cJwPWƴ(m4?ԴE'"" (}*Ө LZ%&2M3)-rf=1&P) Va@i(4սE0f-mAq*n|#|T@@DuQYl{oH}|7)OQ X#_x&>LH'%0$.KiE9iRIyiTSߗwn.Li@|tt.kLU S{ zT>]Q 0Q;oO F3 x n/oxyXI|pn%p1yRZ`-_.\չ\9ŝٕ^Qр C+S? =*).o59l[ muhcóL -nhzu^%zey6dAtV^igR>? Ӕ/)#ƮHQ^MQǔ9HT*,^XѝhJ}CeS/ٞbfaO1Q*J>tam5Ѧ(gSm*>q?>}vfW: %NÃK@OJ{01n54O)I/)|iH#?T}L+*m|+f _B4]CwO2]-bʛP௞kY g<*Vq@Ƭ~g'".$ Hh` >~v[ڀتr(k1b̤aX4D2;x>cbJ{$9h!,hX7~4\@hͪw J*r^Ң޷`%_{>k?!J|Y+g+;'K<8Ю- :crTg;S+d^Ztfԟ֏L8XըY7֙>u5cTf1uﴔ|\i"+9Sp yVSX1.u8hw*2wQs,q3Mbg:f0"M2tMTI.dvk9c3mk8~6!\`5X|{C }Kh&h)*hUK HWek=9Lw?K}ʂӜ{.Sċ HiBb,R ic*HR?b}%`CKYū>Ϯ_EG/>giqߍ'ثS鯶Eϊ=?PL(Iz{Fv$- Al>T&U"Y'' @) Wm̻`fݕ?7qDCLLiv =MwqH䒘C" !.ܰ,kT `ZNb1ǕW49CTV$fALt׵k T[J\}{4Cfdn,LM+:r&Ϣ1a)X1͑ A~ "&'I)'stOr>sJ#t oI9B  fK80Ä\I~vnm|b _X`\̥YL 5GwE2b#'γ"Wi(`8a6ZRC0B%e^C>ŌMj#_s T\8X\փЇG_T.&5Ǚ3Gv:hI뚳+WK]ʬ3 B_-ix8&`͡VHвCX>{" (line break) // All other elements are called "non-void" and MUST never self-close. // Examples: "

". // tinyxml2::XMLPrinter will emit _ALL_ XML elements with no inner content as // self-closing. This behavior produces space-effeceint XML, but incorrect HTML5. // Author: Dennis Jenkins, dennis (dot) jenkins (dot) 75 (at) gmail (dot) com. // License: Same as tinyxml2 (zlib, see below) // This example is a small contribution to the world! Enjoy it! /* This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "../tinyxml2.h" #include #if defined (_MSC_VER) #define strcasecmp stricmp #endif using namespace tinyxml2; // Contrived input containing a mix of void and non-void HTML5 elements. // When printed via XMLPrinter, some non-void elements will self-close (not valid HTML5). static const char input[] = "


©
"; // XMLPrinterHTML5 is small enough, just put the entire implementation inline. class XMLPrinterHTML5 : public XMLPrinter { public: XMLPrinterHTML5 (FILE* file=0, bool compact = false, int depth = 0) : XMLPrinter (file, compact, depth) {} protected: virtual void CloseElement () { if (_elementJustOpened && !isVoidElement (_stack.PeekTop())) { SealElementIfJustOpened(); } XMLPrinter::CloseElement(); } virtual bool isVoidElement (const char *name) { // Complete list of all HTML5 "void elements", // http://dev.w3.org/html5/markup/syntax.html static const char *list[] = { "area", "base", "br", "col", "command", "embed", "hr", "img", "input", "keygen", "link", "meta", "param", "source", "track", "wbr", NULL }; // I could use 'bsearch', but I don't have MSVC to test on (it would work with gcc/libc). for (const char **p = list; *p; ++p) { if (!strcasecmp (name, *p)) { return true; } } return false; } }; int main (void) { XMLDocument doc (false); doc.Parse (input); std::cout << "INPUT:\n" << input << "\n\n"; XMLPrinter prn (NULL, true); doc.Print (&prn); std::cout << "XMLPrinter (not valid HTML5):\n" << prn.CStr() << "\n\n"; XMLPrinterHTML5 html5 (NULL, true); doc.Print (&html5); std::cout << "XMLPrinterHTML5:\n" << html5.CStr() << "\n"; return 0; } tinyxml2-6.0.0/dox000066400000000000000000003250561321340066700140350ustar00rootroot00000000000000# Doxyfile 1.8.13 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a double hash (##) is considered a comment and is placed in # front of the TAG it is preceding. # # All text after a single hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists, items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (\" \"). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all text # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv # built into libc) for the transcoding. See http://www.gnu.org/software/libiconv # for the list of possible encodings. # The default value is: UTF-8. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by # double-quotes, unless you are using Doxywizard) that should identify the # project for which the documentation is generated. This name is used in the # title of most generated pages and in a few other places. # The default value is: My Project. PROJECT_NAME = "TinyXML-2" # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version # control system is used. PROJECT_NUMBER = 6.0.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = # With the PROJECT_LOGO tag one can specify a logo or an icon that is included # in the documentation. The maximum height of the logo should not exceed 55 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy # the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. OUTPUT_DIRECTORY = . # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and # will distribute the generated files over these directories. Enabling this # option can be useful when feeding doxygen a huge amount of source files, where # putting all generated files in the same directory would otherwise causes # performance problems for the file system. # The default value is: NO. CREATE_SUBDIRS = NO # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII # characters to appear in the names of generated files. If set to NO, non-ASCII # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode # U+3044. # The default value is: NO. ALLOW_UNICODE_NAMES = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, # Ukrainian and Vietnamese. # The default value is: English. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member # descriptions after the members that are listed in the file and class # documentation (similar to Javadoc). Set to NO to disable this. # The default value is: YES. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief # description of a member or function before the detailed description # # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. # The default value is: YES. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator that is # used to form the text in various listings. Each string in this list, if found # as the leading text of the brief description, will be stripped from the text # and the result, after processing the whole list, is used as the annotated # text. Otherwise, the brief description is used as-is. If left blank, the # following values are used ($name is automatically replaced with the name of # the entity):The $name class, The $name widget, The $name file, is, provides, # specifies, contains, represents, a, an and the. ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # doxygen will generate a detailed section even if there is only a brief # description. # The default value is: NO. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. # The default value is: NO. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path # before files name in the file list and in the header files. If set to NO the # shortest path that makes the file name unique will be used # The default value is: YES. FULL_PATH_NAMES = YES # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. # Stripping is only done if one of the specified strings matches the left-hand # part of the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the path to # strip. # # Note that you can specify absolute paths here, but also relative paths, which # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which # header file to include in order to use a class. If left blank only the name of # the header file containing the class definition is used. Otherwise one should # specify the list of include paths that are normally passed to the compiler # using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but # less readable) file names. This can be useful is your file systems doesn't # support long names like on DOS, Mac, or CD-ROM. # The default value is: NO. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the # first line (until the first dot) of a Javadoc-style comment as the brief # description. If set to NO, the Javadoc-style will behave just like regular Qt- # style comments (thus requiring an explicit @brief command for a brief # description.) # The default value is: NO. JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first # line (until the first dot) of a Qt-style comment as the brief description. If # set to NO, the Qt-style will behave just like regular Qt-style comments (thus # requiring an explicit \brief command for a brief description.) # The default value is: NO. QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a # multi-line C++ special comment block (i.e. a block of //! or /// comments) as # a brief description. This used to be the default behavior. The new default is # to treat a multi-line C++ comment block as a detailed description. Set this # tag to YES if you prefer the old behavior instead. # # Note that setting this tag to YES also means that rational rose comments are # not recognized any more. # The default value is: NO. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the # documentation from any documented member that it re-implements. # The default value is: YES. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new # page for each member. If set to NO, the documentation of a member will be part # of the file/class/namespace that contains it. # The default value is: NO. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen # uses this value to replace tabs by spaces in code fragments. # Minimum value: 1, maximum value: 16, default value: 4. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that act as commands in # the documentation. An alias has the form: # name=value # For example adding # "sideeffect=@par Side Effects:\n" # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines. ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding "class=itcl::class" # will allow you to use the command class in the itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. For # instance, some of the names that are used will be different. The list of all # members will be omitted, etc. # The default value is: NO. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or # Python sources only. Doxygen will then generate output that is more tailored # for that language. For instance, namespaces will be presented as packages, # qualified scopes will look different, etc. # The default value is: NO. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources. Doxygen will then generate output that is tailored for Fortran. # The default value is: NO. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for VHDL. # The default value is: NO. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and # language is one of the parsers supported by doxygen: IDL, Java, Javascript, # C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: # FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: # Fortran. In the later case the parser tries to guess whether the code is fixed # or free formatted code, this is the default for Fortran type files), VHDL. For # instance to make doxygen treat .inc files as Fortran files (default is PHP), # and .f files as C (default is Fortran), use: inc=Fortran f=C. # # Note: For files without extension you can use no_extension as a placeholder. # # Note that for custom extensions you also need to set FILE_PATTERNS otherwise # the files are not read by doxygen. EXTENSION_MAPPING = # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you can # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in # case of backward compatibilities issues. # The default value is: YES. MARKDOWN_SUPPORT = YES # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up # to that level are automatically included in the table of contents, even if # they do not have an id attribute. # Note: This feature currently applies only to Markdown headings. # Minimum value: 0, maximum value: 99, default value: 0. # This tag requires that the tag MARKDOWN_SUPPORT is set to YES. TOC_INCLUDE_HEADINGS = 0 # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. # The default value is: YES. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should set this # tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); # versus func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. # The default value is: NO. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. # The default value is: NO. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: # http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen # will parse them like normal C++ but will assume all classes use public instead # of private inheritance when no explicit protection keyword is present. # The default value is: NO. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES will make # doxygen to replace the get and set methods by a property in the documentation. # This will only work if the methods are indeed getting or setting a simple # type. If this is not the case, or you want to show the methods anyway, you # should set this option to NO. # The default value is: YES. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. # The default value is: NO. DISTRIBUTE_GROUP_DOC = NO # If one adds a struct or class to a group and this option is enabled, then also # any nested class or struct is added to the same group. By default this option # is disabled and one has to add nested compounds explicitly via \ingroup. # The default value is: NO. GROUP_NESTED_COMPOUNDS = NO # Set the SUBGROUPING tag to YES to allow class member groups of the same type # (for instance a group of public functions) to be put as a subgroup of that # type (e.g. under the Public Functions section). Set it to NO to prevent # subgrouping. Alternatively, this can be done per class using the # \nosubgrouping command. # The default value is: YES. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions # are shown inside the group in which they are included (e.g. using \ingroup) # instead of on a separate page (for HTML and Man pages) or section (for LaTeX # and RTF). # # Note that this feature does not work in combination with # SEPARATE_MEMBER_PAGES. # The default value is: NO. INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions # with only public data fields or simple typedef fields will be shown inline in # the documentation of the scope in which they are defined (i.e. file, # namespace, or group documentation), provided this scope is documented. If set # to NO, structs, classes, and unions are shown on a separate page (for HTML and # Man pages) or section (for LaTeX and RTF). # The default value is: NO. INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or # enum is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically be # useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. # The default value is: NO. TYPEDEF_HIDES_STRUCT = NO # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This # cache is used to resolve symbols given their name and scope. Since this can be # an expensive process and often the same symbol appears multiple times in the # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small # doxygen will become slower. If the cache is too large, memory is wasted. The # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 # symbols. At the end of a run doxygen will report the cache usage and suggest # the optimal cache size from a speed point of view. # Minimum value: 0, maximum value: 9, default value: 0. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in # documentation are documented, even if no documentation was available. Private # class members and static file members will be hidden unless the # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. # Note: This will also disable the warnings about undocumented members that are # normally produced when WARNINGS is set to YES. # The default value is: NO. EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will # be included in the documentation. # The default value is: NO. EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal # scope will be included in the documentation. # The default value is: NO. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES, all static members of a file will be # included in the documentation. # The default value is: NO. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined # locally in source files will be included in the documentation. If set to NO, # only classes defined in header files are included. Does not have any effect # for Java sources. # The default value is: YES. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. If set to YES, local methods, # which are defined in the implementation section but not in the interface are # included in the documentation. If set to NO, only methods in the interface are # included. # The default value is: NO. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base name of # the file that contains the anonymous namespace. By default anonymous namespace # are hidden. # The default value is: NO. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all # undocumented members inside documented classes or files. If set to NO these # members will be included in the various overviews, but no documentation # section is generated. This option has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. If set # to NO, these classes will be included in the various overviews. This option # has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_CLASSES = YES # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend # (class|struct|union) declarations. If set to NO, these declarations will be # included in the documentation. # The default value is: NO. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any # documentation blocks found inside the body of a function. If set to NO, these # blocks will be appended to the function's detailed documentation block. # The default value is: NO. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation that is typed after a # \internal command is included. If the tag is set to NO then the documentation # will be excluded. Set it to YES to include the internal documentation. # The default value is: NO. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file # names in lower-case letters. If set to YES, upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. # The default value is: system dependent. CASE_SENSE_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with # their full class and namespace scopes in the documentation. If set to YES, the # scope will be hidden. # The default value is: NO. HIDE_SCOPE_NAMES = NO # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will # append additional text to a page's title, such as Class Reference. If set to # YES the compound reference will be hidden. # The default value is: NO. HIDE_COMPOUND_REFERENCE= NO # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of # the files that are included by a file in the documentation of that file. # The default value is: YES. SHOW_INCLUDE_FILES = YES # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each # grouped member an include statement to the documentation, telling the reader # which file to include in order to use the member. # The default value is: NO. SHOW_GROUPED_MEMB_INC = NO # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include # files with double quotes in the documentation rather than with sharp brackets. # The default value is: NO. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the # documentation for inline members. # The default value is: YES. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the # (detailed) documentation of file and class members alphabetically by member # name. If set to NO, the members will appear in declaration order. # The default value is: YES. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief # descriptions of file, namespace and class members alphabetically by member # name. If set to NO, the members will appear in declaration order. Note that # this will also influence the order of the classes in the class list. # The default value is: NO. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the # (brief and detailed) documentation of class members so that constructors and # destructors are listed first. If set to NO the constructors will appear in the # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief # member documentation. # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting # detailed member documentation. # The default value is: NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy # of group names into alphabetical order. If set to NO the group names will # appear in their defined order. # The default value is: NO. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by # fully-qualified names, including namespaces. If set to NO, the class list will # be sorted only by class name, not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the alphabetical # list. # The default value is: NO. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper # type resolution of all parameters of a function it will reject a match between # the prototype and the implementation of a member function even if there is # only one candidate or it is obvious which candidate to choose by doing a # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still # accept a match between prototype and implementation in such cases. # The default value is: NO. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo # list. This list is created by putting \todo commands in the documentation. # The default value is: YES. GENERATE_TODOLIST = NO # The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test # list. This list is created by putting \test commands in the documentation. # The default value is: YES. GENERATE_TESTLIST = NO # The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug # list. This list is created by putting \bug commands in the documentation. # The default value is: YES. GENERATE_BUGLIST = NO # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) # the deprecated list. This list is created by putting \deprecated commands in # the documentation. # The default value is: YES. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional documentation # sections, marked by \if ... \endif and \cond # ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the # initial value of a variable or macro / define can have for it to appear in the # documentation. If the initializer consists of more lines than specified here # it will be hidden. Use a value of 0 to hide initializers completely. The # appearance of the value of individual variables and macros / defines can be # controlled using \showinitializer or \hideinitializer command in the # documentation regardless of this setting. # Minimum value: 0, maximum value: 10000, default value: 30. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at # the bottom of the documentation of classes and structs. If set to YES, the # list will mention the files that were used to generate the documentation. # The default value is: YES. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This # will remove the Files entry from the Quick Index and from the Folder Tree View # (if specified). # The default value is: YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces # page. This will remove the Namespaces entry from the Quick Index and from the # Folder Tree View (if specified). # The default value is: YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command command input-file, where command is the value of the # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided # by doxygen. Whatever the program writes to standard output is used as the file # version. For an example see the documentation. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. You can # optionally specify a file name after the option, if omitted DoxygenLayout.xml # will be used as the name of the layout file. # # Note that if you run doxygen from a directory containing a file called # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE # tag is left empty. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib # extension is automatically appended if omitted. This requires the bibtex tool # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. # For LaTeX the style of the bibliography can be controlled using # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the # search path. See also \cite for info how to create references. CITE_BIB_FILES = #--------------------------------------------------------------------------- # Configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated to # standard output by doxygen. If QUIET is set to YES this implies that the # messages are off. # The default value is: NO. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES # this implies that the warnings are on. # # Tip: Turn warnings on while writing the documentation. # The default value is: YES. WARNINGS = YES # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag # will automatically be disabled. # The default value is: YES. WARN_IF_UNDOCUMENTED = NO # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some parameters # in a documented function, or documenting parameters that don't exist or using # markup commands wrongly. # The default value is: YES. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return # value. If set to NO, doxygen will only warn about wrong or incomplete # parameter documentation, but not about the absence of documentation. # The default value is: NO. WARN_NO_PARAMDOC = NO # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when # a warning is encountered. # The default value is: NO. WARN_AS_ERROR = NO # The WARN_FORMAT tag determines the format of the warning messages that doxygen # can produce. The string should contain the $file, $line, and $text tags, which # will be replaced by the file and line number from which the warning originated # and the warning text. Optionally the format may contain $version, which will # be replaced by the version of the file (if it could be obtained via # FILE_VERSION_FILTER) # The default value is: $file:$line: $text. WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning and error # messages should be written. If left blank the output is written to standard # error (stderr). WARN_LOGFILE = #--------------------------------------------------------------------------- # Configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag is used to specify the files and/or directories that contain # documented source files. You may enter file names like myfile.cpp or # directories like /usr/src/myproject. Separate the files or directories with # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. INPUT = tinyxml2.h \ xmltest.cpp \ readme.md # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv # documentation (see: http://www.gnu.org/software/libiconv) for the list of # possible encodings. # The default value is: UTF-8. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and # *.h) to filter out the source-files in the directories. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # read by doxygen. # # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, # *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. FILE_PATTERNS = # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. # The default value is: NO. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. # The default value is: NO. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or directories # that contain example code fragments that are included (see the \include # command). EXAMPLE_PATH = . # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and # *.h) to filter out the source-files in the directories. If left blank all # files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude commands # irrespective of the value of the RECURSIVE tag. # The default value is: NO. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or directories # that contain images that are to be included in the documentation (see the # \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command: # # # # where is the value of the INPUT_FILTER tag, and is the # name of an input file. Doxygen will then use the output that the filter # program writes to standard output. If FILTER_PATTERNS is specified, this tag # will be ignored. # # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: pattern=filter # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how # filters are used. If the FILTER_PATTERNS tag is empty or if none of the # patterns match the file name, INPUT_FILTER is applied. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will also be used to filter the input files that are used for # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). # The default value is: NO. FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and # it is also possible to disable source filtering for a specific pattern using # *.ext= (so without naming a filter). # This tag requires that the tag FILTER_SOURCE_FILES is set to YES. FILTER_SOURCE_PATTERNS = # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page # (index.html). This can be useful if you have a project on for instance GitHub # and want to reuse the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = readme.md #--------------------------------------------------------------------------- # Configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will be # generated. Documented entities will be cross-referenced with these sources. # # Note: To get rid of all source code in the generated output, make sure that # also VERBATIM_HEADERS is set to NO. # The default value is: NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body of functions, # classes and enums directly into the documentation. # The default value is: NO. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any # special comment blocks from generated source code fragments. Normal C, C++ and # Fortran comments will always remain visible. # The default value is: YES. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES then for each documented # function all documented functions referencing it will be listed. # The default value is: NO. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES then for each documented function # all documented entities called/used by that function will be listed. # The default value is: NO. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set # to YES then the hyperlinks from functions in REFERENCES_RELATION and # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will # link to the documentation. # The default value is: YES. REFERENCES_LINK_SOURCE = YES # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the # source code will show a tooltip with additional information such as prototype, # brief description and links to the definition and documentation. Since this # will make the HTML file larger and loading of large files a bit slower, you # can opt to disable this feature. # The default value is: YES. # This tag requires that the tag SOURCE_BROWSER is set to YES. SOURCE_TOOLTIPS = YES # If the USE_HTAGS tag is set to YES then the references to source code will # point to the HTML generated by the htags(1) tool instead of doxygen built-in # source browser. The htags tool is part of GNU's global source tagging system # (see http://www.gnu.org/software/global/global.html). You will need version # 4.8.6 or higher. # # To use it do the following: # - Install the latest version of global # - Enable SOURCE_BROWSER and USE_HTAGS in the config file # - Make sure the INPUT points to the root of the source tree # - Run doxygen as normal # # Doxygen will invoke htags (and that will in turn invoke gtags), so these # tools must be available from the command line (i.e. in the search path). # # The result: instead of the source browser generated by doxygen, the links to # source code will now point to the output of htags. # The default value is: NO. # This tag requires that the tag SOURCE_BROWSER is set to YES. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a # verbatim copy of the header file for each class for which an include is # specified. Set to NO to disable this. # See also: Section \class. # The default value is: YES. VERBATIM_HEADERS = YES # If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the # clang parser (see: http://clang.llvm.org/) for more accurate parsing at the # cost of reduced performance. This can be particularly helpful with template # rich C++ code for which doxygen's built-in parser lacks the necessary type # information. # Note: The availability of this option depends on whether or not doxygen was # generated with the -Duse-libclang=ON option for CMake. # The default value is: NO. CLANG_ASSISTED_PARSING = NO # If clang assisted parsing is enabled you can provide the compiler with command # line options that you would normally use when invoking the compiler. Note that # the include paths will already be set by doxygen for the files and directories # specified with INPUT and INCLUDE_PATH. # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. CLANG_OPTIONS = #--------------------------------------------------------------------------- # Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all # compounds will be generated. Enable this if the project contains a lot of # classes, structs, unions or interfaces. # The default value is: YES. ALPHABETICAL_INDEX = YES # The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in # which the alphabetical index list will be split. # Minimum value: 1, maximum value: 20, default value: 5. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all classes will # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag # can be used to specify a prefix (or a list of prefixes) that should be ignored # while generating the index headers. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. IGNORE_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output # The default value is: YES. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_OUTPUT = docs # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). # The default value is: .html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a user-defined HTML header file for # each generated HTML page. If the tag is left blank doxygen will generate a # standard header. # # To get valid HTML the header file that includes any scripts and style sheets # that doxygen needs, which is dependent on the configuration options used (e.g. # the setting GENERATE_TREEVIEW). It is highly recommended to start with a # default header using # doxygen -w html new_header.html new_footer.html new_stylesheet.css # YourConfigFile # and then modify the file new_header.html. See also section "Doxygen usage" # for information on how to generate the default header that doxygen normally # uses. # Note: The header is subject to change so you typically have to regenerate the # default header when upgrading to a newer version of doxygen. For a description # of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each # generated HTML page. If the tag is left blank doxygen will generate a standard # footer. See HTML_HEADER for more information on how to generate a default # footer and what special commands can be used inside the footer. See also # section "Doxygen usage" for information on how to generate the default footer # that doxygen normally uses. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style # sheet that is used by each HTML page. It can be used to fine-tune the look of # the HTML output. If left blank doxygen will generate a default style sheet. # See also section "Doxygen usage" for information on how to generate the style # sheet that doxygen normally uses. # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as # it is more robust and this tag (HTML_STYLESHEET) will in the future become # obsolete. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined # cascading style sheets that are included after the standard style sheets # created by doxygen. Using this option one can overrule certain style aspects. # This is preferred over using HTML_STYLESHEET since it does not replace the # standard style sheet and is therefore more robust against future updates. # Doxygen will copy the style sheet files to the output directory. # Note: The order of the extra style sheet files is of importance (e.g. the last # style sheet in the list overrules the setting of the previous ones in the # list). For an example see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that the # files will be copied as-is; there are no commands or markers available. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the style sheet and background images according to # this color. Hue is specified as an angle on a colorwheel, see # http://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use grayscales only. A # value of 255 will produce the most vivid colors. # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the # luminance component of the colors in the HTML output. Values below 100 # gradually make the output lighter, whereas values above 100 make the output # darker. The value divided by 100 is the actual gamma applied, so 80 represents # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not # change the gamma. # Minimum value: 40, maximum value: 240, default value: 80. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this # to YES can help to show when doxygen was last run and thus if the # documentation is up to date. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries # shown in the various tree structured indices initially; the user can expand # and collapse entries dynamically later on. Doxygen will expand the tree to # such a level that at most the specified number of entries are visible (unless # a fully collapsed tree already exceeds this amount). So setting the number of # entries 1 will produce a full collapsed tree by default. 0 is a special value # representing an infinite number of entries and will result in a full expanded # tree by default. # Minimum value: 0, maximum value: 9999, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files will be # generated that can be used as input for Apple's Xcode 3 integrated development # environment (see: http://developer.apple.com/tools/xcode/), introduced with # OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a # Makefile in the HTML output directory. Running make will produce the docset in # that directory and running make install will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at # startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_DOCSET = NO # This tag determines the name of the docset feed. A documentation feed provides # an umbrella under which multiple documentation sets from a single provider # (such as a company or product suite) can be grouped. # The default value is: Doxygen generated docs. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_FEEDNAME = "Doxygen generated docs" # This tag specifies a string that should uniquely identify the documentation # set bundle. This should be a reverse domain-name style string, e.g. # com.mycompany.MyDocSet. Doxygen will append .docset to the name. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_BUNDLE_ID = org.doxygen.Project # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style # string, e.g. com.mycompany.MyDocSet.documentation. # The default value is: org.doxygen.Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. # The default value is: Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on # Windows. # # The HTML Help Workshop contains a compiler that can convert all HTML output # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML # files are now used as the Windows 98 help format, and will replace the old # Windows help format (.hlp) on all Windows platforms in the future. Compressed # HTML files also contain an index, a table of contents, and you can search for # words in the documentation. The HTML workshop also contains a viewer for # compressed HTML files. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_HTMLHELP = NO # The CHM_FILE tag can be used to specify the file name of the resulting .chm # file. You can add a path in front of the file if the result should not be # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_FILE = # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, # doxygen will try to run the HTML help compiler on the generated index.hhp. # The file has to be specified with full path. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated # (YES) or that it should be included in the master .chm file (NO). # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. GENERATE_CHI = NO # The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) # and project file content. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_INDEX_ENCODING = # The BINARY_TOC flag controls whether a binary table of contents is generated # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it # enables the Previous and Next buttons. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members to # the table of contents of the HTML help documentation and to the tree view. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. TOC_EXPAND = YES # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help # (.qch) of the generated HTML documentation. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify # the file name of the resulting .qch file. The path specified is relative to # the HTML output folder. # This tag requires that the tag GENERATE_QHP is set to YES. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace # (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual # Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- # folders). # The default value is: doc. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_VIRTUAL_FOLDER = doc # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom # filter to add. For more information please see Qt Help Project / Custom # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's filter section matches. Qt Help Project / Filter Attributes (see: # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_SECT_FILTER_ATTRS = # The QHG_LOCATION tag can be used to specify the location of Qt's # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the # generated .qhp file. # This tag requires that the tag GENERATE_QHP is set to YES. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be # generated, together with the HTML files, they form an Eclipse help plugin. To # install this plugin and make it available under the help contents menu in # Eclipse, the contents of the directory containing the HTML and XML files needs # to be copied into the plugins directory of eclipse. The name of the directory # within the plugins directory should be the same as the ECLIPSE_DOC_ID value. # After copying Eclipse needs to be restarted before the help appears. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_ECLIPSEHELP = NO # A unique identifier for the Eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have this # name. Each documentation set should have its own identifier. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. ECLIPSE_DOC_ID = org.doxygen.Project # If you want full control over the layout of the generated HTML pages it might # be necessary to disable the index and replace it with your own. The # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top # of each HTML page. A value of NO enables the index and the value YES disables # it. Since the tabs in the index contain the same information as the navigation # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. DISABLE_INDEX = NO # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. If the tag # value is set to YES, a side panel will be generated containing a tree-like # index structure (just like the one that is generated for HTML Help). For this # to work a browser that supports JavaScript, DHTML, CSS and frames is required # (i.e. any modern browser). Windows users are probably better off using the # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can # further fine-tune the look of the index. As an example, the default style # sheet generated by doxygen has an example that shows how to put an image at # the root of the tree instead of the PROJECT_NAME. Since the tree basically has # the same information as the tab index, you could consider setting # DISABLE_INDEX to YES when enabling this option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. # # Note that a value of 0 will completely suppress the enum values from appearing # in the overview section. # Minimum value: 0, maximum value: 20, default value: 4. # This tag requires that the tag GENERATE_HTML is set to YES. ENUM_VALUES_PER_LINE = 4 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used # to set the initial width (in pixels) of the frame in which the tree is shown. # Minimum value: 0, maximum value: 1500, default value: 250. # This tag requires that the tag GENERATE_HTML is set to YES. TREEVIEW_WIDTH = 250 # If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to # external symbols imported via tag files in a separate window. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of LaTeX formulas included as images in # the HTML documentation. When you change the font size after a successful # doxygen run you need to manually remove any form_*.png images from the HTML # output directory to force them to be regenerated. # Minimum value: 8, maximum value: 50, default value: 10. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are not # supported properly for IE 6.0, but are supported on all modern browsers. # # Note that when changing this option you need to delete any form_*.png files in # the HTML output directory before the changes have effect. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see # http://www.mathjax.org) which uses client side Javascript for the rendering # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX # installed or if you want to formulas look prettier in the HTML output. When # enabled you may also need to install MathJax separately and configure the path # to it using the MATHJAX_RELPATH option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # the MathJax output. See the MathJax site (see: # http://docs.mathjax.org/en/latest/output.html) for more details. # Possible values are: HTML-CSS (which is slower, but has the best # compatibility), NativeMML (i.e. MathML) and SVG. # The default value is: HTML-CSS. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the HTML # output directory using the MATHJAX_RELPATH option. The destination directory # should contain the MathJax.js script. For instance, if the mathjax directory # is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax # Content Delivery Network so you can quickly see the result without installing # MathJax. However, it is strongly recommended to install a local copy of # MathJax from http://www.mathjax.org before deployment. # The default value is: http://cdn.mathjax.org/mathjax/latest. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax # extension names that should be enabled during MathJax rendering. For example # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces # of code that will be used on startup of the MathJax code. See the MathJax site # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an # example see the documentation. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_CODEFILE = # When the SEARCHENGINE tag is enabled doxygen will generate a search box for # the HTML output. The underlying search engine uses javascript and DHTML and # should work on any modern browser. Note that when using HTML help # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) # there is already a search function so this one should typically be disabled. # For large projects the javascript based search engine can be slow, then # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to # search using the keyboard; to jump to the search box use + S # (what the is depends on the OS and browser, but it is typically # , /
\n" "...since I make symbolic puns" "]]>" ""; XMLDocument doc; doc.Parse( str ); XMLTest( "CDATA symbolic puns round 2", false, doc.Error() ); doc.Print(); XMLTest( "CDATA parse. [ tixml1:1480107 ]", "I am > the rules!\n...since I make symbolic puns", doc.FirstChildElement()->FirstChild()->Value(), false ); } // InsertAfterChild causes crash. { // InsertBeforeChild and InsertAfterChild causes crash. XMLDocument doc; XMLElement* parent = doc.NewElement( "Parent" ); doc.InsertFirstChild( parent ); XMLElement* childText0 = doc.NewElement( "childText0" ); XMLElement* childText1 = doc.NewElement( "childText1" ); XMLNode* childNode0 = parent->InsertEndChild( childText0 ); XMLTest( "InsertEndChild() return", true, childNode0 == childText0 ); XMLNode* childNode1 = parent->InsertAfterChild( childNode0, childText1 ); XMLTest( "InsertAfterChild() return", true, childNode1 == childText1 ); XMLTest( "Test InsertAfterChild on empty node. ", true, ( childNode1 == parent->LastChild() ) ); } { // Entities not being written correctly. // From Lynn Allen const char* passages = "" "" " " ""; XMLDocument doc; doc.Parse( passages ); XMLTest( "Entity transformation parse round 1", false, doc.Error() ); XMLElement* psg = doc.RootElement()->FirstChildElement(); const char* context = psg->Attribute( "context" ); const char* expected = "Line 5 has \"quotation marks\" and 'apostrophe marks'. It also has <, >, and &, as well as a fake copyright \xC2\xA9."; XMLTest( "Entity transformation: read. ", expected, context, true ); const char* textFilePath = "resources/out/textfile.txt"; FILE* textfile = fopen( textFilePath, "w" ); XMLTest( "Entity transformation: open text file for writing", true, textfile != 0, true ); if ( textfile ) { XMLPrinter streamer( textfile ); bool acceptResult = psg->Accept( &streamer ); fclose( textfile ); XMLTest( "Entity transformation: Accept", true, acceptResult ); } textfile = fopen( textFilePath, "r" ); XMLTest( "Entity transformation: open text file for reading", true, textfile != 0, true ); if ( textfile ) { char buf[ 1024 ]; fgets( buf, 1024, textfile ); XMLTest( "Entity transformation: write. ", "\n", buf, false ); fclose( textfile ); } } { // Suppress entities. const char* passages = "" "" "Crazy &ttk;" ""; XMLDocument doc( false ); doc.Parse( passages ); XMLTest( "Entity transformation parse round 2", false, doc.Error() ); XMLTest( "No entity parsing.", "Line 5 has "quotation marks" and 'apostrophe marks'.", doc.FirstChildElement()->FirstChildElement()->Attribute( "context" ) ); XMLTest( "No entity parsing.", "Crazy &ttk;", doc.FirstChildElement()->FirstChildElement()->FirstChild()->Value() ); doc.Print(); } { const char* test = ""; XMLDocument doc; doc.Parse( test ); XMLTest( "dot in names", false, doc.Error() ); XMLTest( "dot in names", "a.elem", doc.FirstChildElement()->Name() ); XMLTest( "dot in names", "2.0", doc.FirstChildElement()->Attribute( "xmi.version" ) ); } { const char* test = "1.1 Start easy ignore fin thickness "; XMLDocument doc; doc.Parse( test ); XMLTest( "fin thickness", false, doc.Error() ); XMLText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText(); XMLTest( "Entity with one digit.", "1.1 Start easy ignore fin thickness\n", text->Value(), false ); } { // DOCTYPE not preserved (950171) // const char* doctype = "" "" "" "" ""; XMLDocument doc; doc.Parse( doctype ); XMLTest( "PLAY SYSTEM parse", false, doc.Error() ); doc.SaveFile( "resources/out/test7.xml" ); XMLTest( "PLAY SYSTEM save", false, doc.Error() ); doc.DeleteChild( doc.RootElement() ); doc.LoadFile( "resources/out/test7.xml" ); XMLTest( "PLAY SYSTEM load", false, doc.Error() ); doc.Print(); const XMLUnknown* decl = doc.FirstChild()->NextSibling()->ToUnknown(); XMLTest( "Correct value of unknown.", "DOCTYPE PLAY SYSTEM 'play.dtd'", decl->Value() ); } { // Comments do not stream out correctly. const char* doctype = ""; XMLDocument doc; doc.Parse( doctype ); XMLTest( "Comment somewhat evil", false, doc.Error() ); XMLComment* comment = doc.FirstChild()->ToComment(); XMLTest( "Comment formatting.", " Somewhat ", comment->Value() ); } { // Double attributes const char* doctype = ""; XMLDocument doc; doc.Parse( doctype ); XMLTest( "Parsing repeated attributes.", XML_ERROR_PARSING_ATTRIBUTE, doc.ErrorID() ); // is an error to tinyxml (didn't use to be, but caused issues) doc.PrintError(); } { // Embedded null in stream. const char* doctype = ""; XMLDocument doc; doc.Parse( doctype ); XMLTest( "Embedded null throws error.", true, doc.Error() ); } { // Empty documents should return TIXML_XML_ERROR_PARSING_EMPTY, bug 1070717 const char* str = ""; XMLDocument doc; doc.Parse( str ); XMLTest( "Empty document error", XML_ERROR_EMPTY_DOCUMENT, doc.ErrorID() ); } { // Documents with all whitespaces should return TIXML_XML_ERROR_PARSING_EMPTY, bug 1070717 const char* str = " "; XMLDocument doc; doc.Parse( str ); XMLTest( "All whitespaces document error", XML_ERROR_EMPTY_DOCUMENT, doc.ErrorID() ); } { // Low entities XMLDocument doc; doc.Parse( "" ); XMLTest( "Hex values", false, doc.Error() ); const char result[] = { 0x0e, 0 }; XMLTest( "Low entities.", result, doc.FirstChildElement()->GetText() ); doc.Print(); } { // Attribute values with trailing quotes not handled correctly XMLDocument doc; doc.Parse( "" ); XMLTest( "Throw error with bad end quotes.", true, doc.Error() ); } { // [ 1663758 ] Failure to report error on bad XML XMLDocument xml; xml.Parse(""); XMLTest("Missing end tag at end of input", true, xml.Error()); xml.Parse(" "); XMLTest("Missing end tag with trailing whitespace", true, xml.Error()); xml.Parse(""); XMLTest("Mismatched tags", XML_ERROR_MISMATCHED_ELEMENT, xml.ErrorID() ); } { // [ 1475201 ] TinyXML parses entities in comments XMLDocument xml; xml.Parse("" "" ); XMLTest( "Declarations for head and body", false, xml.Error() ); XMLNode* e0 = xml.FirstChild(); XMLNode* e1 = e0->NextSibling(); XMLComment* c0 = e0->ToComment(); XMLComment* c1 = e1->ToComment(); XMLTest( "Comments ignore entities.", " declarations for & ", c0->Value(), true ); XMLTest( "Comments ignore entities.", " far & away ", c1->Value(), true ); } { XMLDocument xml; xml.Parse( "" "" "" "" "" ); XMLTest( "Comments iteration", false, xml.Error() ); xml.Print(); int count = 0; for( XMLNode* ele = xml.FirstChildElement( "Parent" )->FirstChild(); ele; ele = ele->NextSibling() ) { ++count; } XMLTest( "Comments iterate correctly.", 3, count ); } { // trying to repro ]1874301]. If it doesn't go into an infinite loop, all is well. unsigned char buf[] = " " ); XMLTest( "Handle end tag whitespace", false, xml.Error() ); } { // This one must not result in an infinite loop XMLDocument xml; xml.Parse( "loop" ); XMLTest( "No closing element", true, xml.Error() ); XMLTest( "Infinite loop test.", true, true ); } #endif { const char* pub = " "; XMLDocument doc; doc.Parse( pub ); XMLTest( "Trailing DOCTYPE", false, doc.Error() ); XMLDocument clone; for( const XMLNode* node=doc.FirstChild(); node; node=node->NextSibling() ) { XMLNode* copy = node->ShallowClone( &clone ); clone.InsertEndChild( copy ); } clone.Print(); int count=0; const XMLNode* a=clone.FirstChild(); const XMLNode* b=doc.FirstChild(); for( ; a && b; a=a->NextSibling(), b=b->NextSibling() ) { ++count; XMLTest( "Clone and Equal", true, a->ShallowEqual( b )); } XMLTest( "Clone and Equal", 4, count ); } { // Deep Cloning of root element. XMLDocument doc2; XMLPrinter printer1; { // Make sure doc1 is deleted before we test doc2 const char* xml = "" " " " " " Text" ""; XMLDocument doc; doc.Parse(xml); XMLTest( "Parse before deep cloning root element", false, doc.Error() ); doc.Print(&printer1); XMLNode* root = doc.RootElement()->DeepClone(&doc2); doc2.InsertFirstChild(root); } XMLPrinter printer2; doc2.Print(&printer2); XMLTest("Deep clone of element.", printer1.CStr(), printer2.CStr(), true); } { // Deep Cloning of sub element. XMLDocument doc2; XMLPrinter printer1; { // Make sure doc1 is deleted before we test doc2 const char* xml = "" "" " " " " " Text" ""; XMLDocument doc; doc.Parse(xml); XMLTest( "Parse before deep cloning sub element", false, doc.Error() ); const XMLElement* subElement = doc.FirstChildElement("root")->FirstChildElement("child2"); bool acceptResult = subElement->Accept(&printer1); XMLTest( "Accept before deep cloning", true, acceptResult ); XMLNode* clonedSubElement = subElement->DeepClone(&doc2); doc2.InsertFirstChild(clonedSubElement); } XMLPrinter printer2; doc2.Print(&printer2); XMLTest("Deep clone of sub-element.", printer1.CStr(), printer2.CStr(), true); } { // Deep cloning of document. XMLDocument doc2; XMLPrinter printer1; { // Make sure doc1 is deleted before we test doc2 const char* xml = "" "" "" " " " " " Text" ""; XMLDocument doc; doc.Parse(xml); XMLTest( "Parse before deep cloning document", false, doc.Error() ); doc.Print(&printer1); doc.DeepCopy(&doc2); } XMLPrinter printer2; doc2.Print(&printer2); XMLTest("DeepCopy of document.", printer1.CStr(), printer2.CStr(), true); } { // This shouldn't crash. XMLDocument doc; if(XML_SUCCESS != doc.LoadFile( "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" )) { doc.PrintError(); } XMLTest( "Error in snprinf handling.", true, doc.Error() ); } { // Attribute ordering. static const char* xml = ""; XMLDocument doc; doc.Parse( xml ); XMLTest( "Parse for attribute ordering", false, doc.Error() ); XMLElement* ele = doc.FirstChildElement(); const XMLAttribute* a = ele->FirstAttribute(); XMLTest( "Attribute order", "1", a->Value() ); a = a->Next(); XMLTest( "Attribute order", "2", a->Value() ); a = a->Next(); XMLTest( "Attribute order", "3", a->Value() ); XMLTest( "Attribute order", "attrib3", a->Name() ); ele->DeleteAttribute( "attrib2" ); a = ele->FirstAttribute(); XMLTest( "Attribute order", "1", a->Value() ); a = a->Next(); XMLTest( "Attribute order", "3", a->Value() ); ele->DeleteAttribute( "attrib1" ); ele->DeleteAttribute( "attrib3" ); XMLTest( "Attribute order (empty)", true, ele->FirstAttribute() == 0 ); } { // Make sure an attribute with a space in it succeeds. static const char* xml0 = ""; static const char* xml1 = ""; static const char* xml2 = ""; XMLDocument doc0; doc0.Parse( xml0 ); XMLTest( "Parse attribute with space 1", false, doc0.Error() ); XMLDocument doc1; doc1.Parse( xml1 ); XMLTest( "Parse attribute with space 2", false, doc1.Error() ); XMLDocument doc2; doc2.Parse( xml2 ); XMLTest( "Parse attribute with space 3", false, doc2.Error() ); XMLElement* ele = 0; ele = doc0.FirstChildElement(); XMLTest( "Attribute with space #1", "Test Attribute", ele->Attribute( "attribute1" ) ); ele = doc1.FirstChildElement(); XMLTest( "Attribute with space #2", "Test Attribute", ele->Attribute( "attribute1" ) ); ele = doc2.FirstChildElement(); XMLTest( "Attribute with space #3", "Test Attribute", ele->Attribute( "attribute1" ) ); } { // Make sure we don't go into an infinite loop. static const char* xml = ""; XMLDocument doc; doc.Parse( xml ); XMLTest( "Parse two elements with attribute", false, doc.Error() ); XMLElement* ele0 = doc.FirstChildElement()->FirstChildElement(); XMLElement* ele1 = ele0->NextSiblingElement(); bool equal = ele0->ShallowEqual( ele1 ); XMLTest( "Infinite loop in shallow equal.", true, equal ); } // -------- Handles ------------ { static const char* xml = "Text"; XMLDocument doc; doc.Parse( xml ); XMLTest( "Parse element with attribute and nested element round 1", false, doc.Error() ); XMLElement* ele = XMLHandle( doc ).FirstChildElement( "element" ).FirstChild().ToElement(); XMLTest( "Handle, success, mutable", "sub", ele->Value() ); XMLHandle docH( doc ); ele = docH.FirstChildElement( "none" ).FirstChildElement( "element" ).ToElement(); XMLTest( "Handle, dne, mutable", true, ele == 0 ); } { static const char* xml = "Text"; XMLDocument doc; doc.Parse( xml ); XMLTest( "Parse element with attribute and nested element round 2", false, doc.Error() ); XMLConstHandle docH( doc ); const XMLElement* ele = docH.FirstChildElement( "element" ).FirstChild().ToElement(); XMLTest( "Handle, success, const", "sub", ele->Value() ); ele = docH.FirstChildElement( "none" ).FirstChildElement( "element" ).ToElement(); XMLTest( "Handle, dne, const", true, ele == 0 ); } { // Default Declaration & BOM XMLDocument doc; doc.InsertEndChild( doc.NewDeclaration() ); doc.SetBOM( true ); XMLPrinter printer; doc.Print( &printer ); static const char* result = "\xef\xbb\xbf"; XMLTest( "BOM and default declaration", result, printer.CStr(), false ); XMLTest( "CStrSize", 42, printer.CStrSize(), false ); } { const char* xml = " This \nis ' text ' " " This is ' text ' \n" "This is ' \n\n text '" ""; XMLDocument doc( true, COLLAPSE_WHITESPACE ); doc.Parse( xml ); XMLTest( "Parse with whitespace collapsing and &apos", false, doc.Error() ); const XMLElement* element = doc.FirstChildElement(); for( const XMLElement* parent = element->FirstChildElement(); parent; parent = parent->NextSiblingElement() ) { XMLTest( "Whitespace collapse", "This is ' text '", parent->GetText() ); } } #if 0 { // Passes if assert doesn't fire. XMLDocument xmlDoc; xmlDoc.NewDeclaration(); xmlDoc.NewComment("Configuration file"); XMLElement *root = xmlDoc.NewElement("settings"); root->SetAttribute("version", 2); } #endif { const char* xml = " "; XMLDocument doc( true, COLLAPSE_WHITESPACE ); doc.Parse( xml ); XMLTest( "Parse with all whitespaces", false, doc.Error() ); XMLTest( "Whitespace all space", true, 0 == doc.FirstChildElement()->FirstChild() ); } { // An assert should not fire. const char* xml = ""; XMLDocument doc; doc.Parse( xml ); XMLTest( "Parse with self-closed element", false, doc.Error() ); XMLElement* ele = doc.NewElement( "unused" ); // This will get cleaned up with the 'doc' going out of scope. XMLTest( "Tracking unused elements", true, ele != 0, false ); } { const char* xml = "abc"; XMLDocument doc; doc.Parse( xml ); XMLTest( "Parse for printing of sub-element", false, doc.Error() ); XMLElement* ele = doc.FirstChildElement( "parent")->FirstChildElement( "child"); XMLPrinter printer; bool acceptResult = ele->Accept( &printer ); XMLTest( "Accept of sub-element", true, acceptResult ); XMLTest( "Printing of sub-element", "abc\n", printer.CStr(), false ); } { XMLDocument doc; XMLError error = doc.LoadFile( "resources/empty.xml" ); XMLTest( "Loading an empty file", XML_ERROR_EMPTY_DOCUMENT, error ); XMLTest( "Loading an empty file and ErrorName as string", "XML_ERROR_EMPTY_DOCUMENT", doc.ErrorName() ); doc.PrintError(); } { // BOM preservation static const char* xml_bom_preservation = "\xef\xbb\xbf\n"; { XMLDocument doc; XMLTest( "BOM preservation (parse)", XML_SUCCESS, doc.Parse( xml_bom_preservation ), false ); XMLPrinter printer; doc.Print( &printer ); XMLTest( "BOM preservation (compare)", xml_bom_preservation, printer.CStr(), false, true ); doc.SaveFile( "resources/bomtest.xml" ); XMLTest( "Save bomtest.xml", false, doc.Error() ); } { XMLDocument doc; doc.LoadFile( "resources/bomtest.xml" ); XMLTest( "Load bomtest.xml", false, doc.Error() ); XMLTest( "BOM preservation (load)", true, doc.HasBOM(), false ); XMLPrinter printer; doc.Print( &printer ); XMLTest( "BOM preservation (compare)", xml_bom_preservation, printer.CStr(), false, true ); } } { // Insertion with Removal const char* xml = "" "" "" "" "element 1text" "" "" "" ""; const char* xmlInsideTwo = "" "" "" "" "" "element 1text" "" "" ""; const char* xmlAfterOne = "" "" "" "" "element 1text" "" "" ""; const char* xmlAfterTwo = "" "" "" "" "" "element 1text" "" ""; XMLDocument doc; doc.Parse(xml); XMLTest( "Insertion with removal parse round 1", false, doc.Error() ); XMLElement* subtree = doc.RootElement()->FirstChildElement("one")->FirstChildElement("subtree"); XMLElement* two = doc.RootElement()->FirstChildElement("two"); two->InsertFirstChild(subtree); XMLPrinter printer1(0, true); bool acceptResult = doc.Accept(&printer1); XMLTest("Move node from within to - Accept()", true, acceptResult); XMLTest("Move node from within to ", xmlInsideTwo, printer1.CStr()); doc.Parse(xml); XMLTest( "Insertion with removal parse round 2", false, doc.Error() ); subtree = doc.RootElement()->FirstChildElement("one")->FirstChildElement("subtree"); two = doc.RootElement()->FirstChildElement("two"); doc.RootElement()->InsertAfterChild(two, subtree); XMLPrinter printer2(0, true); acceptResult = doc.Accept(&printer2); XMLTest("Move node from within after - Accept()", true, acceptResult); XMLTest("Move node from within after ", xmlAfterTwo, printer2.CStr(), false); doc.Parse(xml); XMLTest( "Insertion with removal parse round 3", false, doc.Error() ); XMLNode* one = doc.RootElement()->FirstChildElement("one"); subtree = one->FirstChildElement("subtree"); doc.RootElement()->InsertAfterChild(one, subtree); XMLPrinter printer3(0, true); acceptResult = doc.Accept(&printer3); XMLTest("Move node from within after - Accept()", true, acceptResult); XMLTest("Move node from within after ", xmlAfterOne, printer3.CStr(), false); doc.Parse(xml); XMLTest( "Insertion with removal parse round 4", false, doc.Error() ); subtree = doc.RootElement()->FirstChildElement("one")->FirstChildElement("subtree"); two = doc.RootElement()->FirstChildElement("two"); doc.RootElement()->InsertEndChild(subtree); XMLPrinter printer4(0, true); acceptResult = doc.Accept(&printer4); XMLTest("Move node from within after - Accept()", true, acceptResult); XMLTest("Move node from within after ", xmlAfterTwo, printer4.CStr(), false); } { const char* xml = "" " " ""; XMLDocument doc; doc.Parse(xml); XMLTest( "Parse svg with text", false, doc.Error() ); doc.Print(); } { // Test that it doesn't crash. const char* xml = "<12"; XMLDocument doc; doc.Parse(xml); XMLTest( "Parse root-sample-field0", true, doc.Error() ); doc.PrintError(); } #if 1 // the question being explored is what kind of print to use: // https://github.com/leethomason/tinyxml2/issues/63 { //const char* xml = ""; const char* xml = ""; XMLDocument doc; doc.Parse( xml ); XMLTest( "Parse self-closed empty element", false, doc.Error() ); doc.FirstChildElement()->SetAttribute( "attrA-f64", 123456789.123456789 ); doc.FirstChildElement()->SetAttribute( "attrB-f64", 1.001e9 ); doc.FirstChildElement()->SetAttribute( "attrC-f64", 1.0e9 ); doc.FirstChildElement()->SetAttribute( "attrC-f64", 1.0e20 ); doc.FirstChildElement()->SetAttribute( "attrD-f64", 1.0e-10 ); doc.FirstChildElement()->SetAttribute( "attrD-f64", 0.123456789 ); doc.FirstChildElement()->SetAttribute( "attrA-f32", 123456789.123456789f ); doc.FirstChildElement()->SetAttribute( "attrB-f32", 1.001e9f ); doc.FirstChildElement()->SetAttribute( "attrC-f32", 1.0e9f ); doc.FirstChildElement()->SetAttribute( "attrC-f32", 1.0e20f ); doc.FirstChildElement()->SetAttribute( "attrD-f32", 1.0e-10f ); doc.FirstChildElement()->SetAttribute( "attrD-f32", 0.123456789f ); doc.Print(); /* The result of this test is platform, compiler, and library version dependent. :(" XMLPrinter printer; doc.Print( &printer ); XMLTest( "Float and double formatting.", "\n", printer.CStr(), true ); */ } #endif { // Issue #184 // If it doesn't assert, it passes. Caused by objects // getting created during parsing which are then // inaccessible in the memory pools. const char* xmlText = ""; { XMLDocument doc; doc.Parse(xmlText); XMLTest( "Parse hex no closing tag round 1", true, doc.Error() ); } { XMLDocument doc; doc.Parse(xmlText); XMLTest( "Parse hex no closing tag round 2", true, doc.Error() ); doc.Clear(); } } { // If this doesn't assert in DEBUG, all is well. tinyxml2::XMLDocument doc; tinyxml2::XMLElement *pRoot = doc.NewElement("Root"); doc.DeleteNode(pRoot); } { XMLDocument doc; XMLElement* root = doc.NewElement( "Root" ); XMLTest( "Node document before insertion", true, &doc == root->GetDocument() ); doc.InsertEndChild( root ); XMLTest( "Node document after insertion", true, &doc == root->GetDocument() ); } { // If this doesn't assert in DEBUG, all is well. XMLDocument doc; XMLElement* unlinkedRoot = doc.NewElement( "Root" ); XMLElement* linkedRoot = doc.NewElement( "Root" ); doc.InsertFirstChild( linkedRoot ); unlinkedRoot->GetDocument()->DeleteNode( linkedRoot ); unlinkedRoot->GetDocument()->DeleteNode( unlinkedRoot ); } { // Should not assert in DEBUG XMLPrinter printer; } { // Issue 291. Should not crash const char* xml = "�"; XMLDocument doc; doc.Parse( xml ); XMLTest( "Parse hex with closing tag", false, doc.Error() ); XMLPrinter printer; doc.Print( &printer ); } { // Issue 299. Can print elements that are not linked in. // Will crash if issue not fixed. XMLDocument doc; XMLElement* newElement = doc.NewElement( "printme" ); XMLPrinter printer; bool acceptResult = newElement->Accept( &printer ); XMLTest( "printme - Accept()", true, acceptResult ); // Delete the node to avoid possible memory leak report in debug output doc.DeleteNode( newElement ); } { // Issue 302. Clear errors from LoadFile/SaveFile XMLDocument doc; XMLTest( "Issue 302. Should be no error initially", "XML_SUCCESS", doc.ErrorName() ); doc.SaveFile( "./no/such/path/pretty.xml" ); XMLTest( "Issue 302. Fail to save", "XML_ERROR_FILE_COULD_NOT_BE_OPENED", doc.ErrorName() ); doc.SaveFile( "./resources/out/compact.xml", true ); XMLTest( "Issue 302. Subsequent success in saving", "XML_SUCCESS", doc.ErrorName() ); } { // If a document fails to load then subsequent // successful loads should clear the error XMLDocument doc; XMLTest( "Should be no error initially", false, doc.Error() ); doc.LoadFile( "resources/no-such-file.xml" ); XMLTest( "No such file - should fail", true, doc.Error() ); doc.LoadFile( "resources/dream.xml" ); XMLTest( "Error should be cleared", false, doc.Error() ); } { // Check that declarations are allowed only at beginning of document const char* xml0 = "" " " ""; const char* xml1 = "" "" ""; const char* xml2 = "" ""; const char* xml3 = "" ""; const char* xml4 = ""; XMLDocument doc; doc.Parse(xml0); XMLTest("Test that the code changes do not affect normal parsing", false, doc.Error() ); doc.Parse(xml1); XMLTest("Test that the second declaration is allowed", false, doc.Error() ); doc.Parse(xml2); XMLTest("Test that declaration after a child is not allowed", XML_ERROR_PARSING_DECLARATION, doc.ErrorID() ); doc.Parse(xml3); XMLTest("Test that declaration after a child is not allowed", XML_ERROR_PARSING_DECLARATION, doc.ErrorID() ); doc.Parse(xml4); XMLTest("Test that declaration inside a child is not allowed", XML_ERROR_PARSING_DECLARATION, doc.ErrorID() ); } { // No matter - before or after successfully parsing a text - // calling XMLDocument::Value() used to cause an assert in debug. // Null must be retured. const char* validXml = "" "" ""; XMLDocument* doc = new XMLDocument(); XMLTest( "XMLDocument::Value() returns null?", NULL, doc->Value() ); doc->Parse( validXml ); XMLTest( "Parse to test XMLDocument::Value()", false, doc->Error()); XMLTest( "XMLDocument::Value() returns null?", NULL, doc->Value() ); delete doc; } { XMLDocument doc; for( int i = 0; i < XML_ERROR_COUNT; i++ ) { const XMLError error = static_cast(i); const char* name = XMLDocument::ErrorIDToName(error); XMLTest( "ErrorName() after ClearError()", true, name != 0 ); XMLTest( "ErrorName() after ClearError()", true, strlen(name) > 0 ); } } { // Evil memory leaks. // If an XMLElement (etc) is allocated via NewElement() (etc.) // and NOT added to the XMLDocument, what happens? // // Previously (buggy): // The memory would be free'd when the XMLDocument is // destructed. But the XMLElement destructor wasn't called, so // memory allocated for the XMLElement text would not be free'd. // In practice this meant strings allocated for the XMLElement // text would be leaked. An edge case, but annoying. // Now: // The XMLElement destructor is called. But the unlinked nodes // have to be tracked using a list. This has a minor performance // impact that can become significant if you have a lot of // unlinked nodes. (But why would you do that?) // The only way to see this bug was in a Visual C++ runtime debug heap // leak tracker. This is compiled in by default on Windows Debug and // enabled with _CRTDBG_LEAK_CHECK_DF parameter passed to _CrtSetDbgFlag(). { XMLDocument doc; doc.NewElement("LEAK 1"); } { XMLDocument doc; XMLElement* ele = doc.NewElement("LEAK 2"); doc.DeleteNode(ele); } } { // Crashing reported via email. const char* xml = "" "voice" "1" "" "" "" "" "" "" "" ""; // It's not a good idea to delete elements as you walk the // list. I'm not sure this technically should work; but it's // an interesting test case. XMLDocument doc; XMLError err = doc.Parse(xml); XMLTest("Crash bug parsing", XML_SUCCESS, err ); XMLElement* playlist = doc.FirstChildElement("playlist"); XMLTest("Crash bug parsing", true, playlist != 0); { const char* elementName = "entry"; XMLElement* entry = playlist->FirstChildElement(elementName); XMLTest("Crash bug parsing", true, entry != 0); while (entry) { XMLElement* todelete = entry; entry = entry->NextSiblingElement(elementName); playlist->DeleteChild(todelete); } entry = playlist->FirstChildElement(elementName); XMLTest("Crash bug parsing", true, entry == 0); } { const char* elementName = "blank"; XMLElement* blank = playlist->FirstChildElement(elementName); XMLTest("Crash bug parsing", true, blank != 0); while (blank) { XMLElement* todelete = blank; blank = blank->NextSiblingElement(elementName); playlist->DeleteChild(todelete); } XMLTest("Crash bug parsing", true, blank == 0); } tinyxml2::XMLPrinter printer; const bool acceptResult = playlist->Accept(&printer); XMLTest("Crash bug parsing - Accept()", true, acceptResult); printf("%s\n", printer.CStr()); // No test; it only need to not crash. // Still, wrap it up with a sanity check int nProperty = 0; for (const XMLElement* p = playlist->FirstChildElement("property"); p; p = p->NextSiblingElement("property")) { nProperty++; } XMLTest("Crash bug parsing", 2, nProperty); } // ----------- Line Number Tracking -------------- { struct TestUtil: XMLVisitor { TestUtil() : str() {} void TestParseError(const char *testString, const char *docStr, XMLError expected_error, int expectedLine) { XMLDocument doc; const XMLError parseError = doc.Parse(docStr); XMLTest(testString, parseError, doc.ErrorID()); XMLTest(testString, true, doc.Error()); XMLTest(testString, expected_error, parseError); XMLTest(testString, expectedLine, doc.ErrorLineNum()); }; void TestStringLines(const char *testString, const char *docStr, const char *expectedLines) { XMLDocument doc; doc.Parse(docStr); XMLTest(testString, false, doc.Error()); TestDocLines(testString, doc, expectedLines); } void TestFileLines(const char *testString, const char *file_name, const char *expectedLines) { XMLDocument doc; doc.LoadFile(file_name); XMLTest(testString, false, doc.Error()); TestDocLines(testString, doc, expectedLines); } private: DynArray str; void Push(char type, int lineNum) { str.Push(type); str.Push(char('0' + (lineNum / 10))); str.Push(char('0' + (lineNum % 10))); } bool VisitEnter(const XMLDocument& doc) { Push('D', doc.GetLineNum()); return true; } bool VisitEnter(const XMLElement& element, const XMLAttribute* firstAttribute) { Push('E', element.GetLineNum()); for (const XMLAttribute *attr = firstAttribute; attr != 0; attr = attr->Next()) Push('A', attr->GetLineNum()); return true; } bool Visit(const XMLDeclaration& declaration) { Push('L', declaration.GetLineNum()); return true; } bool Visit(const XMLText& text) { Push('T', text.GetLineNum()); return true; } bool Visit(const XMLComment& comment) { Push('C', comment.GetLineNum()); return true; } bool Visit(const XMLUnknown& unknown) { Push('U', unknown.GetLineNum()); return true; } void TestDocLines(const char *testString, XMLDocument &doc, const char *expectedLines) { str.Clear(); const bool acceptResult = doc.Accept(this); XMLTest(testString, true, acceptResult); str.Push(0); XMLTest(testString, expectedLines, str.Mem()); } } tester; tester.TestParseError("ErrorLine-Parsing", "\n\n foo \n", XML_ERROR_PARSING, 2); tester.TestParseError("ErrorLine-Declaration", "\n", XML_ERROR_PARSING_DECLARATION, 2); tester.TestParseError("ErrorLine-Mismatch", "\n\n", XML_ERROR_MISMATCHED_ELEMENT, 2); tester.TestParseError("ErrorLine-CData", "\n\n foo bar \n", XML_ERROR_PARSING_TEXT, 3); tester.TestParseError("ErrorLine-Comment", "\n\n\n" // 6 Comment "", // 7 Unknown "D01L01E02A02A03T03E03T04E05T05C06U07"); tester.TestStringLines( "LineNumbers-CRLF", "\r\n" // 1 Doc (arguably should be line 2) "\n" // 2 DecL "\r\n" // 3 Element "\n" // 4 "text contining new line \n" // 5 Text " and also containing crlf \r\n" // 6 "", // 10 Element "D01L02E03T05E07T07E10"); tester.TestFileLines( "LineNumbers-File", "resources/utf8test.xml", "D01L01E02E03A03A03T03E04A04A04T04E05A05A05T05E06A06A06T06E07A07A07T07E08A08A08T08E09T09E10T10"); } { const char* xml = "Text"; XMLDocument doc; doc.Parse(xml); XMLTest("Test mismatched elements.", true, doc.Error()); XMLTest("Test mismatched elements.", XML_ERROR_MISMATCHED_ELEMENT, doc.ErrorID()); // For now just make sure calls work & doesn't crash. // May solidify the error output in the future. printf("%s\n", doc.ErrorStr()); doc.PrintError(); } // ----------- Performance tracking -------------- { #if defined( _MSC_VER ) __int64 start, end, freq; QueryPerformanceFrequency((LARGE_INTEGER*)&freq); #endif FILE* perfFP = fopen("resources/dream.xml", "r"); XMLTest("Open dream.xml", true, perfFP != 0); fseek(perfFP, 0, SEEK_END); long size = ftell(perfFP); fseek(perfFP, 0, SEEK_SET); char* mem = new char[size + 1]; memset(mem, 0xfe, size); size_t bytesRead = fread(mem, 1, size, perfFP); XMLTest("Read dream.xml", true, uint32_t(size) >= uint32_t(bytesRead)); fclose(perfFP); mem[size] = 0; #if defined( _MSC_VER ) QueryPerformanceCounter((LARGE_INTEGER*)&start); #else clock_t cstart = clock(); #endif bool parseDreamXmlFailed = false; static const int COUNT = 10; for (int i = 0; i < COUNT; ++i) { XMLDocument doc; doc.Parse(mem); parseDreamXmlFailed = parseDreamXmlFailed || doc.Error(); } #if defined( _MSC_VER ) QueryPerformanceCounter((LARGE_INTEGER*)&end); #else clock_t cend = clock(); #endif XMLTest( "Parse dream.xml", false, parseDreamXmlFailed ); delete[] mem; static const char* note = #ifdef DEBUG "DEBUG"; #else "Release"; #endif #if defined( _MSC_VER ) const double duration = 1000.0 * (double)(end - start) / ((double)freq * (double)COUNT); #else const double duration = (double)(cend - cstart) / (double)COUNT; #endif printf("\nParsing dream.xml (%s): %.3f milli-seconds\n", note, duration); } #if defined( _MSC_VER ) && defined( DEBUG ) { _CrtMemCheckpoint( &endMemState ); _CrtMemState diffMemState; _CrtMemDifference( &diffMemState, &startMemState, &endMemState ); _CrtMemDumpStatistics( &diffMemState ); { int leaksBeforeExit = _CrtDumpMemoryLeaks(); XMLTest( "No leaks before exit?", FALSE, leaksBeforeExit ); } } #endif printf ("\nPass %d, Fail %d\n", gPass, gFail); return gFail; }