repo_name
stringclasses 5
values | pr_number
int64 1.52k
15.5k
| pr_title
stringlengths 8
143
| pr_description
stringlengths 0
10.2k
| author
stringlengths 3
18
| date_created
timestamp[ns, tz=UTC] | date_merged
timestamp[ns, tz=UTC] | previous_commit
stringlengths 40
40
| pr_commit
stringlengths 40
40
| query
stringlengths 11
10.2k
| filepath
stringlengths 6
220
| before_content
stringlengths 0
597M
| after_content
stringlengths 0
597M
| label
int64 -1
1
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
apolloconfig/apollo | 3,561 | fix #3551 and optimize ldap samples | ## What's the purpose of this PR
Fix the issue that apollo portal won't start when ldap is enabled and optimize ldap samples.
## Which issue(s) this PR fixes:
Fixes #3551
## Brief changelog
1. Exclude LdapAutoConfiguration
2. Simplify ldap configuration samples
Follow this checklist to help us incorporate your contribution quickly and easily:
- [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request.
- [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
- [x] Write necessary unit tests to verify the code.
- [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
| nobodyiam | 2021-02-21T09:26:33Z | 2021-02-21T09:32:26Z | 8285504336733f96ffff77f0b89ff69ff899fb41 | 00776a2a44f716a58a416a965a199842fbaae67b | fix #3551 and optimize ldap samples. ## What's the purpose of this PR
Fix the issue that apollo portal won't start when ldap is enabled and optimize ldap samples.
## Which issue(s) this PR fixes:
Fixes #3551
## Brief changelog
1. Exclude LdapAutoConfiguration
2. Simplify ldap configuration samples
Follow this checklist to help us incorporate your contribution quickly and easily:
- [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request.
- [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
- [x] Write necessary unit tests to verify the code.
- [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
| ./apollo-adminservice/src/main/java/com/ctrip/framework/apollo/adminservice/AdminServiceApplication.java | package com.ctrip.framework.apollo.adminservice;
import com.ctrip.framework.apollo.biz.ApolloBizConfig;
import com.ctrip.framework.apollo.common.ApolloCommonConfig;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.PropertySource;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@EnableAspectJAutoProxy
@Configuration
@PropertySource(value = {"classpath:adminservice.properties"})
@EnableAutoConfiguration
@EnableTransactionManagement
@ComponentScan(basePackageClasses = {ApolloCommonConfig.class,
ApolloBizConfig.class,
AdminServiceApplication.class})
public class AdminServiceApplication {
public static void main(String[] args) {
SpringApplication.run(AdminServiceApplication.class, args);
}
}
| package com.ctrip.framework.apollo.adminservice;
import com.ctrip.framework.apollo.biz.ApolloBizConfig;
import com.ctrip.framework.apollo.common.ApolloCommonConfig;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.PropertySource;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@EnableAspectJAutoProxy
@Configuration
@PropertySource(value = {"classpath:adminservice.properties"})
@EnableAutoConfiguration
@EnableTransactionManagement
@ComponentScan(basePackageClasses = {ApolloCommonConfig.class,
ApolloBizConfig.class,
AdminServiceApplication.class})
public class AdminServiceApplication {
public static void main(String[] args) {
SpringApplication.run(AdminServiceApplication.class, args);
}
}
| -1 |
apolloconfig/apollo | 3,561 | fix #3551 and optimize ldap samples | ## What's the purpose of this PR
Fix the issue that apollo portal won't start when ldap is enabled and optimize ldap samples.
## Which issue(s) this PR fixes:
Fixes #3551
## Brief changelog
1. Exclude LdapAutoConfiguration
2. Simplify ldap configuration samples
Follow this checklist to help us incorporate your contribution quickly and easily:
- [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request.
- [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
- [x] Write necessary unit tests to verify the code.
- [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
| nobodyiam | 2021-02-21T09:26:33Z | 2021-02-21T09:32:26Z | 8285504336733f96ffff77f0b89ff69ff899fb41 | 00776a2a44f716a58a416a965a199842fbaae67b | fix #3551 and optimize ldap samples. ## What's the purpose of this PR
Fix the issue that apollo portal won't start when ldap is enabled and optimize ldap samples.
## Which issue(s) this PR fixes:
Fixes #3551
## Brief changelog
1. Exclude LdapAutoConfiguration
2. Simplify ldap configuration samples
Follow this checklist to help us incorporate your contribution quickly and easily:
- [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request.
- [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
- [x] Write necessary unit tests to verify the code.
- [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
| ./apollo-portal/src/main/resources/static/scripts/controller/ServerConfigController.js | server_config_module.controller('ServerConfigController',
['$scope', '$window', '$translate', 'toastr', 'ServerConfigService', 'AppUtil', 'PermissionService',
function ($scope, $window, $translate, toastr, ServerConfigService, AppUtil, PermissionService) {
$scope.serverConfig = {};
$scope.saveBtnDisabled = true;
initPermission();
function initPermission() {
PermissionService.has_root_permission()
.then(function (result) {
$scope.isRootUser = result.hasPermission;
})
}
$scope.create = function () {
ServerConfigService.create($scope.serverConfig).then(function (result) {
toastr.success($translate.instant('ServiceConfig.Saved'));
$scope.saveBtnDisabled = true;
$scope.serverConfig = result;
}, function (result) {
toastr.error(AppUtil.errorMsg(result), $translate.instant('ServiceConfig.SaveFailed'));
});
};
$scope.getServerConfigInfo = function () {
if (!$scope.serverConfig.key) {
toastr.warning($translate.instant('ServiceConfig.PleaseEnterKey'));
return;
}
ServerConfigService.getServerConfigInfo($scope.serverConfig.key).then(function (result) {
$scope.saveBtnDisabled = false;
if (!result.key) {
toastr.info($translate.instant('ServiceConfig.KeyNotExistsAndCreateTip', { key: $scope.serverConfig.key }));
return;
}
toastr.info($translate.instant('ServiceConfig.KeyExistsAndSaveTip', { key: $scope.serverConfig.key }));
$scope.serverConfig = result;
}, function (result) {
AppUtil.showErrorMsg(result);
})
}
}]);
| server_config_module.controller('ServerConfigController',
['$scope', '$window', '$translate', 'toastr', 'ServerConfigService', 'AppUtil', 'PermissionService',
function ($scope, $window, $translate, toastr, ServerConfigService, AppUtil, PermissionService) {
$scope.serverConfig = {};
$scope.saveBtnDisabled = true;
initPermission();
function initPermission() {
PermissionService.has_root_permission()
.then(function (result) {
$scope.isRootUser = result.hasPermission;
})
}
$scope.create = function () {
ServerConfigService.create($scope.serverConfig).then(function (result) {
toastr.success($translate.instant('ServiceConfig.Saved'));
$scope.saveBtnDisabled = true;
$scope.serverConfig = result;
}, function (result) {
toastr.error(AppUtil.errorMsg(result), $translate.instant('ServiceConfig.SaveFailed'));
});
};
$scope.getServerConfigInfo = function () {
if (!$scope.serverConfig.key) {
toastr.warning($translate.instant('ServiceConfig.PleaseEnterKey'));
return;
}
ServerConfigService.getServerConfigInfo($scope.serverConfig.key).then(function (result) {
$scope.saveBtnDisabled = false;
if (!result.key) {
toastr.info($translate.instant('ServiceConfig.KeyNotExistsAndCreateTip', { key: $scope.serverConfig.key }));
return;
}
toastr.info($translate.instant('ServiceConfig.KeyExistsAndSaveTip', { key: $scope.serverConfig.key }));
$scope.serverConfig = result;
}, function (result) {
AppUtil.showErrorMsg(result);
})
}
}]);
| -1 |
apolloconfig/apollo | 3,561 | fix #3551 and optimize ldap samples | ## What's the purpose of this PR
Fix the issue that apollo portal won't start when ldap is enabled and optimize ldap samples.
## Which issue(s) this PR fixes:
Fixes #3551
## Brief changelog
1. Exclude LdapAutoConfiguration
2. Simplify ldap configuration samples
Follow this checklist to help us incorporate your contribution quickly and easily:
- [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request.
- [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
- [x] Write necessary unit tests to verify the code.
- [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
| nobodyiam | 2021-02-21T09:26:33Z | 2021-02-21T09:32:26Z | 8285504336733f96ffff77f0b89ff69ff899fb41 | 00776a2a44f716a58a416a965a199842fbaae67b | fix #3551 and optimize ldap samples. ## What's the purpose of this PR
Fix the issue that apollo portal won't start when ldap is enabled and optimize ldap samples.
## Which issue(s) this PR fixes:
Fixes #3551
## Brief changelog
1. Exclude LdapAutoConfiguration
2. Simplify ldap configuration samples
Follow this checklist to help us incorporate your contribution quickly and easily:
- [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request.
- [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
- [x] Write necessary unit tests to verify the code.
- [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
| ./doc/images/gray-release/full-release-confirm-dialog.png | PNG
IHDR Q IDATxieWyԒZBԚЌ4`a08`ر$$8NUʧ$8&l#f4G4OygxZLݭUg^gkߞiq!!!!!!!!!{<e{|
RN b_:B@@@@@@@@%V%H5B B B B B`"011[' LJicD1J@@@@tD/7܌c@%lٲ~5kZ%"%
j@@@@O?EիWXR@=/M6>xXj;@ľ2Ʉ@@@@ aAXDKK4˾g}KEpo[?2;ڙP d̎B B B #`ndڵmŊ+-}W)%j}"mz;NڑyK>ܚ;
ozӛw(goC=֯_CPw ԟ>@//0D`}DA;hYoGO^[oMNN.rzs=חDZn];fE4yC^;l~:t?]쫺ö#=]Lg8wyK.8!!!!0$0:8B B`Xc8&+Fb#Q=N7o]VY oνU8+v5Xwa9b>W|?O<L38<*\!\uNes:4j[(R$*"<3L@@@@@@@I`>
nZ%6:-EG]pR.`
>wygcժUzՁ(GEU6*O" ʀ+ڂpuCio|c=kY-L9v|Lҩtk?y%U.||w1N#8/
[zՍqŤ0!!!!!!!!!b߆
RM9gތ7a^!=_ SC1O]PP[fiֈSki5wuW^8+:_VU DײL,q{u&GP,G,,u~ȪDazC?Sy\bBRe%( ҪB?B B B B B B Bm܃,+xlا>=ax5VmUmXJm7ο<^6nuϱcmʏE WցuQ~toqmq=-N*Ѱw}w_*\ۨlExs9y~}op䧌\zSO킟zbyw+Mݙ@ͷ|s
_t|}RξC(5
G=.b;ܧw7t݅_p3}:#FbtMw;3%^|nW]cZT
*qESk?_
SZ,>("0ᤓNTիUiz}'hK4;#8|XIo){m8~5~pUn/ \rI;:믿s|ɽ/Vs)C B B B`[ Ysa
k5?Vp8mj~O:?x7/gWsa}t_s3q+0}|ů|3GT+n-K>]a'|6+UUarא=uWד1K4|qqT`+p뺭ҷy|0GuԼchY{eCIh{n7ggk_gžzG?b97ʙJ 6:g4V吞]P&70s[$Bvڞ'YqR^qdϛj t,U4snv:ŞVR
f&-ea3n/?u _;p ZQ9JG}ls!!!![3}wl&<\<sw^8̑Ozz/\U'?ԱV*e`Q3W$P\&_7PN٤kG8gnx>U|#oiȿүt8zh瞨|n~V}nixtN̏ݳ ?*VZه@Oup`3ι]w:>nm \4l7lV
ݙgW
p
oxcG?.HQָׇv}:ID9 r:
t SN邔Λp
Ag/Sa@&^:Q"Lu\`:I`B|(Ǚ>~9u2|3WF^^&p9oB2괛P)aq&R&]Qƹ%߀6I'|oeN΅@@@$`e#IGd9ǏX?Ϳ8s#/boo5:W[S\k^&{g6xunv9PsJsO)W"
VeO@Dzdet,a|sc77z,;+3Z?Y6Ur)\3`脷k_(U_,1߅pjekʟ"מq\Lv/4#ݓ|3j0&
9Rcf\7IgWܶ{q~FǢ)x7|5~4犳fO&|@8֡twNcf\#g4
=(4
<A~'sޏ8Qo^t+P IϏv|GJPa8à2WzҴ)8';L[TVx&I wgd%gK0&$]Igl^ß-53fP_ r74'5/]sk)t;&Ooͳ^b'<j^Ys\m"vYUe?knɏ@z8W©5uSƛ3?dLto3̯-/sDL9lOZʁ6Ge\bȝބ|ǃK`w̉?B G5vZ74)GTډqYXbڷ7nԘj26
n'@1fJV`0dtX\v\7
:91f<$VpuU\ɿO==Zc|O<uwtG߷YS?ƙL~tjΏ\`
J`s(nIGg+o 4hEBC=G }:1eLë4C-&;WI}a 3t(hڍh|G9u|뼲x}V
Sa_)g;bSن6i'Qf{@@@Ẹ̉5Y$<<<LqxŚO9jS*Un(q<O /S>iFىJnM<+M{7WXfyVTkktg.P,uOY͟bQGikGf\Y7/_~
=Qn3E1Ȯ|,,aaT)!?&#WیqZ1ӵWc@Y$T\cpƌ댍Cc5*},82_\m&;ht욫fSV4 5Ak1Nc5O?s_ڑWc~9e;O\lƥ3mاJR`*GbGPs9}nqm\D$ȿJÞQֿhhD':iթT^{T~?:p)\l¹9LPVt\6NچN1xXFů+020e@[(|ex\).B B B vs3(0ϱ
P]5fZ8xK
$7/p㎅e&\ˍ9a0m~*?KT:NM먓8eō9?ݸIS!:Ƀ6_y_IO_=
#ntݨr/^VDk
Jur-q}7p4Nϰ7s ~\zi8/}_=o?Pu]Ldܟn(tzwc#7YGZio?Jxk4v[xkIBՎ~CL3QmӆXQZB:ΩC:Vx?:sLqRa?PUiTIӀ:ƭγ>#i um[է:Z)$8^AZCF-N+9xnOQeV:&.7Loܱ1O*Pt0npj>n}l1XoB B B B`{!K[̕lgeNG8,5n7:⚓a0c5-y;vVz|N<7Y8nX|\7n/2.(a8xǺgT90rcgxx0r)C'QqG0r_Yy{c+wNpB82.^W[:/{
n/r˳e+{b֘4{}["Xc[]5:gu}LR_pSgZEUo]ps]Á`#
ọ!N9|NY#)csNᄏQ k+kqq+&OA*U
\~dX@9vn
jcH/O[% a4'
{
ܶF!Y]䩼U%*qy;Mű]yԍ;7#Oʐ0*:-f 0^8] ƾ67oӞG0NUMLoj'ĸ*~!!!!~Cs2+Yfŗ?Wqșw{+ۛ{JnX{I1i
>0uqhO|릭؛*M\+Яiԭҫu7c\:_~0q~psW
2G~AbP7ącF>,GC`w%PR]N17X]g1{qKU7f3trlsKܒ>K\שWckH1
2=29~Qx=Sg}c?dԓï8ߵg.]rg kz|c%qNxMXKm>_,GG%qTdBTy`
jar10a8` F2T)s<+xsOh3@܍sүauwnp[ũ
z Su~E$tyaiG85!6@&BQf!!!%Ps/6JnyLAj)c7F511?5,
"\͠r'rK
Wj_Ҫ\݈'9Ջ
srvܼPݓ7\q}ܾSJ*ǸƝ)rw9[){b9q%zP[nPu|yn.\F:;=@ݝo]ۮ5c.v
,tMZj[ו8x3V[rj =ܣCw!0ȤK._W]uUVY\q>{4G
=eo
q1P_OߋqȾ\olzN碋.zM4lW$OV%[ 8t\a6?80nk^*]Wpvtl;Յ80O\J꧳HrBmQs4u|=3#*3s©\0]i-]U6G~K0LU{!gDž/WakO:o&?+~5Y8ه@@@R o>B#0OraOu7@nSz
/Y
bˍϼPYGH_Y|lqa|
0pC.0sAl4GdPa˩scsqV*!{1,g.-.n*_ܶε~U?u$YUUJS~ڟPu.?3Ō F_9c_a+C`w&0;uo|]CuW\w Xbo\?3{<ր߲#S:,ߌ㨴WۮrgqDZ~X馛څ^9@1z:a+:2mE1a|
76~v}4dAa]wЧ|KD2Pj0umF%:~9ikpiW5Cr%H*PUYt]&&K#Ő_*Pƙx3Y4[I6,8&}m6^9<]ª^;Ο0..Oɳ]ZDQq}s=W?05ih#NMt}m%Ps,%UIs70Asyfyy͑qWkyUs+.78Kę1K9gn̜B9~ssM5#:\\)
syev,͍bQs=y;.Anyq+su^yN݄7)As%Zu|`R.UPcѩ--ۮIұ> S(fqb(g4^b/
5,ØTVlWדؽ?M+_g{xlkjܫqe2Fl":~=',/1NPVb$8qG86<:*c߉;t]w](OapAT̊S{cc3@2>2Rh*_ا~t^ǜ=~y@J]+<Vc&)e%
Rq5N_g?_Nչ@qq[atH[&@::NKɳ:ΰ^>?z+G;\_a[ՀSոɅ|IM\;7wN_QvҚMS|&3.FLmx !!!B!K\ƾ17213AajeJ͡:Q\oj
?k<J6sښ{\WK97lϽ,.N:6uc; ʿ}Sy<+9s-v!\Nkqc/&G*muwY+?3u^a8vN-W}CPQqݕZ*c]o*Ze9tkc1EXq8e&عN9hK۫m+g)ØŤQGw_P͈9>U'cfIUTy IDAT[7,5֘VaZc'qNGc+NP}m̵Jd3GaeJ t߉jh7xc:6СLd:} S䄱a[u@M<N:2\& L|_Cte:aTPs!7'v_rQ\T唥3ױn'M5 k0??2{*#mhP22T=0O100X30?11?7!K::>+;g||Ŝql5-/r5[kͅW%N)9i)8'MfCMjyxh=@O{6s]a`+H+8uW՜CpcF[F,~%.ؗsh#*~N<<{m{
~>pzcz̵LXbMfϵgV\+?aڬ%/cx^bGIxWu]LSu6ޘϟrq+sT{iVIVwf͕4.Ϗ<\{inq
Ϋ%UaW`C;Gs8t4QVXҐC?T:)'^]Ph؊[y.e9Sz:I9yrXtaįZVi؏sUW~Mx備 BNي|a8u\<..|NY$E]'N%mG&UѸ!!!%`.f^1n>2_93\p5ݼb4Hp)G_?86WmY6qaSuMvӥ#?N8.eVa}+nR+
_WǕ}x)G ~s}YQة_bSaݙjҟw7^{}|?McMGK0ql%
3)ͻ8?Uq狓6`EWGb\cE}:ۨ;矧v"8
9OHo!!Dl{dO'
]5~_CǿҪmy9/$`O+hָ&$J9c9b}L1R/Vg/y!!-nX~b0c5/ݨ8ه@@@@@@F^wچ%}x{Иa;PsiwV4!Z}pSzjh-Xdb[bOGK|{
4y=(TWq
"F#Y@eY8߫r@㘮KSV~)ؿD2tA˓+1K? XZ(=
WXesPJ$:'^1ZNibf\ ++>+K1; iwb'?ƹ~2!!!!!!!`IoͿR:s쾺6t<U-PK-:jі}fM@qD8C:3m~C^e"bxsu
@X3w,mð0b 9'>A?A*۰c1YBq+
T:ï=[핳(}CX9+xv%\.G'v_nx^ydc6cRsRYاZ%0-;0awD4+Sϯ/øch$VcfʼyE_аgIg7Ք6LqY6աtYAD=Wǵ)c]th=B B B B B B
[o|c֨gx\xt*[Xط[~/(1Qб;s@%'^tRe op;b_B^5̻zP>B B B B B B tXܓ7}[z~vاܨXaz}KŨ7c\+Ş/y_l !!!!!!{uN૽sq!z%bn9g9l4^&ׇ@
XnUק4I5B B B B B B v=0a,q]W伷ebdsUmXYB B B B B B B`o&PDzf_AOuﺪ'כ@Aq
vwI?B B B B B B v%%9.oW)y;~}ΩLD>q}u.B]F`w.ĻI#Sͽs+[ sKB B B B B B B`^"P5x׀HUC B B B B B Au;:Iw};E
Zun_c@@@@@@;\}Fj Djz_|@@@@@@sg!|G b|t$)|헔h@@@@@@Hj\C`Gط#(& d[Q@@@@@@er/5R}{HCiŜ럋=)o@@@@@@ObD[ m ` ކ!!!!!!zn><I7vLۼyشyjG4aD \SSSmzzMNNɩyr3v4|=#}{_;cB.X|vC95i?Sow\[bE{|vi;h7|s{:ğ-Ҿկk'|\r>B B B B B B`O?t{ډ'oB?sn'pB[fV~K>ӽ6Z[֦g&ڊ֦[[>ڲe3=p[J {܊:(B`1lIsa6n}{]ԧ>>N:i.+>{ްO>d#Is}u]~܈<@/vW|#7ꪫ3<;:}@@@@@ bPnrʬG{ڦM}O^b<M`ŢC&`X}ozk{{ۭ^_vy[UV^z_o\rlb߭ j?Bk߿q?>c9f6][lz{enݺ.4η,sYl9}{,t ~D=."`貏=@ľ=RN;},s}z>>t3w]،#x3nqB;Y1UQG=( ?wW7'E/(Y"=cdp !!!!!:K|^~vgW7}[\"-ś巶8گVbcXovγ<;oj4Kn=o>'O}QGdǚO~~(,o#?oo_V^>?M]w]V[FC'!4ni0LC B B B B B`_'P_Y+s#TԖGMp|;5w6l%=n7͍+G}t]vYo,ҳ1`7?Á _! s)B+brIycb1syK?yL<O|"^>B B B B B H=А裏зD {ط{KJ5Y/va~rx3P9V}t5.=ZG#jy{nbbl'ҟy{)2
2qXY;˿<+=^i8B B B B B B`kXW1(a{ĭSϷ"6H @?-~]$c^M+K.,ɟ7'=+Ͽ7γ2X
z:YIys,8Yyz!R
ncBя~ϒ&_i)o\?g&F^8֬YLإ~,{2}{re?gk~%;`ǂϋ:vY}+_K|v>g?rJgtOppD;-?n?q}^ҡ,DB@<ҏt0Xe-XyV_ux穻r~1{:}{z!@[UN8%YY*˒zuWdZg0??,?iZ+M2O~]d|{>%TzN?٥EoXg>/㨗0[zYŅN bߞނh igߢ[ϫc5PGPZe_6S8wqǬe<#\3 ްe7tS6/[]tE[=go}[Ro],CSb_Xnx\x-/E<餓}#W*O?}Xg{}{Rk[ bAH=\l,gI%W<?KlX}o<䳟l?s/9G?:[a
/!!!!!!LC/|gA$1v} z~}C[%koj+\.KsxAο= -(o
4gхqs~/!!!!!!0\B7>
ݏ@ľݯMRE7̜wh^n%[N<V>"h:v[.2v9n=[nQc T !!!!!!{'+{gR%̎:+<76tίZyo xJZcGsA-]?>+bSٟυ[omw^VYF:+lW]uUkkזw!!!!!!!0}pUrݡ5<?<cX?e鈸aÆnǂnԟw=Yc=}.6 /S?S]`^AB*xvVehw/晀Ug$bƅ@@@@@@@@ľ= n(+9ب#[dzL˾U_a'znNǬ9ެ;7MSOmDīK=J ;Ϣ\,˺d!!!!!!!8lX½ޞ$fyE?suntO\dgLQ.hg}V~}@@@@@@@ / v0xuGrŒM7 ,7Z@@@@@@@@G`,&7onS[\QjnY7$,SjS}M{Ҍ@@@@@@@ ,Y۴L~mٲK11:Cq-ȂkzA^ R݂ľ]7vB`T7 ǽe!!!!!!!!}db559VZ}>C B B B B B B B B`GX7}mb& ,Ihwb!!!!!!!!! ,Ziy>.ld!!!!!!!!Xط`J !!!!!!!!!K Dۥy@@@@@@@@8vˤ!!!!!!!!@ľ]?@@@@@@@@#oDZLJ!!!!!!!!!K bDk˖68[lun3nٲem>9yzi-6ܜ#B B B B B B B B`&bn66mj}m'[jЖ|\[~Im63Zm+nuD4秧g=6nV\'T{ꩧAVZF"UNL4yFnӦM=ϿmmŊ]l4!!!!!!!!U&oM?HkSmZz6m1g/nW*-gi/xG|֭[7+?l'pB{E@a8bm֯_߷:/=+Ҟ|WW^_;gG^GqD;z^U[om'|r?&+A@@@@@@@@vطlypoxW+/fi&ho/=f66{UR[};[P~ĵ=beOZK];vaC=tVcmGؓ棏>{i=ЬG$ n=c=,<~BP${3K}ٞưOwOpvZ;f˿U| 'obY6.浕'\VyVX}`vn+3ɇߖwP[y¥sZXn6lhozӛwϊg믿zꬨ'>?nGDtL;{\yė^Ӹ۱-#m/0Е89<@oڵq7nI0X&''wb,!!!!!!!]h6<=:J,C` 6Mm
-_VrY[y[^1&VזvJoC+b6?tS[S۲km}͚5]p##q6s=}2ʉ:U?by;<ց:鱾`":ī|\|kO<#g >K{#X LS]OAkA/`JObalzMmزuNj+ys}l~8줶5ڪ^rߩg~ԖE]8%JވwC??.=|<Gx#G?cGt/!8G ke,G@WUn:k
Vu-.B B B B B B 6^brm-{zAmimol}brrs{WUmѐ^`»@qh3<צ7nyNߊCO}3/?6.k IDAT6Sڦgnmʶr%mAGeڦ{x[lX<[t9D8oVrrJ#yp
}e.z8DC9d o'xb?/OwUBlA]gqV\Xz/8ۓ+ xZW/vWHL@f^]Zk;_c7֖homMx~.LO
_Mڲuf9_<Vq>qY,8o%<OnG}tЈqΤe/;:a,碋.,L^aI-F_- CiU!3gxg!!!!!!!!obLkWwMn"yݪmb63QLz[Zdяj_|qX-oBo^# -%I3:&y>yy;z=sY?肟2($-O\'V6O<џW`s!!!!!!!!b_nknҦ}M=p[qYm#S~m̾GVk~66lE[~u}GydM2eKQ˻JǞrp( ֳ!;KAց6K}+.ŏ%gU,lׯ_߮.:Z"Ƀ#?"a\@@@@@@@K`},VЖvR~6mu'u863-֖jmjc̦?3KP#</"8]9o,0-JT#*Xqwq]!?;sWeGFʬ'tR%:piY2#}i+:M>zKyٶ鶯U-?ngtk{&]qYmb!MmF,ےLڛn/%Y;*,=oݳ;9ӗ?c{o8qxQG4K-8, &t1$>i^uU
ه@@@@@@@@v7&?<o闟iKma'y6ĝ}.qpAGǜ;U졇Ye֭bP&&ҭ^m^XͪpHp{ꩧM|B я<#aBg '()4->3(>Ooا\q!!!!!!!!!<3XM=qWzvno3cٖek'Yb6o%Jhم<3ϲY_z,Xڱ< sqwgt?BgD_>ķU|A g=s]l߳m.6M>B B B B B B B B` ž6rM[ym/ͭ-XmYEGV~sy[f+!z0p?zs8a|Xy+?b,eyGs*o/nQ8>`F ^xUvNz`u2ЛW_}uA)#B B B B B B B B`$>COl+Om;[az-[{d[u۶X/$!cW0ӡȟ弖+G\<t'O:Ûvg7Iڵk{zT\pA#Yƅ@@@@@@@@v؇t[qmGw&vok;K9҄27p6W|B;8ca pN8aV,ðyĎm¡s\cXaZ97bLX>핗m?{/mםÄj|Ҙhs;'Qo_NjIf!!!!!!!!آly;&Vd[qmq]]!!!!!!!!]oW4'Co+O~[zꞶ˶<ե,vOʣj+<}˳"oe,ǥmakZ)ܷb-6ܰg?!!!!!!KNbggn??1gl^{<'0裏1~ۯʯ|ۣ[ɟٰʞ>q[7ټao}k?嗷g}
7#??m^xlHov袋SO=՟ 9L|9~~w}}kҕ?6o>v5״wo
64|K/z4gϷ?^#<r{>//̶&=h˗/=Q}~dxOo{unrrmrjS}R{=a|'wf_m-[lC{!_ڻ7~G'|rokX|>9_إ}P..ϣ:jmzKUW]YGk-oyVGq^ӣa=B B B B B )dghCP"1Znw}N'D{?lsά $zjAXz.0 "+V QC~]h!0$]
--QFHF `{ウb{:=ЫBڵkD3+岉%jf͚FHQQa]ﻷG9_{ՏE@)ጘ(Mu%Hn馞o/]cnݺ.TBsĮ~U8rţN}/SfuTM6MUV'h_ .:uqr4_e?Oss ~foKt∦ꩬy^ĕ_;AX8G'xeşj!b/~l&qu嫾^Xp_~맘o I#wyy듮Ub~_JG#s(B뚋%}[\{3o
=X?!6n˹Yw#O:I'pBrw|;3ۉ'??D>n.BX(yG~<kqxw*~??ń뮻bed3h@
"rpD|O>r\LX{̊q+q98*Gwn;묳Dܓ?1DՕ0v#&+X"Mp L=^BH;J|Նc)XesV+1U{p!(}MĩY>W[7huNIEX*wO" qLbzWwP_"
<.V'eA<R OI~]>p1K+o۽nC RU;έD~=O(/']"><C˿=Kӵ>}pJN9v-tnApMOk<_x3Dn8~lqRv wqǬ?- !!!!!Zݘ/dB`7 FDqN@sSNȰo~RWbc7K*KLrEa䡇
<&t,"G>.hԧ>,$(+,wg%>K}|'@q2Ϫ+E*qxN"::u]=<k<ņ^ǒWW8E8+2qXV8U.CfyփH"4cYgOGuLT<)[c'U\.1MX:տXo!sF"2?.I`mpooaM}MA^D8fm&mN}]LA}o#K7Wꤌ.~Ωc9eįc&78pYb!gbٯگm?+@X(ƞ>ׯѪ`O\;.KXcGtV<|ABIO 'vyO
!!!!!;@ľA1i4zkz"g*X@pNa)C\! fwfu"8b4ݬ,,JB"< Dy{QHL!ูwnɃ C!BJXEIXKs,E n8ဨucXχh"om/)mJa-ih;?e#**8RfBK#ԈYS??=!Svy#h7Vj0ʤD4K1K%=. y+>D4őѿ+ėь;&"JWP⮞e]HD&4g%YNX*1?^erq2t#i7]ʨ@8qm`Z+'l ra_Kԙ~w[ź8|}{,7]S#,-sʧ\1a6Qh"}@@@@$oGLZ;2fGDaMj2<" 1E#6ٳx#8b/%h8ϊP1QčKs_6%0ďZh))D4PIp X^D-$<H9,0
8eK,"H⡼]³"f0W>@MqpIQfK3շX=X]S7LՑE*6'l,#/n*we+g~)9ǺR9ԛE6ڗ.TV'ay[K=GOB6/o~IK99wԝ HRe"
,׆BOd#4sJi+#Y'^O/!&S(#[}XigbR}:'mT+c'?{ZN;X\./Ґ&Ƨh>B B B B B @ľm8 D&_DqK9X~l
/Cuk#0r"sn'0JP^.^JTRv"H!H_H("CD>|Y5jio(t|..хGL"
x"oB+*+i39b
0u!D'b2CFބTΒGB!ȩ7Ae<'My.ng!Õ(C|Q>VnzODEǫXzv qCL՝l& ra["pKG; c fF<6b=(.e/_Cw<9iyLqDDUm#}
ZZ/ehI<K^ezS73qARt-]ʰ;G\dg? 85͒ye"V5[mHGdt}B B B B B B`GطH&JnblBÛ. _bD+BGh8U
WHX c.<ȍt#rw(䦟H@ )GlR7Et#8I>k'fAGQnr8LetYs &>=Q(1C%,^F rh'/L=ϰ^A8Rᓧ,
'hoxKl,QfK$b]O}D2^bIeϲNVB~ -y>!1O?. ;MrL8̆bR\H%=_YiV8֗e{{^D*0:wayα|8S#X.Xkٱ[2'u~k8uM?(NZ>nDa&ܫzaw=O:x"k֫k8"0\=uK@ b_IM:(bGd ~Bb)UBQ E8/
I%%JX7oVN/%9~ H%GdME``|g/ F?%:,{$Fg(Oօg/ſ/!0Ve:سxrZK"hȋU16I_>w6!nYK=NEQN6Vp'$҈6YbtXE#x&1Wz^BU[#"d6ca-և|/GQ9O0QG\%VZMaȲU>Y:L2?ђ:E_oo{W?Ԟk8tY~V0uL% 6՞ As]cKqpQa'٤Cs
zd
aֹ:X#<y!F^zlqe%k]kڰW{F|U\Cq!!!!!!TKojS&-v:K26nVidzMNNɩyr˱ۥ2! 6/ 6хGl"2j5W߉,ChE#8VS0!Zȏ(@DS0ǜceZ-%DWcbe^SgXrqeSnyW0a)e#fpGX̿Q6XXʛ,S&`*>'H Lk3|=0D%z*SxRW_O"Mp̟H*ǚL6-QX8yC!\e)ceІ\qqX=a٤/LXqkNv!T}ڏeO^ŲTwleׄ>[&NjY[<,,WQWkG\&y[VxiOm;Oח<<#sOa:9QK{+/oVY6(~LnTwͱB8" J|p6Aɍ2qӨ#'0
Oo٧=Cr#Ɵux'T~XcynYyH#rE7\UWFQ5s'X8Η<K8!3QRdX) kzL=dسؤxN ,o +[/<!` Yg,$ޱ~'~?vzFI!izޡ4KQN-..畕ڎe^WUœft,&-_Nns%ZƖ/䔉 =.xz
%e~Q#8Y"'`6+M+n%V|Ñxk#`[^,V~rL|UXsjrϹ]Yϵ:!\=OH~rY D9¨IY
}@@@@@G`Ib-hO6W6On7_.۫ l3f̀ IDAT4ͰiKZ'd{6:yyIX8<[w{YC-,D+ B8"j<qX Ϫe%e &mW~WzYk P t"e6RǏ:~"8&J Qe/U__l%jUskԑ Ax!fpb'#:Gc E!T0Å8B`TOlsUK9o%&B0ځ3tʎmp0F-&
jOD,%0K#!FTM/fPNm.N]~QkQK Vg'$_ī=1N?b Y0 \}UzcB/e <q t7-Q]ҐvM`s-'f±Ĕ]\cys
yun8{)z#gmX0Dqw=[PxeYb/-}r-[J{oX@@@@@8-
ʦW^n̬h߹˓mA-JU~ YK{_7mC(!I.xK9
w0Ps!.BXT X
Fi0Eް[ID!
Tp!X%$HaA?#%Ճ },!e$cՅ*X[JC^ccaGTıfH覾!OKu&: Cxuڙ%
W±.$YϵSV!UX,~٤KzFY[o z4Ecz{A<Q;UCGSSJy~X]!S[9jڏƳKuNوvm$N1a#H/ CeX7 6@*1z=L%>jG}9:HCa=krler2B B B B`$_ufoW9p-+Bt͛/˽؏EgIb/<ƶ|J8[Č˾yľo}{$B`{ pMFM7C B B B B`[ DVr<+-
!!jtח&%]O`yZ@@@@@@@@>G`b>G(=@ľ=RX@ľ?B B B B B B B B J1C B B B B B B B B`!"CDC*D[PC B B B B B B B B`!bw-%'̫'&&&Z7w =n)=nm[fEkMo/mnm-6Mʹs=z6=]QgpK/Me
{f!!!!!!!!!Z2ovC֬lLΪvطqrȋmjfpؚv1kL{乍큧^is65=VXV,iL̴emKmË[O<r&B B B B B B B B XW$gZ{[l&g۾LtK+߰m&NLۿ=;i˗=N]_mOu51+{nj<H{;֬Y3g}v}.n~z[Ǐ|饗3<ӎ:699پ/.s1ꫯnozӛ>.s/B.ocmjjI'lO<D;6_^{m_~{o/J;l{le{vWtFgqF[oƍ矟w8K@@@@@@m>U<7OW6Oom7ڑj]vuہW7Me)uqMSmX~zIa o}k_k{キ}#itزz뭍uyF#=mӦMSOJw],g^yvu/}mwlĹ#]s5K/m~
E?,_|K8#)+e]6G?/~sϸ|bp~5ʕ+{6;vg#8s=M֮]U6oPip
mݺu]$T'm/}iM~>PѳAv_oW/o?qʺ-Uhm~vakxw/i?}vcAPs\dvī|++l'N_~הrF0T UVթ=裏nWn6l<.z}o>ϴO|l/rΊ%]}s[ {w/{ N#fs&"b
$ReYTnyږÖh2%(J)A9 HD '癎[=p{߭jt}gPwy]`x뫭zx=cꫯ6q"H]vhطxblo=#ϟoGݽ>;Y.H|waվn@;5Jg,X#X&X,g͚ExErÌ'D $dZnVYbM.ZK$~+GmN}uYWGmzkgصkZZZQb
_,oַpU!!!BD#DxѢE@A\L/=DAŽꫯ79مN>Fpac_|]{c":䙸z)?#"5't}ւӑ >7_﮿p7ovq+@yAAD@D@D@D@D@& |